/* ==========================================================================
   MEDCANN B2B - ADDITIONAL PAGES STYLESHEET
   Supports: Products Catalog, Categories Hub, About Us, and Category Pages
   Full Responsive & Authentic Figma Layout
   ========================================================================== */

/* ==================== GLOBAL STYLES FOR SUBPAGES ==================== */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

.desktop-2, .desktop-subpage {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
  position: relative !important;
  border-radius: 0 !important;
}

/* Universal Scroll Reveal */
.fade-up {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-loaded .fade-up:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(50px) !important;
}
.js-loaded .fade-up.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Staggered entry for cards inside sections when visible */
.js-loaded .about.is-visible .about-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.js-loaded .about.is-visible .about-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.js-loaded .about.is-visible .about-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.js-loaded .about.is-visible .about-card:nth-child(4) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }

.js-loaded .products.is-visible .prod-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.js-loaded .products.is-visible .prod-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.js-loaded .products.is-visible .prod-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }

.js-loaded .categories.is-visible .cat-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(4) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(5) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both; }

.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(4) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(5) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(6) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both; }

@keyframes cardIn {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

.subpage-head-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}

.subpage-container {
  width: calc(100% - 176px);
  max-width: 1664px;
  margin: 0 auto 100px auto;
  padding-top: 140px;
}


/* ==================== PRODUCTS CATALOG PAGE (products.html) ==================== */
.products-catalog-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-bottom: 120px;
}

.prod-stack-card {
  background: #ffffff;
  border-radius: 30px !important;
  border: 1px solid #ebebeb;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prod-stack-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  z-index: 2;
}

.prod-stack-content {
  flex: 1;
  max-width: 960px;
  display: flex;
  flex-direction: column;
}

.prod-stack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.prod-stack-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  margin: 0;
}

.prod-order-btn {
  background-color: #3f892c;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  padding: 13px 36px;
  border-radius: 45px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.prod-order-btn:hover {
  background-color: #347524;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(63, 137, 44, 0.3);
}

.prod-stack-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0 0 36px 0;
}

.prod-stack-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.prod-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prod-tag-item {
  background-color: #d9e7d5;
  color: #3f892c;
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  cursor: pointer;
}

.prod-tag-item:hover {
  background-color: #3f892c !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.prod-circle-arrow-btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.prod-circle-arrow-btn:hover {
  background-color: #3f892c;
  transform: scale(1.08);
}

.prod-circle-arrow-btn:hover svg path {
  stroke: #ffffff;
}

.prod-stack-media {
  width: 532px;
  height: 440px;
  background-color: #d9e7d5;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.prod-stack-img {
  width: auto;
  max-width: 100%;
  height: 98%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.5s ease;
  display: block;
}

.prod-stack-card:hover .prod-stack-img {
  transform: scale(1.04);
}

/* ==================== CATEGORIES HUB PAGE (categories.html) ==================== */
.categories-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin-bottom: 120px;
}

.cat-hub-card {
  height: 598px;
  background: #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid #ebebeb;
}

/* Semi-transparent star logo watermark on green hover */
.cat-hub-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 580px;
  height: 580px;
  background: url('assets/Intersect.svg') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.cat-hub-card:nth-child(1) { border-top-left-radius: 40px; }
.cat-hub-card:nth-child(3) { border-top-right-radius: 40px; }
.cat-hub-card:nth-child(4) { border-bottom-left-radius: 40px; }
.cat-hub-card:nth-child(5) { border-bottom-right-radius: 40px; }

.cat-hub-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  z-index: 3;
  transition: color 0.35s ease;
}

.cat-hub-btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.cat-hub-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.cat-hub-circle svg path {
  transition: stroke 0.35s ease;
}

.cat-hub-btn-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #000000;
  transition: color 0.35s ease;
}

.cat-hub-img {
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 440px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

/* Card 4: Sports nutrition (lifted and balanced) */
.cat-hub-card:nth-child(4) .cat-hub-img {
  height: 450px;
  max-width: 320px;
  right: 15px;
  bottom: 35px;
  object-fit: contain;
  object-position: bottom center;
}

/* Card 5: Animals picture (lifted and balanced) */
.cat-hub-card:nth-child(5) .cat-hub-img {
  height: 430px;
  max-width: 280px;
  right: 20px;
  bottom: 30px;
  object-fit: contain;
  object-position: bottom right;
}

/* GREEN HOVER STATE ("зелёная плашка ЭТО ХОВЕР") */
.cat-hub-card:hover,
.cat-hub-card.active {
  background: linear-gradient(135deg, #1e6d24 0%, #2a7e28 100%) !important;
  border-color: #1e6d24 !important;
  box-shadow: 0 15px 35px rgba(30, 109, 36, 0.25);
  z-index: 3;
}

.cat-hub-card:hover::before,
.cat-hub-card.active::before {
  opacity: 0.16;
}

.cat-hub-card:hover .cat-hub-title,
.cat-hub-card.active .cat-hub-title {
  color: #ffffff !important;
}

.cat-hub-card:hover .cat-hub-circle,
.cat-hub-card.active .cat-hub-circle {
  background-color: #ffffff !important;
  transform: scale(1.05);
}

.cat-hub-card:hover .cat-hub-circle svg path,
.cat-hub-card.active .cat-hub-circle svg path {
  stroke: #1e6d24 !important;
}

.cat-hub-card:hover .cat-hub-btn-label,
.cat-hub-card.active .cat-hub-btn-label {
  color: #ffffff !important;
}

.cat-hub-card:hover .cat-hub-img,
.cat-hub-card.active .cat-hub-img {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== ABOUT US PAGE (about.html) ==================== */
.about-hero-banner {
  height: 870px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background-color: #1c230d;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px;
  box-sizing: border-box;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90.88deg, #1c230d 1%, rgba(28, 35, 13, 0.75) 45%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.about-hero-top-text {
  position: relative;
  z-index: 3;
  font-family: 'Inter', sans-serif !important;
  font-size: 36px;
  line-height: 44px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #ffffff;
  max-width: 600px;
  margin: 0;
}

.about-hero-bottom-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.about-hero-headline {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 90px;
  line-height: 1.05;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0;
}

.about-hero-fan-icon {
  position: absolute;
  right: -20px;
  bottom: -60px;
  height: 400px;
  width: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

/* Section 2: Pioneers of the market */
.about-pioneers-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 90px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 120px;
}

.about-pioneers-left {
  width: 500px;
  flex-shrink: 0;
}

.about-pioneers-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
}

.about-pioneers-right {
  flex: 1;
  max-width: 960px;
}

.about-pioneers-lead {
  font-family: 'Inter', sans-serif !important;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0 0 36px 0;
}

.about-highlight-span {
  background-color: #d9e7d5;
  padding: 2px 6px;
  border-radius: 4px;
}

.about-pioneers-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #111111;
  max-width: 760px;
  margin: 0;
}

/* ==================== CATEGORY DETAIL PAGES (category-*.html) ==================== */
.cat-detail-hero {
  height: 870px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background-color: #0d281a;
  margin-bottom: 120px;
  padding: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cat-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0, 55, 47) 4%, rgba(0, 0, 0, 0) 78%), linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.cat-detail-hero-top {
  position: relative;
  z-index: 3;
}

.cat-detail-hero-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 90px;
  line-height: 1.05;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  max-width: 900px;
}

.cat-detail-hero-title span.accent-green {
  color: #3f892c;
}

.cat-detail-hero-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  line-height: 38px !important;
  font-weight: 300 !important;
  letter-spacing: -0.05em !important;
  color: #ffffff !important;
  max-width: 700px !important;
  width: 100% !important;
  margin: 0 !important;
}

.cat-detail-hero-stats {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  gap: 40px !important;
  max-width: 700px !important;
  width: 100% !important;
}

.cat-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  max-width: 320px;
}

.cat-stat-num {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 48px;
  line-height: 1;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #ffffff;
  margin: 0;
}

.cat-stat-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
}

.cat-detail-hero-mockup {
  position: absolute;
  right: 100px;
  bottom: 50px;
  height: 640px;
  width: auto;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (min-width: 992px) {
  /* Drinks mockup */
  .cat-drinks-mockup {
    height: 620px;
    right: 80px;
    bottom: 50px;
  }

  /* Cosmetics mockup */
  .cat-cosmetics-mockup {
    height: 660px;
    right: 200px;
    bottom: 40px;
  }

  /* Food mockup (large prominent chocolate bar) */
  .cat-food-mockup {
    height: 560px;
    right: 80px;
    bottom: 30px;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5));
  }

  /* Sports mockup (sports nutrition jar) */
  .cat-sports-mockup {
    height: 540px;
    right: 80px;
    bottom: 40px;
  }

  /* Animals mockup (pet food pouch) */
  .cat-animals-mockup {
    height: 540px;
    right: 80px;
    bottom: 40px;
  }
}

/* Category Detail: Overview Raw Material */
.cat-raw-overview {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 90px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 120px;
}

.cat-raw-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  width: 500px;
  flex-shrink: 0;
  margin: 0;
}

.cat-raw-text {
  flex: 1;
  max-width: 960px;
  font-family: 'Inter', sans-serif !important;
  font-size: 28px;
  line-height: 40px;
  font-weight: 300 !important;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}

/* Category Detail: Growth Factors */
.cat-growth-factors {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 140px;
}

.cat-growth-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  width: 500px;
  flex-shrink: 0;
  margin: 0;
}

.cat-growth-content {
  flex: 1;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cat-growth-lead {
  font-family: 'Inter', sans-serif !important;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}

.cat-growth-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cat-growth-bullet-item {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}

.cat-growth-bullet-item strong {
  font-weight: 500 !important;
}

/* Category Detail: Successful Cases */
.cat-cases-wrap {
  margin-bottom: 140px;
}

.cat-cases-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 0 0 48px 0;
}

.cat-cases-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cat-case-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-case-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.08);
}

.cat-case-info {
  flex: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cat-case-brand {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  margin: 0;
}

.cat-case-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300 !important;
  letter-spacing: -0.05em;
  color: #012a49;
  margin: 0;
}

.cat-case-img {
  width: 584px;
  height: 584px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ==================== RESPONSIVE RULES (TABLET & MOBILE) ==================== */
@media (max-width: 1400px) {
  .subpage-container {
    width: calc(100% - 120px);
    margin-top: 0 !important;
    padding-top: 130px;
  }
  .about-hero-headline,
  .cat-detail-hero-title {
    font-size: 70px;
  }
  .cat-case-img {
    width: 420px;
    height: 420px;
  }
  .prod-stack-media {
    width: 420px;
    height: 340px;
  }
}

@media (max-width: 1280px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 640px) {
  .about-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 1024px) {
  .subpage-container {
    width: calc(100% - 60px);
    margin-top: 0 !important;
    padding-top: 120px;
  }
  .categories-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-hub-card:nth-child(2) { border-top-right-radius: 40px; }
  .cat-hub-card:nth-child(3) { border-top-right-radius: 0; }
  .about-pioneers-wrap,
  .cat-raw-overview,
  .cat-growth-factors {
    flex-direction: column;
    gap: 32px;
  }
  .about-pioneers-left,
  .cat-raw-title,
  .cat-growth-title {
    width: 100%;
  }
  .prod-stack-card,
  .cat-case-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .prod-stack-media,
  .cat-case-img {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 767px) {
  .subpage-container {
    width: calc(100% - 32px) !important;
    margin-top: 0 !important;
    padding-top: 100px !important;
    margin-bottom: 60px !important;
  }
  .subpage-head-title,
  .about-pioneers-title,
  .cat-raw-title,
  .cat-growth-title,
  .cat-cases-title {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .categories-hub-grid {
    grid-template-columns: 1fr !important;
  }
  .cat-hub-card {
    height: auto !important;
    min-height: 380px !important;
    padding: 36px 24px !important;
    border-radius: 20px !important;
    margin-bottom: 16px !important;
  }
  .cat-hub-title {
    font-size: 28px !important;
  }
  .cat-hub-circle {
    width: 60px !important;
    height: 60px !important;
  }
  .cat-hub-img {
    height: 280px !important;
    max-width: 200px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
  .cat-hub-card:nth-child(4) .cat-hub-img {
    height: 280px !important;
    max-width: 220px !important;
    bottom: 15px !important;
  }
  .cat-hub-card:nth-child(5) .cat-hub-img {
    height: 280px !important;
    max-width: 200px !important;
    bottom: 15px !important;
  }
  .about-hero-banner,
  .cat-detail-hero {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    padding: 36px 20px 32px 20px !important;
    border-radius: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    gap: 20px !important;
  }
  .cat-detail-hero-top {
    order: 1 !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
  }
  .about-hero-top-text,
  .cat-detail-hero-desc,
  .about-pioneers-lead,
  .cat-raw-text,
  .cat-growth-lead {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .about-hero-headline,
  .cat-detail-hero-title {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.15 !important;
  }
  .cat-detail-hero-mockup,
  .cat-drinks-mockup,
  .cat-cosmetics-mockup,
  .cat-food-mockup,
  .cat-sports-mockup,
  .cat-animals-mockup {
    order: 2 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 240px !important;
    height: 190px !important;
    max-height: 190px !important;
    object-fit: contain !important;
    margin: 14px auto !important;
    transform: none !important;
    display: block !important;
    z-index: 3 !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35)) !important;
  }
  .cat-detail-hero-desc {
    margin-bottom: 0 !important;
  }
  .cat-detail-hero-stats {
    order: 3 !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    z-index: 3 !important;
  }
  .cat-stat-num {
    font-size: 32px !important;
    line-height: 1.1 !important;
  }
  .cat-stat-text {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .prod-stack-card,
  .cat-case-card {
    padding: 30px 20px !important;
    border-radius: 20px !important;
  }
  .prod-stack-title,
  .cat-case-brand {
    font-size: 26px !important;
  }
  .prod-stack-desc,
  .about-pioneers-sub,
  .cat-case-desc,
  .cat-growth-bullet-item {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .prod-tag-item {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  .prod-order-btn {
    font-size: 16px !important;
    padding: 10px 24px !important;
  }
  .prod-stack-media,
  .cat-case-img {
    height: 240px !important;
  }
}

/* ==========================================================================
   BLOG PAGE STYLES (blog.html - Figma 63:689)
   ========================================================================== */
.blog-page-container {
  margin-top: 0 !important;
}

.blog-head-wrap {
  margin-bottom: 40px;
}

.blog-filter-tabs {
  display: flex;
  align-items: center;
  gap: 31px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.blog-filter-tabs::-webkit-scrollbar {
  display: none;
}

.blog-tab-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  letter-spacing: -0.07em;
  color: #b9b9b9;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.blog-tab-btn:hover {
  color: #000000;
}
.blog-tab-btn.active {
  color: #3f892c !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.blog-card-media {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f4;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 20px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #000000;
  text-transform: none !important;
  margin: 0 0 12px 0;
}

.blog-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #555555;
  font-weight: 400;
  margin: 0 0 24px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.blog-card-btn {
  background-color: #d9e7d5;
  color: #3f892c;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
  border-radius: 45px;
  padding: 10px 28px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}
.blog-card-btn:hover {
  background-color: #3f892c;
  color: #ffffff;
}

.blog-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #888888;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 90px;
}
.blog-page-nav,
.blog-page-num {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  letter-spacing: -0.07em;
  color: #3f892c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-page-nav.disabled {
  color: #b9b9b9;
  pointer-events: none;
}
.blog-page-num.active {
  color: #b9b9b9;
}
.blog-page-num:hover,
.blog-page-nav:not(.disabled):hover {
  text-decoration: underline;
}

.blog-subscribe-banner {
  background-color: #146642;
  border-radius: 30px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #ffffff;
  margin-bottom: 120px;
}

.blog-sub-left {
  flex-shrink: 0;
}

.blog-sub-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

.blog-sub-form {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  max-width: 900px;
  justify-content: flex-end;
}

.blog-sub-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  letter-spacing: -0.07em;
  padding: 12px 0;
  outline: none;
  flex: 1;
  max-width: 515px;
}
.blog-sub-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.blog-sub-btn {
  background-color: #ffffff;
  color: #3f892c;
  border-radius: 45px;
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  letter-spacing: -0.07em;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-sub-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   CONTACTS PAGE STYLES (contacts.html - Figma 63:456)
   ========================================================================== */
.contacts-page-container {
  margin-top: 0 !important;
}

.contacts-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1.6fr;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.contacts-desc {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #b9b9b9;
  max-width: 420px;
  margin: 0;
}

.contacts-hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.contacts-flower-svg {
  width: 60px;
  height: 60px;
  opacity: 0.8;
}

.contacts-hero-right {
  display: flex;
  flex-direction: column;
}

.contacts-hotline-label {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #000000;
  margin-bottom: 12px;
}

.contacts-hotline-phone {
  font-family: 'Neutral Face', sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #000000;
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}
.contacts-hotline-phone:hover {
  color: #3f892c;
}

.contacts-email-wrap {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #000000;
}
.contacts-email-link {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.contacts-email-link:hover {
  color: #3f892c;
}

/* Map */
.contacts-map-wrapper {
  width: 100%;
  margin-bottom: 120px;
}

.contacts-map-canvas {
  position: relative;
  width: 100%;
  height: 820px;
  border-radius: 20px;
  overflow: hidden;
}

.contacts-map-frame-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.contacts-map-frame-holder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contacts-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contacts-map-pin {
  position: absolute;
  top: 36%;
  left: 54%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 12px solid #3f892c;
  background: transparent;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(63, 137, 44, 0.4);
}
.contacts-pin-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f892c;
  margin: 6px auto;
}

.contacts-address-card {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 460px;
  max-width: calc(100% - 40px);
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 36px 36px 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  z-index: 10;
}

.contacts-address-head {
  font-family: 'Neutral Face', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.contacts-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contacts-info-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 16px;
}

.contacts-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contacts-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3f892c;
  margin-bottom: 6px;
}

.contacts-info-val {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #111111;
  margin: 0 0 4px 0;
}

.contacts-info-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #777777;
  margin: 0;
}

.contacts-socials-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.contacts-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f7f3;
  color: #222222;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.contacts-social-pill:hover {
  background: #3f892c;
  color: #ffffff;
  transform: translateY(-2px);
}

.contacts-social-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contacts-route-btn {
  display: block;
  width: 100%;
  background-color: #3f892c;
  color: #ffffff;
  border-radius: 45px;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contacts-route-btn:hover {
  background-color: #347524;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 137, 44, 0.3);
}

/* Consultation Form */
.contacts-form-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 120px;
  align-items: flex-start;
}

.contacts-form-head {
  font-family: 'Neutral Face', sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #000000;
  margin: 0;
}

.contacts-form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #000000;
  margin: 0 0 50px 0;
}

.contacts-lead-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.contacts-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  letter-spacing: -0.07em;
  padding: 16px 0;
  outline: none;
  color: #000000;
  transition: border-color 0.2s ease;
}
.contacts-input:focus {
  border-bottom-color: #3f892c;
}
.contacts-input::placeholder {
  color: #b9b9b9;
}

.form-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-label-mini {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: -0.07em;
  color: #b9b9b9;
  display: block;
  margin-bottom: -10px;
}

.contacts-form-policy {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.07em;
  color: #b9b9b9;
  margin: 0;
}
.policy-link {
  color: #3f892c;
  text-decoration: underline;
}

.contacts-submit-btn {
  background-color: #3f892c;
  color: #ffffff;
  border-radius: 45px;
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  letter-spacing: -0.07em;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.contacts-submit-btn:hover {
  background-color: #347524;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 137, 44, 0.3);
}

/* ==========================================================================
   PRODUCTION PAGE STYLES (production.html - Figma 6005:371)
   ========================================================================== */
.prod-hero {
  position: relative;
  width: 100%;
  min-height: 897px;
  margin-top: 114px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.prod-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.prod-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}
.prod-hero-container {
  position: relative;
  z-index: 2;
  width: calc(100% - 256px);
  max-width: 1756px;
  margin: 0 auto;
  color: #ffffff;
}
.prod-hero-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: clamp(40px, 7vw, 140px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 32px 0;
  max-width: 1622px;
  text-transform: uppercase;
}
.prod-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.2vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.07em;
  margin: 0 0 48px 0;
  max-width: 810px;
}
.hero-btn,
.prod-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: -0.07em;
  transition: opacity 0.25s ease;
}
.hero-btn-text {
  color: #ffffff !important;
  text-decoration: none !important;
}
.hero-btn-circle,
.prod-hero-btn .btn-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.hero-btn:hover .hero-btn-circle,
.prod-hero-btn:hover .btn-circle {
  transform: translateY(4px);
}

.prod-section {
  margin-top: 100px;
  margin-bottom: 120px;
}

/* Cycle */
.prod-cycle-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  margin-bottom: 60px;
}
.prod-cycle-head .subpage-head-title {
  text-align: center;
  margin: 0 auto;
}
.prod-cycle-desc-wrap {
  max-width: 1278px;
  margin: 0 auto;
  text-align: center;
}
.prod-cycle-desc {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #000000;
  text-align: center;
}
.highlight-green {
  background-color: #d9e7d5;
  color: inherit;
  padding: 2px 6px;
  border-radius: 4px;
}

.prod-cycle-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-cycle-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-cycle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 30px rgba(45, 45, 45, 0.18);
}
.prod-cycle-icon-wrap {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.prod-cycle-icon {
  max-height: 120px;
}
.prod-cycle-card-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #000000;
  margin: 0 0 20px 0;
  min-height: 58px;
}
.prod-cycle-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.07em;
  color: #000000;
  margin: 0;
}

/* Ready solutions */
.prod-solutions-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}
.prod-solutions-title {
  max-width: 753px;
  margin: 0;
}
.prod-solutions-side {
  max-width: 399px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prod-solutions-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #000000;
  margin: 0;
}
.prod-more-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: -0.07em;
}
.prod-more-pill-btn .circle-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #3f892c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.prod-more-pill-btn:hover .circle-arrow {
  transform: translateX(4px);
}

.prod-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.prod-sol-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 513px;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 30px rgba(45, 45, 45, 0.18);
}
.prod-sol-img-wrap {
  width: 100%;
  height: 353px;
  background-color: #d9e7d5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
}
.prod-sol-img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.prod-sol-card:hover .prod-sol-img {
  transform: scale(1.05);
}
.prod-sol-card-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  color: #000000;
  margin: 0;
}
.prod-sol-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.card-circle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.card-circle-btn:hover {
  background-color: #3f892c;
}
.card-circle-btn:hover svg path {
  stroke: #ffffff;
}

/* Lab Banner */
.prod-lab-banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.prod-lab-banner {
  position: relative;
  width: 100%;
  height: 897px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 128px;
  color: #ffffff;
  box-sizing: border-box;
}
.prod-lab-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.prod-lab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 35, 13, 0.92) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.prod-lab-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
}
.prod-lab-quote {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  font-weight: 300;
  max-width: 680px;
  margin: 0;
  color: #ffffff;
}
.text-green-accent {
  color: #44bf57;
}
.prod-lab-headline {
  font-family: 'Neutral Face', sans-serif;
  font-size: 89px;
  line-height: 1.04;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0;
}

/* 6 steps */
.prod-process-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  position: relative;
}
.prod-process-left {
  flex: 0 0 394px;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 140px !important;
  align-self: flex-start !important;
  z-index: 5;
}
.prod-process-side-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #000000;
  margin: 0;
}
.prod-process-right {
  flex: 1;
}
.prod-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}
.prod-step-col-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.prod-step-col-item .step-num {
  font-family: 'Neutral Face', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #3f892c;
  min-width: 55px;
  flex-shrink: 0;
}
.prod-step-col-item .step-body {
  display: flex;
  flex-direction: column;
}
.prod-step-col-item .step-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 400;
  color: #000000;
  margin: 0 0 16px 0;
  letter-spacing: 0;
}
.prod-step-col-item .step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.07em;
  color: #000000;
  margin: 0;
}

/* Offers 8 grid */
.prod-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.offer-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 32px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #000000;
  cursor: pointer;
}
.offer-card:hover {
  background: #146642;
  color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0px 16px 36px rgba(20, 102, 66, 0.22);
}
.offer-card:hover .offer-card-title,
.offer-card:hover .offer-card-desc {
  color: #ffffff;
}
.offer-card:hover .offer-card-link {
  color: #ffffff;
}
.offer-card:hover .offer-card-link svg path {
  stroke: #ffffff;
}
.offer-card:hover .offer-icon-img {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}
.offer-card.primary {
  background: #ffffff;
  color: #000000;
}
.offer-icon-box {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.offer-icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.35s ease, transform 0.35s ease;
}
.offer-card-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 16px 0;
  min-height: 58px;
  transition: color 0.35s ease;
}
.offer-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.07em;
  margin: 0 0 24px 0;
  flex: 1;
  transition: color 0.35s ease;
}
.offer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: -0.07em;
  color: #3f892c;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.35s ease;
}
.offer-card-link svg path {
  stroke: #3f892c;
  transition: stroke 0.35s ease;
}

/* Services 6 grid */
.prod-services-banner {
  background-color: #146642;
  border-radius: 30px;
  padding: 50px 40px;
}
.prod-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card-media {
  width: 100%;
  height: 354px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}
.service-card-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

/* Service Card CTA (R&D Card) */
.service-card-media-cta {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card:hover .service-card-media-cta {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-4px);
  box-shadow: 0px 14px 32px rgba(0, 0, 0, 0.22);
}
.service-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.service-cta-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #5cdb95;
  border-radius: 50%;
  box-shadow: 0 0 8px #5cdb95;
  display: inline-block;
}
.service-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 26px 0;
  max-width: 290px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #146642;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.service-cta-btn:hover {
  background: #258c0d;
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
}
.service-cta-btn svg path {
  stroke: currentColor;
  transition: stroke 0.3s ease;
}

/* B2B Form */
.prod-b2b-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
.prod-b2b-form-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #000000;
  margin: 0 0 40px 0;
}
.prod-b2b-form-callout {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.07em;
  color: #b9b9b9;
  margin: 0;
}

/* Blog Preview */
.prod-blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 80px;
}
.prod-blog-cats {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cat-item {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  letter-spacing: -0.07em;
  color: #171717;
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cat-item.active {
  opacity: 1;
  color: #3f892c;
}
.cat-count {
  font-size: 20px;
}

.prod-blog-preview-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.preview-post-card {
  display: flex;
  align-items: center;
  gap: 32px;
}
.post-thumb-wrap {
  width: 313px;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.post-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.07em;
  font-weight: 400;
  color: #000000;
  margin: 0;
}
.post-title.text-green {
  color: #3f892c;
}
.post-date {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.07em;
  color: #000000;
}
.post-read-pill {
  background-color: #d9e7d5;
  color: #3f892c;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: -0.07em;
  border-radius: 30px;
  padding: 10px 32px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.2s ease;
}
.post-read-pill.active {
  background-color: #3f892c;
  color: #ffffff;
}
.preview-more-wrap {
  margin-top: 20px;
}
.preview-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: -0.07em;
}
.preview-more-btn .circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-60 {
  margin-top: 60px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR BLOG, CONTACTS & PRODUCTION
   ========================================================================== */
@media (max-width: 1400px) {
  .blog-grid,
  .prod-solutions-grid,
  .prod-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-cycle-cards,
  .prod-offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contacts-hero-center {
    display: none;
  }
}

@media (max-width: 1024px) {
  .blog-page-container,
  .contacts-page-container {
    margin-top: 0 !important;
  }
  .blog-card-title,
  .contacts-address-head,
  .contacts-hotline-phone,
  .contacts-form-head,
  .prod-b2b-form-title {
    font-size: 32px !important;
    line-height: 38px !important;
  }
  .contacts-hero-grid,
  .contacts-form-section,
  .prod-b2b-form-wrap,
  .prod-blog-preview-grid,
  .prod-solutions-top {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .prod-lab-banner {
    padding: 40px 24px;
    height: auto;
    min-height: 520px;
  }
  .prod-lab-content {
    min-height: 460px;
    justify-content: space-between;
  }
  .prod-lab-quote {
    font-size: clamp(16px, 4.5vw, 20px) !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
  }
  .prod-lab-headline {
    font-size: clamp(32px, 8.5vw, 56px) !important;
    line-height: 1.08 !important;
  }
  .blog-subscribe-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
  }
  .blog-sub-form {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }
  .blog-sub-input {
    max-width: none;
  }
  .contacts-map-canvas {
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: transparent;
  }
  .contacts-map-img {
    height: 280px;
    border-radius: 15px;
  }
  .contacts-address-card {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin: 20px 0 0 0;
    padding: 24px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  .contacts-route-btn {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 20px 0 0 0;
  }
}

@media (max-width: 768px) {
  .blog-grid,
  .prod-solutions-grid,
  .prod-services-grid,
  .prod-cycle-cards,
  .prod-offers-grid,
  .prod-process-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }
  .prod-sol-card {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 16px !important;
    min-height: auto !important;
  }
  .prod-services-banner {
    padding: 30px 16px !important;
    border-radius: 20px !important;
  }
  .service-card-media {
    height: 280px !important;
  }
  .service-card-media-cta {
    min-height: 280px !important;
    height: auto !important;
    padding: 28px 16px !important;
  }
  .service-cta-badge {
    margin-bottom: 14px !important;
  }
  .service-cta-desc {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }
  .service-cta-btn {
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
  .service-card-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
  }
  .prod-sol-card-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.2 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .prod-sol-img-wrap {
    height: 220px !important;
  }
  .prod-cycle-head {
    align-items: flex-start !important;
    text-align: left !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
  }
  .prod-cycle-head .subpage-head-title {
    text-align: left !important;
    margin: 0 0 16px 0 !important;
  }
  .prod-cycle-desc-wrap {
    text-align: left !important;
    margin: 0 !important;
  }
  .prod-cycle-desc {
    text-align: left !important;
    font-size: 17px !important;
    line-height: 26px !important;
  }
  .prod-section .about-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .prod-section .about-card {
    align-items: flex-start !important;
    text-align: left !important;
    padding: 32px 20px 36px 20px !important;
  }
  .prod-section .about-card .div51 {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .prod-section .about-card .div50 {
    text-align: left !important;
  }
  .post-info {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .post-title {
    font-size: clamp(20px, 5.5vw, 24px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
  }
  .blog-filter-tabs {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    max-width: 100% !important;
    padding-bottom: 8px !important;
    gap: 16px !important;
  }
  .blog-filter-tabs::-webkit-scrollbar {
    display: none !important;
  }
  .blog-tab-btn {
    font-size: 18px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .blog-card {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px !important;
  }
  .blog-card-media {
    height: 200px !important;
  }
  .blog-card-body {
    padding: 16px 8px 8px 8px !important;
  }
  .blog-card-title {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-bottom: 20px !important;
    overflow-wrap: break-word !important;
  }
  .blog-card-footer {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  .blog-card-btn {
    font-size: 16px !important;
    padding: 8px 20px !important;
  }
  .preview-post-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-thumb-wrap {
    width: 100%;
    height: 200px;
  }
  .form-input-row {
    grid-template-columns: 1fr;
  }
  .prod-services-banner {
    padding: 30px 16px !important;
    border-radius: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .service-card {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .service-card-media {
    height: 200px !important;
  }
  .service-card-title {
    font-size: clamp(18px, 5.5vw, 24px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .prod-hero {
    min-height: 560px;
    padding: 60px 0;
  }
  .blog-subscribe-banner {
    padding: 30px 16px !important;
    border-radius: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .blog-sub-left {
    width: 100% !important;
  }
  .blog-sub-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.2 !important;
    overflow-wrap: break-word !important;
  }
  .blog-sub-input {
    font-size: 16px !important;
    width: 100% !important;
  }
  .blog-sub-btn {
    font-size: 16px !important;
    padding: 12px 24px !important;
    width: 100% !important;
  }
  .blog-pagination {
    gap: 12px !important;
    margin-bottom: 50px !important;
  }
  .blog-page-nav,
  .blog-page-num {
    font-size: 16px !important;
  }
  .process-step-item {
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .step-num {
    font-size: 26px !important;
    min-width: 36px !important;
  }
  .step-body {
    min-width: 0 !important;
    flex: 1 !important;
    width: 100% !important;
  }
  .step-title {
    font-size: clamp(18px, 5vw, 22px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
  }
  .step-desc {
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: normal !important;
  }
  .prod-process-top-text {
    font-size: clamp(20px, 5vw, 26px) !important;
    line-height: 1.25 !important;
  }
  .prod-process-section,
  .prod-section {
    margin-bottom: 80px !important;
  }
}

/* ==========================================================================
   ARTICLE PAGE (article.html - Figma 63-558)
   ========================================================================== */
.article-header-wrap {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.article-main-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 56px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  color: #000000;
  text-transform: uppercase;
  max-width: 1500px;
  margin: 0 auto;
}

.article-hero-media {
  width: 100%;
  max-width: 1756px;
  height: 640px;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-meta-bar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.article-meta-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-author-name {
  font-weight: 600 !important;
  font-size: 18px;
  color: #000000;
}

.article-author-role {
  font-size: 16px;
  color: #6b6b6b;
}

.article-meta-divider {
  color: #6b6b6b;
}

.article-meta-readtime {
  font-size: 16px;
  color: #6b6b6b;
}

.article-meta-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.article-meta-date {
  font-size: 16px;
  color: #6b6b6b;
}

.article-meta-badge {
  background: #d9e7d5;
  color: #3f892c;
  padding: 6px 20px;
  border-radius: 45px;
  font-size: 18px;
  font-weight: 500 !important;
}

.article-body-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 120px;
}

.article-toc-sidebar {
  width: 380px;
  flex-shrink: 0;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 140px !important;
  align-self: flex-start !important;
  z-index: 10;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

.article-toc-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.article-toc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.article-toc-item:hover {
  color: #3f892c;
}

.article-toc-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d9e7d5;
  color: #3f892c;
  font-weight: 700 !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-content-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.article-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-section-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 48px;
  line-height: 56px;
  font-weight: 300 !important;
  color: #000000;
  margin: 0;
}

.article-section-p {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}

.article-section-list {
  list-style: disc;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 22px;
  line-height: 34px;
}

.article-highlight-text {
  color: #3f892c;
  font-size: 22px;
  line-height: 34px;
  font-weight: 500 !important;
}

.article-quote-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-quote-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.article-quote-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-quote-text {
  font-size: 26px;
  line-height: 38px;
  color: #000000;
  margin: 0;
  letter-spacing: -0.05em;
}

.article-quote-author {
  font-weight: 600 !important;
  font-size: 18px;
  color: #000000;
  margin: 0;
}

.article-quote-role {
  font-size: 16px;
  color: #6b6b6b;
  margin: 4px 0 0 0;
}

.article-takeaways-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-takeaways-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 48px;
  line-height: 56px;
  margin: 0;
}

.article-takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-takeaway-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.article-takeaway-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-takeaway-icon img {
  width: 16px;
  height: 16px;
}

.article-takeaway-text {
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  letter-spacing: -0.05em;
}

.article-sources-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-sources-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-source-item {
  background: #d9e7d5;
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.article-source-name {
  font-size: 18px;
  font-weight: 600 !important;
  color: #3f892c;
  margin: 0;
}

.article-source-link {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}

.article-source-link:hover {
  text-decoration: underline;
}

.article-related-box {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-related-content {
  padding: 60px 80px 50px 80px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
}

.article-related-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-related-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 52px;
  line-height: 60px;
  text-transform: uppercase;
  margin: 0;
}

.article-tags-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-tag-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  color: #171717;
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.2s;
}

.article-tag-item.active {
  opacity: 1;
  color: #3f892c;
  position: relative;
  padding-left: 28px;
}

.article-tag-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3f892c;
  box-shadow: 0 0 0 3px #d9e7d5;
}

.article-related-news {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article-news-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.article-news-thumb {
  width: 260px;
  height: 180px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-news-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-news-title {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.article-news-date {
  font-size: 16px;
  color: #888888;
}

.article-news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 30px;
  background: #d9e7d5;
  color: #3f892c !important;
  font-size: 18px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s ease;
}

.article-news-btn.btn-primary {
  background: #3f892c;
  color: #ffffff !important;
}

.article-news-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.article-show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.article-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #3f892c;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
}

.article-show-more-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   LEGAL PAGE (legal.html - Figma 63-893)
   ========================================================================== */
.legal-hero-wrap {
  margin-top: 0;
  margin-bottom: 60px;
}

.legal-main-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
}

.legal-laws-box {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 120px;
  position: relative;
}

.legal-warning-pill {
  background: #d9e7d5;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.legal-warning-icon {
  width: 24px;
  height: 24px;
}

.legal-warning-text {
  font-size: 20px;
  font-weight: 500 !important;
  color: #3f892c;
  letter-spacing: -0.05em;
  margin: 0;
}

.legal-laws-body {
  padding: 70px 80px 80px 80px;
  position: relative;
}

.legal-flower-watermark {
  position: absolute;
  right: 60px;
  bottom: 40px;
  height: 380px;
  opacity: 0.12;
  pointer-events: none;
}

.legal-statement-text {
  font-size: 28px;
  line-height: 42px;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0 0 60px 0;
  max-width: 1400px;
  position: relative;
  z-index: 2;
}

.legal-highlight-phrase {
  background: #d9e7d5;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500 !important;
}

.legal-decree-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.legal-eagle-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 900px;
}

.legal-eagle-icon {
  width: 88px;
  height: 85px;
  flex-shrink: 0;
}

.legal-decree-text {
  font-size: 22px;
  line-height: 34px;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}

.legal-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s ease;
}

.legal-explore-btn:hover {
  color: #268b0d;
}

.legal-circle-arrow-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d9e7d5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.legal-circle-arrow-btn svg path {
  stroke: #3f892c;
  transition: stroke 0.25s ease;
}

.legal-explore-btn:hover .legal-circle-arrow-btn {
  background: #3f892c;
  transform: scale(1.08);
}

.legal-explore-btn:hover .legal-circle-arrow-btn svg path {
  stroke: #ffffff;
}

/* Documents Grid */
.legal-docs-section {
  margin-bottom: 120px;
}

.legal-docs-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 56px;
  line-height: 68px;
  font-weight: 300 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 0 0 60px 0;
  max-width: 1100px;
}

.legal-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.legal-doc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.legal-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.legal-doc-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.legal-doc-card-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300 !important;
  color: #000000;
  margin: 0 0 10px 0;
}

.legal-doc-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #777777;
  margin: 0 0 24px 0;
}

.legal-doc-card-btn {
  background: #d9e7d5;
  color: #3f892c !important;
  border-radius: 45px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.legal-doc-card-btn svg path {
  stroke: #3f892c;
  transition: stroke 0.25s ease;
}

.legal-doc-card-btn:hover {
  background: #3f892c;
  color: #ffffff !important;
}

.legal-doc-card-btn:hover svg path {
  stroke: #ffffff;
}

.legal-doc-thumb-box {
  width: 100%;
  height: 200px;
  background: #f4f6f4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #e5ede4;
}
.legal-doc-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}
.legal-doc-card:hover .legal-doc-thumb-img {
  transform: scale(1.04);
}

.doc-viewer-modal-box {
  background: #ffffff;
  border-radius: 24px;
  max-width: 900px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
.doc-viewer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.doc-viewer-img-wrap {
  background: #f7f9f7;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.doc-viewer-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.doc-viewer-meta {
  display: flex;
  flex-direction: column;
}
.doc-viewer-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px 0;
  color: #191919;
}
.doc-viewer-date {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666666;
  margin: 0 0 24px 0;
}
.doc-viewer-notice {
  background: #f0f7f2;
  border-left: 4px solid #3f892c;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #2d4533;
}
@media (max-width: 768px) {
  .doc-viewer-grid {
    grid-template-columns: 1fr;
  }
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 400px;
  opacity: 1;
}

.faq-content p {
  padding: 0 0 28px 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #444444;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (product-detail.html - Figma 63-1581)
   ========================================================================== */
.prod-detail-sticky-bar {
  position: sticky;
  top: 114px;
  margin-top: 114px;
  z-index: 900;
  background: #146642;
  backdrop-filter: blur(15px);
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.prod-detail-container {
  margin: 50px auto 100px auto;
}

.prod-detail-sticky-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.prod-detail-sticky-btn {
  background: #ffffff;
  color: #3f892c !important;
  border-radius: 45px;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 500 !important;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.prod-detail-sticky-btn:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.prod-detail-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
  margin-bottom: 120px;
  align-items: flex-start;
}

.prod-detail-info-col {
  display: flex;
  flex-direction: column;
}

.prod-detail-section-title {
  font-size: 36px;
  color: #146642;
  font-weight: 500 !important;
  margin: 0 0 30px 0;
  letter-spacing: -0.05em;
}

.prod-detail-spec-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

.prod-detail-spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid #dbdbdb;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
}

.prod-detail-spec-row.first {
  border-top: 1px solid #dbdbdb;
}

.prod-detail-spec-label {
  font-weight: 500 !important;
  color: #000000;
}

.prod-detail-spec-value {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prod-detail-rec-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prod-detail-rec-title {
  font-size: 32px;
  color: #146642;
  font-weight: 500 !important;
  margin: 0;
  letter-spacing: -0.05em;
}

.prod-detail-rec-text {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}

.prod-detail-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prod-detail-main-img-wrap {
  width: 100%;
  height: 600px;
  background: #eaeaea;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prod-detail-main-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.prod-detail-video-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.prod-detail-video-btn:hover {
  transform: scale(1.08);
}

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

.prod-detail-thumb-item {
  height: 150px;
  background: #eaeaea;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.prod-detail-thumb-item.active,
.prod-detail-thumb-item:hover {
  border-color: #3f892c;
}

.prod-detail-thumb-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ==========================================================================
   MODAL DIALOGS (Figma 63-407, 63-893, 63-1581)
   ========================================================================== */
.medcann-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.medcann-modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.medcann-modal-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px 60px;
  position: relative;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.medcann-modal-card.large {
  max-width: 960px;
  padding: 60px 80px;
}

.medcann-modal-backdrop.active .medcann-modal-card {
  transform: translateY(0);
}

.medcann-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.medcann-modal-close:hover {
  transform: rotate(90deg);
}

.medcann-modal-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 40px;
  line-height: 48px;
  color: #000000;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.medcann-modal-title.large {
  font-size: 44px;
  line-height: 52px;
}

.medcann-modal-subtitle {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0 0 36px 0;
}

.medcann-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.medcann-form-label {
  font-size: 15px;
  color: #b9b9b9;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.medcann-form-input {
  border: none;
  border-bottom: 1px solid #000000;
  padding: 10px 0;
  font-size: 22px;
  color: #000000;
  outline: none;
  background: transparent;
  width: 100%;
}

.medcann-form-input.gray-line {
  border-bottom: 1px solid #dbdbdb;
}

.medcann-form-input::placeholder {
  color: #b9b9b9;
}

.medcann-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.medcann-form-consent {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: #b9b9b9;
  margin-bottom: 30px;
}

.medcann-form-consent-check {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #b9b9b9;
  margin-bottom: 30px;
  cursor: pointer;
}

.medcann-form-consent-check input[type="checkbox"] {
  width: 28px;
  height: 28px;
  accent-color: #3f892c;
  cursor: pointer;
}

.medcann-modal-submit-btn {
  background: #3f892c;
  color: #ffffff !important;
  border-radius: 45px;
  height: 64px;
  font-size: 22px;
  font-weight: 500 !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.2s ease;
}

.medcann-modal-submit-btn:hover {
  background: #347524;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 137, 44, 0.3);
}

/* ==========================================================================
   RESPONSIVE QUERIES FOR NEW PAGES & MODALS
   ========================================================================== */
@media (max-width: 1400px) {
  .legal-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-body-layout {
    gap: 50px;
  }
  .article-toc-sidebar {
    width: 320px;
  }
  .prod-detail-main-layout {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .article-body-layout {
    flex-direction: column;
  }
  .article-toc-sidebar {
    width: 100%;
    position: static;
  }
  .article-related-content {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .prod-detail-main-layout {
    grid-template-columns: 1fr;
  }
  .legal-laws-body {
    padding: 40px;
  }
  .legal-decree-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .legal-flower-watermark {
    display: none;
  }
  .prod-detail-sticky-bar {
    padding: 0 30px;
  }
  .prod-detail-sticky-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .article-header-wrap {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 4px !important;
    margin-top: 90px !important;
    margin-bottom: 24px !important;
  }
  .article-main-title {
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .article-hero-media {
    height: 320px;
  }
  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .article-meta-author {
    flex-wrap: wrap !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .article-author-info {
    flex-wrap: wrap !important;
    gap: 8px 12px !important;
  }
  .article-meta-right {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  .article-body-layout {
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .article-toc-sidebar {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .article-content-main {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .article-section-title {
    font-size: clamp(24px, 6.5vw, 32px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
  }
  .article-section-p,
  .article-section-list,
  .article-highlight-text {
    font-size: 16px !important;
    line-height: 26px !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .article-source-link,
  .article-takeaway-text a,
  .article-section a {
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }
  .article-related-content {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 24px 16px !important;
    box-sizing: border-box !important;
  }
  .article-related-title {
    font-size: clamp(26px, 7vw, 38px) !important;
    line-height: 1.2 !important;
    overflow-wrap: break-word !important;
  }
  .article-news-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .article-news-thumb {
    width: 100% !important;
    height: 180px !important;
  }
  .article-news-body {
    width: 100% !important;
  }
  .prod-stack-card {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 16px !important;
  }
  .prod-stack-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .prod-stack-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .prod-stack-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .prod-stack-title {
    font-size: clamp(22px, 6vw, 28px) !important;
    overflow-wrap: break-word !important;
  }
  .article-quote-card {
    flex-direction: column;
    padding: 20px !important;
    box-sizing: border-box !important;
  }
  .article-takeaways-card,
  .article-sources-card {
    padding: 24px 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .article-takeaways-title {
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
  }
  .article-source-item {
    padding: 14px 16px !important;
    box-sizing: border-box !important;
  }
  .prod-hero-container {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }
  .prod-hero-title {
    font-size: clamp(24px, 6.5vw, 36px) !important;
    line-height: 1.15 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .prod-hero-subtitle {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 28px !important;
  }
  .legal-docs-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }
  .legal-doc-card {
    padding: 24px 16px !important;
    min-height: auto !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .legal-doc-card-title {
    font-size: 18px !important;
    line-height: 24px !important;
    overflow-wrap: break-word !important;
  }
  .legal-statement-text {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  .legal-main-title,
  .legal-docs-title {
    font-size: clamp(26px, 6.5vw, 36px) !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
  }
  .medcann-modal-card {
    padding: 36px 24px;
  }
  .medcann-form-row {
    grid-template-columns: 1fr;
  }
  .prod-detail-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}




/* ==========================================================================
   ENHANCEMENTS: PRELOADER, COOKIE BANNER, HIGH-END ANIMATIONS & FIGMA UPDATES
   ========================================================================== */

/* ==================== GREEN SITE PRELOADER (FIGMA 63-3135) ==================== */
.site-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #146642;
  z-index: 999999;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.6s ease;
}
.site-preloader.fade-out {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.preloader-flower-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 114px;
  height: 557px;
  pointer-events: none;
  will-change: transform;
  animation: preloaderFlowerRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.preloader-flower-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.preloader-counter {
  position: absolute;
  bottom: clamp(30px, 6vh, 62px);
  right: clamp(24px, 4.3vw, 82px);
  font-family: 'Neutral Face', sans-serif;
  font-size: clamp(36px, 3.125vw, 60px);
  color: #ffffff;
  line-height: 1;
  text-align: right;
  letter-spacing: -0.02em;
  user-select: none;
}

@keyframes preloaderFlowerRise {
  0% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@media (max-height: 700px) {
  .preloader-flower-wrap {
    transform-origin: bottom center;
    transform: translateX(-50%) scale(0.75);
    animation-name: preloaderFlowerRiseSmall;
  }
  @keyframes preloaderFlowerRiseSmall {
    0% {
      transform: translate(-50%, 100%) scale(0.75);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 0) scale(0.75);
      opacity: 1;
    }
  }
}
@media (max-width: 768px) {
  .preloader-flower-wrap {
    transform-origin: bottom center;
    transform: translateX(-50%) scale(0.65);
    animation-name: preloaderFlowerRiseMobile;
  }
  @keyframes preloaderFlowerRiseMobile {
    0% {
      transform: translate(-50%, 100%) scale(0.65);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 0) scale(0.65);
      opacity: 1;
    }
  }
  .preloader-counter {
    bottom: 30px;
    right: 24px;
    font-size: 38px;
  }
}

/* ==================== FLOATING COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 99999;
  background: rgba(20, 20, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 16px 28px;
  max-width: 900px;
  width: calc(100% - 40px);
  box-sizing: border-box !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0.9;
}
.cookie-banner-link {
  color: #3f892c;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookie-banner-link:hover {
  color: #52b33a;
}
.cookie-accept-btn {
  background: #3f892c;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-accept-btn:hover {
  background: #327022;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(63, 137, 44, 0.4);
}
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    padding: 14px 18px !important;
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-accept-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==================== HIGH-END SILKY ANIMATIONS & HOVERS ==================== */
.button5, .products-more-btn, .prod-card, .about-card, .footer-partner-btn, .cat-case-card, .drop-menu-btn, .prod-tag-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.footer-partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 102, 66, 0.25);
}
.prod-arrow-circle {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background-color: #d9e7d5;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.prod-arrow-circle-green {
  background-color: #268b0d !important;
}
.prod-arrow-circle-green svg path {
  stroke: #ffffff !important;
}
.prod-card:hover .prod-arrow-circle {
  transform: scale(1.08);
  background-color: #3f892c !important;
}
.prod-card:hover .prod-arrow-circle svg path {
  stroke: #ffffff !important;
}

/* Eliminate underlines in products block */
.products a, .prod-card, .prod-card * {
  text-decoration: none !important;
}

/* Social link hover */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social-link:hover {
  transform: scale(1.15);
}
.footer-social-link svg path {
  transition: fill 0.3s ease;
}
.footer-social-link:hover svg path {
  fill: #3f892c !important;
}

/* Category Detail Background */
.cat-detail-hero {
  background: url("assets/cat_hero_bg.png") center/cover no-repeat, #0d281a !important;
}

@media (min-width: 992px) {
  /* Category Drinks: hero photo */
  .cat-drinks-mockup {
    height: 600px !important;
    right: 60px !important;
    bottom: 50px !important;
  }

  /* Category Cosmetics: hero photo */
  .cat-cosmetics-mockup {
    height: 640px !important;
    right: 140px !important;
    bottom: 40px !important;
  }

  /* Category Food: hero photo */
  .cat-food-mockup {
    height: 560px !important;
    right: 80px !important;
    bottom: 30px !important;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5)) !important;
  }

  /* Category Animals: hero photo */
  .cat-animals-mockup {
    height: 540px !important;
    right: 80px !important;
    bottom: 40px !important;
  }

  /* Category Sports: hero photo */
  .cat-sports-mockup {
    height: 540px !important;
    right: 80px !important;
    bottom: 40px !important;
  }
}

/* Spacings */
.gap-190 {
  margin-bottom: 190px !important;
}

/* ==================== PRODUCT DETAIL FIGMA 63-1666 (desktop-5) ==================== */
.prod-detail-tags-f5 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.prod-detail-tag-pill {
  background: #eef4ed;
  color: #146642;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.prod-detail-tag-pill:hover {
  background: #146642;
  color: #ffffff;
}
.prod-detail-grid-f5 {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 40px !important;
  width: 100% !important;
  max-width: 1479px !important;
  margin: 0 auto 120px auto !important;
}
.prod-detail-info-left {
  width: 795px !important;
  max-width: 795px !important;
  flex: 0 0 795px !important;
  box-sizing: border-box !important;
}
.prod-detail-sticky-col {
  width: 644px !important;
  max-width: 644px !important;
  flex: 0 0 644px !important;
  box-sizing: border-box !important;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 130px !important;
  align-self: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  z-index: 10 !important;
}
.prod-detail-pouch-box {
  background: #d9e7d5 !important;
  border-radius: 30px !important;
  width: 644px !important;
  height: 420px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 24px 30px 0 30px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.prod-detail-pouch-box img,
.prod-detail-pouch-img {
  max-height: 98% !important;
  max-width: 96% !important;
  height: 98% !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block !important;
  align-self: flex-end !important;
  margin: 0 auto 0 auto !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12)) !important;
}
.prod-detail-sticky-card {
  background: #146642 !important;
  border-radius: 24px !important;
  padding: 24px 28px !important;
  color: #ffffff !important;
  width: 644px !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  box-shadow: 0 16px 36px rgba(20, 102, 66, 0.25) !important;
}
.prod-detail-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.prod-detail-vol-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-detail-vol-label {
  font-size: 13px;
  opacity: 0.85;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}
.custom-vol-dropdown {
  position: relative;
  min-width: 150px;
}
.custom-vol-trigger {
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 0 16px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-vol-trigger:hover,
.custom-vol-dropdown.active .custom-vol-trigger {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
}
.custom-vol-val {
  white-space: nowrap;
}
.custom-vol-arrow {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-vol-dropdown.active .custom-vol-arrow {
  transform: rotate(180deg);
}
.custom-vol-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  min-width: 150px;
  background: #0d281a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}
.custom-vol-dropdown.active .custom-vol-menu {
  display: flex;
  animation: dropdownIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-vol-option {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.custom-vol-option:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.custom-vol-option.selected {
  background: #3f892c;
  color: #ffffff;
  font-weight: 600;
}
.prod-detail-vol-select {
  background-color: rgba(255, 255, 255, 0.16) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 10px 38px 10px 16px !important;
  border-radius: 12px !important;
  outline: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box !important;
}
.prod-detail-vol-select option {
  background: #0d281a !important;
  color: #ffffff !important;
  padding: 10px 14px !important;
}
.prod-detail-card-price {
  font-family: 'Neutral Face', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.prod-detail-card-btn {
  background: #ffffff;
  color: #146642;
  border: none;
  border-radius: 999px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.prod-detail-card-btn:hover {
  background: #eef4ed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.prod-detail-title-f5 {
  font-family: 'Neutral Face', sans-serif;
  font-size: 46px;
  line-height: 1.15;
  color: #191919;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.prod-detail-desc-f5 {
  font-size: 16px;
  line-height: 26px;
  color: #444444;
  margin-bottom: 20px;
}
.prod-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3f892c;
  font-weight: 500;
  margin-bottom: 28px;
}
.prod-detail-left-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #eef2ed;
}
.prod-detail-left-vol {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f9f6;
  border: 1px solid #e1e8df;
  padding: 10px 18px;
  border-radius: 14px;
}
.prod-detail-left-price {
  font-family: 'Neutral Face', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #191919;
}
.prod-detail-left-btn {
  background: #3f892c;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.prod-detail-left-btn:hover {
  background: #327022;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(63, 137, 44, 0.3);
}

.prod-detail-block-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  color: #191919;
  text-transform: uppercase;
  margin: 36px 0 16px 0;
}
.prod-detail-comp-text {
  font-size: 15px;
  line-height: 24px;
  color: #333333;
}
.prod-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.prod-detail-table tr {
  border-bottom: 1px solid #e5ebe4;
}
.prod-detail-table td {
  padding: 14px 0;
  font-size: 15px;
  line-height: 22px;
  vertical-align: top;
}
.prod-detail-table td:first-child {
  width: 160px;
  font-weight: 500;
  color: #888888;
}
.prod-detail-table td:last-child {
  color: #191919;
}
.prod-detail-lead-text {
  font-size: 15px;
  line-height: 24px;
  color: #444444;
  margin-bottom: 20px;
}
.prod-detail-bullets-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.prod-detail-bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 22px;
  color: #333333;
}
.prod-detail-bullet-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f892c;
  margin-top: 7px;
  flex-shrink: 0;
}
.prod-detail-use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.prod-detail-use-tag {
  background: #eef4ed;
  color: #191919;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .prod-detail-grid-f5 {
    grid-template-columns: 1fr;
  }
  .prod-detail-sticky-col {
    position: static;
  }
  .prod-detail-title-f5 {
    font-size: 36px;
    line-height: 1.15;
  }
  .prod-detail-left-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .prod-detail-left-vol {
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .prod-detail-left-price {
    font-size: 28px;
    text-align: left;
  }
  .prod-detail-left-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==================== ABOUT PAGE FIGMA 63-2165 (desktop-3) ==================== */
.about-hero-f3 {
  height: 800px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
  padding: 70px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-hero-bg-f3 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-hero-overlay-f3 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 30, 20, 0.4) 0%, rgba(0, 25, 15, 0.75) 100%);
  z-index: 2;
}
.about-hero-flower-f3 {
  position: absolute;
  right: 60px;
  bottom: 0px;
  width: 240px;
  height: auto;
  z-index: 3;
}
.about-hero-top-f3 {
  position: relative;
  z-index: 4;
  max-width: 480px;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  opacity: 0.9;
}
.about-hero-title-f3 {
  position: relative;
  z-index: 4;
  font-family: 'Neutral Face', sans-serif;
  font-size: 72px;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0;
}
@media (max-width: 991px) {
  .about-hero-f3 {
    height: auto;
    min-height: 520px;
    padding: 40px 24px;
  }
  .about-hero-title-f3 {
    font-size: 40px;
  }
}

/* ==================== LEGAL ARTICLE CONTENT CARD ==================== */
.legal-content-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 70px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  font-family: 'Inter', sans-serif;
  color: #222222;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.legal-content-card h2 {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 300 !important;
  color: #000000;
  text-transform: uppercase;
  margin: 40px 0 16px 0;
}

.legal-content-card h2:first-child {
  margin-top: 0;
}

.legal-content-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 24px 0 12px 0;
}

.legal-content-card p {
  margin: 0 0 16px 0;
}

.legal-content-card p:last-child {
  margin-bottom: 0;
}

.legal-content-card ul,
.legal-content-card ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.legal-content-card li {
  margin-bottom: 8px;
}

.legal-content-card a {
  color: #3f892c;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.legal-content-card a:hover {
  color: #268b0d;
}

@media (max-width: 768px) {
  .legal-content-card {
    padding: 32px 20px;
    border-radius: 20px;
    font-size: 15px;
  }
  .legal-content-card h2 {
    font-size: 20px;
    margin: 32px 0 14px 0;
  }
}

.legal-back-btn,
.doc-back-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 52px !important;
  padding: 14px 36px !important;
  background-color: #3f892c !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  width: auto !important;
  max-width: max-content !important;
  border: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.legal-back-btn:hover,
.doc-back-btn:hover {
  background-color: #357a24 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(63, 137, 44, 0.32) !important;
  color: #ffffff !important;
}

.legal-back-btn-outline {
  background-color: transparent !important;
  color: #146642 !important;
  border: 1.5px solid #146642 !important;
}

.legal-back-btn-outline:hover {
  background-color: #146642 !important;
  color: #ffffff !important;
}



/* ==================== FIGMA 63-297 CONSULTATION MODAL ==================== */
.consult-modal-card {
  background: #ffffff;
  border-radius: 30px;
  max-width: 1100px;
  width: 95%;
  padding: 60px 70px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.consult-modal-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

.consult-modal-left {
  display: flex;
  flex-direction: column;
}

.consult-modal-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.consult-modal-right {
  display: flex;
  flex-direction: column;
}

.consult-modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0 0 32px 0;
  letter-spacing: -0.04em;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consult-form-group {
  display: flex;
  flex-direction: column;
}

.consult-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.consult-form-input {
  border: none;
  border-bottom: 1px solid #dbdbdb;
  padding: 12px 0;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  color: #000000;
  outline: none;
  background: transparent;
  width: 100%;
  transition: border-color 0.2s ease;
}

.consult-form-input:focus {
  border-bottom-color: #3f892c;
}

.consult-form-input::placeholder {
  color: #b9b9b9;
  letter-spacing: -0.04em;
}

.consult-form-phone-wrap {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #000000;
}

.consult-form-phone-wrap:focus-within {
  border-bottom-color: #3f892c;
}

.consult-form-phone-prefix {
  font-size: 20px;
  color: #000000;
  font-family: 'Inter', sans-serif;
  padding-right: 6px;
  letter-spacing: -0.04em;
}

.consult-form-phone-input {
  border: none !important;
  padding: 12px 0 !important;
  font-size: 20px !important;
  font-family: 'Inter', sans-serif;
  color: #000000 !important;
  outline: none !important;
  background: transparent !important;
  width: 100% !important;
}

.consult-form-phone-input::placeholder {
  color: #b9b9b9;
}

.consult-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.consult-form-consent {
  font-size: 15px;
  line-height: 1.4;
  color: #b9b9b9;
  letter-spacing: -0.04em;
  margin: 0;
}

.consult-form-submit-btn {
  background: #3f892c;
  color: #ffffff !important;
  border-radius: 45px;
  height: 64px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  letter-spacing: -0.04em;
  transition: all 0.25s ease;
}

.consult-form-submit-btn:hover {
  background: #347524;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 137, 44, 0.3);
}

@media (max-width: 900px) {
  .consult-modal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .consult-modal-card {
    padding: 40px 28px;
  }
  .consult-form-row {
    grid-template-columns: 1fr;
  }
  .consult-form-submit-btn {
    width: 100%;
  }
}

/* ==================== ENHANCED DOC VIEWER STYLES ==================== */
.doc-viewer-modal-box {
  background: #ffffff;
  border-radius: 24px;
  max-width: 960px;
  width: 94%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px 44px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.doc-viewer-meta {
  padding-right: 48px;
}

.doc-viewer-close-btn,
.medcann-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 20px;
  color: #111111;
}

.doc-viewer-close-btn:hover,
.medcann-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg) scale(1.08);
}

/* ==================== OTHER PRODUCTS SECTION (FIGMA SPEC) ==================== */
.other-prods-section {
  margin-top: 100px;
  margin-bottom: 60px;
  width: 100%;
}

.other-prods-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 30px;
}

.other-prods-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #191919;
  margin: 0;
  letter-spacing: -0.02em;
}

.other-prods-header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.other-prods-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #191919;
  max-width: 340px;
}

.other-prods-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #191919;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.other-prods-btn:hover {
  opacity: 0.8;
}

.other-prods-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3f892c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.other-prods-btn:hover .other-prods-btn-circle {
  transform: scale(1.05);
}

.other-prods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.other-prod-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #191919;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.other-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.other-prod-img-box {
  background: #d8e5d6;
  border-radius: 18px;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 24px 20px 0 20px;
}

.other-prod-img {
  max-height: 98%;
  max-width: 96%;
  height: 98%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  align-self: flex-end;
  margin-bottom: 0;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.other-prod-card:hover .other-prod-img {
  transform: scale(1.04);
}

.other-prod-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 6px 4px 6px;
}

.other-prod-name {
  font-family: 'Neutral Face', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #191919;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.other-prod-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555555;
}

.other-prod-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e3ede1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}

.other-prod-arrow svg path {
  transition: stroke 0.25s;
}

.other-prod-card:hover .other-prod-arrow {
  background: #3f892c;
  transform: scale(1.05);
}

.other-prod-card:hover .other-prod-arrow svg path {
  stroke: #ffffff;
}

/* ==================== CONSULTATION SECTION (FIGMA SPEC) ==================== */
.consult-section {
  margin-top: 40px;
  margin-bottom: 120px;
  width: 100%;
}

.consult-container {
  background: #ffffff;
  border-radius: 36px;
  padding: 64px 80px 70px 70px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
  align-items: start;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.consult-left {
  position: relative;
  z-index: 2;
}

.consult-title {
  font-family: 'Neutral Face', sans-serif;
  font-size: 46px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #191919;
  margin: 0;
  letter-spacing: -0.02em;
}

.consult-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.consult-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 24px;
  color: #191919;
  margin: 0 0 28px 0;
  max-width: 420px;
}

.consult-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
}

.consult-field-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.consult-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8ded6;
  background: transparent;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #191919;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.consult-input:focus {
  border-bottom-color: #3f892c;
}

.consult-input::placeholder {
  color: #999999;
}

.consult-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #888888;
  margin-bottom: -4px;
}

.consult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 14px;
  align-items: flex-end;
}

.consult-field-email {
  justify-content: flex-end;
}

.consult-agree {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  line-height: 16px;
  color: #8e998b;
  margin: 18px 0 24px 0;
}

.consult-btn {
  background: #3f892c;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 42px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
  align-self: flex-start;
}

.consult-btn:hover {
  background: #357525;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(63, 137, 44, 0.25);
}

.consult-flower-wrap {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.45;
  z-index: 1;
  height: 90%;
  display: flex;
  align-items: center;
}

.consult-flower-img {
  height: 100%;
  max-height: 380px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .other-prods-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .consult-container {
    padding: 48px 40px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .other-prods-title {
    font-size: 32px;
  }
  .other-prods-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .other-prod-img-box {
    height: 240px;
    padding: 16px 16px 0 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }
  .other-prod-img {
    max-height: 98%;
    max-width: 95%;
    height: 98%;
    object-position: bottom center;
    align-self: flex-end;
    margin-bottom: 0;
  }
  .consult-container {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    border-radius: 24px;
    gap: 28px;
  }
  .consult-title {
    font-size: 32px;
  }
  .consult-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .consult-flower-wrap {
    opacity: 0.15;
    right: -20px;
  }
}

/* ==================== COMPREHENSIVE MOBILE OVERRIDES (<= 991px) ==================== */
@media (max-width: 991px) {
  /* Subpage general container spacing */
  .subpage-container {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    padding-top: 105px !important;
    margin-bottom: 60px !important;
    box-sizing: border-box !important;
  }

  /* 1. CONTACTS PAGE */
  .contacts-page-container {
    padding-top: 105px !important;
    margin-top: 0 !important;
    margin-bottom: 60px !important;
  }
  .contacts-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .contacts-hero-center {
    display: none !important;
  }
  .contacts-hotline-phone {
    font-size: clamp(26px, 7.5vw, 42px) !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
  }
  .contacts-email-wrap {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .contacts-map-wrapper {
    margin-bottom: 60px !important;
  }
  .contacts-map-canvas {
    height: auto !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow: visible !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  .contacts-address-card {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 28px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }
  .contacts-address-head {
    font-size: 26px !important;
    margin-bottom: 20px !important;
  }
  .contacts-map-frame-holder {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 380px !important;
    min-height: 340px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    order: 2 !important;
    z-index: 1 !important;
  }
  .contacts-map-frame-holder iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    border-radius: 20px !important;
  }

  /* 2. PRODUCTION 6-STEPS SECTION */
  .prod-process-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
  }
  .prod-process-left {
    flex: none !important;
    width: 100% !important;
    position: static !important;
    top: auto !important;
  }
  .prod-process-side-text {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .prod-process-right {
    width: 100% !important;
    flex: none !important;
  }
  .prod-steps-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }
  .prod-step-col-item {
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .prod-step-col-item .step-num {
    font-size: 28px !important;
    min-width: 36px !important;
  }
  .prod-step-col-item .step-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }
  .prod-step-col-item .step-desc {
    font-size: 15px !important;
    line-height: 22px !important;
  }

  /* 3. PRODUCT DETAIL PAGE (Photo first -> Info -> Sticky Buy Bar fixed to bottom) */
  .prod-detail-grid-f5 {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 120px !important;
    box-sizing: border-box !important;
  }
  .prod-detail-info-left {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    order: 2 !important;
    box-sizing: border-box !important;
  }
  .prod-detail-sticky-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    position: static !important;
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    box-sizing: border-box !important;
  }
  .prod-detail-pouch-box {
    width: 100% !important;
    max-width: 100% !important;
    height: 320px !important;
    border-radius: 20px !important;
    padding: 16px 16px 0 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  .prod-detail-pouch-box img,
  .prod-detail-pouch-img {
    max-height: 98% !important;
    max-width: 95% !important;
    height: 98% !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    align-self: flex-end !important;
    margin-bottom: 0 !important;
  }
  .prod-detail-title-f5 {
    font-size: clamp(24px, 6.8vw, 34px) !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
  }
  .prod-detail-desc-f5 {
    font-size: 15px !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
  }
  .prod-detail-table {
    width: 100% !important;
  }
  .prod-detail-table td {
    padding: 10px 12px !important;
    font-size: 14px !important;
  }
  .prod-detail-bullets-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .prod-detail-sticky-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 9999 !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 14px 18px !important;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18) !important;
    margin: 0 !important;
    background: #146642 !important;
    box-sizing: border-box !important;
    gap: 10px !important;
  }
  .prod-detail-card-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  .prod-detail-vol-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .prod-detail-vol-label {
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  .prod-detail-vol-select {
    padding: 6px 10px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }
  .prod-detail-card-price {
    font-size: 20px !important;
    white-space: nowrap !important;
  }
  .prod-detail-card-btn {
    padding: 12px 18px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    width: 100% !important;
  }

  /* 4. LEGAL DOCUMENT PREVIEW MODAL & NOTICE */
  .doc-viewer-modal-box {
    padding: 24px 16px !important;
    width: 94% !important;
    max-width: 520px !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
  }
  .doc-viewer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .doc-viewer-title {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }
  .doc-viewer-date {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .doc-viewer-notice {
    padding: 14px 16px !important;
    border-radius: 10px !important;
    gap: 12px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    align-items: flex-start !important;
    box-sizing: border-box !important;
  }
  .doc-viewer-notice svg {
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    margin-top: 2px !important;
  }
}


.prod-benefits-title {
  color: #146642 !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  margin-top: 36px !important;
  margin-bottom: 14px !important;
}
.prod-benefits-lead {
  font-size: 15px;
  line-height: 24px;
  color: #191919;
  margin-bottom: 20px;
}
.prod-detail-bullets-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.prod-detail-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 24px;
  color: #191919;
}
.prod-detail-bullet-item::before {
  display: none !important;
}
.prod-bullet-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  flex-shrink: 0;
}
.prod-bullet-dots .p-dot-solid {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #146642;
}
.prod-bullet-dots .p-dot-outline {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid #146642;
  background-color: transparent;
  box-sizing: border-box;
}
.prod-bullet-text {
  flex: 1;
}
