/* =============================================
   MIRACLE BOTANICALS — Global Stylesheet
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Manrope', sans-serif;
  background-color: #f8faf8;
  color: #191c1b;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Design Tokens ---- */
:root {
  --color-primary:        #061b0e;
  --color-secondary:      #306a3f;
  --color-tertiary:       #735c00;
  --color-surface:        #f8faf8;
  --color-surface-low:    #f2f4f2;
  --color-surface-card:   #ffffff;
  --color-surface-dark:   #eceeec;
  --color-on-primary:     #ffffff;
  --color-on-surface:     #191c1b;
  --color-on-muted:       #434843;
  --color-outline:        #c3c8c1;
  --color-gold:           #735c00;

  --font-serif:  'EB Garamond', Georgia, serif;
  --font-sans:   'Manrope', system-ui, sans-serif;

  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-full: 9999px;

  --max-w:       1440px;
  --px-desktop:  2rem;
  --px-mobile:   1.25rem;
  --section-py:  7rem;
}

/* ---- Typography ---- */
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.t-hero {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}

.t-body-lg {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-on-muted);
}

.t-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-on-muted);
}

.t-label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px-desktop);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--px-mobile); }
}

.section { padding-block: var(--section-py); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.btn-primary:hover { background: var(--color-secondary); }

.btn-outline {
  background: rgba(255,255,255,0.8);
  color: var(--color-primary);
  border: 1px solid var(--color-outline);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--color-surface-low); }

.btn-ghost {
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease;
}
.btn-ghost:hover { gap: 0.625rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 5rem;
  background: rgba(248,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(195,200,193,0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar__link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-surface);
  transition: color 0.2s;
}
.navbar__link:hover, .navbar__link.active { color: var(--color-secondary); }

/* Mobile Nav */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 5rem;
  background: var(--color-surface);
  z-index: 99;
  padding: 2rem var(--px-mobile);
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu__link {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-outline);
  letter-spacing: 0.05em;
}
.mobile-menu__link:last-child { border-bottom: none; }

.navbar__cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #25D366;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.navbar__email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--color-outline);
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(248,250,248,0.35) 0%,
    rgba(248,250,248,0.9) 80%,
    rgba(248,250,248,1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding-inline: var(--px-mobile);
}

.hero__eyebrow { margin-bottom: 1.25rem; }
.hero__title { margin-bottom: 1.5rem; }
.hero__desc { margin-bottom: 2.5rem; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding-block: 1.25rem;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-bar__item .material-symbols-outlined {
  font-size: 1.125rem;
  color: #97d5a0;
}

/* ---- Product Grid ---- */
.strain-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.strain-filter {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-on-muted);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.strain-filter:hover,
.strain-filter.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ---- Product Card ---- */
.product-card {
  background: var(--color-surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(195,200,193,0.4);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 16px 40px rgba(6,27,14,0.12);
  transform: translateY(-3px);
}

.product-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-low);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }

.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  align-self: flex-start;
}

.badge-green  { background: #d1fae5; color: #065f46; }
.badge-red    { background: #fee2e2; color: #991b1b; }
.badge-white  { background: #f3f4f6; color: #374151; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-premium{ background: #fef3c7; color: #92400e; }
.badge-new    { background: #ede9fe; color: #4c1d95; }

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--color-on-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* ---- Featured Card (homepage) ---- */
.featured-card {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  background: var(--color-surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(195,200,193,0.4);
  transition: box-shadow 0.35s ease;
}
.featured-card:hover { box-shadow: 0 20px 50px rgba(6,27,14,0.14); }

.featured-card__text {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-card__image {
  flex: 1;
  background: var(--color-surface-low);
  overflow: hidden;
}
.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-card__image img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .featured-card { grid-column: span 2; flex-direction: column; }
  .featured-card__image { min-height: 280px; }
}
@media (max-width: 640px) {
  .featured-card { grid-column: span 1; }
}

/* ---- Purity / Trust Section ---- */
.purity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .purity-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.purity-image {
  position: relative;
}
.purity-image__main {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(6,27,14,0.18);
}
.purity-image__main img { width: 100%; height: 100%; object-fit: cover; }

/* Purity slideshow */
.pslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pslide.active {
  opacity: 1;
}
.pslide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pslide.pslide--contain img { object-fit: contain; background: #f0f4f0; }

.pslide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.pslide-btn:hover { background: white; }
.pslide-btn--prev { left: 0.75rem; }
.pslide-btn--next { right: 0.75rem; }
.pslide-btn .material-symbols-outlined { font-size: 1.25rem; color: #061b0e; }

.pslide-dots {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.375rem;
  z-index: 5;
}
.pslide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.pslide-dot.active {
  background: white;
  transform: scale(1.3);
}

.purity-image__badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(6,27,14,0.12);
  border: 1px solid rgba(195,200,193,0.3);
  max-width: 220px;
}

@media (max-width: 1280px) {
  .purity-image__badge { display: none; }
}

.purity-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 480px) {
  .purity-features { grid-template-columns: 1fr; }
}

.purity-feature {
  display: flex;
  gap: 1rem;
}
.purity-feature .material-symbols-outlined {
  font-size: 2rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.purity-feature h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}
.purity-feature p {
  font-size: 0.9375rem;
  color: var(--color-on-muted);
  line-height: 1.55;
}

/* ---- Strain Guide (homepage) ---- */
.strain-guide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .strain-guide { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .strain-guide { grid-template-columns: repeat(2, 1fr); }
}

.strain-pill {
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(195,200,193,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.strain-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,27,14,0.1); }

.strain-pill__dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}
.strain-pill__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}
.strain-pill__effect {
  font-size: 0.8125rem;
  color: var(--color-on-muted);
}

/* ---- Dark CTA Section ---- */
.dark-section {
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding-block: var(--section-py);
}
.dark-section .t-eyebrow { color: #97d5a0; }
.dark-section .t-h2 { color: white; }
.dark-section p { color: rgba(255,255,255,0.7); }

/* ---- Lab Results ---- */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .lab-grid { grid-template-columns: 1fr; }
}

.lab-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.lab-card .material-symbols-outlined {
  font-size: 1.75rem;
  color: #97d5a0;
  flex-shrink: 0;
}
.lab-card h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.375rem;
}
.lab-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--color-outline);
}
.faq-item:first-child { border-top: 1px solid var(--color-outline); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  gap: 1rem;
}
.faq-question .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question .material-symbols-outlined { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--color-on-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- Footer ---- */
.footer {
  background: var(--color-surface-dark);
  padding-block: 5rem 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: 0.9375rem;
  color: var(--color-on-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  color: var(--color-on-muted);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--color-secondary); }

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.9375rem;
  color: var(--color-on-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-secondary); }

.footer__bottom {
  border-top: 1px solid rgba(195,200,193,0.4);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.875rem;
  color: rgba(67,72,67,0.6);
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(67,72,67,0.5);
  max-width: 520px;
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 640px) {
  .footer__disclaimer { text-align: left; }
}

/* ---- Catalog Page ---- */
.catalog-hero {
  background: var(--color-surface-low);
  padding-top: calc(5rem + 4rem);
  padding-bottom: 4rem;
}

/* ---- Product Detail Page ---- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.detail-gallery__main {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-low);
  margin-bottom: 1rem;
}
.detail-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
}
.detail-gallery__thumb {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.detail-gallery__thumb.active { border-color: var(--color-secondary); }
.detail-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.detail-tag {
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-outline);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-on-muted);
}

.detail-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.detail-divider {
  border: none;
  border-top: 1px solid var(--color-outline);
  margin-block: 1.75rem;
}

.detail-desc {
  font-size: 1.0625rem;
  color: var(--color-on-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.detail-effects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.detail-cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.detail-cta .btn {
  width: 100%;
  justify-content: center;
}

.detail-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-outline);
}
.detail-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-on-muted);
  font-weight: 600;
}
.detail-trust__item .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--color-secondary);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-on-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--color-secondary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .material-symbols-outlined { font-size: 1rem; }

/* ---- Related Products ---- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ---- Shipping Map Animations ---- */
.ship-map-panel {
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 1rem;
  background: #0a2415;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(rgba(48,106,63,0.3) 0.5px, transparent 0.5px);
  background-size: 22px 22px;
}

.ship-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Route lines draw in */
.ship-route-line {
  animation: drawRoute 1.8s ease-out forwards;
}
@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

/* Destination dots fade in */
.ship-dest-dot {
  fill: #97d5a0;
  animation: fadeInDot 0.4s ease forwards;
}
@keyframes fadeInDot {
  from { opacity: 0; r: 1; }
  to   { opacity: 1; }
}

/* Destination arrival ring expands and fades */
.ship-dest-ring {
  opacity: 0;
  animation: arrivalRing 1s ease-out forwards;
}
@keyframes arrivalRing {
  0%   { r: 4;  opacity: 0.8; }
  100% { r: 18; opacity: 0; }
}

/* Origin pulsing ring */
.ship-origin-ring {
  animation: originPulse 2.4s ease-in-out infinite;
}
@keyframes originPulse {
  0%, 100% { r: 16; opacity: 0.4; }
  50%       { r: 26; opacity: 0.08; }
}

/* Live pulse dot on dispatch card */
.ship-pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #16a34a;
  animation: shipPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes shipPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@media (max-width: 900px) {
  #shipping .container > div {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Premium Featured Card responsive ---- */
@media (max-width: 768px) {
  .featured-card {
    grid-column: span 1 !important;
    flex-direction: column;
  }
  .featured-card__image { min-height: 240px; }
}

/* ---- Misc ---- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
