/* ══════════════════════════════════════════════
   SageRoot Wellness — Template-3 Bento / Masonry
   ══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --sage: #5a7a5e;
    --sage-deep: #4a6741;
    --clay: #c17a5a;
    --clay-light: #e8a87c;
    --cream: #f7f3ed;
    --ink: #2c2c2c;
    --border: #e0d8ce;
    --radius-card: 1.5rem;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

/* ── Reset Overrides ── */
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

/* ── Grid System ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.col-span-1  { grid-column: span 1; }
.col-span-2  { grid-column: span 2; }
.col-span-3  { grid-column: span 3; }
.col-span-4  { grid-column: span 4; }
.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-9  { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

.row-span-2  { grid-row: span 2; }

/* ── Bento Card ── */
.bento-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

.bento-card-pad {
    padding: 2rem;
}

/* ── Chip Utility ── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink);
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* ════════════════════
   HEADER — Sticky blur
   ════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 243, 237, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ink);
}

.header-logo {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--sage);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.header-brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--sage);
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-cart:hover {
    background: var(--sage-deep);
    color: #fff;
}

.btn-cart svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* Mobile hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.3s;
}

/* ════════════════════
   HERO BENTO
   ════════════════════ */
.hero-section {
    padding: 2rem 0;
}

.hero-headline-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.hero-headline-card h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.hero-headline-card h1 em {
    font-style: italic;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--sage-deep);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--sage);
    background: rgba(90, 122, 94, 0.06);
    color: var(--ink);
}

/* Hero product image card */
.hero-product-card {
    background: linear-gradient(135deg, var(--clay-light), var(--clay));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-product-card img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* Stat cards */
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
}

.stat-card .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.stat-card .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: #888;
    margin-bottom: 0.25rem;
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

/* ════════════════════
   SECTION TITLES
   ════════════════════ */
.section-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 1rem;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    max-width: 500px;
}

/* ════════════════════
   PRODUCT BENTO GRID
   ════════════════════ */
.product-section {
    padding: 1rem 0 3rem;
}

/* Wide featured product card */
.product-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-featured-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-featured-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--ink);
}

.product-featured-text .product-variant {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-featured-text .product-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sage-deep);
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
}

.benefit-list li::before {
    content: "\1F33F";
    position: absolute;
    left: 0;
    top: 0;
}

.product-featured-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 1.5rem;
}

.product-featured-img img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
}

/* Narrow product tile */
.product-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.2s, transform 0.2s;
}

.product-tile:hover {
    border-color: var(--sage);
    transform: translateY(-2px);
}

.product-tile-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--cream);
    min-height: 180px;
}

.product-tile-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.product-tile-info {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
}

.product-tile-info h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-tile-info .tile-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sage-deep);
}

/* Compact product cards (3 cols) */
.product-compact {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.2s;
}

.product-compact:hover {
    border-color: var(--sage);
}

.product-compact-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--cream);
    height: 140px;
}

.product-compact-img img {
    max-height: 110px;
    object-fit: contain;
}

.product-compact-info {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
}

.product-compact-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.product-compact-info .compact-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sage-deep);
}

/* Philosophy card */
.philosophy-card {
    background: var(--clay);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.philosophy-card blockquote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 1rem;
}

.philosophy-card cite {
    font-style: normal;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    opacity: 0.85;
}

/* Ingredient wall card */
.ingredient-wall {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ingredient-wall h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    display: inline-block;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.02em;
}

/* ════════════════════
   DAILY RITUAL
   ════════════════════ */
.ritual-section {
    padding: 3rem 0;
}

.ritual-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.ritual-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.ritual-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.ritual-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.ritual-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.ritual-step-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage);
    line-height: 1;
    flex-shrink: 0;
}

.ritual-step-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--ink);
}

.ritual-step-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ════════════════════
   TESTIMONIALS
   ════════════════════ */
.testimonials-section {
    padding: 3rem 0;
    background: #fff;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #e8a87c;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1.25rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
}

.testimonial-location {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.1rem;
}

/* ════════════════════
   FAQ ACCORDION
   ════════════════════ */
.faq-section {
    padding: 3rem 0;
}

.faq-heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
}

.faq-heading h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.faq-heading p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--sage);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--sage-deep);
}

.faq-answer {
    padding: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

/* ════════════════════
   FINAL CTA
   ════════════════════ */
.final-cta {
    padding: 2rem 0 3rem;
}

.final-cta-card {
    background: var(--ink);
    color: #fff;
    padding: 3.5rem;
    text-align: center;
    border: none;
}

.final-cta-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.final-cta-card .btn-primary {
    background: var(--clay);
}

.final-cta-card .btn-primary:hover {
    background: var(--clay-light);
    color: var(--ink);
}

/* ════════════════════
   FOOTER
   ════════════════════ */
.site-footer {
    background: var(--ink);
    color: #ccc;
    padding: 4rem 0 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #999;
    margin-top: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
    border-color: var(--clay-light);
    color: var(--clay-light);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Newsletter form */
.newsletter-form {
    display: flex;
    margin-top: 0.5rem;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #555;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.6rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font-body);
    outline: none;
    min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
    color: #777;
}

.newsletter-form button {
    background: var(--sage);
    border: none;
    color: #fff;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--sage-deep);
}

/* Footer bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 1rem;
    border-top: 1px solid #3a3a3a;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #ccc;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 1.5rem;
    font-size: 0.72rem;
    line-height: 1.6;
    color: #666;
}

/* ════════════════════
   RESPONSIVE
   ════════════════════ */
@media (max-width: 1024px) {
    .hero-headline-card h1 {
        font-size: 2.25rem;
    }

    .bento-grid > .col-span-8 {
        grid-column: span 12;
    }

    .bento-grid > .col-span-4 {
        grid-column: span 6;
    }

    .bento-grid > .col-span-3 {
        grid-column: span 6;
    }

    .product-featured {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-nav.nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 0.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

    .header-nav.nav-open a {
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .header-nav.nav-open a:last-child {
        border-bottom: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid > [class*="col-span-"] {
        grid-column: span 1;
    }

    .bento-grid > .row-span-2 {
        grid-row: span 1;
    }

    .hero-headline-card {
        padding: 2rem 1.5rem;
    }

    .hero-headline-card h1 {
        font-size: 1.85rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .ritual-text h2,
    .faq-heading h2,
    .final-cta-card h2 {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* === PRODUCT PAGE OVERRIDES === */

.prodBreadcrm {
    background: #f7f3ed;
    border-bottom: 1px solid #e6dfd5;
}

.prodBreadcrm p,
.prodBreadcrm a {
    color: #2c2c2c;
    font-family: 'Manrope', sans-serif;
}

.prodBreadcrm span {
    color: #5a7a5e;
}

.section-2 {
    background: #f7f3ed;
}

.s1-p1 {
    font-family: 'Sora', sans-serif;
    color: #2c2c2c;
    font-weight: 600;
}

.s1-p1 span {
    color: #5a7a5e;
}

.sec-line-2 {
    display: none;
}

.s1-p2 {
    font-family: 'Manrope', sans-serif;
    color: #666;
}

.s2-prd-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #ebe5db;
    transition: all 0.3s ease;
}

.s2-bx-arw {
    display: none;
}

.s2-p1 {
    background: #5a7a5e;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    line-height: 26px;
    padding: 14px 18px;
    letter-spacing: 0;
    font-weight: 500;
}

.s2-p2 {
    background: #f7f3ed;
    color: #2c2c2c;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
}

.marg-1 .s2-p2,
.s2-3rd-box .s2-p2 {
    background: #f7f3ed;
}

.s2-prd-div {
    padding: 24px 16px;
}

.s2-price-div {
    background: #faf8f4;
    border: none;
    border-top: 1px solid #ebe5db;
    padding: 20px 18px;
}

.s2-prc-arw {
    display: none;
}

.s2-p3 {
    font-family: 'Sora', sans-serif;
    color: #2c2c2c;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
    font-weight: 600;
}

.s2-p3 span {
    font-size: 16px;
    color: #999;
}

.shop-btn {
    font-family: 'Manrope', sans-serif;
    border: 2px solid #c17a5a;
    color: #c17a5a;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    line-height: 44px;
    width: 200px;
    font-weight: 700;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #c17a5a;
    color: #fff;
    border-color: #c17a5a;
}

.shop-btn i {
    color: inherit;
}

.s2-prd-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
