/* =============================================
   MAIN STYLING
   ============================================= */

/* --- CSS Variables --- */
:root {
  --primary: #00692e;
  --primary-light: #00692e33;
  --accent: #dc291f;
  --accent-lt: #ec5a51;
  --accent-lt-2: #00854a;
  --bg: #f7f8fa;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 105, 46, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 105, 46, 0.13);
  --shadow-lg: 0 16px 48px rgba(0, 105, 46, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --slide-count: 3;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 50px 0;
}
.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 41, 31, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 41, 31, 0.4);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}

.btn-secondary:hover {
  background: var(--accent-lt-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 105, 46, 0.25);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 70px;
  width: auto;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.3;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .logo img {
    height: 50px;
  }

  .logo-name {
    font-size: 10px;
    letter-spacing: 2px;
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--accent);
    padding-top: 6px;
  }
}
/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: var(--primary);
}
.nav-cta {
  background: var(--accent);
  color: var(--white);
  margin-left: 8px;
  padding: 9px 16px;
  border-radius: 8px;
}
.nav-cta:hover {
  background: var(--accent-lt);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  height: 620px;
}

.slider-track {
  display: flex;
  height: 100%;
  width: calc(100% * var(--slide-count));
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Individual slide */
.slide {
  position: relative;
  width: calc(100% / var(--slide-count));
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Background image layer */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.slide.is-active .slide-bg {
  transform: scale(1);
}

/* Dark overlay */
.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 105, 46, 0.62) 0%,
    rgba(0, 105, 46, 0.35) 55%,
    rgba(0, 105, 46, 0.08) 100%
  );
}

/* Slide-specific background images */
.bg-1 {
  background-image: url("../images/slides/slide-1.jpg");
}
.bg-2 {
  background-image: url("../images/slides/slide-2.jpg");
}
.bg-3 {
  background-image: url("../images/slides/slide-3.jpg");
}

@media (max-width: 768px) {
  .bg-1 {
    background-image: url("../images/slides/slide-1-mobile.jpeg");
  }
  .bg-2 {
    background-image: url("../images/slides/slide-2-mobile.jpeg");
  }
  .bg-3 {
    background-image: url("../images/slides/slide-3-mobile.jpg");
  }
}

/* Slide content layout */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 20px;
  padding-bottom: 40px;
}

/* Text side */
.slide-text {
  max-width: 520px;
  color: var(--white);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 41, 31, 0.25);
  border: 1px solid rgba(220, 41, 31, 0.5);
  color: var(--accent-lt);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.5s ease 0.2s;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.35s,
    transform 0.55s ease 0.35s;
}
.slide-title span {
  color: var(--accent-lt);
}

.slide-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.5s,
    transform 0.55s ease 0.5s;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.62s,
    transform 0.55s ease 0.62s;
}

/* Animate text in when slide is active */
.slide.is-active .slide-badge,
.slide.is-active .slide-title,
.slide.is-active .slide-desc,
.slide.is-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Visual cards side */
.slide-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease 0.45s,
    transform 0.6s ease 0.45s;
}
.slide.is-active .slide-visual {
  opacity: 1;
  transform: translateX(0);
}

.slide-product-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  color: var(--white);
  transition: background var(--transition);
}
.slide-product-card:hover {
  background: rgba(255, 255, 255, 0.16);
}
.slide-product-card.main-card {
  min-width: 220px;
}
.slide-product-card.sm-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

/* Accent colour variants */
.slide-product-card.accent-2 {
  border-color: rgba(220, 41, 31, 0.3);
}
.slide-product-card.accent-3 {
  border-color: rgba(100, 180, 80, 0.25);
}

.spc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(220, 41, 31, 0.3);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent-lt);
}
.spc-icon-wrap.sm {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  flex-shrink: 0;
}
.spc-icon-wrap.acc2 {
  background: rgba(220, 41, 31, 0.25);
}
.spc-icon-wrap.acc3 {
  background: rgba(100, 180, 80, 0.2);
  color: #8fe07a;
}

.spc-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.spc-tag {
  font-size: 0.75rem;
  color: var(--accent-lt);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.slider-btn.prev {
  left: 24px;
}
.slider-btn.next {
  right: 24px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero-slider {
    height: auto;
  }

  .slider-track {
    height: auto;
  }

  .slide {
    position: relative;
    height: auto;
  }

  .slide-bg {
    position: relative;
    inset: unset;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: none !important;
    transition: none;
  }

  .slide-bg::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 105, 46, 0.05) 30%,
      rgba(0, 105, 46, 0.8) 100%
    );
  }

  .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 6px;
    padding: 16px 16px 50px;
  }

  .slide-text {
    max-width: 100%;
  }

  .slide-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    margin-bottom: 6px;
    opacity: 1 !important;
    transform: none !important;
  }

  .slide-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
  }

  .slide-actions {
    opacity: 1 !important;
    transform: none !important;
  }

  .slide-actions .btn:first-child {
    display: inline-flex;
  }

  .slide-actions .btn:last-child {
    display: none;
  }

  .slide-badge,
  .slide-visual {
    display: none;
  }

  .slider-btn {
    top: 38%;
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .slider-btn.prev {
    left: 10px;
  }
  .slider-btn.next {
    right: 10px;
  }

  .slider-dots {
    bottom: 14px;
  }
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 105, 46, 0.2), transparent);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.72rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-content .section-label {
  display: block;
}
.about-content .section-title {
  margin-bottom: 16px;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.point-icon {
  width: 28px;
  height: 28px;
  background: rgba(220, 41, 31, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-text {
  font-size: 0.92rem;
  color: var(--text);
}

/* =============================================
   FEATURED PRODUCTS
   ============================================= */
.featured-products {
  background: var(--bg);
}
.masala-section {
  background: var(--bg-alt);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 41, 31, 0.3);
}
.product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* Fallback icon (shown only when no img) */
.product-fa-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #e8f0e8, #c8d8c8);
  color: var(--primary);
  opacity: 0.5;
}
.product-img img ~ .product-fa-icon {
  display: none;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-variations {
  font-size: 0.78rem;
  color: var(--muted);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.83rem;
  border-radius: 6px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(220, 41, 31, 0.1);
  border-radius: 50%;
}
.why-us::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.why-us .section-title {
  color: var(--white);
}
.why-us .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(220, 41, 31, 0.5);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(220, 41, 31, 0.2);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  color: var(--accent-lt);
}
.feature-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* =============================================
   CALL TO ACTION BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #a8180f 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-banner p {
  opacity: 0.88;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #024a1f 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: var(--accent-lt);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-main {
  background: var(--white);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.mv-card {
  border-radius: var(--radius);
  padding: 24px;
}
.mv-card.mission {
  background: rgba(0, 105, 46, 0.05);
  border: 1px solid rgba(0, 105, 46, 0.1);
}
.mv-card.vision {
  background: rgba(220, 41, 31, 0.07);
  border: 1px solid rgba(220, 41, 31, 0.2);
}
.mv-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.mv-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.mv-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Stats banner grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* mv-icon as FA icon */
.mv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.mv-card.mission .mv-icon {
  background: rgba(0, 105, 46, 0.1);
  color: var(--primary);
}
.mv-card.vision .mv-icon {
  background: rgba(220, 41, 31, 0.15);
  color: var(--accent);
}

/* About content paragraphs */
.about-content-text {
  color: var(--muted);
  margin-bottom: 16px;
}

/* Value card icon as FA */
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0, 105, 46, 0.06);
  border: 1px solid rgba(0, 105, 46, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  color: var(--primary);
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: rgba(220, 41, 31, 0.1);
  border-color: rgba(220, 41, 31, 0.2);
  color: var(--accent);
}

/* Contact links */
.contact-link {
  color: var(--accent);
  transition: var(--transition);
}
.contact-link:hover {
  color: var(--accent-lt);
}

/* WhatsApp button top margin variant */
.whatsapp-btn-mt {
  margin-top: 20px;
}

/* Form required star */
.form-required {
  color: #dc2626;
}

/* Map section */
.map-section {
  background: var(--bg);
}
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 320px;
  background: linear-gradient(135deg, #e8eef6, #cdd8ea);
  display: grid;
  place-items: center;
  text-align: center;
}
.map-placeholder-icon {
  font-size: 2.8rem;
  color: var(--primary);
  opacity: 0.35;
  display: block;
  margin-bottom: 14px;
}
.map-placeholder h3 {
  font-family: var(--font-head);
  color: var(--primary);
  margin-bottom: 8px;
}
.map-placeholder p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

/* Contact info-card icon FA */
.info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 105, 46, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--primary);
}

/* About image — real photo */
.about-img-box-tall {
  aspect-ratio: 4/4;
}

/* Responsive stats */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-section {
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(220, 41, 31, 0.3);
}
.value-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-page {
  background: var(--bg);
}
.products-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(220, 41, 31, 0.06);
}

/* Empty state */
.products-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.products-empty i {
  font-size: 3rem;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
}
.products-empty p {
  font-size: 1rem;
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail-section {
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT: Image ── */
.detail-img-col {
  position: sticky;
  top: 100px;
}
.detail-img-main {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.detail-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-img-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8eef6, #cdd8ea);
  display: grid;
  place-items: center;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.4;
}

/* ── RIGHT: Info ── */
.detail-info .section-label {
  display: block;
  margin-bottom: 6px;
}
.detail-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.detail-desc {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}
.detail-desc p {
  margin-bottom: 12px;
}
.variations-section {
  margin-bottom: 28px;
}
.variations-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.variations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.variation-chip {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.variation-chip:hover,
.variation-chip.selected {
  border-color: var(--accent);
  background: rgba(220, 41, 31, 0.08);
  color: var(--accent);
}
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   PRODUCT TABS SECTION
   ============================================= */
.product-tabs-section {
  background: var(--white);
  padding-top: 0;
}

.ptabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}
.ptab-btn {
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ptab-btn:hover {
  color: var(--primary);
}
.ptab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.ptab-panel {
  display: none;
}
.ptab-panel.active {
  display: block;
}

/* Tab: Description */
.ptab-desc-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.ptab-desc-text {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.95rem;
}
.ptab-desc-text p {
  margin-bottom: 16px;
}
.ptab-desc-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ptab-highlight-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.ptab-highlight-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.ptab-highlight-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
}
.ptab-highlight-box p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Tab: Product Details */
.ptab-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}
.ptab-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.ptab-detail-row:nth-child(odd) {
  border-right: 1px solid var(--border);
}
.ptab-detail-row:nth-last-child(-n + 2) {
  border-bottom: none;
}
.ptab-detail-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.ptab-detail-label i {
  color: var(--accent);
  width: 14px;
}
.ptab-detail-value {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: right;
}
.detail-stock {
  color: #16a34a !important;
  font-weight: 600;
}

/* Tab: Shipping */
.ptab-shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ptab-ship-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.ptab-ship-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.ptab-ship-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.ptab-ship-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Related ── */
.related-section {
  background: var(--bg);
}

/* ── 404 ── */
.not-found-section {
  background: var(--white);
}
.not-found-wrap {
  text-align: center;
  padding: 100px 0;
}
.not-found-icon {
  font-size: 4rem;
  color: var(--border);
  margin-bottom: 24px;
  display: block;
}
.not-found-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.not-found-wrap p {
  color: var(--muted);
  margin-bottom: 28px;
}
/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  align-items: flex-start;
}
.info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 105, 46, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--primary);
}
.info-card-title {
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}
.info-card-value {
  color: var(--muted);
  font-size: 0.92rem;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 41, 31, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-error {
  display: none;
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 4px;
}
.form-success {
  display: none;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #16a34a;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--white);
  color: var(--primary);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 5px;
  padding-right: 20px;
  transition: opacity 0.3s ease-in-out;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.3;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--primary);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  text-align: center;
  color: var(--accent);
}
.footer-contact-link {
  color: var(--muted);
  transition: var(--transition);
}
.footer-contact-link:hover {
  color: var(--accent);
}
.footer-brand-link {
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}
.footer-brand-link:hover {
  color: var(--accent);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-policy-links a {
  color: inherit;
  text-decoration: none;
  margin: 0 5px;
}

.footer-policy-links a:hover {
  opacity: 1;
  color: var(--accent);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(220, 41, 31, 0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  cursor: pointer;
}
#scrollTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
}

/* WhatsApp Floating Button */
#whatsappFloat {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: #25d366;
  color: #ffffff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  text-decoration: none;
}
#whatsappFloat.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#whatsappFloat:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* =============================================
   ANIMATIONS / FADE-UP
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}
.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-4-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .hamburger {
    display: flex;
  }

  .hero-slider {
    height: auto;
  }
  .slide-content {
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 80px;
  }
  .slide-visual {
    display: none;
  }
  .slide-text {
    max-width: 100%;
    text-align: center;
  }
  .slide-actions {
    justify-content: center;
  }
  .slide-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid,
  .about-full-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-badge {
    bottom: -10px;
    right: 10px;
  }
  .products-grid,
  .products-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-vision {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .products-4-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .slide-actions {
    flex-direction: column;
  }
  .slide-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   MOBILE NAV 
   ============================================= */

/* Desktop nav — mobile pe hide */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}

/* Mobile nav — desktop pe hide */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-nav.open {
    max-height: 300px;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 8px 0 12px;
    margin: 0;
  }
  .mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }
  .mobile-nav ul li:last-child a {
    border-bottom: none;
  }
  .mobile-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
  }
  .mobile-nav ul li a.active {
    color: var(--accent-lt);
    border-left: 3px solid var(--accent);
    padding-left: 21px;
  }
  .mobile-nav ul li a i {
    width: 18px;
    text-align: center;
    color: var(--accent-lt);
    font-size: 0.85rem;
  }
}

/* =============================================
   GENERAL STYLING
   ============================================= */

/* Cart Link */
.nav-cart .cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--primary);
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.nav-cart .cart-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* Badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  line-height: 1;
}

/* Mobile Badge */
.mobile-cart-badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 30px;
}
.qty-selector input {
  width: 40px;
  text-align: center;
  border: 0;
}
.qty-selector input:focus {
  border: 0;
  outline: none;
}

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
  text-align: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar-text {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.top-bar-text i {
  color: var(--accent-lt);
}
@media (max-width: 576px) {
  .top-bar-text {
    font-size: 12px;
  }
}
/*/13/7/26*/
   .categories-dropdown{
    position:relative;
}

.categories-menu,
.submenu{
    list-style:none;
    margin:0;
    padding:8px 0;
    background:#fff;
    position:absolute;
    min-width:220px;
    display:none;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    z-index:999;
}

.categories-menu{
    top:100%;
    left:0;
}

.submenu{
    top:0;
    left:100%;
}

.categories-dropdown:hover>.categories-menu{
    display:block;
}

.has-submenu{
    position:relative;
}

.has-submenu:hover>.submenu{
    display:block;
}

.categories-menu li a,
.submenu li a{
    display:block;
    padding:10px 15px;
    color:#333;
    text-decoration:none;
    border-radius: 0 !important;
}

.categories-menu li a:hover,
.submenu li a:hover{
    background: var(--primary);
}
/* =============================================
   CATEGORIES GIRD
   ============================================= */

.categories-section {
  background: var(--white);
}

/* ---- Bento grid shell ---- */
.category-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

/* Big centre-piece — flagship category, spans 2 cols x 2 rows */
.cat-big {
  grid-column: 2 / span 2;
  grid-row: 1 / span 2;
}

/* Four small squares framing the big card */
.cat-sm-1 {
  grid-column: 1;
  grid-row: 1;
}
.cat-sm-2 {
  grid-column: 1;
  grid-row: 2;
}
.cat-sm-3 {
  grid-column: 4;
  grid-row: 1;
}
.cat-sm-4 {
  grid-column: 4;
  grid-row: 2;
}

/* ---- Card (generic — image + top label, fully clickable) ---- */
.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: linear-gradient(135deg, #e8f0e8, #c8d8c8);
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.07);
}

/* Scrim so the label stays readable over any photo */
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 42, 19, 0.55) 0%,
    rgba(19, 42, 19, 0.05) 35%,
    rgba(19, 42, 19, 0) 100%
  );
  z-index: 1;
}

/* Label — sits at the top of the image, no icons */
.category-label {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
}
.cat-big .category-label {
  font-size: 1.35rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .category-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .cat-big {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .cat-sm-1 {
    grid-column: 1;
    grid-row: 2;
  }
  .cat-sm-2 {
    grid-column: 2;
    grid-row: 2;
  }
  .cat-sm-3 {
    grid-column: 1;
    grid-row: 3;
  }
  .cat-sm-4 {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 480px) {
  .category-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .cat-big,
  .cat-sm-1,
  .cat-sm-2,
  .cat-sm-3,
  .cat-sm-4 {
    grid-column: 1;
    grid-row: auto;
  }
}
.cart-item-qty{
  margin-bottom: 10px;
}
/* #toast-container div{
background-color: var(--primary) !important;
} */