  <style>
  html {
      margin: 0;
      padding: 0;
      height: 100%;
	font-family: monospace;  
    background: #f9f9f9;
	  background: linear-gradient(135deg, #f5f7fa, #e4ebf1);
      display: flex;
      flex-direction: column;
      min-height: 200vh;
    }
body {
      margin: 0;
      padding: 0;
      height: 100%;
	font-family: monospace;  
    background: #f9f9f9;
	  background: linear-gradient(135deg, #f5f7fa, #e4ebf1);
      display: flex;
      flex-direction: column;
      min-height: 200vh;
    }
	    .header-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

    header {
      background: #fff;
      color: #000;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap; /* allow wrap on mobile */
	  border-bottom:1px solid green;
    }

    header h1 {
      margin: 0;
	  font-size: 20px;
	  text-align: left; /* align left */
	  flex: 0 0 auto; 
    }

    header a {
      color: #000;
      margin-left: 15px;
      text-decoration: none;
    }

   .top-bar {
  background: #ffffff;
  color: #000;
  width: 100%;
  padding: 8px 20px;
  display: flex;
  justify-content: flex-end; /* 👈 push content to right */
  align-items: center;
  flex-wrap: wrap; /* mobile friendly */
  font-size: 14px;
  gap: 20px; /* space between spans */
}
.content {
  padding: 20px;
  margin-top: 60px; /* default: only header */
}

.has-topbar .content {
  margin-top:  calc(45px + 20px); /* header + top-bar */
}
    @media (max-width: 600px) {
		.content {
		  padding: 20px;
		  margin-top: 50px; /* default: only header */
		}
		.has-topbar .content {
		  margin-top:  calc(45px + 45px); /* header + top-bar */
		}
		header {
			justify-content: center; /* center content in mobile */
		  }

		  header h1 {
			flex: 1 1 100%;
			text-align: center; /* center text/logo */
		  }
    }
	main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
	}

	select {
      width: 100%;
      padding: 0.8rem;
      font-size: 1rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      outline: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    select:hover {
      border-color: #2c3e50;
      box-shadow: 0 0 6px rgba(44,62,80,0.3);
    }

    footer {
      background: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 1rem;
	  position:fixed;
	  width:100%;
	  bottom:0;
      font-size: 0.9rem;
      margin-top: auto;
    }
	input {
      padding:12px 14px; border:1px solid var(--border); border-radius:10px; background:#fff; outline:none; font:inherit;
    }
    select, textarea {
      width: 90%; padding:12px 14px; border:1px solid var(--border); border-radius:10px; background:#fff; outline:none; font:inherit;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--ring); box-shadow:0 0 0 4px rgba(59,130,246,.15); }
    textarea { min-height:90px; resize: vertical; }
   
	.container {
      display: flex;
      height: calc(100vh - 80px);
     } 
     .dropdown-box {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      text-align: center;
      width: 90%;
      max-width: 400px;
    }

    .dropdown-box h2 {
      margin-bottom: 1rem;
      font-size: 1.3rem;
      color: #333;
    }

	.sidebar {
      width: 250px;
      background: #fff;
      padding: 1rem;
      border-right: 1px solid #ccc;
      overflow-y: auto;
    }
    .main-content {
      flex-grow: 1;
      padding: 1rem;
      overflow-y: auto;
    }
    .filters input[type="text"] {
      width: 100%;
      padding: 0.5rem;
      margin-bottom: 1rem;
    }
    .filters label {
      display: block;
      margin-bottom: 0.5rem;
    }
    .category-group {
      margin-bottom: 2rem;
    }
    .category-title {
      font-size: 1.4rem;
      margin: 1rem 0;
      border-bottom: 2px solid #ccc;
      padding-bottom: 0.5rem;
    }
    .hproducts-row {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 1rem;
    }
    .hproduct {
      background: white;
      border: 1px solid #ccc;
      padding: 1rem;
      border-radius: 8px;
      text-align: center;
      min-width: 220px;
      flex-shrink: 0;
    }
	.products-row {
	  display: grid;
	  grid-template-columns: repeat(5, 1fr); /* 5 products per row */
	  gap: 20px; /* spacing between products */
	}

	.product {
		position:relative;
	  border: 1px solid #ccc;
	  border-radius: 8px;
	  /* padding: 10px; */
	  text-align: center;
	  
	  background: white;
      padding: 1rem;
      min-width: 220px;
      flex-shrink: 0;
	}

	.badge {
	  position: absolute;
	  top: 10px;   /* ऊपर से gap */
	  left: 10px;  /* बाएं से gap */
	  background: green; 
	  color: white;
	  font-size: 14px;
	  font-weight: bold;
	  padding: 5px 10px;
	  border-radius: 20px; /* गोल लुक के लिए */
	  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	}

	/* For mobile screens - show 1 product per row */
	@media (max-width: 768px) {
	  .products-row {
		grid-template-columns: repeat(1, 1fr); /* 1 per row */
	  }
	}
    .product h3 {
      font-size: 1.2rem;
    }
    .product img {
      max-width: 100%;
      height: auto;
    }
    .product button {
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
     .product button:hover {
      background-color: #45a049;
    }
   .hproduct button {
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
     .hproduct button:hover {
      background-color: #45a049;
    }
   .cart {
      background: white;
      border: 1px solid #ccc;
      padding: 1rem;
      border-radius: 8px;
      position: fixed;
      top: 80px;
      right: 0;
      width: 300px;
      max-height: calc(100vh - 100px);
      overflow-y: auto;
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }
    .cart-hidden {
      transform: translateX(100%);
    }
    .cart h2 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
      border-bottom: 2px solid #ccc;
      padding-bottom: 0.5rem;
      color: #333;
    }
    .cart-item {
      display: flex;
      justify-content: space-between;
      padding: 0.5rem 0;
    }
    #login-container {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }
    #login-box {
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      max-width: 400px;
      width: 90%;
      position: relative;
    }
    #login-box .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
	
	 /* Horizontal Filter Bar */
  .filter-bar {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: #fff;
    border-bottom: 1px solid #ccc;
    overflow-x: auto;
    white-space: nowrap;
  }
  .filter-bar label {
    flex-shrink: 0;
  }
  .filter-bar input, .filter-bar select {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
   /* Table wrapper for responsiveness */
    .table-container {
      width: 100%;
      overflow-x: auto;
      margin: 20px 0;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    /* Base table style */
    table {
      width: 100%;
      border-collapse: collapse;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 15px;
      color: #333;
    }

    /* Header */
    thead {
      background: linear-gradient(90deg, #6a11cb, #2575fc);
      color: #fff;
    }

    thead th {
      padding: 14px 18px;
      text-align: left;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Table rows */
    tbody tr {
      border-bottom: 1px solid #eee;
      transition: background 0.25s ease;
    }

    tbody tr:hover {
      background: #f0f7ff;
    }

    /* Table cells */
    td {
      padding: 14px 18px;
      vertical-align: middle;
    }

    /* Zebra striping */
    tbody tr:nth-child(even) {
      background: #fafafa;
    }

    /* Status badges */
    .status {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }
    .status.success { background: #28a745; }
    .status.warning { background: #ffc107; color: #333; }
    .status.danger  { background: #dc3545; }
    .status.info    { background: #17a2b8; }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: block;
        width: 96%;
      }

      thead {
        display: none;
      }

      tr {
        margin-bottom: 15px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        padding: 10px;
      }

      td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border-bottom: 1px solid #eee;
      }

      td:last-child {
        border-bottom: none;
      }

      td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        color: #555;
      }
    }
	
	
	/* My Profile css*/
	
	 :root { --bg:#f7f7fb; --card:#fff; --text:#222; --muted:#6b7280; --ring:#3b82f6; --border:#e5e7eb; }
    * { box-sizing: border-box; }
    .form-container { max-width: 850px; margin: 32px auto; padding: 0 16px; }
    .card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:24px; box-shadow: 0 6px 24px rgba(0,0,0,.06);}
    h1 { margin:0 0 16px; font-size: 1.5rem; }
    p.helper { margin:0 0 20px; color:var(--muted); }
    form { display:block; gap:10px; }
    .row { display:grid; grid-template-columns: 1fr; gap:5px; }
    @media(min-width:600px){ .row-2 { grid-template-columns: 1fr 1fr; } .row-3 { grid-template-columns: 1fr 1fr 1fr; } }
    label { display:block; font-size:.925rem; margin-bottom:6px; }
    .radio-group, .checkbox-group { display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
    .radio { display:flex; gap:8px; align-items:center; }
    .actions { display:flex; gap:12px; justify-content:flex-end; padding-top:8px; }
    .btn { padding:12px 18px; border-radius:10px; border:1px solid transparent; cursor:pointer; font-weight:600; }
    .btn-primary { background:var(--ring); color:#fff; }
    .btn-secondary { background:#fff; border-color:var(--border); }
    .req::after { content:" *"; color:#ef4444; }
    small.note { color:var(--muted); display:block; margin-top:6px; }
	.inline-checkbox { 
		display: inline-flex !important;   /* force one line */
		width:100px !important;            /* shrink to content */
		float:left;
		white-space: nowrap;               /* prevent text wrapping */
	  }

	
/**** Slider CSS*/
* { box-sizing: border-box; padding:0; }

    .slider {
      position: relative;
      width: 100%;
      /* max-width: 700px; */
      margin: 40px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      height: 300px; /* fixed height */
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
      height: 100%;
    }

    .slides img {
      width: 100%;
      height: 100%;
      object-fit: fill; /* 👈 ensures full image is visible */
      background: #000;    /* optional: fill background if aspect ratio differs */
      border-radius: 10px;
      flex-shrink: 0;
    }

    /* Navigation buttons */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      font-size: 20px;
      padding: 8px 12px;
      border: none;
      cursor: pointer;
      border-radius: 50%;
    }
    .prev { left: 10px; }
    .next { right: 10px; }
	/**** Slider CSS*/
	
  </style>
