/* ============================================================
   TEMPLATE-1 — Editorial / Asymmetric Layout
   VerdantPeak Nutrition  |  Navy / Teal / Cream
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --navy:  #1a2332;
  --teal:  #3d8c7a;
  --cream: #f5f0e8;
  --ink:   #2a2a2a;
  --teal-hover: #327565;
  --border-color: rgba(26, 35, 50, 0.12);
}

/* ── Base / Typography ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Utility: eyebrow ── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Utility: grain-bg ── */
.grain-bg {
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(26, 35, 50, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(26, 35, 50, 0.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
}

/* ── Utility: navy-bg with dot pattern ── */
.navy-bg {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ── Container ── */
.t1-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Rule / Divider ── */
.t1-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--teal);
  margin: 32px auto;
  max-width: 200px;
}

.t1-rule span {
  height: 1px;
  flex: 1;
  background: rgba(61, 140, 122, 0.4);
}


/* ============================================================
   HEADER
   ============================================================ */
.t1-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245, 240, 232, 0.8);
  border-bottom: 1px solid var(--border-color);
}

.t1-header .t1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.t1-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}

.t1-logo-b {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1;
  color: var(--teal);
}

.t1-logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.t1-logo-accent {
  font-style: italic;
  color: var(--teal);
}

/* Nav Links */
.t1-nav {
  display: none;
  align-items: center;
  gap: 40px;
  font-size: 0.875rem;
  color: rgba(42, 42, 42, 0.8);
}

.t1-nav a {
  text-decoration: none;
  color: rgba(42, 42, 42, 0.8);
  transition: color 0.2s;
}

.t1-nav a:hover,
.t1-nav a.active {
  color: var(--teal);
}

/* Shop Now Button */
.t1-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 20px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.t1-shop-btn:hover {
  background: var(--teal);
  color: var(--cream);
}

/* Mobile Toggle */
.t1-mobile-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}

/* Mobile Menu */
.t1-mobile-menu {
  background: var(--cream);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px 24px;
}

.t1-mobile-menu a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s;
}

.t1-mobile-menu a:last-child {
  border-bottom: none;
}

.t1-mobile-menu a:hover {
  color: var(--teal);
}


/* ============================================================
   HERO
   ============================================================ */
.t1-hero {
  padding: 48px 0 0;
}

.t1-hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.t1-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
}

.t1-hero-eyebrow-line {
  height: 1px;
  width: 40px;
  background: var(--teal);
}

.t1-hero h1 {
  margin-top: 24px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--navy);
}

.t1-hero h1 .italic {
  font-style: italic;
  color: var(--teal);
}

.t1-hero-desc {
  margin-top: 32px;
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(42, 42, 42, 0.75);
  line-height: 1.7;
}

.t1-hero-desc strong {
  color: var(--navy);
}

.t1-hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.t1-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 32px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.t1-hero-cta:hover {
  background: var(--teal);
  color: var(--cream);
}

.t1-hero-cta span {
  transition: transform 0.2s;
}

.t1-hero-cta:hover span {
  transform: translateX(4px);
}

.t1-hero-promise {
  font-size: 0.85rem;
  color: rgba(42, 42, 42, 0.6);
}

.t1-hero-promise-big {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
}

/* Hero Image */
.t1-hero-img-wrap {
  position: relative;
}

.t1-hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.t1-hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
  color: var(--cream);
}

.t1-hero-img-caption .eyebrow {
  color: var(--teal);
}

.t1-hero-img-caption p:last-child {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-top: 4px;
}

.t1-hero-corner-label {
  display: none;
}


/* ============================================================
   PROMISE TICKER
   ============================================================ */
.t1-promise-ticker {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--cream);
}

.t1-promise-ticker-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 40px;
  padding: 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.875rem;
}

.t1-promise-ticker-label {
  color: var(--teal);
}

.t1-promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.9);
}

.t1-promise-item .bullet {
  color: var(--teal);
}


/* ============================================================
   INTRO SECTION
   ============================================================ */
.t1-intro {
  padding: 96px 0;
}

.t1-intro-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.t1-intro-header .eyebrow {
  color: var(--teal);
}

.t1-intro-header h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
}

.t1-intro-header h2 .italic {
  font-style: italic;
  color: var(--teal);
}

.t1-intro-header p {
  margin-top: 32px;
  font-size: 1.1rem;
  color: rgba(42, 42, 42, 0.75);
  line-height: 1.7;
}

/* Intro Grid */
.t1-intro-grid {
  margin-top: 64px;
  display: grid;
  gap: 40px;
}

.t1-intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* Pillars */
.t1-pillars {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.t1-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.t1-pillar:first-child {
  border-top: none;
  padding-top: 0;
}

.t1-pillar-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--teal);
  font-size: 1.75rem;
  line-height: 1;
}

.t1-pillar h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--navy);
}

.t1-pillar p {
  margin-top: 12px;
  color: rgba(42, 42, 42, 0.7);
  line-height: 1.7;
}

.t1-pillars-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.t1-pillars-cta:hover {
  color: var(--teal);
}


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.t1-products {
  padding: 96px 0;
  color: var(--cream);
}

.t1-products-header {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}

.t1-products-header .eyebrow {
  color: var(--teal);
}

.t1-products-header h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--cream);
}

.t1-products-header h2 .italic {
  font-style: italic;
  color: var(--teal);
}

.t1-products-header p {
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
}

/* Product Grid */
.t1-product-grid {
  display: grid;
  gap: 1px;
  background: rgba(245, 240, 232, 0.1);
  border: 1px solid rgba(245, 240, 232, 0.1);
}

.t1-product-card {
  background: var(--navy);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.t1-product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.t1-product-card-top .eyebrow {
  color: var(--teal);
}

.t1-product-card-num {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
}

.t1-product-card-img {
  margin: 32px 0;
  aspect-ratio: 1;
  background: rgba(245, 240, 232, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.t1-product-card-img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s;
}

.t1-product-card:hover .t1-product-card-img img {
  transform: scale(1.05);
}

.t1-product-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--cream);
}

.t1-product-card-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: rgba(245, 240, 232, 0.7);
}

.t1-product-card-price .price-val {
  color: var(--cream);
}

.t1-product-card-link {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  padding-top: 16px;
  font-size: 0.875rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.t1-product-card-link:hover {
  color: var(--teal);
}

/* Shop All Products button */
.t1-products-all {
  margin-top: 48px;
  text-align: center;
}

.t1-products-all a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  padding: 16px 32px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.t1-products-all a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cream);
}


/* ============================================================
   LIFESTYLE STEPS
   ============================================================ */
.t1-lifestyle {
  padding: 96px 0;
}

.t1-lifestyle-header {
  max-width: 720px;
}

.t1-lifestyle-header .eyebrow {
  color: var(--teal);
}

.t1-lifestyle-header h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
}

.t1-lifestyle-header h2 .italic {
  font-style: italic;
  color: var(--teal);
}

.t1-lifestyle-header p {
  margin-top: 24px;
  color: rgba(42, 42, 42, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
}

/* Steps Grid */
.t1-steps {
  margin-top: 64px;
  display: grid;
  gap: 24px;
}

.t1-step {
  cursor: default;
}

.t1-step-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
}

.t1-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.t1-step:hover .t1-step-img img {
  transform: scale(1.05);
}

.t1-step-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.t1-step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--teal);
  font-size: 1.75rem;
}

.t1-step-title h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--navy);
}

.t1-step p {
  margin-top: 12px;
  color: rgba(42, 42, 42, 0.7);
  line-height: 1.7;
}

/* Steps CTA */
.t1-lifestyle-cta {
  margin-top: 64px;
  text-align: center;
}

.t1-lifestyle-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 32px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s;
}

.t1-lifestyle-cta a:hover {
  background: var(--teal);
  color: var(--cream);
}


/* ============================================================
   QUOTE SECTION
   ============================================================ */
.t1-quote {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.t1-quote-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  gap: 48px;
  align-items: center;
}

.t1-quote-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  display: block;
}

.t1-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.35;
}

.t1-quote blockquote .accent {
  font-style: italic;
  color: var(--teal);
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.t1-faq {
  padding: 96px 0;
}

.t1-faq-header {
  text-align: center;
}

.t1-faq-header .eyebrow {
  color: var(--teal);
}

.t1-faq-header h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
}

.t1-faq-header h2 .italic {
  font-style: italic;
  color: var(--teal);
}

/* FAQ Accordion */
.t1-faq-list {
  max-width: 900px;
  margin: 56px auto 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.t1-faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.t1-faq-item:last-child {
  border-bottom: none;
}

.t1-faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.t1-faq-item summary::-webkit-details-marker {
  display: none;
}

.t1-faq-item summary::marker {
  display: none;
  content: '';
}

.t1-faq-q {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.t1-faq-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--teal);
  font-size: 1.1rem;
  padding-top: 2px;
  flex-shrink: 0;
}

.t1-faq-q-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--navy);
}

.t1-faq-toggle {
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 2px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.t1-faq-item[open] .t1-faq-toggle {
  transform: rotate(45deg);
}

.t1-faq-answer {
  margin-top: 16px;
  padding-left: 48px;
  color: rgba(42, 42, 42, 0.7);
  line-height: 1.7;
  max-width: 720px;
}

/* FAQ CTA */
.t1-faq-cta {
  margin-top: 64px;
  text-align: center;
}

.t1-faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 32px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s;
}

.t1-faq-cta a:hover {
  background: var(--teal);
  color: var(--cream);
}


/* ============================================================
   FOOTER
   ============================================================ */
.t1-footer {
  color: var(--cream);
  margin-top: 0;
}

.t1-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  gap: 48px;
}

.t1-footer-brand {
  /* spans 2 cols on desktop */
}

.t1-footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--cream);
}

.t1-footer-brand-name .italic {
  font-style: italic;
  color: var(--teal);
}

.t1-footer-brand p {
  margin-top: 16px;
  color: rgba(245, 240, 232, 0.7);
  max-width: 380px;
  line-height: 1.7;
}

.t1-footer-care-label {
  margin-top: 32px;
  color: rgba(245, 240, 232, 0.5);
}

.t1-footer-brand .t1-footer-phone {
  margin-top: 8px;
  color: rgba(245, 240, 232, 0.8);
}

.t1-footer-brand .t1-footer-email {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.t1-footer-brand .t1-footer-email:hover {
  color: var(--teal);
}

/* Footer Link Columns */
.t1-footer-col-title {
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 16px;
}

.t1-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.t1-footer-links li {
  margin-bottom: 8px;
}

.t1-footer-links a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.t1-footer-links a:hover {
  color: var(--teal);
}

/* Footer Disclaimer */
.t1-footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 24px;
}

/* Copyright Bar */
.t1-copyright {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.t1-copyright-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}


/* ============================================================
   RESPONSIVE — md: 768px
   ============================================================ */
@media (min-width: 768px) {

  .t1-container {
    padding: 0 40px;
  }

  /* Header: show nav */
  .t1-nav {
    display: flex;
  }

  .t1-mobile-toggle {
    display: none;
  }

  /* Hero grid */
  .t1-hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Intro grid */
  .t1-intro-grid {
    grid-template-columns: 5fr 7fr;
  }

  /* Products header */
  .t1-products-header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .t1-products-header p {
    text-align: right;
    max-width: 420px;
    margin-left: auto;
  }

  /* Product grid */
  .t1-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps */
  .t1-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Quote */
  .t1-quote-inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .t1-footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .t1-footer-brand {
    grid-column: 1 / 2;
  }

  .t1-faq-q-text {
    font-size: 1.5rem;
  }
}


/* ============================================================
   RESPONSIVE — lg: 1024px
   ============================================================ */
@media (min-width: 1024px) {

  .t1-container {
    padding: 0 40px;
  }

  /* Hero 7/5 split */
  .t1-hero {
    padding: 80px 0 0;
  }

  .t1-hero-inner {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
  }

  .t1-hero-corner-label {
    display: block;
    position: absolute;
    top: -24px;
    left: -24px;
    color: rgba(42, 42, 42, 0.4);
    transform: rotate(90deg);
    transform-origin: bottom left;
  }

  /* Intro grid 5/7 */
  .t1-intro-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  /* Product grid 3-col */
  .t1-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Steps 4-col */
  .t1-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Footer 4-col */
  .t1-footer-inner {
    grid-template-columns: 2fr 2fr 1fr 1fr;
  }

  .t1-footer-brand {
    grid-column: 1 / 3;
  }
}


/* ============================================================
   MISC / OVERRIDES
   ============================================================ */

/* Prevent template styles from bleeding into old cart/shop/checkout pages.
   The old CSS (style.css, media.css, inner.css) still loads on those pages. */
.t1-page .shop-btn,
.t1-page .hdrbtn {
  /* reset any old button styling on index page */
  all: unset;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--teal);
  color: var(--cream);
}


/* === PRODUCT PAGE OVERRIDES === */

.prodBreadcrm {
  background: #f5f0e8;
  border-bottom: 1px solid #e0d9ce;
}

.prodBreadcrm p,
.prodBreadcrm a {
  color: #1a2332;
}

.prodBreadcrm span {
  color: #3d8c7a;
}

.section-2 {
  background: #f5f0e8;
}

.s1-p1 {
  font-family: 'Fraunces', serif;
  color: #1a2332;
}

.s1-p1 span {
  color: #3d8c7a;
}

.sec-line-2 {
  display: none;
}

.s1-p2 {
  font-family: 'Inter', sans-serif;
  color: #555;
}

.s2-prd-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e8e0d4;
  transition: all 0.3s ease;
}

.s2-bx-arw {
  display: none;
}

.s2-p1 {
  background: #1a2332;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 28px;
  padding: 14px 16px;
  letter-spacing: 0;
}

.s2-p2 {
  background: #f5f0e8;
  color: #1a2332;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
}

.marg-1 .s2-p2,
.s2-3rd-box .s2-p2 {
  background: #f5f0e8;
}

.s2-prd-div {
  padding: 24px 16px;
}

.s2-price-div {
  background: #fff;
  border: none;
  border-top: 1px solid #e8e0d4;
  padding: 20px 16px;
}

.s2-prc-arw {
  display: none;
}

.s2-p3 {
  font-family: 'Fraunces', serif;
  color: #1a2332;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 16px;
}

.s2-p3 span {
  font-size: 18px;
  color: #888;
}

.shop-btn {
  font-family: 'Inter', sans-serif;
  border: 2px solid #3d8c7a;
  color: #3d8c7a;
  border-radius: 8px;
  font-size: 16px;
  line-height: 44px;
  width: 200px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: #3d8c7a;
  color: #fff;
  border-color: #3d8c7a;
}

.shop-btn i {
  color: inherit;
}

.s2-prd-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
