/* ==========================================================================
   AARON AGRO — PREMIUM GLASSMORPHIC STYLESHEET
   ========================================================================== */

:root {
  --green: #063b2a;
  --emerald: #0b5d3b;
  --deep: #041a13;
  --cream: #f6f0e3;
  --white: #ffffff;
  --off: #fffdf7;
  --gold: #c8a85a;
  --gold-glow: rgba(200, 168, 90, 0.35);
  --lime: #8fc74a;
  --lime-glow: rgba(143, 199, 74, 0.35);
  --muted: #62716a;
  --line: rgba(6, 59, 42, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.85);
  --shadow-glass: 0 20px 50px rgba(4, 26, 19, 0.07);
  --shadow-hover: 0 30px 70px rgba(11, 93, 59, 0.18);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--cream);
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(143, 199, 74, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 45%, rgba(200, 168, 90, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 30% 85%, rgba(11, 93, 59, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1360px, calc(100% - 40px));
  margin: auto;
}

/* Glassmorphism primitives */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.dark-glass {
  background: rgba(4, 26, 19, 0.72);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* Topbar (Pre-header) */
.topbar {
  background: #031710;
  color: #dce9df;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 95;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-tag {
  color: #cde4d3;
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.25);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ecd58a;
  font-weight: 700;
  transition: all 0.25s ease;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(236, 213, 138, 0.1);
  border: 1px solid rgba(236, 213, 138, 0.2);
}

.topbar-phone svg {
  display: block;
}

.topbar-phone:hover {
  background: rgba(236, 213, 138, 0.22);
  color: #fff;
  transform: translateY(-1px);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social-label {
  font-size: 11px;
  color: #9eb3a5;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-social {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.tb-social.tb-insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.tb-social.tb-fb {
  background: #1877f2;
}

.tb-social.tb-yt {
  background: #ff0000;
}

.tb-social:hover {
  transform: translateY(-2px) scale(1.15);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(246, 240, 227, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(6, 59, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(246, 240, 227, 0.94);
  box-shadow: 0 12px 35px rgba(4, 26, 19, 0.08);
}

.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  width: 124px;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 750;
  color: #244237;
  position: relative;
  transition: color 0.25s ease;
  padding: 6px 2px;
}

.nav-links a:hover {
  color: var(--emerald);
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--lime));
  transition: right 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover:after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--deep);
  transition: all 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 14px rgba(4, 26, 19, 0.05);
}

.icon-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.25);
  box-shadow: 0 12px 28px rgba(11, 93, 59, 0.15);
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--emerald), var(--green));
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(11, 93, 59, 0.3);
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--deep);
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 120px);
  min-height: calc(100dvh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #041a13 0%, #063b2a 50%, #0b5d3b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(200, 168, 90, 0.24), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(143, 199, 74, 0.2), transparent 38%);
  pointer-events: none;
}

.hero-inner {
  width: 90%;
  min-height: auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 36px;
  position: relative;
  padding: 40px 0;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

.hero h1 {
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 1.02;
  margin: 14px 0 20px;
  letter-spacing: -0.04em;
  max-width: 800px;
  font-weight: 900;
}

.hero h1 em {
  color: #bfe48d;
  font-style: normal;
  background: linear-gradient(135deg, #d4f59c, #8fc74a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: #d9e8dd;
  max-width: 620px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #fffdf7, #f6f0e3);
  color: var(--green);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn.primary:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-4px);
}

.trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #d9e8dd;
  font-size: 12.5px;
  font-weight: 700;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual {
  height: clamp(300px, 42vh, 390px);
  min-height: 280px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: #041a13;
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-visual video,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  border: 0;
  outline: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}

.hero-glass {
  position: relative;
  z-index: 2;
  width: min(340px, 85%);
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.hero-glass strong {
  display: block;
  font-size: 38px;
  line-height: 1.05;
  margin: 10px 0;
  font-weight: 900;
}

.hero-glass span {
  font-size: 12px;
  color: #e3ede6;
  font-weight: 700;
}

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(4, 26, 19, 0.03);
}

.feature-strip div {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  color: var(--green);
  transition: all 0.3s ease;
}

.feature-strip div:hover {
  background: rgba(11, 93, 59, 0.05);
  color: var(--emerald);
}

.feature-strip div:last-child {
  border-right: 0;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 0;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--deep);
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* About Us Section & Agricultural Content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.about-image {
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
  background: var(--green);
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(4, 26, 19, 0.14);
}

.about-badge strong {
  font-size: 36px;
  display: block;
  color: var(--emerald);
  line-height: 1;
  font-weight: 900;
}

.about-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Impact stats strip */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.impact-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(4, 26, 19, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.3);
  box-shadow: 0 16px 35px rgba(11, 93, 59, 0.12);
}

.impact-card strong {
  font-size: 26px;
  color: var(--emerald);
  display: block;
  font-weight: 900;
  line-height: 1.1;
}

.impact-card span {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/* Agricultural Pillars */
.agro-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.agro-pillar {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.agro-pillar:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.3);
  box-shadow: 0 14px 30px rgba(11, 93, 59, 0.1);
}

.agro-pillar-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(11, 93, 59, 0.1);
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  flex: 0 0 auto;
}

.agro-pillar-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--deep);
  margin-bottom: 2px;
}

.agro-pillar-text p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* Products Section & 3-Column Grid */
.products-bg {
  background: linear-gradient(180deg, #fffdf7 0%, #eef3e7 50%, #f6f0e3 100%);
  position: relative;
}

.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.field {
  border: 1px solid rgba(6, 59, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 13px 18px;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(4, 26, 19, 0.03);
}

.field:focus {
  border-color: var(--emerald);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 93, 59, 0.12);
}

.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 35px;
}

.pill {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 59, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  color: var(--green);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(4, 26, 19, 0.04);
}

.pill:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.3);
  box-shadow: 0 10px 24px rgba(4, 26, 19, 0.08);
}

.pill.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(6, 59, 42, 0.25);
}

/* ==========================================================================
   PRODUCT GRID: 3 COLUMNS PER ROW WITH RICH CARD HOVER & LIKE BUTTON
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.product-card {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 35px rgba(4, 26, 19, 0.05);
  display: flex;
  flex-direction: column;
}

/* Shine reflection line on card */
.product-card:before {
  content: "";
  position: absolute;
  inset: -40% auto auto -60%;
  width: 45%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: rotate(20deg) translateX(-180%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 5;
}

.product-card:hover:before {
  transform: rotate(20deg) translateX(550%);
}

/* Strong Product Card Hover State */
.product-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 237, 0.92));
  border-color: rgba(11, 93, 59, 0.38);
  box-shadow: 0 24px 55px rgba(11, 93, 59, 0.16), 0 0 0 1px rgba(11, 93, 59, 0.18);
}

.product-image {
  width: 100% !important;
  box-sizing: border-box !important;
  height: 270px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  position: relative !important;
  border-bottom: 1px solid rgba(6, 59, 42, 0.08) !important;
  padding: 14px !important;
  margin: 0 !important;
}

.product-image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: auto !important;
  padding: 0 !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease !important;
}

.product-card:hover .product-image img {
  transform: scale(1.05) !important;
  filter: saturate(1.08) !important;
}

.placeholder {
  display: none;
  place-items: center;
  color: var(--emerald);
  font-size: 40px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: linear-gradient(135deg, #d8ba6b, #b79340);
  color: #041a13;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200, 168, 90, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Like / Wishlist Heart Button */
.wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 4;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #7a8a81;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(4, 26, 19, 0.08);
}

.wish:hover {
  transform: scale(1.15);
  color: #e53935;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.25);
  border-color: rgba(229, 57, 53, 0.2);
}

.wish.active {
  color: #e53935;
  background: #fff5f5;
  border-color: rgba(229, 57, 53, 0.35);
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.3);
  animation: heartPop 0.45s ease forwards;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35) rotate(-6deg); }
  100% { transform: scale(1) rotate(0); }
}

.product-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.cat {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 900;
}

.product-content h3 {
  margin: 5px 0 3px;
  font-size: 18px;
  font-weight: 900;
  color: var(--deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mini-rating {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c49d3d;
  margin: 3px 0 6px;
  font-weight: 700;
}

.mini-rating span {
  color: #738178;
  letter-spacing: 0;
  font-size: 10.5px;
}

.product-content p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 8px;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  font-size: 18px;
  font-weight: 900;
  color: var(--deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.old {
  text-decoration: line-through;
  color: #9aa39e;
  font-size: 12px;
  font-weight: 600;
}

.pack-mini {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.pack-mini span {
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(6, 59, 42, 0.05);
  color: var(--green);
  border: 1px solid rgba(6, 59, 42, 0.08);
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(6, 59, 42, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.small-btn {
  border: 0;
  border-radius: 11px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 12px;
  min-height: 38px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.small-btn.primary {
  background: linear-gradient(135deg, var(--green), var(--emerald));
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 59, 42, 0.2);
}

.small-btn.primary:hover {
  background: linear-gradient(135deg, var(--emerald), #0e7047);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11, 93, 59, 0.3);
}

.small-btn.ghost {
  background: rgba(6, 59, 42, 0.06);
  color: var(--green);
}

.small-btn.ghost:hover {
  background: rgba(6, 59, 42, 0.12);
  transform: translateY(-2px);
}

/* ==========================================================================
   WHY CHOOSE US: ATTRACTIVE, MEANINGFUL, STRONG HOVER & ANIMATIONS
   ========================================================================== */
.dark {
  background: radial-gradient(circle at 50% 20%, #082d21 0%, #041a13 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dark .section-head h2 {
  color: #ffffff;
}

.dark .section-head p {
  color: #b8c9be;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.why-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(11, 93, 59, 0.35), rgba(7, 31, 23, 0.8));
  border-color: rgba(143, 199, 74, 0.45);
  box-shadow: 0 30px 75px rgba(11, 93, 59, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.why-card:hover:before {
  opacity: 1;
}

.why-number {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(200, 168, 90, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 168, 90, 0.25);
}

.why-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(143, 199, 74, 0.15);
  border: 1px solid rgba(143, 199, 74, 0.3);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #a4e55e;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover .why-icon-badge {
  background: var(--lime);
  color: #041a13;
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 12px 28px rgba(143, 199, 74, 0.45);
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 850;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.why-card p {
  color: #b7c9bd;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(4, 26, 19, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.3);
  box-shadow: 0 24px 55px rgba(11, 93, 59, 0.15);
}

.process-image {
  height: 175px;
  margin: -28px -28px 22px;
  background: linear-gradient(145deg, #edf4e8, #fffdf7);
  position: relative;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-card:hover .process-image img {
  transform: scale(1.08);
}

.process-image span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-size: 10px;
  color: #819087;
  background: linear-gradient(135deg, rgba(6, 59, 42, 0.08), rgba(255, 255, 255, 0.65));
  opacity: 0;
  transition: 0.3s;
}

.process-image.image-placeholder span {
  opacity: 1;
  align-items: end;
  padding-bottom: 13px;
}

.process-image.image-placeholder:before {
  content: '🌱';
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  z-index: 1;
}

.process-card b {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: inline-block;
  font-weight: 900;
}

.process-card h3 {
  font-size: 21px;
  margin: 8px 0 6px;
  font-weight: 850;
  color: var(--deep);
}

.process-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(4, 26, 19, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.gallery-grid img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 20px 45px rgba(11, 93, 59, 0.18);
}

/* Contact Box Banner */
.contact-box {
  background: linear-gradient(135deg, var(--green), var(--emerald));
  color: #fff;
  padding: 60px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 25px 70px rgba(4, 26, 19, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-box h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 16px;
  font-weight: 900;
}

.contact-box p {
  color: #d7e8dc;
  font-size: 16px;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details a, .contact-details div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

/* ==========================================================================
   FOOTER & CIRCULAR SOCIAL MEDIA ICONS (MATCHING USER REFERENCE IMAGE)
   ========================================================================== */
.footer {
  background: #03150f;
  color: #c5d5cb;
  padding: 75px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer h4 {
  color: #fff;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 850;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: #aebfb5;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer a:hover {
  color: #fff;
}

.footer-brand img {
  width: 130px;
  height: 75px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
}

.footer-brand-block p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.65;
  color: #9cb0a4;
  margin: 16px 0;
}

/* Circular Social Links matching user image */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center;
  color: #ffffff !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* 1. LinkedIn: Brand Blue #0a66c2 */
.social.linkedin {
  background: #0a66c2 !important;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.4) !important;
}

/* 2. Instagram: Brand Gradient */
.social.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
  box-shadow: 0 6px 18px rgba(214, 36, 159, 0.4) !important;
}

/* 3. Facebook: Brand Blue #1877f2 */
.social.facebook {
  background: #1877f2 !important;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4) !important;
}

/* 4. YouTube: Brand Red #ff0000 */
.social.youtube {
  background: #ff0000 !important;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.4) !important;
}

/* Social Hover Animations */
.social:hover {
  transform: translateY(-5px) scale(1.12) !important;
}

.social.linkedin:hover {
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.6) !important;
}

.social.instagram:hover {
  box-shadow: 0 12px 28px rgba(214, 36, 159, 0.6) !important;
}

.social.facebook:hover {
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.6) !important;
}

.social.youtube:hover {
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.6) !important;
}

.footer-whatsapp {
  display: inline-block !important;
  margin-top: 14px !important;
  color: #8ee3ae !important;
  font-weight: 800;
}

.footer-whatsapp:hover {
  color: #fff !important;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #889e91;
  white-space: nowrap;
}

.fb-copy,
.fb-dev {
  white-space: nowrap !important;
  display: inline-block;
}

.footer-bottom a {
  color: #a3e6be;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap !important;
  transition: all 0.25s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Floating Actions */
.floating {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-btn:hover {
  transform: scale(1.15) rotate(4deg);
}

.call {
  background: #0b5d3b !important;
}

.wa {
  background: #25d366 !important;
}

.chat-launch {
  position: fixed;
  left: 20px;
  bottom: 18px;
  z-index: 990;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--gold) !important;
  color: var(--deep) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  display: grid !important;
  place-items: center;
  animation: pulse 2.4s infinite;
  cursor: pointer;
}

.chat-launch svg {
  width: 24px;
  height: 24px;
}

/* Chat Assistant Panel */
.chat {
  position: fixed;
  left: 20px;
  bottom: 76px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: min(390px, calc(100vh - 120px));
  max-height: calc(100vh - 120px);
  z-index: 999;
  background: rgba(255, 253, 247, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(6, 59, 42, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: none;
  overflow: hidden;
}

.chat.open {
  display: flex;
  flex-direction: column;
}

.chat-head {
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.chat-head strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.chat-head small {
  display: block;
  color: #cfe2d5;
  font-size: 10.5px;
  line-height: 1.2;
  margin-top: 2px;
}

.chat-head button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-head button:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.chat-messages {
  flex: 1;
  min-height: 0;
  padding: 14px 14px 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 59, 42, 0.2) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(6, 59, 42, 0.2);
  border-radius: 10px;
}

.msg {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 14px;
  margin: 6px 0;
  font-size: 12.5px;
  line-height: 1.45;
}

.bot {
  background: #edf2e8;
  color: var(--deep);
}

.user {
  background: var(--green);
  color: #fff;
  margin-left: auto;
}

.chat-product-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.chat-product {
  display: block;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(6, 59, 42, 0.12);
  text-decoration: none;
  transition: all 0.2s ease;
}

.chat-product:hover {
  border-color: var(--green);
  background: #f4faee;
  transform: translateX(3px);
}

.chat-product strong {
  display: block;
  font-size: 12px;
  color: var(--deep);
}

.chat-product span {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
}

.chat-link {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 12px;
  background: var(--green);
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
}

.quick {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 12px;
  flex-shrink: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quick::-webkit-scrollbar {
  display: none;
}

.quick button {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick button:hover {
  background: #f4faee;
  border-color: var(--green);
}

.chat-input {
  display: flex;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.65);
}

.chat-input input {
  flex: 1;
  border: 0;
  padding: 11px 14px;
  outline: 0;
  background: transparent;
  font-size: 12.5px;
  font-family: inherit;
  color: var(--deep);
}

.chat-input button {
  width: 44px;
  border: 0;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chat-input button:hover {
  background: var(--emerald);
}

.chat-input svg {
  width: 18px;
  height: 18px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--deep);
  color: #fff;
  padding: 14px 22px;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: 0.3s;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Page hero */
.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, var(--deep), var(--emerald));
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin: 10px 0;
  font-weight: 900;
}

.breadcrumbs {
  color: #c9d9cf;
  font-size: 13px;
  font-weight: 700;
}

/* Compact detail page hero */
.detail-page-hero {
  padding: 28px 0 22px;
}

.detail-page-hero h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 6px 0 0;
  letter-spacing: -0.02em;
}

.detail-page-hero .breadcrumbs {
  font-size: 12.5px;
  opacity: 0.9;
}

.detail-page-hero .breadcrumbs a {
  color: #d1e4d8;
  transition: color 0.2s;
}

.detail-page-hero .breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.detail-page-hero .breadcrumbs span {
  color: #e5b958;
  font-weight: 800;
}

/* ==========================================================================
   PRODUCT DETAIL: STRUCTURED, LUXURY GLASSMORPHIC ECOMMERCE SHOWCASE
   ========================================================================== */
.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 40px;
  align-items: start;
}

.detail-media-column {
  position: sticky;
  top: 100px;
}

.premium-image-frame {
  min-height: 380px;
  height: clamp(380px, 48vh, 460px);
  border-radius: 28px !important;
  background: radial-gradient(circle at 50% 25%, #ffffff 0%, #f6faf2 60%, #e5efe1 100%) !important;
  box-shadow: var(--shadow-glass) !important;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px !important;
}

.premium-image-frame img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: auto !important;
  padding: 0 !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-image-frame:hover img {
  transform: scale(1.06) !important;
}

.image-zoom-hint {
  position: absolute;
  bottom: 16px;
  font-size: 11px;
  color: #556b5d;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-weight: 750;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.product-guarantee-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.guarantee-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(4, 26, 19, 0.03);
}

.guarantee-item .g-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(11, 93, 59, 0.08);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.guarantee-item strong {
  display: block;
  font-size: 11.5px;
  color: var(--deep);
  font-weight: 800;
  line-height: 1.2;
}

.guarantee-item small {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
}

.sale-chip {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 4;
  background: linear-gradient(135deg, var(--gold), #d9a838);
  color: var(--deep);
  font-size: 11px;
  font-weight: 900;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 18px rgba(200, 168, 90, 0.35);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(4, 26, 19, 0.06);
  border-radius: 30px;
}

.detail-purchase {
  padding: 38px 40px;
}

.detail-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-pill {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(11, 93, 59, 0.09);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 93, 59, 0.18);
}

.form-pill {
  font-size: 11px;
  font-weight: 800;
  color: #55695e;
  background: rgba(0, 0, 0, 0.05);
  padding: 5px 11px;
  border-radius: 999px;
}

.stock-dot {
  font-size: 11.5px;
  font-weight: 900;
  color: #127544;
  background: rgba(18, 117, 68, 0.12);
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(18, 117, 68, 0.2);
}

.detail-title {
  font-size: clamp(36px, 4.2vw, 54px) !important;
  margin: 14px 0 4px !important;
  color: var(--deep);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.detail-tagline-text {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: 14px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #637369;
}

.stars {
  color: #d19a1e;
  letter-spacing: 0.12em;
  font-size: 15px;
}

.detail-price-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 237, 0.85));
  border-radius: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(11, 93, 59, 0.18);
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(11, 93, 59, 0.05);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-row strong {
  font-size: 34px;
  color: var(--deep);
  font-weight: 900;
}

.price-row del {
  color: #9aa49e;
  font-weight: 700;
  font-size: 18px;
}

.discount-badge {
  background: #e2f2de;
  color: #127544;
  font-size: 11.5px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 117, 68, 0.2);
}

.savings-tag {
  background: #fff4d4;
  color: #8c6700;
  font-size: 11.5px;
  font-weight: 850;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(140, 103, 0, 0.2);
}

.price-notice {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 12px;
  color: #55695e;
  flex-wrap: wrap;
}

.detail-lead {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5b6c62;
  margin-bottom: 20px;
}

.composition-highlight {
  background: rgba(200, 168, 90, 0.09);
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 14px 18px;
  margin: 18px 0;
  border-top: 1px solid rgba(200, 168, 90, 0.15);
  border-bottom: 1px solid rgba(200, 168, 90, 0.15);
  border-right: 1px solid rgba(200, 168, 90, 0.15);
}

.composition-highlight strong {
  font-size: 12px;
  color: var(--deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.composition-highlight p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #495850;
  line-height: 1.55;
  font-weight: 600;
}

.purchase-block {
  margin: 20px 0;
}

.block-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.purchase-block label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--deep);
}

.selected-label {
  font-size: 12px;
  color: var(--muted);
}

.selected-label b {
  color: var(--emerald);
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 20px;
  min-width: 105px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(4, 26, 19, 0.03);
}

.size-option:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(6, 59, 42, 0.12);
}

.size-option.active {
  background: linear-gradient(135deg, var(--green), var(--emerald));
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(6, 59, 42, 0.25);
}

.size-name {
  font-size: 14px;
  font-weight: 900;
}

.size-price {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
}

.size-option.active .size-price {
  color: #d7f4be;
}

.qty-and-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.premium-qty {
  width: max-content;
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 4px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.premium-qty button {
  border: 0;
  background: transparent;
  font-size: 20px;
  color: var(--green);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 900;
}

.premium-qty strong {
  font-size: 16px;
  min-width: 32px;
  text-align: center;
}

.subtotal-display {
  text-align: right;
}

.subtotal-display small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subtotal-display strong {
  font-size: 26px;
  color: var(--emerald);
  font-weight: 900;
  line-height: 1.1;
}

.premium-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 28px 0 22px;
  flex-wrap: wrap;
}

.big-action {
  min-height: 56px;
  padding: 0 28px !important;
  flex: 1.2;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.wa-action {
  background: linear-gradient(135deg, #25D366, #1b9b4b) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35) !important;
  padding: 0 22px !important;
  min-height: 56px;
  font-weight: 850;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5) !important;
}

.wishlist-action {
  min-height: 56px;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--deep);
  font-weight: 900;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.wishlist-action:hover, .wishlist-action.active {
  background: #ffebe8;
  border-color: #ffb8b0;
  color: #e53e3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.18);
}

.spec-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.spec-chip {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(6, 59, 42, 0.04);
  border: 1px solid rgba(6, 59, 42, 0.08);
  text-align: center;
}

.sc-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sc-val {
  display: block;
  font-size: 12.5px;
  color: var(--deep);
  margin-top: 3px;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   PRODUCT DETAIL TABS: SCIENCE, BENEFITS, DOSAGE, CROPS, SPECS
   ========================================================================== */
.product-detail-content {
  margin-top: 50px;
}

.detail-tabs-card {
  padding: 38px 42px;
}

.modern-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.modern-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 850;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #ffffff;
  color: var(--deep);
  border-color: var(--line);
}

.tab-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(6, 59, 42, 0.25);
}

.detail-tab-panel {
  padding-top: 30px;
}

.tab-rich-content h3 {
  font-size: 26px;
  color: var(--deep);
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.tab-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 25px;
}

.tab-lead-para {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a5c52;
  margin-bottom: 24px;
}

.science-callout {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 93, 59, 0.08), rgba(200, 168, 90, 0.08));
  border: 1px solid rgba(11, 93, 59, 0.18);
  margin: 22px 0;
  box-shadow: 0 10px 25px rgba(4, 26, 19, 0.03);
}

.callout-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
}

.callout-body h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--emerald);
  font-weight: 900;
}

.callout-body p {
  margin: 0;
  font-size: 14px;
  color: #425248;
  line-height: 1.65;
}

.comp-detail-card {
  padding: 20px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  margin: 18px 0;
}

.comp-detail-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--deep);
  font-weight: 850;
}

.comp-detail-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.content-callout {
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(6, 59, 42, 0.04);
  border: 1px solid var(--line);
  margin-top: 20px;
}

.content-callout strong {
  display: block;
  font-size: 12px;
  color: var(--deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-callout span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* Benefit Cards */
.benefit-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-card {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(6, 59, 42, 0.1);
  box-shadow: 0 6px 20px rgba(4, 26, 19, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 93, 59, 0.35);
  box-shadow: 0 16px 35px rgba(11, 93, 59, 0.1);
}

.b-icon-wrap {
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(11, 93, 59, 0.08);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.b-text strong {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  font-weight: 900;
}

.b-text p {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: #3f4e45;
  line-height: 1.55;
  font-weight: 600;
}

/* Dosage Grid */
.dosage-grid-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dosage-box {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(4, 26, 19, 0.03);
}

.dosage-box .dh {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.dosage-box .d-icon {
  font-size: 20px;
}

.dosage-box .dh strong {
  font-size: 15px;
  color: var(--deep);
  font-weight: 850;
}

.dosage-box .d-rate {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: var(--emerald);
  background: rgba(11, 93, 59, 0.08);
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(11, 93, 59, 0.15);
}

.dosage-box p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.timing-strip {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #fff9e6;
  border: 1px solid #fae19c;
  color: #7a5400;
  font-size: 13.5px;
  font-weight: 600;
}

/* Crop Category Grid */
.crop-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.crop-group-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(4, 26, 19, 0.03);
}

.cg-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cg-icon {
  font-size: 22px;
}

.cg-head strong {
  font-size: 16px;
  color: var(--deep);
  font-weight: 850;
}

.cg-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Spec Table */
.spec-table-enhanced {
  display: grid;
  gap: 10px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 14px;
}

.sr-label {
  color: var(--muted);
  font-weight: 750;
}

.sr-val {
  color: var(--deep);
  font-weight: 850;
  text-align: right;
}

/* Related Formulations */
.related-section {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

/* FAQ, Cart, Form Grids */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  font-size: 15.5px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  transition: 0.35s;
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* ==========================================================================
   CART, SHIPPING, CHECKOUT & ORDER SUCCESS: LUXURY ECOMMERCE EXPERIENCE
   ========================================================================== */
.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.form-card, .summary-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 16px 45px rgba(4, 26, 19, 0.06);
}

.cart-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-header-row h2 {
  margin: 0;
  font-size: 24px;
  color: var(--deep);
  font-weight: 900;
}

.clear-cart-link {
  background: none;
  border: 0;
  color: #c62828;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

.clear-cart-link:hover {
  background: #ffebee;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(4, 26, 19, 0.03);
  transition: all 0.28s ease;
}

.cart-item-card:hover {
  border-color: rgba(11, 93, 59, 0.25);
  box-shadow: 0 8px 24px rgba(4, 26, 19, 0.07);
}

.cart-thumb {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  background: #f4f8ee;
  border: 1px solid rgba(6, 59, 42, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-cat {
  font-size: 10.5px;
  font-weight: 900;
  color: var(--emerald);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-title {
  font-size: 16.5px;
  font-weight: 900;
  color: var(--deep);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-title:hover {
  color: var(--emerald);
}

.cart-pack-badge {
  font-size: 12px;
  color: #495950;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-pack-badge strong {
  color: var(--deep);
  background: rgba(6, 59, 42, 0.06);
  padding: 2px 8px;
  border-radius: 6px;
}

.cart-unit-price {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.cart-actions-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-line-total {
  font-size: 18px;
  font-weight: 900;
  color: var(--deep);
}

.cart-stepper-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f6f8f6;
  border: 1px solid var(--line);
  padding: 3px;
  border-radius: 12px;
}

.c-step-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  color: var(--deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.c-step-btn:hover {
  background: var(--green);
  color: #fff;
}

.c-step-val {
  min-width: 28px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 900;
  color: var(--deep);
}

.c-remove-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #9aa59f;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: all 0.2s;
}

.c-remove-btn:hover {
  background: #ffebee;
  color: #c62828;
}

.cart-guarantee-note {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(11, 93, 59, 0.06);
  border: 1px solid rgba(11, 93, 59, 0.12);
  font-size: 12px;
  color: var(--deep);
  font-weight: 700;
  text-align: center;
}

.cart-summary-sticky {
  position: sticky;
  top: 96px;
}

.summary-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-card-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.edit-cart-link {
  font-size: 12.5px;
  color: var(--emerald);
  font-weight: 800;
  text-decoration: none;
}

.edit-cart-link:hover {
  text-decoration: underline;
}

.free-badge {
  color: #127544;
  background: #e2f2de;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 900;
}

.cod-tag {
  color: #8c6700;
  background: #fff4d4;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 900;
}

.savings-alert-box {
  background: #eaf6ea;
  border: 1px solid #c2e8c2;
  color: #0e6338;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  margin: 14px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 2px solid var(--line);
  margin-top: 10px;
}

.total-label {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--deep);
}

.tax-note {
  font-size: 11px;
  color: var(--muted);
}

.total-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--deep);
}

.full-btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--emerald)) !important;
  color: #ffffff !important;
  padding: 16px 20px !important;
  font-size: 14.5px !important;
  font-weight: 900 !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 28px rgba(6, 59, 42, 0.28) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: 0 !important;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
}

.full-btn-checkout:hover {
  background: linear-gradient(135deg, var(--emerald), #0e7047) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 36px rgba(11, 93, 59, 0.38) !important;
}

.continue-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #5b6f63;
  font-weight: 750;
  text-decoration: none;
}

.continue-link:hover {
  color: var(--emerald);
  text-decoration: underline;
}

.empty-cart-card {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(4, 26, 19, 0.08);
}

.empty-icon {
  font-size: 54px;
  margin-bottom: 12px;
}

/* Shipping Page Form Layout */
.shipping-form-card {
  padding: 34px 30px;
}

.form-card-header h2 {
  margin: 0 0 6px;
  font-size: 26px;
  color: var(--deep);
  font-weight: 900;
}

.form-card-header p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.fs-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.form-section-title strong {
  font-size: 15px;
  color: var(--deep);
  font-weight: 850;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 800;
  color: #3b4c42;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  outline: none;
  font-size: 14px;
  color: var(--deep);
  transition: border-color 0.25s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 93, 59, 0.12);
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-submit-row {
  margin-top: 26px;
}

.mini-order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.mini-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.mini-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: #f4f8ee;
  padding: 4px;
  flex-shrink: 0;
}

.mini-item-meta {
  flex: 1;
  min-width: 0;
}

.mini-item-meta strong {
  display: block;
  font-size: 13px;
  color: var(--deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-item-meta div {
  font-size: 11px;
  color: var(--muted);
}

.mini-item-meta small {
  font-weight: 800;
  color: var(--emerald);
  font-size: 12px;
}

.trust-badge-strip {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tb-badge-item {
  font-size: 11.5px;
  font-weight: 750;
  color: #4a5c51;
}

/* Checkout Page Styles */
.checkout-section-box {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: 0 4px 16px rgba(4, 26, 19, 0.03);
}

.csb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.csb-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.csb-title h3 {
  margin: 0;
  font-size: 17px;
  color: var(--deep);
  font-weight: 900;
}

.csb-edit-btn {
  font-size: 12.5px;
  color: var(--emerald);
  font-weight: 800;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(11, 93, 59, 0.06);
}

.address-preview-card .ap-name {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
  color: var(--deep);
  margin-bottom: 6px;
}

.ap-phone {
  font-size: 13.5px;
  color: var(--emerald);
  font-weight: 800;
}

.ap-address {
  margin: 0 0 8px;
  font-size: 14px;
  color: #495950;
  line-height: 1.6;
}

.ap-extra, .ap-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

.payment-method-selector .payment-option {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 2px solid var(--green);
  background: #f7faf5;
  cursor: pointer;
}

.payment-option input {
  margin-top: 4px;
  accent-color: var(--green);
}

.po-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.po-title-row strong {
  font-size: 15.5px;
  color: var(--deep);
}

.po-rec-badge {
  background: #e2f2de;
  color: #127544;
  font-size: 10.5px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 999px;
}

.po-body p {
  margin: 0;
  font-size: 13px;
  color: #55695d;
  line-height: 1.5;
}

.checkout-guarantee-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.cg-item {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.cgi-icon {
  font-size: 22px;
}

.cg-item strong {
  display: block;
  font-size: 12px;
  color: var(--deep);
}

.cg-item small {
  font-size: 11px;
  color: var(--muted);
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.co-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.co-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: #f4f8ee;
  padding: 4px;
  flex-shrink: 0;
}

.co-item-details {
  flex: 1;
  min-width: 0;
}

.co-item-cat {
  display: block;
  font-size: 9.5px;
  font-weight: 900;
  color: var(--emerald);
  text-transform: uppercase;
}

.co-item-name {
  display: block;
  font-size: 13.5px;
  color: var(--deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.co-item-spec {
  font-size: 11.5px;
  color: var(--muted);
}

.co-item-price {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--deep);
  flex-shrink: 0;
}

.co-security-note {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

/* Order Success Page Layout */
.success-page-section {
  padding: 40px 0 80px;
}

.success-receipt-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 24px 70px rgba(4, 26, 19, 0.08);
}

.success-top-hero {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.success-animated-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--emerald));
  color: #fff;
  font-size: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 10px 28px rgba(11, 93, 59, 0.35);
  animation: pulse 2.4s infinite;
}

.success-top-hero h1 {
  font-size: 32px;
  color: var(--deep);
  margin: 6px 0 8px;
  font-weight: 900;
}

.success-lead-msg {
  font-size: 15.5px;
  color: #4a5c52;
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.order-meta-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: #f2f7ef;
  border: 1px solid rgba(6, 59, 42, 0.1);
  font-size: 12px;
  color: #3b4c42;
}

.meta-chip strong {
  color: var(--deep);
}

.success-actions-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.wa-confirm-big-btn {
  background: #25d366 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35) !important;
}

.wa-confirm-big-btn:hover {
  background: #20ba59 !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45) !important;
}

.print-btn {
  border-color: var(--line) !important;
  color: var(--deep) !important;
  background: #ffffff !important;
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.receipt-box {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(4, 26, 19, 0.03);
}

.rb-header h3 {
  margin: 0 0 14px;
  font-size: 16.5px;
  color: var(--deep);
  font-weight: 900;
}

.receipt-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.receipt-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f9fbf8;
  border: 1px solid var(--line);
}

.receipt-item-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.receipt-item-info {
  flex: 1;
  min-width: 0;
}

.ri-cat {
  font-size: 9.5px;
  font-weight: 900;
  color: var(--emerald);
  text-transform: uppercase;
}

.ri-name {
  display: block;
  font-size: 13.5px;
  color: var(--deep);
}

.ri-pack {
  font-size: 11.5px;
  color: var(--muted);
}

.receipt-item-total {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--deep);
}

.receipt-calc-table {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rc-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #55695e;
}

.rc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1.5px solid var(--line);
  margin-top: 4px;
  font-size: 16px;
  font-weight: 900;
  color: var(--deep);
}

.rc-total-row strong {
  font-size: 22px;
}

.receipt-dest-content {
  margin-bottom: 20px;
}

.rd-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--deep);
}

.rd-name-row span {
  font-size: 13px;
  color: var(--emerald);
  font-weight: 800;
}

.rd-address {
  margin: 0;
  font-size: 13.5px;
  color: #495950;
  line-height: 1.6;
}

.rd-extra, .rd-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.dispatch-timeline {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.dispatch-timeline h4 {
  margin: 0 0 12px;
  font-size: 13.5px;
  color: var(--deep);
  font-weight: 850;
}

.timeline-step {
  display: flex;
  gap: 12px;
  position: relative;
  padding-bottom: 14px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step:not(:last-child):before {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-step.done:before {
  background: var(--green);
}

.ts-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef4ed;
  border: 2px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-step.done .ts-dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.ts-text strong {
  display: block;
  font-size: 12.5px;
  color: var(--deep);
}

.ts-text small {
  font-size: 11px;
  color: var(--muted);
}

/* Thank You Dedicated Page */
.thankyou-card {
  max-width: 680px;
  margin: 20px auto;
  text-align: center;
  padding: 48px 36px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(4, 26, 19, 0.08);
}

.ty-icon-animated {
  font-size: 48px;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.thankyou-card h1 {
  font-size: 32px;
  color: var(--deep);
  margin: 6px 0 10px;
  font-weight: 900;
}

.ty-lead {
  font-size: 16px;
  color: #4a5c52;
  margin-bottom: 24px;
  line-height: 1.6;
}

.ty-info-box {
  background: #f7faf5;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px 22px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.ty-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: #55695e;
}

.ty-row strong {
  color: var(--deep);
  font-weight: 850;
}

.ty-timeline-box {
  background: #fffdf5;
  border-radius: 18px;
  border: 1px solid #fae8b4;
  padding: 18px 22px;
  text-align: left;
  margin-bottom: 28px;
}

.ty-timeline-box h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #7a5400;
  font-weight: 850;
}

.ty-timeline-box p {
  margin: 0;
  font-size: 13px;
  color: #614605;
  line-height: 1.7;
}

.ty-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(200, 168, 90, 0.4);
  }
  50% {
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2), 0 0 0 14px rgba(200, 168, 90, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero-inner, .about-grid, .detail-shell, .contact-box, .check-layout {
    grid-template-columns: 1fr;
  }
  .detail-media-column {
    position: relative;
    top: auto;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding: 80px 0;
  }
  .hero-visual {
    min-height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 20px, 1200px);
  }
  .topbar {
    padding: 6px 0;
  }
  .topbar-right {
    display: none !important;
  }
  .topbar-inner {
    justify-content: space-between;
    gap: 6px;
  }
  .topbar-left {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
  }
  .topbar-tag {
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #cde4d3;
    font-weight: 700;
  }
  .topbar-sep {
    display: none;
  }
  .topbar-phone {
    font-size: 11px;
    padding: 2px 7px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .topbar-phone svg {
    width: 11px;
    height: 11px;
  }
  .navbar {
    background: rgba(246, 240, 227, 0.98);
  }
  .nav-inner {
    height: 60px !important;
    gap: 12px;
  }
  .logo {
    display: flex !important;
    align-items: center !important;
    height: 100%;
  }
  .logo img {
    width: auto !important;
    height: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block !important;
  }
  .nav-actions {
    gap: 8px;
  }
  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
  }
  .menu {
    font-size: 26px;
  }
  .section {
    padding: 35px 0;
  }
  .page-hero {
    padding: 40px 0 24px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .detail-page-hero {
    padding: 14px 0 12px;
  }
  .detail-page-hero h1 {
    font-size: 20px;
    margin: 3px 0 0;
  }
  .detail-page-hero .breadcrumbs {
    font-size: 11px;
  }
  .hero-inner {
    padding: 35px 0 25px;
    gap: 24px;
  }
  .hero-visual {
    min-height: 240px;
    height: 240px;
    border-radius: 22px;
  }
  .hero-glass {
    padding: 16px 20px;
    border-radius: 20px;
    width: 90%;
  }
  .hero-glass strong {
    font-size: 24px;
    margin: 4px 0;
  }
  .hero h1 {
    font-size: 34px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-image {
    height: 240px !important;
  }
  .why-grid, .process-grid, .faq-grid, .footer-grid, .form-grid, .agro-pillar-grid, .impact-strip {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-box {
    padding: 28px 20px;
  }
  .footer-bottom {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 10.5px !important;
    white-space: nowrap !important;
    padding-top: 16px !important;
    margin-top: 30px !important;
  }
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .feature-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(246, 240, 227, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  .toolbar {
    width: 100%;
    flex-direction: column;
  }
  .field {
    width: 100%;
  }
  .detail-shell {
    gap: 24px;
  }
  .premium-image-frame {
    min-height: 280px !important;
    height: 280px !important;
    padding: 10px !important;
  }
  .detail-purchase {
    padding: 22px 18px;
    border-radius: 24px;
  }
  .detail-title {
    font-size: 30px !important;
  }
  .detail-tagline-text {
    font-size: 14px;
  }
  .detail-price-box {
    padding: 16px 18px;
  }
  .price-row strong {
    font-size: 28px;
  }
  .size-options .size-option {
    flex: 1;
    min-width: 85px;
    padding: 10px 14px;
  }
  .qty-and-subtotal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
  }
  .subtotal-display {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .premium-actions {
    flex-direction: column;
    gap: 10px;
  }
  .big-action, .wa-action, .wishlist-action {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }
  .detail-tabs-card {
    padding: 22px 16px;
    border-radius: 24px;
  }
  .tab-btn {
    padding: 10px 18px;
    font-size: 12.5px;
  }
  .benefit-card-grid, .dosage-grid-enhanced, .crop-category-grid, .product-guarantee-strip {
    grid-template-columns: 1fr;
  }
  .spec-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .sr-val {
    text-align: left;
  }
  .receipt-grid, .checkout-guarantee-strip {
    grid-template-columns: 1fr;
  }
  .cart-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cart-actions-col {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .success-receipt-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .success-actions-bar .btn {
    width: 100%;
  }
  .chat {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 74px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    height: min(400px, calc(100vh - 90px)) !important;
    max-height: calc(100vh - 90px) !important;
    border-radius: 20px !important;
    z-index: 999 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35) !important;
  }
  .chat-head {
    padding: 14px 16px !important;
  }
  .chat-head button {
    font-size: 24px !important;
    cursor: pointer !important;
  }
  .chat-messages {
    padding: 12px 14px !important;
  }
  .quick {
    padding: 6px 12px !important;
  }
  .chat-input input {
    padding: 12px 14px !important;
  }
  .floating {
    right: 12px;
    bottom: 16px;
    gap: 8px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
  .float-btn svg {
    width: 20px;
    height: 20px;
  }
  .chat-launch {
    left: 12px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
  .chat-launch svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 430px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-visual {
    min-height: 280px;
  }
  .btn, .small-btn {
    width: 100%;
  }
  .size-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   WHATSAPP CONFIRMATION FLOW & MODAL DIALOG
   ========================================================================== */

.wa-flow-card {
  background: linear-gradient(145deg, #fbfdf9 0%, #f0f7ec 100%);
  border: 2px solid #25d366;
  border-radius: 24px;
  padding: 28px;
  margin: 24px 0 32px;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.12);
  position: relative;
  overflow: hidden;
}

.wa-flow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25d366, #128c7e, #c8a85a);
}

.wa-flow-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.wa-flow-badge {
  background: #25d366;
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wa-flow-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--deep);
}

.wa-flow-lead {
  font-size: 14.5px;
  color: #43544a;
  margin: 0 0 20px;
  line-height: 1.6;
}

.wa-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.wa-step-box {
  background: #ffffff;
  border: 1px solid rgba(6, 59, 42, 0.1);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-step-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 59, 42, 0.06);
}

.wa-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eaf6eb;
  color: #128c7e;
  font-weight: 900;
  font-size: 13px;
  display: grid;
  place-items: center;
  border: 1.5px solid #25d366;
}

.wa-step-title {
  font-size: 13.5px;
  font-weight: 850;
  color: var(--deep);
  margin-top: 4px;
}

.wa-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.wa-flow-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.wa-sent-confirm-btn {
  background: linear-gradient(135deg, #063b2a, #0b5d3b) !important;
  color: #ffffff !important;
  font-size: 15.5px !important;
  font-weight: 850 !important;
  padding: 16px 28px !important;
  border-radius: 16px !important;
  border: 1.5px solid #8fc74a !important;
  box-shadow: 0 12px 30px rgba(11, 93, 59, 0.28) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.wa-sent-confirm-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 45px rgba(11, 93, 59, 0.4) !important;
  background: linear-gradient(135deg, #0b5d3b, #128c7e) !important;
}

.wa-reopen-btn {
  background: #ffffff !important;
  color: #128c7e !important;
  border: 1.5px solid #25d366 !important;
  font-size: 14px !important;
  padding: 14px 22px !important;
  border-radius: 16px !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.wa-reopen-btn:hover {
  background: #eef9ee !important;
  transform: translateY(-2px) !important;
  border-color: #128c7e !important;
}

.wa-confirmed-banner {
  background: #eaf6eb;
  border: 1.5px solid #25d366;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}

.wa-confirmed-banner strong {
  color: #063b2a;
  font-size: 14.5px;
  display: block;
}

.wa-confirmed-banner small {
  color: #3b5c46;
  font-size: 12px;
}

/* Modal Overlay & Card */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 26, 19, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-modal-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal-overlay.active .wa-modal-card {
  transform: scale(1) translateY(0);
}

.wa-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.wa-modal-card h3 {
  font-size: 22px;
  color: var(--deep);
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.35;
}

.wa-modal-card p {
  font-size: 14px;
  color: #4a5c52;
  margin: 0 0 26px;
  line-height: 1.6;
}

.wa-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wa-modal-btn-no {
  background: #f4f7f4;
  color: #3f5549;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-modal-btn-no:hover {
  background: #e8eee8;
  color: var(--deep);
}

.wa-modal-btn-yes {
  background: linear-gradient(135deg, #063b2a, #0b5d3b);
  color: #ffffff;
  border: 1px solid #8fc74a;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 93, 59, 0.3);
  transition: all 0.2s ease;
}

.wa-modal-btn-yes:hover {
  background: linear-gradient(135deg, #0b5d3b, #128c7e);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 93, 59, 0.4);
}

@media (max-width: 768px) {
  .wa-steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wa-flow-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wa-sent-confirm-btn, .wa-reopen-btn {
    width: 100%;
    justify-content: center;
  }
  .wa-modal-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BECOME A DISTRIBUTOR PAGE STYLES
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.distributor-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.distributor-hero-content {
  position: relative;
  z-index: 2;
}

.distributor-hero-media {
  position: relative;
  z-index: 2;
}

.distributor-hero-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(4, 26, 19, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.distributor-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.distributor-hero-image-card:hover .distributor-hero-img {
  transform: scale(1.04);
}

.distributor-hero-stat-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 59, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 12px 16px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.distributor-hero-stat-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--green));
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.distributor-hero-stat-badge strong {
  display: block;
  font-size: 13.5px;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.25;
}

.distributor-hero-stat-badge span {
  display: block;
  font-size: 11.5px;
  color: #b7e3c8;
  font-weight: 600;
  margin-top: 2px;
}

.distributor-hero-floating-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--deep);
  font-size: 12px;
  font-weight: 850;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.distributor-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.distributor-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: #e8f5ec;
}

.distributor-hero-trust span strong {
  color: var(--lime);
}

.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(4, 26, 19, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.35);
  box-shadow: 0 22px 50px rgba(11, 93, 59, 0.15);
}

.partner-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 93, 59, 0.1), rgba(143, 199, 74, 0.2));
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-card-icon {
  transform: scale(1.1) rotate(4deg);
  background: var(--green);
  color: #ffffff;
}

.partner-card h3 {
  font-size: 19px;
  font-weight: 850;
  color: var(--deep);
  margin: 0 0 10px;
  line-height: 1.25;
}

.partner-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.eligibility-card {
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eligibility-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(11, 93, 59, 0.3);
  box-shadow: 0 14px 30px rgba(11, 93, 59, 0.08);
}

.eligibility-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(6, 59, 42, 0.08);
  color: var(--emerald);
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.eligibility-info strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  color: var(--deep);
  margin-bottom: 4px;
}

.eligibility-info p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.distributor-form-container {
  max-width: 920px;
  margin: 0 auto;
}

.distributor-form-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(4, 26, 19, 0.08);
}

.categories-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--deep);
  transition: all 0.2s ease;
  user-select: none;
}

.checkbox-pill input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--emerald);
  cursor: pointer;
}

.checkbox-pill:hover {
  border-color: var(--emerald);
  background: #f7faf8;
}

.checkbox-pill:has(input:checked) {
  border-color: var(--emerald);
  background: rgba(11, 93, 59, 0.08);
  color: var(--green);
}

.form-field-helper {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

.distributor-success-box {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.distributor-success-box.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.success-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5d3b, #128c7e);
  color: #ffffff;
  font-size: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 14px 35px rgba(11, 93, 59, 0.3);
}

.success-summary-card {
  background: #f8faf8;
  border: 1px solid rgba(6, 59, 42, 0.12);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  margin: 24px auto;
  max-width: 600px;
  font-size: 14px;
}

.success-summary-card h4 {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(6, 59, 42, 0.08);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span:first-child {
  color: var(--muted);
  font-weight: 600;
}

.summary-row span:last-child {
  font-weight: 800;
  color: var(--deep);
}

.wa-submit-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.wa-submit-direct:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.45);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .distributor-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .distributor-hero-img {
    height: 320px;
  }
  .partner-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eligibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .distributor-hero-img {
    height: 260px;
  }
  .distributor-form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .form-grid, .form-grid.three-col {
    grid-template-columns: 1fr;
  }
  .partner-card-grid {
    grid-template-columns: 1fr;
  }
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
  .distributor-hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }
}


