/* ==========================================================================
   SIP LAB — Premium Theme Styles
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --sl-bg: #FAF7F2;
    --sl-bg-alt: #F0EDE5;
    --sl-bg-surface: #FFFFFF;
    --sl-green-dark: #1A3C2A;
    --sl-green-mid: #2D5E3F;
    --sl-green-light: #3A7A52;
    --sl-gold: #B8943F;
    --sl-gold-light: #C8A45E;
    --sl-gold-glow: rgba(184, 148, 63, 0.15);
    --sl-text: #1A3C2A;
    --sl-text-light: #4A6B55;
    --sl-muted: #7A8F80;
    --sl-border: rgba(26, 60, 42, 0.1);
    --sl-border-gold: rgba(184, 148, 63, 0.25);
    --sl-font-heading: 'Playfair Display', Georgia, serif;
    --sl-font-body: 'Inter', -apple-system, sans-serif;
    --sl-radius: 12px;
    --sl-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sl-shadow: 0 4px 24px rgba(26, 60, 42, 0.08);
    --sl-shadow-hover: 0 12px 40px rgba(26, 60, 42, 0.12);
}

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

html { scroll-behavior: smooth; }

body.siplab-theme {
    font-family: var(--sl-font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--sl-text);
    background: var(--sl-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Hide Kadence default header/footer */
body.siplab-theme .site-header,
body.siplab-theme .site-footer,
body.siplab-theme #wrapper { display: none !important; }
body.siplab-theme .site { background: transparent; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--sl-font-heading);
    color: var(--sl-green-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.2rem; color: var(--sl-text-light); }

a { color: var(--sl-gold); text-decoration: none; transition: color var(--sl-transition); }
a:hover { color: var(--sl-green-dark); }

em { font-style: italic; }
strong { font-weight: 600; }

/* ---------- Utility ---------- */
.sl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sl-container--narrow { max-width: 800px; }

.sl-section {
    padding: 100px 0;
    position: relative;
}

.sl-section--alt { background: var(--sl-bg-alt); }
.sl-section--surface { background: var(--sl-bg-surface); }
.sl-section--green { background: var(--sl-green-dark); color: #fff; }
.sl-section--green h2, .sl-section--green h3 { color: #fff; }
.sl-section--green p { color: rgba(255,255,255,0.85); }

/* Subtle texture overlay */
.sl-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.015;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    z-index: 0;
}

.sl-section > * { position: relative; z-index: 1; }

/* Section divider */
.sl-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--sl-green-mid), var(--sl-green-light));
    margin: 24px 0;
    border: none;
}

.sl-divider--center { margin: 24px auto; }

/* Accent line */
.sl-gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, var(--sl-green-mid), var(--sl-green-light));
    margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.sl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--sl-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--sl-transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sl-btn--gold {
    background: var(--sl-green-dark);
    color: #fff;
}

.sl-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 60, 42, 0.2);
    background: var(--sl-green-mid);
    color: #fff;
}

.sl-btn--outline {
    background: transparent;
    border: 1.5px solid var(--sl-green-dark);
    color: var(--sl-green-dark);
}

.sl-btn--outline:hover {
    background: var(--sl-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.sl-btn--sm { padding: 10px 24px; font-size: 0.85rem; }

.sl-btn--lg { padding: 20px 48px; font-size: 1rem; }

/* Button shimmer effect */
.sl-btn--gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}
.sl-btn--gold:hover::after { left: 100%; }

/* ---------- Header ---------- */
.sl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.sl-header.scrolled {
    padding: 12px 0;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sl-border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.sl-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sl-header__logo img {
    height: 44px;
    width: auto;
    transition: height 0.3s;
}

.sl-header.scrolled .sl-header__logo img { height: 36px; }

.sl-header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.sl-header__nav a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--sl-green-dark);
    opacity: 0.75;
    transition: all 0.3s;
    position: relative;
}

.sl-header__nav a:not(.sl-btn):hover { opacity: 1; color: var(--sl-green-dark); }

.sl-header__nav a:not(.sl-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sl-green-dark);
    transition: width 0.3s;
}

.sl-header__nav a:not(.sl-btn):hover::after { width: 100%; }

/* Hamburger */
.sl-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.sl-header__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--sl-green-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.sl-header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sl-header__hamburger.active span:nth-child(2) { opacity: 0; }
.sl-header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.sl-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Gradient-only hero (no bg image) */
.sl-hero--gradient {
    background: linear-gradient(160deg, #FAF7F2 0%, #F0EDE5 40%, #E8E3D8 100%);
}

/* Product hero with background image */
.sl-hero--product {
    background: var(--sl-bg);
}

.sl-hero--product .sl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sl-hero--product .sl-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

.sl-hero--product .sl-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250,247,242,0.95) 0%, rgba(250,247,242,0.85) 35%, rgba(250,247,242,0.4) 60%, rgba(250,247,242,0.1) 100%);
}

.sl-hero--product .sl-hero__inner {
    grid-template-columns: 1fr 1fr;
}

.sl-hero--product .sl-hero__content {
    position: relative;
    z-index: 1;
}

.sl-hero--product .sl-hero__spacer {
    min-height: 200px;
}

/* Lifestyle hero with photo background */
.sl-hero--lifestyle {
    background: var(--sl-bg);
}

.sl-hero--lifestyle .sl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sl-hero--lifestyle .sl-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.sl-hero--lifestyle .sl-hero__bg::after {
    background: linear-gradient(
        90deg,
        rgba(250,247,242,1) 0%,
        rgba(250,247,242,0.95) 25%,
        rgba(250,247,242,0.7) 45%,
        rgba(250,247,242,0.15) 65%,
        rgba(250,247,242,0) 100%
    );
}

.sl-hero--lifestyle .sl-hero__inner {
    grid-template-columns: 1fr 1fr;
}

.sl-hero--lifestyle .sl-hero__content {
    position: relative;
    z-index: 1;
}

.sl-hero--lifestyle .sl-hero__spacer {
    min-height: 200px;
}

@media (max-width: 1024px) {
    .sl-hero--lifestyle .sl-hero__bg img {
        object-position: center center;
    }
    .sl-hero--lifestyle .sl-hero__bg::after {
        background: linear-gradient(
            180deg,
            rgba(250,247,242,0.95) 0%,
            rgba(250,247,242,0.85) 40%,
            rgba(250,247,242,0.3) 70%,
            rgba(250,247,242,0) 100%
        );
    }
    .sl-hero--lifestyle .sl-hero__inner {
        grid-template-columns: 1fr;
    }
    .sl-hero--lifestyle .sl-hero__ctas { justify-content: center; }
    .sl-hero--lifestyle .sl-hero__content { text-align: center; }
    .sl-hero--lifestyle .sl-hero__spacer { min-height: 250px; }
}

@media (max-width: 768px) {
    .sl-hero--lifestyle .sl-hero__spacer { min-height: 200px; }
}

@media (max-width: 1024px) {
    .sl-hero--product .sl-hero__bg img {
        object-position: center bottom;
    }
    .sl-hero--product .sl-hero__bg::after {
        background: linear-gradient(180deg, rgba(250,247,242,0.92) 0%, rgba(250,247,242,0.8) 50%, rgba(250,247,242,0.5) 100%);
    }
    .sl-hero--product .sl-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sl-hero--product .sl-hero__ctas { justify-content: center; }
    .sl-hero--product .sl-hero__spacer { min-height: 300px; }
}

.sl-hero--gradient::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,60,42,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sl-hero--gradient::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,148,63,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sl-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
}

.sl-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sl-hero__content { max-width: 620px; }

.sl-hero__badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--sl-green-mid);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sl-green-mid);
    margin-bottom: 28px;
}

.sl-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.sl-hero__title .sl-highlight {
    background: linear-gradient(135deg, var(--sl-green-mid), var(--sl-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sl-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--sl-text-light);
    margin-bottom: 36px;
}

.sl-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.sl-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sl-hero__image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* Hero glow ring */
.sl-hero__image::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sl-gold-glow) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* ---------- Glass Cards ---------- */
.sl-card {
    background: var(--sl-bg-surface);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 36px;
    transition: all var(--sl-transition);
    box-shadow: var(--sl-shadow);
}

.sl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sl-shadow-hover);
}

.sl-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sl-green-dark), var(--sl-green-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}

/* ---------- Ingredient Cards ---------- */
.sl-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sl-ingredient {
    background: var(--sl-bg-surface);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: all var(--sl-transition);
    box-shadow: var(--sl-shadow);
}

.sl-ingredient:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
}

.sl-ingredient__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.sl-ingredient:hover .sl-ingredient__img img { transform: scale(1.08); }

.sl-ingredient__body { padding: 28px; }

.sl-ingredient__body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--sl-green-dark);
}

.sl-ingredient__body p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ---------- Dual Action Heroes ---------- */
.sl-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.sl-dual__card {
    background: var(--sl-bg-surface);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: all var(--sl-transition);
    box-shadow: var(--sl-shadow);
}

.sl-dual__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sl-shadow-hover);
}

.sl-dual__img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.sl-dual__card:hover .sl-dual__img img { transform: scale(1.05); }

.sl-dual__body { padding: 36px; }

.sl-dual__body h3 {
    font-family: var(--sl-font-heading);
    font-size: 1.4rem;
    color: var(--sl-green-dark);
    margin-bottom: 16px;
}

/* ---------- Section Headers ---------- */
.sl-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.sl-section-header h2 { margin-bottom: 20px; }

.sl-section-header p { font-size: 1.1rem; opacity: 0.8; }

/* ---------- Feature List ---------- */
.sl-features { list-style: none; padding: 0; margin: 32px 0; }

.sl-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--sl-border);
    font-size: 1.05rem;
}

.sl-features li::before {
    content: '✦';
    color: var(--sl-green-mid);
    font-size: 0.8rem;
    margin-top: 6px;
    flex-shrink: 0;
}

/* ---------- FAQ Accordion ---------- */
.sl-faq { max-width: 800px; margin: 0 auto; }

.sl-faq__item {
    border-bottom: 1px solid var(--sl-border);
    overflow: hidden;
}

.sl-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--sl-font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--sl-green-dark);
    transition: color 0.3s;
}

.sl-faq__question:hover { color: var(--sl-green-mid); }

.sl-faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--sl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: var(--sl-green-dark);
}

.sl-faq__item.active .sl-faq__icon { transform: rotate(45deg); background: var(--sl-green-dark); color: #fff; }

.sl-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.sl-faq__answer__inner {
    padding: 0 0 24px;
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.8;
}

.sl-faq__item.active .sl-faq__answer { max-height: 500px; }

/* ---------- CTA Banner ---------- */
.sl-cta-banner {
    text-align: center;
    padding: 80px 24px;
    background: var(--sl-green-dark);
    border-radius: var(--sl-radius);
    position: relative;
    overflow: hidden;
}

.sl-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.04), transparent 50%);
    pointer-events: none;
}

.sl-cta-banner h2 { margin-bottom: 16px; position: relative; color: #fff; }
.sl-cta-banner p { margin-bottom: 32px; position: relative; color: rgba(255,255,255,0.8); }
.sl-cta-banner .sl-btn { position: relative; background: #fff; color: var(--sl-green-dark); }
.sl-cta-banner .sl-btn:hover { background: var(--sl-bg-alt); }

/* ---------- Two Column Layout ---------- */
.sl-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sl-two-col--reverse .sl-two-col__media { order: -1; }

.sl-two-col__media img {
    width: 100%;
    border-radius: var(--sl-radius);
    box-shadow: var(--sl-shadow);
}

.sl-two-col__content h2 { margin-bottom: 20px; }

/* ---------- Blog Cards ---------- */
.sl-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.sl-blog-card {
    background: var(--sl-bg-surface);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: all var(--sl-transition);
    text-decoration: none;
    display: block;
    box-shadow: var(--sl-shadow);
}

.sl-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
}

.sl-blog-card__img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sl-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.sl-blog-card:hover .sl-blog-card__img img { transform: scale(1.06); }

.sl-blog-card__body { padding: 28px; }

.sl-blog-card__body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--sl-green-dark);
    transition: color 0.3s;
    line-height: 1.4;
}

.sl-blog-card:hover .sl-blog-card__body h3 { color: var(--sl-green-mid); }

.sl-blog-card__body p { font-size: 0.92rem; opacity: 0.7; margin-bottom: 0; }

.sl-blog-card__meta {
    padding: 16px 28px;
    border-top: 1px solid var(--sl-border);
    font-size: 0.8rem;
    color: var(--sl-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Single Post ---------- */
.sl-post-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.sl-post-hero h1 {
    max-width: 800px;
    margin: 0 auto 24px;
}

.sl-post-hero__meta {
    color: var(--sl-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sl-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.sl-post-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.sl-post-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--sl-green-mid);
}

.sl-post-content p { font-size: 1.08rem; line-height: 1.85; }

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

.sl-post-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.sl-post-content strong { color: var(--sl-green-dark); }

.sl-post-content em { color: var(--sl-green-mid); font-style: italic; }

/* Post CTA sidebar */
.sl-post-cta-float {
    position: sticky;
    top: 120px;
    background: var(--sl-bg-surface);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--sl-shadow);
}

.sl-post-cta-float img { width: 120px; margin-bottom: 16px; }
.sl-post-cta-float h4 { margin-bottom: 12px; font-size: 1rem; }
.sl-post-cta-float p { font-size: 0.88rem; opacity: 0.7; margin-bottom: 16px; }

/* ---------- Footer ---------- */
.sl-footer {
    background: var(--sl-green-dark);
    border-top: none;
    padding: 80px 0 40px;
    position: relative;
    color: rgba(255,255,255,0.7);
}

.sl-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sl-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.sl-footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.sl-footer__tagline {
    font-size: 0.92rem;
    opacity: 0.6;
    line-height: 1.7;
}

.sl-footer__links h4 {
    font-family: var(--sl-font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 20px;
}

.sl-footer__links a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    padding: 6px 0;
    transition: all 0.3s;
}

.sl-footer__links a:hover { color: #fff; }

.sl-footer__disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    text-align: center;
}

.sl-footer__disclaimer p {
    font-size: 0.8rem;
    opacity: 0.4;
    max-width: 700px;
    margin: 0 auto;
}

.sl-footer__bottom {
    text-align: center;
    padding-top: 20px;
}

.sl-footer__bottom p {
    font-size: 0.82rem;
    opacity: 0.4;
    margin: 0;
}

/* ---------- Scroll Animations ---------- */
.sl-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sl-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.sl-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sl-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.sl-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sl-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.sl-stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ---------- Parallax ---------- */
.sl-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@supports (-webkit-touch-callout: none) {
    .sl-parallax { background-attachment: scroll; }
}

/* ---------- Page Hero (non-home) ---------- */
.sl-page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--sl-bg) 0%, var(--sl-bg-alt) 100%);
    position: relative;
}

.sl-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sl-border), transparent);
}

.sl-page-hero h1 { margin-bottom: 16px; }

.sl-page-hero p {
    font-size: 1.15rem;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- How To Use ---------- */
.sl-how-to {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.sl-how-to__step {
    background: var(--sl-bg-surface);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 32px;
    box-shadow: var(--sl-shadow);
}

.sl-how-to__step h3 {
    color: var(--sl-green-dark);
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.sl-how-to__step ul { list-style: none; padding: 0; }

.sl-how-to__step li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.sl-how-to__step li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sl-green-mid);
}

/* ---------- What We Reject (Story page) ---------- */
.sl-reject-list { list-style: none; padding: 0; margin: 32px 0; }

.sl-reject-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--sl-border);
    font-size: 1.05rem;
}

.sl-reject-list li::before {
    content: '✕';
    color: #e74c3c;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- Contact ---------- */
.sl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .sl-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .sl-hero__content { max-width: 100%; }
    .sl-hero__ctas { justify-content: center; }
    .sl-hero__image { margin-top: 40px; }
    .sl-hero__image img { max-width: 360px; }
    
    .sl-two-col { grid-template-columns: 1fr; gap: 40px; }
    .sl-two-col--reverse .sl-two-col__media { order: 0; }
    
    .sl-dual { grid-template-columns: 1fr; }
    .sl-ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .sl-footer__grid { grid-template-columns: 1fr 1fr; }
    .sl-how-to { grid-template-columns: 1fr; }
    .sl-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sl-section { padding: 60px 0; }
    
    .sl-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.4s ease;
        border-left: 1px solid var(--sl-border);
    }
    
    .sl-header__nav.open { right: 0; }
    
    .sl-header__nav a {
        padding: 16px 0;
        font-size: 1rem;
        width: 100%;
        border-bottom: 1px solid var(--sl-border);
    }
    
    .sl-header__hamburger { display: flex; }
    
    .sl-hero { min-height: auto; padding: 140px 0 80px; }
    .sl-hero__title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    
    .sl-ingredients-grid { grid-template-columns: 1fr; }
    .sl-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .sl-blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Overlay for mobile menu ---------- */
.sl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sl-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ---------- Misc ---------- */
/* ---------- Contact Form ---------- */
.sl-form { margin-top: 8px; }

.sl-form__field {
    margin-bottom: 20px;
}

.sl-form__field label {
    display: block;
    font-family: var(--sl-font-body);
    font-weight: 500;
    color: var(--sl-green-dark);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.sl-required { color: #c0392b; }

.sl-form__field input,
.sl-form__field textarea {
    width: 100%;
    display: block;
    border: 1px solid rgba(26, 60, 42, 0.15);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: var(--sl-font-body);
    font-size: 0.95rem;
    background: var(--sl-bg-surface);
    color: var(--sl-text);
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.sl-form__field input:focus,
.sl-form__field textarea:focus {
    border-color: var(--sl-green-mid);
    box-shadow: 0 0 0 3px rgba(45, 94, 63, 0.1);
    outline: none;
}

.sl-form__field textarea {
    min-height: 160px;
    resize: vertical;
}

.sl-form__field input::placeholder,
.sl-form__field textarea::placeholder {
    color: var(--sl-muted);
    opacity: 0.7;
}

.sl-form .sl-btn { margin-top: 8px; width: 100%; justify-content: center; }

.sl-form-success {
    background: rgba(45, 94, 63, 0.08);
    border: 1px solid rgba(45, 94, 63, 0.2);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.sl-form-success p {
    color: var(--sl-green-dark);
    font-weight: 500;
    margin: 0;
}

/* ---------- Texture & Depth Enhancements ---------- */

/* Leaf/botanical pattern overlay for alt sections */
.sl-section--alt::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A3C2A' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

/* Subtle top border on sections */
.sl-section--alt { border-top: 1px solid rgba(26, 60, 42, 0.06); border-bottom: 1px solid rgba(26, 60, 42, 0.06); }

/* Gradient mesh on hero */
.sl-hero--gradient {
    position: relative;
}

/* Organic blob shapes for depth */
.sl-hero--gradient .sl-hero__inner::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: rgba(26, 60, 42, 0.03);
    z-index: -1;
    animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0); }
    33% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; transform: translate(20px, -20px); }
    66% { border-radius: 50% 50% 30% 70% / 60% 40% 70% 30%; transform: translate(-10px, 10px); }
}

/* Cards get a subtle top-left accent border */
.sl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--sl-green-mid), transparent);
    border-radius: 0 0 3px 0;
}

.sl-card { position: relative; }

/* Ingredient card hover glow */
.sl-ingredient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--sl-radius);
    opacity: 0;
    transition: opacity 0.4s;
    background: linear-gradient(135deg, rgba(26,60,42,0.02), rgba(184,148,63,0.04));
    pointer-events: none;
    z-index: 1;
}

.sl-ingredient:hover::after { opacity: 1; }
.sl-ingredient { position: relative; }

/* Dual action card top accent */
.sl-dual__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sl-green-dark), var(--sl-green-light), transparent);
    z-index: 2;
}

.sl-dual__card { position: relative; }

/* Section header decorative dots */
.sl-section-header::before {
    content: '• • •';
    display: block;
    color: var(--sl-green-mid);
    font-size: 0.6rem;
    letter-spacing: 8px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* CTA banner texture */
.sl-cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--sl-radius);
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

/* Footer texture */
.sl-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

/* FAQ item hover bg */
.sl-faq__item { transition: background 0.3s; padding: 0 16px; margin: 0 -16px; border-radius: 8px; }
.sl-faq__item:hover { background: rgba(26, 60, 42, 0.02); }

/* Feature list items - subtle left border on hover */
.sl-features li { transition: all 0.3s; padding-left: 0; border-left: 2px solid transparent; }
.sl-features li:hover { padding-left: 8px; border-left: 2px solid var(--sl-green-mid); background: rgba(26, 60, 42, 0.02); }

/* Two-col image treatment */
.sl-two-col__media { position: relative; }
.sl-two-col__media::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(26, 60, 42, 0.08);
    border-radius: var(--sl-radius);
    z-index: -1;
}

/* Page hero decorative line */
.sl-page-hero .sl-hero__badge { margin-bottom: 20px; }

/* Smooth gradient between sections */
.sl-section + .sl-section--alt { margin-top: -1px; }

::selection {
    background: var(--sl-green-dark);
    color: #fff;
}

img { max-width: 100%; height: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sl-bg); }
::-webkit-scrollbar-thumb { background: var(--sl-green-dark); border-radius: 4px; opacity: 0.3; }
::-webkit-scrollbar-thumb:hover { background: var(--sl-green-mid); }

/* ============================================
   TEXTURE & VISUAL UPGRADE v1.3
   ============================================ */

/* --- HERO SPLIT LAYOUT --- */
.sl-hero__inner--split {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: center;
    gap: 40px;
}

.sl-hero__product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sl-hero__product-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,148,63,0.0) 0%, rgba(184,148,63,0.04) 40%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.sl-hero__product-img {
    position: relative;
    z-index: 1;
    max-width: 647px;
    width: 100%;
    height: auto;
    filter: none;
    
    animation: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero trust badges */
.sl-hero__trust {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.sl-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--sl-text-muted, #6B7C6E);
    letter-spacing: 0.02em;
}

.sl-trust-item svg {
    color: var(--sl-gold, #B8943F);
    flex-shrink: 0;
}

/* Hero scroll hint */
.sl-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--sl-text-muted, #6B7C6E);
    opacity: 0.4;
    z-index: 2;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero botanical leaf decorations */
.sl-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sl-hero__leaf {
    position: absolute;
    color: var(--sl-green-dark, #1A3C2A);
}

.sl-hero__leaf--1 {
    top: 5%;
    right: 8%;
    width: 120px;
    height: 180px;
    transform: rotate(25deg);
    animation: leafSway 8s ease-in-out infinite;
}

.sl-hero__leaf--2 {
    bottom: 10%;
    left: 3%;
    width: 80px;
    height: 120px;
    transform: rotate(-15deg);
    animation: leafSway 10s ease-in-out infinite reverse;
}

.sl-hero__leaf--3 {
    top: 40%;
    right: 2%;
    width: 60px;
    height: 90px;
    transform: rotate(45deg);
    animation: leafSway 12s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(var(--leaf-rotate, 25deg)); }
    50% { transform: rotate(calc(var(--leaf-rotate, 25deg) + 5deg)) translateX(3px); }
}

.sl-hero__leaf--1 { --leaf-rotate: 25deg; }
.sl-hero__leaf--2 { --leaf-rotate: -15deg; }
.sl-hero__leaf--3 { --leaf-rotate: 45deg; }

/* --- SOCIAL PROOF TICKER --- */
.sl-ticker {
    background: var(--sl-green-dark, #1A3C2A);
    color: rgba(255,255,255,0.85);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.sl-ticker__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.sl-ticker__dot {
    color: var(--sl-gold, #B8943F);
    font-size: 1.2rem;
}

/* --- ENHANCED SECTION BORDERS --- */
.sl-section--alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sl-gold, #B8943F), transparent);
    opacity: 0.3;
}

/* --- GREEN CTA SECTION --- */
.sl-section--green {
    position: relative;
    overflow: hidden;
}

.sl-section--green::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,148,63,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sl-cta-banner--dark {
    text-align: center;
    padding: 60px 40px;
}

.sl-cta-banner--dark h2 {
    color: #fff;
}

.sl-cta-banner--dark p {
    color: rgba(255,255,255,0.8);
}

/* --- ENHANCED CARD HOVER --- */
.sl-dual__card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sl-dual__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26,60,42,0.1);
}

.sl-ingredient {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-ingredient:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,60,42,0.08);
}

/* --- BLOG CARD ENHANCEMENTS --- */
.sl-blog-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(26,60,42,0.06);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.sl-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,60,42,0.12);
}

.sl-blog-card__img {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.sl-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sl-blog-card:hover .sl-blog-card__img img {
    transform: scale(1.05);
}

.sl-blog-card__body {
    padding: 24px 24px 12px;
    flex: 1;
}

.sl-blog-card__body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--sl-green-dark, #1A3C2A);
}

.sl-blog-card__body p {
    font-size: 0.9rem;
    color: var(--sl-text-muted, #6B7C6E);
    line-height: 1.5;
}

.sl-blog-card__meta {
    padding: 12px 24px 20px;
    font-size: 0.8rem;
    color: var(--sl-text-muted, #6B7C6E);
    letter-spacing: 0.03em;
}

.sl-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* --- RESPONSIVE HERO --- */
@media (max-width: 1024px) {
    .sl-hero__inner--split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sl-hero__ctas {
        justify-content: center;
    }
    .sl-hero__trust {
        justify-content: center;
    }
    .sl-hero__product {
        order: -1;
        margin-bottom: 20px;
    }
    .sl-hero__product-img {
        max-width: 431px;
    }
    .sl-hero__product-glow {
        width: 250px;
        height: 250px;
    }
    .sl-hero__leaf--1 { width: 80px; height: 120px; }
    .sl-hero__leaf--2 { width: 50px; height: 75px; }
    .sl-hero__leaf--3 { display: none; }
}

@media (max-width: 768px) {
    .sl-hero__product-img {
        max-width: 339px;
    }
    .sl-hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .sl-ticker__inner {
        font-size: 0.72rem;
        gap: 12px;
    }
    .sl-blog-grid {
        grid-template-columns: 1fr;
    }
    .sl-hero__scroll-hint {
        display: none;
    }
}

/* Remove white background from hero product image via blend mode */
.sl-hero__product-img {
}

/* --- TRUST BADGES SECTION --- */
.sl-trust-badges {
    padding: 48px 0;
    background: var(--sl-bg, #FAF7F2);
}

.sl-trust-badges__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.sl-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 100px;
}

.sl-trust-badge__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(26,60,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-trust-badge:hover .sl-trust-badge__icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,60,42,0.12);
}

.sl-trust-badge span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sl-green-dark, #1A3C2A);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .sl-trust-badges__grid {
        gap: 28px;
    }
    .sl-trust-badge__icon {
        width: 60px;
        height: 60px;
    }
    .sl-trust-badge__icon svg {
        width: 36px;
        height: 36px;
    }
}
