   /* Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html,body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      overflow-x: hidden;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: white;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 15px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo and Store Name */
    .logo-container {
      display: flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      color: black;
    }
    .logo-container img {
      height: 100px;
      width: auto;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    .logo-container:hover img {
      transform: scale(1.1);
    }
    .store-name {
      font-weight: 700;
      font-size: 1.5rem;
      user-select: none;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 24px;
      font-weight: 500;
    }
    nav a {
      text-decoration: none;
      color: black;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s ease;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #f5c518; /* Yellow underline */
      left: 0;
      bottom: -6px;
      transition: width 0.3s ease;
    }
    nav a:hover,
    nav a:focus {
      color: #f5c518;
    }
    nav a:hover::after,
    nav a:focus::after {
      width: 100%;
    }

    /* Right section */
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    /* Search */
    .search-box {
      position: relative;
    }
    .search-box input[type='search'] {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid #ccc;
      width: 180px;
      transition: transform 0.3s ease, border-color 0.3s ease;
      font-size: 0.9rem;
    }
    .search-box input[type='search']:focus {
      outline: none;
      border-color: #f5c518;
      transform: scale(1.1);
    }

    /* Call Now Button */
    .call-btn {
      background: #f5c518;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      color: black;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      user-select: none;
      text-decoration: none;
    }
    .call-btn:hover,
    .call-btn:focus {
      background-color: #d4b80c;
      transform: scale(1.1);
      color: black;
    }

    /* Cart Icon */
    .cart-icon {
      position: relative;
      font-size: 1.5rem;
      color: black;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .cart-icon:hover,
    .cart-icon:focus {
      transform: scale(1.1);
    }
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: red;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 12px;
      animation: pulse 2s infinite;
      user-select: none;
    }
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.7;
      }
    }

    /* Hamburger Menu (Mobile) */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      border: none;
      background: none;
      color: black;
      transition: transform 0.3s ease;
    }
    .hamburger:hover,
    .hamburger:focus {
      transform: scale(1.1);
    }

    /* Mobile menu (hidden by default) */
 .mobile-menu {
    display: none;
    position: absolute;
    top: 85px;
    text-align: center;
    left: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    z-index: 9999;
}
    .mobile-menu a {
      color: black;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      transition: color 0.3s ease;
    }
    .mobile-menu a:last-child {
      border-bottom: none;
    }
    .mobile-menu a:hover,
    .mobile-menu a:focus {
      color: #f5c518;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      nav {
        display: none;
      }
      .search-box input[type='search'] {
        width: 120px;
      }
      .call-btn {
        display: none;
      }
      .hamburger {
        display: block;
      }
        .header{
        padding: 15px !important;
      }
    }

    @media (max-width: 576px) {
      .search-box {
        display: none;
      }
      .header{
        padding: 15px !important;
      }
    }





/* Footer Container and Row */
.footer-section {
  background-color: black;
  color: white;
  padding: 40px 20px 25px 20px;
  font-size: 0.9rem;
}

.footer-section .container > .row {
  display: flex;
  justify-content: space-between; /* Columns ke beech achha gap */
  flex-wrap: wrap; /* Responsive wrapping */
  gap: 20px; /* Columns ke beech thodi gap */
}

/* Each column */
.footer-section .col-md-4 {
  flex: 1 1 30%; /* 30% width with flexibility */
  min-width: 250px; /* Chhoti screens ke liye minimum width */
  text-align: left; /* Content left aligned rahe */
}

/* Footer headings */
.footer-section h5 {
  font-weight: 700;
  color: #ffeb3b; /* Yellow */
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Footer links and text */
.footer-section p,
.footer-section li,
.footer-section a {
  color: #f5f5f5;
}

.footer-section ul {
  padding-left: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

/* Footer links hover */
.footer-section ul li a {
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}

.footer-section ul li a:hover {
  color: lightgoldenrodyellow !important;
  transform: scale(1.1);
  text-decoration: none;
}

/* Footer icons in contact */
.footer-section p i {
  color: #ffeb3b; /* Yellow */
  margin-right: 6px;
}

/* Footer horizontal line */
.footer-section hr {
  border-color: rgba(255, 235, 59, 0.4);
  margin-top: 25px;
  margin-bottom: 20px;
}

/* Social Icons container */
.footer-contact-social {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.footer-contact-social a {
  font-size: 1.6rem;
  color: #ffeb3b;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-social a:hover {
  color: #4caf50; /* Green accent */
  transform: scale(1.3);
  text-decoration: none;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: center; /* Center align copyright text */
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: #f5f5f5;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .footer-section .container > .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section .col-md-4 {
    min-width: auto;
    flex: 1 1 100%;
    margin-bottom: 25px;
  }

  .footer-contact-social {
    justify-content: center;
  }
}

     :root {
      --primary-green: #4caf50;
      --accent-yellow: #ffeb3b;
      --text-dark: #4e4e4e;
      --bg-light: #fffde7;
      --shadow-light: rgba(76, 175, 80, 0.2);
      --shadow-strong: rgba(76, 175, 80, 0.5);
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
    }
    .container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    h1 {
      color: var(--primary-green);
      font-size: 2.4rem;
      margin-bottom: 30px;
      text-align: center;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px var(--shadow-light);
    }
    thead {
      background: var(--primary-green);
      color: white;
    }
    th, td {
      padding: 15px 10px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    th:last-child, td:last-child {
      text-align: center;
    }
    tbody tr:hover {
      background: #f4fff4;
      cursor: pointer;
    }
    img.product-img {
      width: 70px;
      height: 70px;
      border-radius: 10px;
      object-fit: cover;
    }
    input.qty-input {
      width: 60px;
      padding: 6px;
      font-size: 1rem;
      border-radius: 6px;
      border: 2px solid var(--primary-green);
      text-align: center;
      font-weight: 700;
      color: var(--primary-green);
    }
    input.qty-input:focus {
      outline: none;
      box-shadow: 0 0 8px var(--shadow-strong);
    }
    button.remove-btn {
      background: #e74c3c;
      border: none;
      color: white;
      padding: 8px 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    button.remove-btn:hover {
      background: #c0392b;
    }
    .cart-summary {
      margin-top: 30px;
      text-align: right;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-green);
    }
    .actions {
      margin-top: 40px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
    }
    .btn-continue,
    .btn-checkout {
      flex: 1 1 200px;
      padding: 15px 0;
      border-radius: 40px;
      font-weight: 700;
      font-size: 1.2rem;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      color: white;
      text-decoration: none;
      display: inline-block;
    }
    .btn-continue {
      background: #888;
    }
    .btn-continue:hover {
      background: #666;
    }
    .btn-checkout {
      background: var(--primary-green);
      box-shadow: 0 0 12px var(--shadow-strong);
    }
    .btn-checkout:hover {
      background: #3a8b3a;
      box-shadow: 0 0 20px var(--shadow-strong);
    }
    @media (max-width: 600px) {
      th, td {
        font-size: 0.9rem;
        padding: 10px 6px;
      }
      .actions {
        flex-direction: column;
      }
      .btn-continue,
      .btn-checkout {
        flex: 1 1 100%;
      }
    }