/* ==========================================
   Little Comforts - Custom Theme Styles
   Refined editorial design for flower farm
   Based on little-comforts.html
   ========================================== */

:root {
    /* Colors */
    --ivory: #F6F4EF;
    --parchment: #EDE8DF;
    --warm-gray: #A69E94;
    --clay: #B8A08A;
    --umber: #6B5B4F;
    --espresso: #3E352E;
    --fern: #6B7F62;
    --moss: #4A5A44;
    --blush: #D4B8A8;

    /* Typography */
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Karla', system-ui, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--ivory);
    color: var(--espresso);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--blush);
    color: var(--espresso);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.display {
    font-family: var(--serif);
    font-weight: 300;
    font-optical-sizing: auto;
}

.label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.slf-main h2 {
    text-transform: none;
}

.slf-cart-drawer h2 {
    text-transform: none;
}

/* ==========================================
   Navigation
   ========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--ivory);
    transition: all 0.3s;
    border-bottom: 1px solid rgba(246, 244, 239, 0.3);
}

.nav--scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav__logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--espresso);
    transition: all 0.3s;
}

.nav__logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--espresso);
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}

.nav__link:hover {
    opacity: 0.6;
}

/* Navigation - Left, Center, and Right Groups */
.nav__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav__center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
    justify-content: flex-end;
}

/* Navigation Icons */
.nav__icon {
    position: relative;
    background: none;
    border: none;
    color: var(--espresso);
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav--scrolled .nav__icon {
    color: var(--umber);
}

.nav__icon:hover {
    opacity: 0.6;
}

.nav__icon svg {
    display: block;
}

/* Cart Count Badge */
.nav__cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--fern);
    color: var(--ivory);
    font-size: 0.65rem;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav__cart-count.visible {
    display: flex;
}

.nav--scrolled .nav__cart-count {
    background: var(--fern);
}

/* Mobile Menu Toggle */
.nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.nav__mobile-toggle:hover {
    opacity: 0.7;
}

.nav__mobile-icon {
    width: 22px;
    height: 2px;
    background: var(--espresso);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav--scrolled .nav__mobile-icon {
    background: var(--umber);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--ivory);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--parchment);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--espresso);
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--umber);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.mobile-menu__close:hover {
    opacity: 0.6;
}

.mobile-menu__links {
    list-style: none;
    padding: 2rem 0;
}

.mobile-menu__links li {
    margin: 0;
}

.mobile-menu__links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--umber);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu__links a:hover {
    background: var(--parchment);
    color: var(--espresso);
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 53, 46, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   Cart Drawer
   ========================================== */

.slf-cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--ivory);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.slf-cart-drawer.active {
    right: 0;
}

.slf-cart-drawer__header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--parchment);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slf-cart-drawer__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--espresso);
}

.slf-cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--umber);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.slf-cart-drawer__close:hover {
    opacity: 0.6;
}

.slf-cart-drawer__close svg {
    width: 24px;
    height: 24px;
}

.slf-cart-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.slf-cart-drawer__loading {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--warm-gray);
}

.slf-cart-drawer__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--umber);
}

.slf-cart-drawer__empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.slf-cart-drawer__items {
    margin-bottom: 2rem;
}

.slf-cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--parchment);
}

.slf-cart-item:first-child {
    padding-top: 0;
}

.slf-cart-item__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.slf-cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.slf-cart-item__name {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--espresso);
    line-height: 1.3;
}

.slf-cart-item__meta {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.slf-cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.slf-cart-item__qty-btn {
    background: var(--parchment);
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--umber);
}

.slf-cart-item__qty-btn:hover {
    background: var(--clay);
}

.slf-cart-item__qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 400;
}

.slf-cart-item__price {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--espresso);
    font-weight: 400;
}

.slf-cart-item__remove {
    background: none;
    border: none;
    color: var(--warm-gray);
    font-size: 0.75rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.slf-cart-item__remove:hover {
    color: var(--espresso);
}

.slf-cart-drawer__delivery,
.slf-cart-drawer__notes {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--parchment);
}

.slf-cart-drawer__section-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.slf-cart-drawer__date-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clay);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--espresso);
}

.slf-cart-drawer__date-select:focus {
    outline: none;
    border-color: var(--fern);
}

.slf-cart-drawer__notes-toggle {
    background: none;
    border: none;
    color: var(--umber);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s;
}

.slf-cart-drawer__notes-toggle:hover {
    color: var(--espresso);
}

.slf-cart-drawer__notes-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clay);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--espresso);
    resize: vertical;
    min-height: 80px;
    margin-top: 1rem;
}

.slf-cart-drawer__notes-textarea:focus {
    outline: none;
    border-color: var(--fern);
}

.slf-cart-drawer__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--parchment);
    background: var(--parchment);
}

.slf-cart-drawer__totals {
    margin-bottom: 1.5rem;
}

.slf-cart-drawer__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.slf-cart-drawer__total-row:last-child {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clay);
}

.slf-cart-drawer__total-label {
    font-size: 0.9rem;
    color: var(--umber);
}

.slf-cart-drawer__total-row:last-child .slf-cart-drawer__total-label {
    font-weight: 500;
    color: var(--espresso);
    font-size: 1rem;
}

.slf-cart-drawer__total-value {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--espresso);
}

.slf-cart-drawer__total-row:last-child .slf-cart-drawer__total-value {
    font-size: 1.3rem;
}

.slf-cart-drawer__checkout {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--espresso);
    color: var(--ivory);
    border: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slf-cart-drawer__checkout:hover {
    background: var(--moss);
}

.slf-cart-drawer__checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cart Drawer Overlay */
.slf-cart-overlay,
.slf-cart-drawer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 53, 46, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.slf-cart-overlay.active,
.slf-cart-drawer__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Additional cart drawer elements from template */
.slf-cart-delivery {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--parchment);
}

.slf-cart-delivery__title {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--espresso);
}

.slf-cart-delivery__note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.slf-cart-delivery__dates {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 0.5rem;
}

.slf-cart-delivery__date {
    aspect-ratio: 1;
    border: 2px solid rgba(107, 127, 98, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    font-family: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slf-cart-delivery__date:not(.disabled):hover {
    border-color: rgba(107, 127, 98, 0.5);
    background: rgba(107, 127, 98, 0.03);
}

.slf-cart-delivery__date.selected {
    border-color: var(--fern);
    background: var(--fern);
}

.slf-cart-delivery__date.selected:hover {
    border-color: var(--fern);
    background: var(--moss);
}

.slf-cart-delivery__date.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

.slf-cart-delivery__date-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.5rem;
}

.slf-cart-delivery__day {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--umber);
    margin-bottom: 0.25rem;
}

.slf-cart-delivery__date.selected .slf-cart-delivery__day {
    color: white;
}

.slf-cart-delivery__date-num {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--espresso);
}

.slf-cart-delivery__date.selected .slf-cart-delivery__date-num {
    color: white;
}

.slf-cart-delivery__error {
    color: var(--blush);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.slf-cart-notes {
    border-bottom: 1px solid var(--parchment);
}

.slf-cart-notes__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1rem 0;
    cursor: pointer;
    color: var(--umber);
    transition: color 0.2s;
}

.slf-cart-notes__toggle:hover {
    color: var(--espresso);
}

.slf-cart-notes__label {
    font-size: 0.9rem;
}

.slf-cart-notes__label .optional {
    color: var(--warm-gray);
    font-size: 0.8rem;
}

.slf-cart-notes__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.slf-cart-notes__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.slf-cart-notes__content.open {
    max-height: 300px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.slf-cart-notes__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clay);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--espresso);
    resize: vertical;
}

.slf-cart-notes__input:focus {
    outline: none;
    border-color: var(--fern);
}

.slf-cart-totals {
    padding: 1rem 0;
    border-top: 1px solid var(--clay);
    border-bottom: 1px solid var(--clay);
    margin-bottom: 1.5rem;
}

.slf-cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.slf-cart-totals__row:last-child {
    margin-bottom: 0;
}

.slf-cart-totals__row--total {
    font-size: 1.1rem;
    font-weight: 500;
}

.slf-cart-totals__label {
    color: var(--umber);
}

.slf-cart-totals__value {
    font-family: var(--serif);
    color: var(--espresso);
    font-size: 1.2rem;
}

.slf-cart-checkout {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--espresso);
    color: var(--ivory);
    border: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
}

.slf-cart-checkout:hover:not(:disabled) {
    background: var(--moss);
}

.slf-cart-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slf-cart-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--warm-gray);
}

.slf-cart-secure svg {
    width: 16px;
    height: 16px;
}

.required {
    color: var(--blush);
}

/* ==========================================
   Hero - Full bleed editorial
   ========================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(62, 53, 46, 0.7) 0%,
        rgba(62, 53, 46, 0.2) 40%,
        transparent 70%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 2.5rem 7rem;
    max-width: 680px;
}

.hero__tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(246, 244, 239, 0.25);
    border: 1px solid rgba(246, 244, 239, 0.3);
    color: var(--ivory);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero__title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.95;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--parchment);
    max-width: 420px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--fern);
    color: white;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 127, 98, 0.3);
}

.hero__btn:hover {
    background: var(--moss);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 127, 98, 0.4);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--ivory);
    opacity: 0.7;
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--ivory), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ==========================================
   Introduction - Asymmetric editorial
   ========================================== */

.intro {
    padding: 8rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro__text {
    padding-top: 3rem;
}

.intro__eyebrow {
    margin-bottom: .5rem;
}

.intro__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    text-transform: none;
}

.intro__body {
    color: var(--umber);
    max-width: 500px;
}

.intro__body p {
    margin-bottom: 1.25rem;
}

.intro__sig {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--fern);
    margin-top: 2rem;
}

.intro__title {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--moss);
}

.intro__visual {
    position: relative;
}

.intro__img-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.intro__img-inset {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    width: 200px;
    height: 260px;
    object-fit: cover;
    border: 6px solid var(--ivory);
    box-shadow: 0 20px 60px rgba(62, 53, 46, 0.15);
}

/* ==========================================
   Divider
   ========================================== */

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 2rem;
}

.divider__line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--clay);
    opacity: 0.4;
}

.divider__icon {
    width: 12px;
    height: 12px;
    border: 1px solid var(--clay);
    transform: rotate(45deg);
    opacity: 0.6;
}

/* ==========================================
   Product Section
   ========================================== */

.slf-product {
    background: var(--parchment);
    padding: 5rem 3rem;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
}

/* Gallery */
.slf-product__gallery {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.slf-product__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    order: -1;
}

.slf-product__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid rgba(107, 127, 98, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slf-product__thumbnail:hover {
    border-color: rgba(107, 127, 98, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.slf-product__thumbnail.active {
    border-color: var(--fern);
    border-width: 2px;
    box-shadow: 0 2px 12px rgba(107, 127, 98, 0.15);
}

.slf-product__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slf-product__main-image {
    position: relative;
    width: 550px;
    height: 650px;
    background: var(--ivory);
    border-radius: 4px;
    overflow: hidden;
}

.slf-product__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.slf-product__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(246, 244, 239, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.875rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slf-product__badge-text {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--espresso);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slf-product__main-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.slf-product__gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 96%;
}

.slf-product__nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(246, 244, 239, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(107, 127, 98, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slf-product__nav:hover {
    background: var(--espresso);
    border-color: var(--espresso);
    box-shadow: 0 4px 16px rgba(62, 53, 46, 0.2);
}

.slf-product__nav svg {
    width: 18px;
    height: 18px;
    color: var(--espresso);
    transition: color 0.3s ease;
}

.slf-product__nav:hover svg {
    color: var(--ivory);
}

/* Product Info */
.slf-product__info {
    width: 624px;
    display: flex;
    flex-direction: column;
}

.slf-product__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 2.75rem;
    color: var(--espresso);
    margin: 0 0 1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.slf-product__reviews {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.slf-product__stars {
    display: flex;
    gap: 0;
}

.slf-product__stars svg {
    width: 16px;
    height: 16px;
    color: #C4A574;
    fill: #C4A574;
    opacity: 0.9;
}

.slf-product__review-text {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: italic;
}

.slf-product__review-text strong {
    color: var(--umber);
    font-weight: 500;
    font-style: normal;
}

.slf-product__description {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--umber);
    margin-bottom: 1rem;
    margin-top: 0;
    font-style: italic;
}

/* Trust Badges */
.slf-product__trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(107, 127, 98, 0.15);
}

.slf-product__trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slf-product__trust-badge svg {
    color: var(--fern);
    flex-shrink: 0;
    opacity: 0.8;
}

.slf-product__section-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 .5rem 0;
}

/* Attribute - Button style (Size) */
.slf-product__attribute {
    margin-bottom: 2rem;
}

.slf-product__sizes {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0;
}

.slf-product__size {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: 1.5px solid rgba(107, 127, 98, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slf-product__size:hover {
    border-color: rgba(107, 127, 98, 0.4);
    background: rgba(107, 127, 98, 0.03);
}

.slf-product__size.active {
    background: var(--fern);
    border-color: var(--moss);
    border-width: 2px;
    box-shadow: 0 4px 16px rgba(107, 127, 98, 0.35);
    transform: translateY(-2px);
}

.slf-product__size.active .slf-product__size-text {
    color: white;
}

.slf-product__size-text {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--espresso);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.08em;
}

/* Purchase Options - Card Style */
.slf-product__options {
    margin-bottom: 2rem;
}

.slf-product__option-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.slf-product__option-card {
    position: relative;
    background: rgba(246, 244, 239, 0.5);
    border: 1.5px solid rgba(107, 127, 98, 0.2);
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slf-product__option-card:hover {
    border-color: rgba(107, 127, 98, 0.4);
    background: rgba(107, 127, 98, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.slf-product__option-card.active {
    border-color: var(--fern);
    border-width: 3px;
    background: var(--fern);
    box-shadow: 0 6px 24px rgba(107, 127, 98, 0.4);
    transform: scale(1.02);
}

.slf-product__option-card.active .slf-product__option-name,
.slf-product__option-card.active .slf-product__option-price,
.slf-product__option-card.active .slf-product__option-desc {
    color: white;
}

.slf-product__option-card.active .slf-product__option-savings {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.slf-product__option-card--popular {
    border-color: rgba(107, 127, 98, 0.35);
    border-width: 1.5px;
}

.slf-product__option-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fern);
    color: var(--ivory);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(107, 127, 98, 0.25);
}

.slf-product__option-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    border: 2px solid rgba(107, 127, 98, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slf-product__option-card:hover .slf-product__option-check {
    border-color: rgba(107, 127, 98, 0.5);
}

.slf-product__option-check svg {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.slf-product__option-card.active .slf-product__option-check {
    background: var(--fern);
    border-color: var(--fern);
}

.slf-product__option-card.active .slf-product__option-check svg {
    opacity: 1;
    transform: scale(1);
    stroke: white;
}

.slf-product__option-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.slf-product__option-left {
    flex: 1;
}

.slf-product__option-right {
    display: flex;
    align-items: center;
}

.slf-product__option-container {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.slf-product__option-name {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--espresso);
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slf-product__option-price {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--espresso);
    white-space: nowrap;
}

.slf-product__option-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-gray);
    line-height: 1.6;
    margin: 0;
}

.slf-product__option-savings {
    display: inline-block;
    background: rgba(107, 127, 98, 0.12);
    color: var(--fern);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.1rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slf-product__trio-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.slf-product__trio-info.active {
    max-height: 200px;
    margin-top: 1rem;
}

.slf-product__trio-info-inner {
    background: rgba(107, 127, 98, 0.06);
    border: 1px solid rgba(107, 127, 98, 0.15);
    border-radius: 4px;
    padding: 1.125rem;
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.slf-product__trio-info-inner svg {
    color: var(--fern);
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
}

.slf-product__trio-info-inner strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.slf-product__trio-info-inner p {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 400;
    color: var(--umber);
    line-height: 1.65;
    margin: 0;
}

/* Upsell */
.slf-product__upsell {
    margin-bottom: 2rem;
}

.slf-product__upsell-card {
    background: rgba(107, 127, 98, 0.05);
    border: 1.5px solid rgba(107, 127, 98, 0.2);
    border-radius: 4px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.slf-product__upsell-card:hover {
    border-color: rgba(107, 127, 98, 0.35);
    background: rgba(107, 127, 98, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.slf-product__upsell-card.active {
    border-color: var(--fern);
    border-width: 2px;
    background: rgba(107, 127, 98, 0.1);
    box-shadow: 0 3px 16px rgba(107, 127, 98, 0.12);
}

.slf-product__upsell-left {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
}

.slf-product__upsell-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2.5px solid rgba(0, 0, 0, 0.2);
    background: var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.slf-product__upsell-check-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
    width: 16px;
    height: 16px;
}

.slf-product__upsell-card.active .slf-product__upsell-checkbox {
    background: var(--fern);
    border-color: var(--fern);
}

.slf-product__upsell-card.active .slf-product__upsell-check-icon {
    opacity: 1;
    stroke: white;
}

.slf-product__upsell-image {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--parchment);
}

.slf-product__upsell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slf-product__upsell-info {
    flex: 1;
}

.slf-product__upsell-name {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--espresso);
    margin: 0 0 0.35rem 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.slf-product__upsell-tagline {
    font-family: var(--serif);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--umber);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

.slf-product__upsell-price {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--espresso);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Add to Cart */
.slf-product__add-to-cart {
    margin-bottom: 1.5rem;
}

.slf-product__cart-btn {
    width: 100%;
    height: 64px;
    background: var(--espresso);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    box-shadow: 0 4px 16px rgba(62, 53, 46, 0.2);
}

.slf-product__cart-btn:hover {
    background: var(--moss);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 53, 46, 0.25);
}

.slf-product__cart-btn-icon {
    display: flex;
    align-items: center;
}

.slf-product__cart-btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--ivory);
}

.slf-product__cart-btn-text {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ivory);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.slf-product__delivery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    padding: 0.875rem;
    background: rgba(107, 127, 98, 0.06);
    border-radius: 2px;
    border: 1px solid rgba(107, 127, 98, 0.1);
}

.slf-product__delivery-note svg {
    color: var(--fern);
    flex-shrink: 0;
    opacity: 0.8;
}

.slf-product__delivery-note span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--moss);
    text-align: center;
}

/* Accordion */
.slf-product__accordion {
    border-top: 1px solid rgba(107, 127, 98, 0.15);
    margin-top: 0.5rem;
}

.slf-product__accordion-item {
    border-bottom: 1px solid rgba(107, 127, 98, 0.1);
}

.slf-product__accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.slf-product__accordion-header:hover {
    opacity: 0.7;
}

.slf-product__accordion-title {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--espresso);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slf-product__accordion-icon {
    width: 18px;
    height: 18px;
    color: var(--espresso);
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.slf-product__accordion-item.active .slf-product__accordion-icon {
    transform: rotate(180deg);
}

.slf-product__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.slf-product__accordion-item.active .slf-product__accordion-content {
    max-height: 1000px;
}

.slf-product__accordion-inner {
    padding-bottom: 1.75rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.75;
    color: var(--umber);
}

/* Product Lightbox */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-lightbox.active {
    display: block;
    opacity: 1;
}

.product-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 53, 46, 0.95);
    backdrop-filter: blur(4px);
}

.product-lightbox__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.product-lightbox__img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(246, 244, 239, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.product-lightbox__close:hover {
    background: rgba(246, 244, 239, 0.3);
}

.product-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(246, 244, 239, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    cursor: pointer;
    transition: all 0.3s;
}

.product-lightbox__nav:hover {
    background: rgba(246, 244, 239, 0.3);
}

.product-lightbox__prev {
    left: 2rem;
}

.product-lightbox__next {
    right: 2rem;
}

.product-lightbox__counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ivory);
    font-size: 0.9rem;
    background: rgba(246, 244, 239, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ==========================================
   Process
   ========================================== */

.process {
    padding: 8rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
}

.process__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.process__intro {
    color: var(--umber);
    max-width: 400px;
}

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

.step {
    position: relative;
}

.step__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.step:hover .step__img {
    filter: grayscale(0%);
}

.step__num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--clay);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step__title {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.step__desc {
    font-size: 0.95rem;
    color: var(--umber);
}

/* ==========================================
   Values
   ========================================== */

.values {
    background: var(--moss);
    color: var(--ivory);
    padding: 6rem 2.5rem;
}

.values__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.values__eyebrow {
    color: var(--blush);
    margin-bottom: 1.25rem;
}

.values__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.values__text {
    opacity: 0.85;
    margin-bottom: 1rem;
    max-width: 400px;
}

.values__list {
    list-style: none;
    margin-top: 2rem;
}

.values__list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(246, 244, 239, 0.15);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.values__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blush);
    border-radius: 50%;
    flex-shrink: 0;
}

.values__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ==========================================
   Instagram
   ========================================== */

.instagram {
    padding: 6rem 2.5rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
}

.instagram__header-text {
    flex: 1;
}

.instagram__eyebrow {
    margin-bottom: 1rem;
}

.instagram__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.instagram__text {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--umber);
    max-width: 500px;
    line-height: 1.6;
}

.instagram__follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--fern);
    color: var(--fern);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.instagram__follow-btn svg {
    flex-shrink: 0;
}

.instagram__follow-btn:hover {
    background: var(--fern);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 127, 98, 0.25);
}

.instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.instagram__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.instagram__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram__item:hover .instagram__img {
    transform: scale(1.05);
}

.instagram__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 127, 98, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram__overlay svg {
    color: white;
}

.instagram__item:hover .instagram__overlay {
    opacity: 1;
}

/* ==========================================
   Newsletter
   ========================================== */

.newsletter {
    padding: 4rem 2.5rem;
    text-align: center;
    background: var(--moss);
    color: var(--ivory);
}

.newsletter-container {
    max-width: 560px;
    margin: 0 auto;
}

.newsletter__eyebrow {
    margin-bottom: 1rem;
}

.newsletter__heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.newsletter__text {
    margin-bottom: 2rem;
}

.newsletter__form {
    display: flex;
    gap: 0.75rem;
}

.newsletter__input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid var(--ivory);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ivory);
}

.newsletter__input::placeholder {
    color: var(--parchment);
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--parchment);
}

.newsletter__btn {
    padding: 1rem 1.75rem;
    background: var(--ivory);
    color: var(--espresso);
    border: none;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter__btn:hover {
    background: var(--parchment);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--espresso);
    color: var(--ivory);
    padding: 5rem 2.5rem 2rem;
}

.footer__main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(246, 244, 239, 0.1);
}

.footer__logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.footer__contact {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.8;
}

.footer__heading {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer__social {
    display: flex;
    gap: 2rem;
}

.footer__social a {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer__social a:hover {
    opacity: 1;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro__text {
        padding-top: 0;
        order: 2;
    }

    .intro__visual {
        order: 1;
    }

    .intro__img-inset {
        left: 14px;
        bottom: -24px;
    }

    .slf-product {
        padding: 3rem 2rem;
        gap: 2rem;
        flex-direction: column;
    }

    .slf-product__gallery {
        position: relative;
        top: auto;
        flex-direction: column;
        width: 100%;
    }

    .slf-product__thumbnails {
        flex-direction: row;
        order: 2;
        overflow-x: auto;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .slf-product__thumbnail {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .slf-product__main-image-wrapper {
        order: 1;
        width: 100%;
    }

    .slf-product__main-image {
        width: 100%;
        height: auto;
        aspect-ratio: 11 / 13;
    }

    .slf-product__info {
        width: 100%;
    }

    .process__header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step__img {
        height: 300px;
    }

    .values {
        padding: 4rem 1.5rem;
    }

    .values__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values__img {
        height: 350px;
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .nav {
        padding: 1rem;
    }

    .nav__links {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .hero {
        height: calc(660px - 73px);
        min-height: 0;
    }

    .hero__content {
        padding: 3rem 1.5rem 4rem;
    }

    .hero__scroll {
        display: none;
    }

    .intro,
    .product,
    .process,
    .values,
    .instagram,
    .newsletter {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .intro {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .process {
        padding: 4rem 1.5rem;
    }

    .instagram {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .instagram__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .instagram__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .slf-product__title {
        font-size: 2rem;
    }

    .slf-product__trust-badges {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .slf-product__trust-badge {
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .slf-product__sizes {
        gap: 0.625rem;
    }

    .slf-product__size {
        flex: 1;
        width: auto;
        padding: 0.75rem 0.625rem;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Cart Drawer Mobile */
    .slf-cart-drawer {
        width: 100%;
        max-width: 100vw;
    }

    .slf-cart-drawer__content {
        padding: 1rem;
    }

    .slf-cart-drawer__footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }

    .instagram__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .instagram__follow-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .nav__logo {
        font-size: 1.2rem;
    }

    .nav__logo img {
        max-height: 36px;
    }

    .intro__heading,
    .process__heading,
    .values__heading,
    .newsletter__heading {
        font-size: 1.8rem;
    }

    .slf-product {
        padding: 1.5rem;
    }

    .slf-product__title {
        font-size: 1.75rem;
    }

    .slf-product__cart-btn {
        height: 56px;
    }

    .slf-product__cart-btn-text {
        font-size: 1rem;
    }

    .slf-product__option-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .slf-product__upsell-card {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .slf-product__upsell-left {
        gap: 0.75rem;
    }

    .slf-cart-item__image {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================
   WordPress Admin Bar Adjustments
   ========================================== */

.admin-bar .nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nav {
        top: 46px;
    }
}

/* Main content wrapper */
.slf-main {
    /* overflow-x: hidden removed - was breaking sticky positioning */
}
