:root {
    /* HEALTH Theme Colors */
    --soothe-bg-page: #f4faf8;
    --soothe-pane: #ffffff;
    --soothe-brand: #0d9488;
    --soothe-brand-hover: #0f766e;
    --soothe-text-main: #1f2937;
    --soothe-text-mute: #4b5563;
    --soothe-stroke: #e5e7eb;
    
    /* Typography */
    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Fira Sans', sans-serif;
    
    /* Shapes - soft (12-20px) */
    --soothe-radius: 16px;
}

/* Base resets & typography */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.sz-heading-text {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Gallery Interactivity (No JS) */
.sz-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#s-img1:checked ~ .sz-main-pic-frame .s-slide-1,
#s-img2:checked ~ .sz-main-pic-frame .s-slide-2,
#s-img3:checked ~ .sz-main-pic-frame .s-slide-3,
#s-img4:checked ~ .sz-main-pic-frame .s-slide-4 {
    opacity: 1;
    z-index: 10;
}

.sz-thumb-label {
    opacity: 0.6;
    transition: opacity 0.2s ease-in-out;
}

.sz-thumb-label:hover {
    opacity: 0.8;
}

#s-img1:checked ~ .sz-thumb-strip label[for="s-img1"],
#s-img2:checked ~ .sz-thumb-strip label[for="s-img2"],
#s-img3:checked ~ .sz-thumb-strip label[for="s-img3"],
#s-img4:checked ~ .sz-thumb-strip label[for="s-img4"] {
    opacity: 1;
}

/* Custom hide scrollbar for thumb strip */
.sz-thumb-strip::-webkit-scrollbar {
    height: 6px;
}
.sz-thumb-strip::-webkit-scrollbar-thumb {
    background: var(--soothe-stroke);
    border-radius: 10px;
}
.sz-thumb-strip::-webkit-scrollbar-track {
    background: transparent;
}

/* CTA Styles */
.sz-buy-trigger {
    text-decoration: none;
    display: inline-block;
}

.sz-buy-trigger:hover {
    background-color: var(--soothe-brand-hover) !important;
    text-decoration: underline;
}