
/* =========================================
   Shop Categories Section
========================================= */
.shop-categories-section {
  background: #fff;
  padding: 60px 0;
}

.shop-categories-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.shop-categories-section .section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.shop-categories-section .section-title p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.product-thumb {
  width: 100%;
  height: 220px;
  background-color: #f9f9f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex-grow: 1;
  padding: 15px;
  text-align: center;
}

.product-info .product-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-info .category {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 5px;
}

.product-info .btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #fff;
  background-color: #6c2eb9;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.product-info .btn:hover {
  background-color: #4a1f7f;
}


/* =========================================
   Responsive Tweaks
========================================= */
@media (max-width: 992px) {
  .offer-card {
    flex-direction: column;
  }
  .offer-card .offer-image {
    min-width: 100%;
    height: 250px;
  }
  .offer-card .offer-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .product-thumb {
    height: 180px;
  }
  .product-info .product-name {
    font-size: 1rem;
  }
}


/* Category Section */
.category-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.category-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.category-section .section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-section .section-title p {
  color: #666;
  font-size: 0.95rem;
}

/* Category Section */
.category-section {
  margin: 3rem 0;
}

.category-section .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.category-section .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-section .section-title p {
  color: #555;
  font-size: 1rem;
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 1rem;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Order Panel */
.order-panel {
  display: none;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.product-card.active .order-panel {
  display: block;
}

.order-row {
  margin-bottom: 1rem;
}

.qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn {
  background: #eee;
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.qty-btn:hover {
  background: #ddd;
}

.quantity {
  width: 40px;
  text-align: center;
  border: none;
  background: #f9f9f9;
  margin: 0 0.5rem;
}

/* Buttons */
.order-actions {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-primary {
  background: #28a745;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #218838;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-cart {
  background: #007bff;
  color: #fff;
  border: none;
}

.btn-cart:hover {
  background: #0069d9;
}

.btn-outline {
  background: transparent;
  border: 1px solid #007bff;
  color: #007bff;
}

.btn-outline:hover {
  background: #007bff;
  color: #fff;
}

/* Swiper overrides */
.swiper {
  padding: 1rem 0;
}

.swiper-slide {
  height: auto;
}



.cta-section {
  background: linear-gradient(135deg, #0078d7, #005fa3);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form input,
.cta-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.cta-btn {
  background: #ffcc00;
  color: #333;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e6b800;
}

.cta-response {
  margin-top: 15px;
  font-size: 0.95rem;
}





/* Swiper Navigation Arrows */
.hero-offers .swiper {
  position: relative; /* anchor arrows inside slider */
}

.hero-offers .swiper-button-prev,
.hero-offers .swiper-button-next {
  top: 50%;                      /* center vertically */
  transform: translateY(-50%);
  color: #0078d7;                 /* match your theme blue */
  width: 40px;
  height: 40px;
}

.hero-offers .swiper-button-prev {
  left: 15px;                     /* push to left edge */
}

.hero-offers .swiper-button-next {
  right: 15px;                    /* push to right edge */
}

/* Optional: hover effect */
.hero-offers .swiper-button-prev:hover,
.hero-offers .swiper-button-next:hover {
  color: #005fa3;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}


/* ===============================
   BASE
================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  padding-top: 120px;
  background: #ffffff;
  color: #1E293B;
}

/* ===============================
   HEADER
================================ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #F8FAFC;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(220, 220, 220, 0.6);
}

/* ===============================
   TOP BAR
================================ */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  gap: 20px;
}

.logo img {
  height: 50px;
  transition: height 0.3s ease;
}

.site-header.scrolled .logo img {
  height: 40px;
}

/* ===============================
   SEARCH BAR
================================ */
.search-bar {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 450px;
}

.search-bar input {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid #6366F1;
  border-radius: 6px 0 0 6px;
  background: #ffffff;
  color: #1E293B;
}

.search-bar input::placeholder {
  color: #94A3B8;
}

.search-bar input:focus {
  outline: none;
  border-color: #1E293B;
}

.search-bar button {
  padding: 10px 14px;
  border: none;
  border-radius: 0 6px 6px 0;
  background: #6366F1;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-bar button:hover {
  background: #1E293B;
}

/* ===============================
   CONTACT INFO
================================ */
.contact-info a {
  margin-left: 15px;
  color: #1E293B;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: #6366F1;
  text-decoration: underline;
}

/* ===============================
   NAVIGATION
================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1E293B;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #F59E0B;
}

/* ===============================
   MEGA MENU
================================ */
.has-mega {
  position: relative;
}

.has-mega .mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 800px;
  background: #F8FAFC;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  z-index: 999;
}

.has-mega:hover .mega-menu {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.mega-column {
  flex: 1;
}

.mega-column h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #6366F1;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 6px;
}

.mega-column a {
  display: block;
  margin: 6px 0;
  color: #1E293B;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.mega-column a:hover {
  color: #F59E0B;
  transform: translateX(4px);
}



/* ===============================
   MOBILE
================================ */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #1E293B;
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    padding-top: 140px;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .has-mega .mega-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    box-shadow: none;
    padding-top: 10px;
  }
}


/* ===============================
   SHOP SECTION
================================ */
.shop-section {
  padding: 60px 20px;
  background: #f6f7fb;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 6px;
  color: #09052F;
}

.section-subtitle {
  color: #8A8C94;
  font-size: 15px;
}

/* ===============================
   PRODUCT GRID
================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* ===============================
   PRODUCT CARD
================================ */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGE
================================ */
.product-media {
  position: relative;
  height: 220px;
  background: #f1f1f6;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   BODY
================================ */
.product-body {
  padding: 18px;
  text-align: center;
}

.product-title {
  font-size: 18px;
  margin: 0;
  color: #09052F;
}

.product-price {
  margin: 10px 0 18px;
  color: #7000fe;
  font-size: 16px;
  font-weight: 600;
}

/* ===============================
   BUTTONS (GLOBAL)
================================ */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Primary */
.btn-primary {
  width: 100%;
  background: #7000fe;
  color: #fff;
}

.btn-primary:hover {
  background: #5c00d4;
}

/* ===============================
   ORDER PANEL
================================ */
.order-panel {
  max-height: 0;
  overflow: hidden;
  background: #fafafe;
  border-top: 1px solid #EEEFF4;
  padding: 0 18px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.product-card.active .order-panel {
  max-height: 260px;
  padding: 18px;
}

/* ===============================
   ORDER ROW
================================ */
.order-row {
  margin-bottom: 14px;
}

.order-row label {
  display: block;
  font-size: 13px;
  color: #767676;
  margin-bottom: 6px;
}

.order-row input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #DDD;
  font-size: 14px;
}

/* ===============================
   ORDER ACTIONS
================================ */
.order-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-actions button {
  width: 100%;
}

/* WhatsApp */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
}

/* Cart */
.btn-cart {
  background: #09052F;
  color: #fff;
}

.btn-cart:hover {
  background: #000;
}

/* Outline */
.btn-outline {
  grid-column: span 2;
  background: transparent;
  border: 2px solid #7000fe;
  color: #7000fe;
}

.btn-outline:hover {
  background: #7000fe;
  color: #fff;
}

/* ===============================
   MOBILE TWEAKS
================================ */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
  }

  .product-media {
    height: 200px;
  }
}
/* ===============================
   QUANTITY CONTROL
================================ */
.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: #f1f1f6;
  color: #09052F;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: #e4e4f0;
}

.quantity {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #09052F; /* FIX: visible text */
  background: transparent;
}

.quantity:focus {
  outline: none;
}



/* ===============================
   MENU CART BADGE
================================ */
.cart-link {
  position: relative;
  font-size: 20px;
  text-decoration: none;
  color: inherit;
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #7000fe;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  line-height: 1.4;
}

/* ===============================
   Cart Badge Pop Animation
================================ */
#cart-count.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}




/* Cart Badge Pop Animation */
#cart-count.bump {
  animation: bump 0.3s ease;
}
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.cart-section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.cart-list li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.cart-list li .item-info {
  flex: 1;
}

.cart-list li .item-actions {
  margin-left: 10px;
}

.cart-summary {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total {
  font-size: 1.2em;
  color: #222;
}

.cart-actions .btn {
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-primary {
  background: #388e3c;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #2e7d32;
}

.empty-cart {
  margin-top: 20px;
  color: #777;
  text-align: center;
}

.cart-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.cart-list li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.item-info {
  flex: 1;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-btn {
  background: #eee;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 4px;
}

.qty-btn:hover {
  background: #ddd;
}

.quantity {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.checkout-section {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

.checkout-form .form-row {
  margin-bottom: 15px;
}

.checkout-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.checkout-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkout-summary {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.checkout-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.checkout-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.checkout-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.checkout-info {
  flex: 1;
}

.checkout-subtotal {
  color: #555;
  font-size: 0.9em;
}

.checkout-total {
  margin-top: 15px;
  font-size: 1.2em;
  font-weight: bold;
}

.btn-secondary {
  background: #eee;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #ddd;
}



.category-section {
  margin: 2rem 0;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-body {
  padding: 1rem;
  text-align: center;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
}

.product-price {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.order-panel {
  display: none;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.product-card.active .order-panel {
  display: block;
}


/* === Category Section Overrides === */
.category-section {
  margin: 2rem 0;
}

.category-section .section-title h2,
.category-section .section-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.category-section .section-title p {
  color: #555;
  margin-bottom: 1rem;
}

/* === Categories Grid Layout === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* === Category Card === */
.category-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* === Image === */
.category-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* === Body === */
.category-body {
  padding: 1rem;
  text-align: center;
}

.category-body h3 {
  margin: 0 0 .5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.category-body p {
  font-size: .9rem;
  margin: 0 0 .75rem;
  color: #555;
}

/* === View Button === */
.btn-view {
  display: inline-block;
  background: #28a745; /* brand green */
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-view:hover {
  background: #218838;
}

/* FAQ Section */
.faq-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.faq-images {
  position: relative;
}

.faq-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.faq-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.faq-img:hover img {
  transform: scale(1.05);
}

.faq-img.main-img {
  margin-bottom: 20px;
}

.faq-img.secondary-img {
  max-width: 80%;
  margin-left: auto;
}

.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff4c60;
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.video-btn:hover {
  background: #e63b4d;
  transform: translate(-50%, -50%) scale(1.1);
}

/* FAQ Content */
.faq-content .section-title {
  margin-bottom: 30px;
}

.faq-content .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff4c60;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

/* Accordion */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
}

.accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
  color: #333;
}

.accordion-button span {
  color: #ff4c60;
  font-weight: 700;
  margin-right: 10px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 15px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.product-description {
  border-top: 1px solid #eee;
  padding: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  max-height: 120px;       /* limits height */
  overflow: auto;          /* adds scroll inside the box */
  display: none;
  margin-top: 0.5rem;
}


.product-buttons .btn {
  flex: 1;
}




/* Floating WhatsApp Button - Left Side */
.whatsapp-float {
  position: fixed;
  bottom: 20px;      /* distance from bottom */
  left: 20px;        /* move to left side */
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background-color: #25D366; /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  opacity: 0.9;
}



/* Horizontal category slider */
.categories-slider {
  overflow: hidden;
  width: 100%;
}

.categories-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* Force single row */
.category-card {
  flex: 0 0 calc(25% - 18px); /* 4 items */
}

/* Tablet */
@media (max-width: 992px) {
  .category-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .category-card {
    flex: 0 0 calc(80%);
  }
}

/* Desktop nav stays inline */
.nav-links {
  display: flex;
  gap: 1rem;
}

/* Mobile collapse */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #f8f9fa;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .mega-menu {
    display: none;
    flex-direction: column;
    background: #f1f1f1;
    padding: 1rem;
  }

  .mega-menu.show {
    display: flex;
  }
}

