css
/* =========================================================
   AURELIA — PREMIUM SKINCARE TEMPLATE
   ========================================================= */


/* =========================================================
   01. ROOT / RESET
   ========================================================= */

:root {
    --ivory: #f7f3ed;
    --cream: #eee7dc;
    --beige: #dfd3c3;
    --rose: #c9a9a0;
    --brown: #2d2723;
    --brown-soft: #665d57;
    --line: #d8cec2;
    --white: #ffffff;
    --black: #171412;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
}


body.loading {
    overflow: hidden;
}


img {
    display: block;
    width: 100%;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font-family: inherit;
}


button {
    cursor: pointer;
}


.section-padding {
    padding: 110px 6%;
}


.section-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--brown-soft);
    margin-bottom: 18px;
}


.section-heading {
    max-width: var(--container);
    margin: 0 auto 55px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}


.section-heading.centered {
    display: block;
    text-align: center;
}


.section-heading h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
}


.section-heading > p {
    color: var(--brown-soft);
}


.text-link {
    position: relative;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    white-space: nowrap;
}


.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--brown);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.3s ease;
}


.text-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   02. LOADER
   ========================================================= */

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ivory);
    display: flex;
    justify-content: center;
    align-items: center;
}


.loader-content {
    text-align: center;
}


.loader-logo {
    font-family: var(--serif);
    font-size: 42px;
    letter-spacing: 6px;
}


.loader-content span {
    display: block;
    margin-top: 8px;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--brown-soft);
}


/* =========================================================
   03. ANNOUNCEMENT BAR
   ========================================================= */

.announcement-bar {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brown);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================================================
   04. NAVBAR
   ========================================================= */

/* =========================================================
   AURELIA — SIGNATURE LUXURY NAVBAR
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(247, 243, 237, 0.97);

    border-bottom: 1px solid rgba(45, 39, 35, 0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* =========================================================
   NAV CONTAINER
   ========================================================= */

.nav-container {
    width: calc(100% - 72px);
    max-width: var(--container);

    min-height: 84px;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 24px;
    padding-right: 24px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 38px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 190px;

    padding: 5px 0;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .45s cubic-bezier(.22,.61,.36,1);
}


.logo:hover {
    transform: translateY(-1px);
}


/* Elegant logo accent */

.logo::before {
    content: "";

    position: absolute;

    left: -12px;
    top: 8px;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--rose);

    opacity: .75;

    transition:
        transform .4s ease,
        opacity .3s ease;
}


.logo:hover::before {
    transform: scale(1.8);
    opacity: 1;
}


/* Logo name */

.logo-name {
    font-family: var(--serif);

    font-size: 28px;
    font-weight: 400;

    letter-spacing: 4.5px;

    color: var(--brown);

    transition:
        letter-spacing .5s cubic-bezier(.22,.61,.36,1);
}


.logo:hover .logo-name {
    letter-spacing: 5.1px;
}


/* Logo tagline */

.logo-tagline {
    margin-top: 7px;

    font-family: var(--sans);

    font-size: 7px;

    font-weight: 500;

    letter-spacing: 2.4px;

    color: var(--brown-soft);

    transition:
        letter-spacing .4s ease,
        opacity .3s ease;
}


.logo:hover .logo-tagline {
    letter-spacing: 2.7px;
    opacity: .82;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   NAV LINK
   ========================================================= */

.nav-links a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 11px 0 14px;

    color: var(--brown-soft);

    font-family: var(--sans);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.35px;

    text-transform: uppercase;
    text-decoration: none;

    white-space: nowrap;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   NAV ICONS
   Icons remain visible all the time
   ========================================================= */

.nav-links a i {
    width: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    font-size: 8px;

    color: rgba(118, 95, 86, .72);

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.22,.61,.36,1),
        opacity .35s ease;
}


/* =========================================================
   NAV TEXT
   ========================================================= */

.nav-links a span {
    display: inline-block;

    transition:
        transform .35s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   HOVER
   ========================================================= */

.nav-links a:hover {
    color: var(--brown);

    transform: translateY(-2px);
}


.nav-links a:hover i {
    color: var(--rose);

    transform:
        translateY(-1px)
        scale(1.13);
}


/* =========================================================
   ACTIVE PAGE
   ========================================================= */

.nav-links a.active {
    color: var(--brown);
}


.nav-links a.active i {
    color: var(--rose);

    transform:
        translateY(-1px)
        scale(1.08);
}


/* =========================================================
   PREMIUM UNDERLINE
   ========================================================= */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 1px;

    width: 100%;
    height: 1px;

    background: var(--brown);

    transform:
        translateX(-50%)
        scaleX(0);

    transform-origin: center;

    transition:
        transform .45s cubic-bezier(.22,.61,.36,1);
}


/* Hover underline */

.nav-links a:hover::after {
    transform:
        translateX(-50%)
        scaleX(1);
}


/* Active page underline */

.nav-links a.active::after {
    transform:
        translateX(-50%)
        scaleX(1);
}


/* =========================================================
   ACTIVE PAGE — SMALL ROSE DETAIL
   ========================================================= */

.nav-links a.active::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -3px;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--rose);

    transform: translateX(-50%);
}


/* =========================================================
   RIGHT ACTION ICONS
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-left: auto;
}


/* =========================================================
   ACTION BUTTON
   ========================================================= */

.nav-icon {
    position: relative;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid transparent;
    border-radius: 50%;

    background: transparent;

    color: var(--brown);

    font-size: 14px;

    padding: 0;

    cursor: pointer;

    text-decoration: none;

    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease,
        transform .4s cubic-bezier(.22,.61,.36,1),
        box-shadow .35s ease;
}


/* Hover action */

.nav-icon:hover {
    background: rgba(255, 255, 255, .72);

    border-color: rgba(118, 95, 86, .18);

    color: var(--brown);

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(45, 39, 35, .07);
}


/* =========================================================
   ACTION ICON ANIMATION
   ========================================================= */

.nav-icon i {
    display: block;

    transition:
        transform .45s cubic-bezier(.22,.61,.36,1);
}


/* Search */

.nav-icon:hover .fa-magnifying-glass,
.nav-icon:hover .fa-search {
    transform:
        scale(1.12)
        rotate(-8deg);
}


/* Heart */

.nav-icon:hover .fa-heart {
    transform:
        scale(1.16);
}


/* Bag */

.nav-icon:hover .fa-bag-shopping,
.nav-icon:hover .fa-shopping-bag {
    transform:
        translateY(-1px)
        scale(1.10);
}


/* =========================================================
   WISHLIST / CART COUNT
   ========================================================= */

.cart-count,
.wishlist-count {
    position: absolute;

    top: -3px;
    right: -3px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 50%;

    background: #211c19;

    color: #ffffff;

    border: 2px solid #f7f3ed;

    font-family: var(--sans);

    font-size: 7px;
    font-weight: 600;

    line-height: 1;

    box-shadow:
        0 3px 8px rgba(33, 28, 25, .18);

    transition:
        transform .35s cubic-bezier(.22,.61,.36,1),
        background .3s ease;
}


/* Badge hover */

.nav-icon:hover .cart-count,
.nav-icon:hover .wishlist-count {
    transform: scale(1.15);

    background: var(--brown);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(45, 39, 35, .13);

    border-radius: 50%;

    background: transparent;

    color: var(--brown);

    font-size: 15px;

    cursor: pointer;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .45s cubic-bezier(.22,.61,.36,1);
}


.menu-toggle:hover {
    background: rgba(255, 255, 255, .72);

    border-color: rgba(118, 95, 86, .22);

    transform: rotate(90deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .nav-container {
        width: calc(100% - 48px);

        padding-left: 12px;
        padding-right: 12px;

        gap: 24px;
    }


    .logo {
        min-width: 165px;
    }


    .logo-name {
        font-size: 25px;
        letter-spacing: 3.8px;
    }


    .logo-tagline {
        font-size: 6px;
        letter-spacing: 2px;
    }


    .nav-links {
        gap: 18px;
    }


    .nav-links a {
        gap: 5px;

        font-size: 8px;

        letter-spacing: 1px;
    }


    .nav-links a i {
        width: 11px;

        font-size: 7px;
    }


    .nav-actions {
        gap: 4px;
    }


    .nav-icon {
        width: 35px;
        height: 35px;

        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .nav-container {
        width: calc(100% - 28px);

        min-height: 72px;

        padding-left: 8px;
        padding-right: 8px;

        gap: 12px;
    }


    .logo {
        min-width: auto;
    }


    .logo::before {
        left: -7px;
    }


    .logo-name {
        font-size: 22px;

        letter-spacing: 3.4px;
    }


    .logo-tagline {
        margin-top: 6px;

        font-size: 6px;

        letter-spacing: 1.8px;
    }


    .nav-links {
        display: none;
    }


    .nav-actions {
        margin-left: auto;

        gap: 2px;
    }


    .nav-icon {
        width: 34px;
        height: 34px;

        font-size: 13px;
    }


    .cart-count,
    .wishlist-count {
        top: -2px;
        right: -2px;

        min-width: 16px;
        height: 16px;
    }


    .menu-toggle {
        display: inline-flex;

        width: 35px;
        height: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .nav-container {
        width: calc(100% - 20px);

        padding-left: 5px;
        padding-right: 5px;

        gap: 8px;
    }


    .logo-name {
        font-size: 20px;

        letter-spacing: 3px;
    }


    .logo-tagline {
        font-size: 5.5px;

        letter-spacing: 1.5px;
    }


    .nav-actions {
        gap: 1px;
    }


    .nav-icon {
        width: 31px;
        height: 31px;

        font-size: 12px;
    }


    .menu-toggle {
        width: 32px;
        height: 32px;

        font-size: 14px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .navbar,
    .logo,
    .logo::before,
    .logo-name,
    .logo-tagline,
    .nav-links a,
    .nav-links a::before,
    .nav-links a::after,
    .nav-links a i,
    .nav-icon,
    .nav-icon i,
    .cart-count,
    .wishlist-count,
    .menu-toggle {
        transition: none !important;
    }
}
/* =========================================================
   MOBILE NAVIGATION — OPEN STATE
   ========================================================= */

@media (max-width: 760px) {

    .nav-links.mobile-open {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;
        margin: 0;

        padding: 14px 24px 18px;

        background: rgba(247, 243, 237, 0.98);

        border-top: 1px solid rgba(45, 39, 35, 0.08);
        border-bottom: 1px solid rgba(45, 39, 35, 0.10);

        box-shadow:
            0 18px 35px rgba(45, 39, 35, 0.08);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        z-index: 999;

        animation: aureliaMobileMenuIn .35s ease forwards;
    }


    .nav-links.mobile-open a {
        width: 100%;
        justify-content: flex-start;

        gap: 12px;

        padding: 15px 4px;

        border-bottom: 1px solid rgba(45, 39, 35, 0.08);

        font-size: 9px;
        letter-spacing: 1.5px;

        transform: none;
    }


    .nav-links.mobile-open a:last-child {
        border-bottom: none;
    }


    .nav-links.mobile-open a i {
        width: 18px;
        font-size: 9px;
    }


    .nav-links.mobile-open a:hover {
        transform: translateX(4px);
    }


    .nav-links.mobile-open a::after {
        left: 0;
        bottom: 7px;
        width: 0;

        transform: none;
        transform-origin: left;
    }


    .nav-links.mobile-open a:hover::after,
    .nav-links.mobile-open a.active::after {
        width: 100%;
        transform: none;
    }


    .nav-links.mobile-open a.active::before {
        left: -8px;
        bottom: 50%;

        width: 3px;
        height: 3px;

        transform: translateY(50%);
    }

}


/* =========================================================
   MOBILE MENU ANIMATION
   ========================================================= */

@keyframes aureliaMobileMenuIn {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =========================================================
   05. AURELIA — PREMIUM HERO
   Modern Editorial • Luxury • Cinematic Motion
   ========================================================= */

/* =========================================================
   05. AURELIA — PREMIUM CINEMATIC HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 122px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(247, 243, 237, 0.98) 0%,
            rgba(247, 243, 237, 0.94) 27%,
            rgba(247, 243, 237, 0.68) 49%,
            rgba(247, 243, 237, 0.20) 72%,
            rgba(247, 243, 237, 0.04) 100%
        ),
        url("images/about.avif") center center / cover no-repeat;

    animation: aureliaHeroReveal 1.2s ease both;
}


/* =========================================================
   CINEMATIC LIGHT
   ========================================================= */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(255, 255, 255, 0.42),
            transparent 25%
        ),
        linear-gradient(
            110deg,
            rgba(255,255,255,0.08),
            transparent 45%,
            rgba(255,255,255,0.10)
        );

    animation: heroLightMove 9s ease-in-out infinite alternate;
}


/* =========================================================
   SUBTLE CINEMATIC IMAGE MOVEMENT
   ========================================================= */

.hero::after {
    content: "";
    position: absolute;
    inset: -4%;

    background:
        url("images/about.avif")
        center center / cover no-repeat;

    opacity: 0.10;
    z-index: 0;
    pointer-events: none;

    transform: scale(1.04);

    animation:
        heroImageDrift 18s ease-in-out infinite alternate;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    width: min(100%, 1240px);
    margin: auto;
    padding: 92px 6% 100px;

    position: relative;
    z-index: 3;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;

    margin: 0 0 27px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1;

    color: var(--brown);

    opacity: 0;
    transform: translateY(18px);

    animation:
        heroFadeUp 0.8s 0.25s cubic-bezier(.16,1,.3,1) forwards;
}


/* Elegant line */

.hero-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    margin-right: 13px;

    background: var(--rose);

    transform: scaleX(0);
    transform-origin: left;

    animation:
        heroEyebrowLine 0.8s 0.55s cubic-bezier(.16,1,.3,1) forwards;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero h1 {
    max-width: 760px;

    margin: 0;

    font-family: var(--serif);
    font-size: clamp(60px, 7.2vw, 100px);
    font-weight: 400;
    line-height: 0.91;
    letter-spacing: -4px;

    color: var(--brown);

    opacity: 0;
    transform: translateY(48px);

    animation:
        heroTitleReveal 1.15s 0.38s cubic-bezier(.16,1,.3,1) forwards;
}


/* =========================================================
   SECOND TITLE LINE
   ========================================================= */

.hero h1 span {
    display: block;

    margin-top: 8px;

    font-style: italic;
    font-weight: 400;

    color: #765f56;

    position: relative;
    width: fit-content;
}


/* Elegant underline */

.hero h1 span::after {
    content: "";

    position: absolute;

    left: 3px;
    right: 0;
    bottom: -12px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(118,95,86,0.55),
            rgba(118,95,86,0.10)
        );

    transform: scaleX(0);
    transform-origin: left;

    animation:
        heroTitleLine 1.1s 1.25s cubic-bezier(.16,1,.3,1) forwards;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-description {
    max-width: 455px;

    margin-top: 38px;

    font-size: 15px;
    line-height: 1.9;

    color: var(--brown-soft);

    opacity: 0;
    transform: translateY(25px);

    animation:
        heroFadeUp 0.9s 0.78s cubic-bezier(.16,1,.3,1) forwards;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 40px;

    opacity: 0;
    transform: translateY(25px);

    animation:
        heroFadeUp 0.9s 0.98s cubic-bezier(.16,1,.3,1) forwards;
}


/* =========================================================
   PREMIUM BUTTON BASE
   ========================================================= */

.hero-buttons .btn {
    position: relative;
    overflow: hidden;

    min-width: 168px;
    min-height: 54px;

    padding: 0 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    letter-spacing: 1.5px;
    font-size: 10px;

    transition:
        transform 0.4s cubic-bezier(.16,1,.3,1),
        box-shadow 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease;
}


/* =========================================================
   BUTTON LIGHT SWEEP
   ========================================================= */

.hero-buttons .btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -130%;

    width: 85%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.28),
            transparent
        );

    transform: skewX(-22deg);

    transition: left 0.75s cubic-bezier(.16,1,.3,1);
}


.hero-buttons .btn:hover::before {
    left: 140%;
}


/* =========================================================
   BUTTON HOVER
   ========================================================= */

.hero-buttons .btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 34px rgba(45,39,35,0.14);
}


/* =========================================================
   DARK BUTTON
   ========================================================= */

.hero-buttons .btn-dark {
    background: var(--brown);
    color: var(--white);

    border-color: var(--brown);
}


.hero-buttons .btn-dark:hover {
    background: #4a3e37;
    border-color: #4a3e37;
}


/* =========================================================
   OUTLINE BUTTON
   ========================================================= */

.hero-buttons .btn-outline {
    background: rgba(255,255,255,0.13);

    color: var(--brown);

    border-color: rgba(45,39,35,0.55);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


.hero-buttons .btn-outline:hover {
    background: var(--brown);

    color: var(--white);

    border-color: var(--brown);
}


/* =========================================================
   VERTICAL EDITORIAL AURELIA
   ========================================================= */

.hero-content::after {
    content: "AURELIA";

    position: absolute;

    right: 4%;
    bottom: 40px;

    font-family: var(--serif);
    font-size: 9px;

    letter-spacing: 6px;

    color: rgba(45,39,35,0.20);

    writing-mode: vertical-rl;

    opacity: 0;

    animation:
        heroSideReveal 1s 1.45s ease forwards,
        heroSideFloat 6s 2.2s ease-in-out infinite;
}


/* =========================================================
   HERO ANIMATIONS
   ========================================================= */

@keyframes aureliaHeroReveal {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes heroImageDrift {

    from {
        transform:
            scale(1.04)
            translate3d(0, 0, 0);
    }

    to {
        transform:
            scale(1.09)
            translate3d(-1.2%, -0.8%, 0);
    }

}


@keyframes heroLightMove {

    0% {
        opacity: 0.45;
        transform: translate3d(-12px, 0, 0);
    }

    50% {
        opacity: 0.72;
    }

    100% {
        opacity: 0.88;
        transform: translate3d(16px, -8px, 0);
    }

}


@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes heroTitleReveal {

    from {
        opacity: 0;
        transform: translateY(48px);
        letter-spacing: -1px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -4px;
    }

}


@keyframes heroEyebrowLine {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes heroTitleLine {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes heroSideReveal {

    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes heroSideFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .hero-content {
        padding:
            82px
            6%
            90px;
    }


    .hero h1 {
        max-width: 670px;

        font-size:
            clamp(55px, 8vw, 84px);

        letter-spacing: -3.5px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .hero {

        min-height: 720px;

        align-items: flex-end;

        background:
            linear-gradient(
                180deg,
                rgba(247,243,237,0.03) 0%,
                rgba(247,243,237,0.18) 27%,
                rgba(247,243,237,0.56) 53%,
                rgba(247,243,237,0.97) 84%
            ),
            url("images/about.avif")
            center center / cover no-repeat;
    }


    .hero::before {

        background:
            radial-gradient(
                circle at 75% 30%,
                rgba(255,255,255,0.34),
                transparent 27%
            );

    }


    .hero::after {
        opacity: 0.06;
    }


    .hero-content {

        width: 100%;

        padding:
            82px
            20px
            58px;
    }


    .hero-eyebrow {

        font-size: 8px;
        letter-spacing: 3px;

        margin-bottom: 21px;
    }


    .hero-eyebrow::before {

        width: 22px;
        margin-right: 9px;
    }


    .hero h1 {

        max-width: 100%;

        font-size:
            clamp(48px, 14vw, 68px);

        line-height: 0.94;

        letter-spacing: -2.8px;
    }


    .hero h1 span {
        margin-top: 6px;
    }


    .hero h1 span::after {

        bottom: -8px;

        left: 2px;
    }


    .hero-description {

        max-width: 390px;

        margin-top: 30px;

        font-size: 13px;

        line-height: 1.78;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-top: 31px;
    }


    .hero-buttons .btn {

        width: 100%;

        min-height: 52px;
    }


    .hero-content::after {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 690px;
    }


    .hero-content {

        padding:
            65px
            18px
            45px;
    }


    .hero h1 {

        font-size:
            clamp(45px, 14vw, 62px);

        letter-spacing: -2.2px;
    }


    .hero-description {

        max-width: 340px;

        font-size: 12px;
    }


    .hero-buttons .btn {

        min-height: 50px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero,
    .hero::before,
    .hero::after,
    .hero-eyebrow,
    .hero-eyebrow::before,
    .hero h1,
    .hero h1 span::after,
    .hero-description,
    .hero-buttons,
    .hero-content::after {

        animation: none !important;

        opacity: 1;

        transform: none;
    }

}
/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero,
    .hero::before,
    .hero::after,
    .hero-eyebrow,
    .hero h1,
    .hero-description,
    .hero-buttons,
    .hero-content::after,
    .hero h1 span::after,
    .hero-eyebrow::before {

        animation: none !important;

        opacity: 1 !important;

        transform: none !important;
    }
}
/* =========================================================
   06. BUTTONS
   ========================================================= */

.btn {
    min-height: 50px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 9px;
    letter-spacing: 1.8px;
    font-weight: 600;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-dark {
    background: var(--brown);
    color: var(--white);
}


.btn-dark:hover {
    background: #4b4039;
}


.btn-outline {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
}


.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
}


.btn-light {
    background: var(--ivory);
    color: var(--brown);
}


.btn-light:hover {
    background: white;
}


/* =========================================================
   07. TRUST STRIP
   ========================================================= */

/* =========================================================
   06. AURELIA — PREMIUM TRUST STRIP
   ========================================================= */

.trust-strip {
    position: relative;

    background: var(--white);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;
}


/* =========================================================
   TRUST ITEM
   ========================================================= */

.trust-item {
    min-height: 118px;

    padding: 28px 34px;

    display: flex;
    align-items: center;

    gap: 20px;

    position: relative;

    border-right: 1px solid var(--line);

    transition:
        background 0.45s ease,
        transform 0.45s cubic-bezier(.16,1,.3,1);
}


.trust-item:last-child {
    border-right: 0;
}


/* =========================================================
   SUBTLE HOVER AREA
   ========================================================= */

.trust-item::after {
    content: "";

    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 0;

    height: 1px;

    background: var(--rose);

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform 0.55s cubic-bezier(.16,1,.3,1);
}


.trust-item:hover {
    background: rgba(247,243,237,0.48);

    transform: translateY(-2px);
}


.trust-item:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   NUMBER
   ========================================================= */

.trust-number {
    flex-shrink: 0;

    width: 38px;

    font-family: var(--serif);

    font-size: 21px;
    font-style: italic;
    font-weight: 400;

    line-height: 1;

    color: var(--rose);

    transition:
        transform 0.45s cubic-bezier(.16,1,.3,1),
        color 0.35s ease;
}


.trust-item:hover .trust-number {
    transform: translateX(3px);

    color: var(--brown);
}


/* =========================================================
   TRUST TEXT
   ========================================================= */

.trust-item strong {
    display: block;

    margin: 0;

    font-size: 10px;

    line-height: 1.4;

    letter-spacing: 1.2px;

    font-weight: 600;

    color: var(--brown);
}


.trust-item p {
    margin: 6px 0 0;

    font-size: 10px;

    line-height: 1.5;

    color: var(--brown-soft);

    transition:
        transform 0.45s cubic-bezier(.16,1,.3,1);
}


.trust-item:hover p {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .trust-item {
        min-height: 108px;

        padding: 24px 22px;

        gap: 14px;
    }


    .trust-item::after {
        left: 22px;
        right: 22px;
    }


    .trust-number {
        width: 30px;

        font-size: 18px;
    }


    .trust-item strong {
        font-size: 9px;

        letter-spacing: 1px;
    }


    .trust-item p {
        font-size: 9px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }


    .trust-item {
        min-height: 105px;

        padding: 22px 20px;

        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }


    .trust-item:nth-child(2) {
        border-right: 0;
    }


    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }


    .trust-item:nth-child(4) {
        border-right: 0;
    }


    .trust-item::after {
        left: 20px;
        right: 20px;
    }


    .trust-number {
        width: 28px;

        font-size: 17px;
    }


    .trust-item strong {
        font-size: 9px;

        letter-spacing: 0.9px;
    }


    .trust-item p {
        font-size: 9px;

        line-height: 1.45;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .trust-strip {
        grid-template-columns: 1fr;
    }


    .trust-item {
        min-height: 88px;

        padding: 20px 18px;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }


    .trust-item:nth-child(3) {
        border-bottom: 1px solid var(--line);
    }


    .trust-item:last-child {
        border-bottom: 0;
    }


    .trust-item::after {
        left: 18px;
        right: 18px;
    }


    .trust-number {
        width: 32px;
    }

}


/* =========================================================
   08. BESTSELLERS
   ========================================================= */

/* =========================================================
   08. BESTSELLERS — AURELIA PREMIUM PRODUCT GRID
   ========================================================= */

.bestsellers {
    background: var(--white);
    padding: 88px 6% 78px !important;
}

.bestsellers .section-heading {
    margin-bottom: 48px;
}

.bestsellers .product-grid {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

/* ================= PRODUCT CARD ================= */

.bestsellers .product-card {
    position: relative;
    min-width: 0;
    background: var(--white);
    overflow: visible;
    opacity: 1;
    border: 0;
    transform: none;
    transition: transform .35s ease;
}

.bestsellers .product-card:hover {
    transform: translateY(-3px);
}

/* ================= IMAGE ================= */

.bestsellers .product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--cream);
}

.bestsellers .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform .8s cubic-bezier(.22,.61,.36,1);
}

.bestsellers .product-card:hover .product-image img {
    transform: scale(1.035);
}

/* ================= BADGE ================= */

.bestsellers .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 24px;
    padding: 0 10px;

    background: rgba(255,255,255,.94);
    border: 1px solid rgba(45,39,35,.12);

    color: var(--brown);

    font-size: 7px;
    line-height: 1;
    letter-spacing: 1.6px;
    font-weight: 600;

    box-sizing: border-box;
}

/* ================= WISHLIST ================= */

.bestsellers .wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(45,39,35,.16);
    border-radius: 50%;

    background: rgba(255,255,255,.94);
    color: var(--brown);

    font-size: 13px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.bestsellers .wishlist-btn:hover {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
    transform: translateY(-2px);
}

.bestsellers .wishlist-btn i {
    pointer-events: none;
}

/* ================= PRODUCT INFO ================= */

.bestsellers .product-info {
    padding: 21px 0 0;
}

.bestsellers .product-category {
    margin: 0 0 10px;

    font-size: 7px;
    line-height: 1;
    letter-spacing: 2.5px;
    font-weight: 600;

    color: var(--brown-soft);
}

.bestsellers .product-info h3 {
    margin: 0;

    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -.25px;

    color: var(--brown);
}

.bestsellers .product-description {
    min-height: 38px;

    margin: 11px 0 0;

    font-size: 10px;
    line-height: 1.7;

    color: var(--brown-soft);
}

/* ================= RATING + PRICE ================= */

.bestsellers .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 18px;
    padding-top: 14px;

    border-top: 1px solid var(--line);
}

/* Actual HTML class = rating */

.bestsellers .rating {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    white-space: nowrap;

    font-size: 9px;
    line-height: 1;

    letter-spacing: 1.4px;
    color: var(--brown);
}

.bestsellers .rating small {
    font-family: var(--sans);

    font-size: 8px;
    line-height: 1;

    letter-spacing: .2px;
    color: var(--brown-soft);
}

/* Actual HTML class = price */

.bestsellers .price {
    display: inline-block;

    white-space: nowrap;

    font-size: 10px;
    line-height: 1;

    font-weight: 600;

    color: var(--brown);
}

/* ================= ADD TO BAG ================= */

.bestsellers .add-to-bag {
    width: 100%;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;
    padding: 0;

    border: 1px solid var(--brown);

    background: var(--brown);
    color: var(--white);

    font-family: var(--sans);

    font-size: 8px;
    line-height: 1;

    letter-spacing: 2px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.bestsellers .add-to-bag:hover {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
}

/* ================= TABLET ================= */

@media (max-width: 1050px) {

    .bestsellers {
        padding: 78px 5% 68px !important;
    }

    .bestsellers .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .bestsellers .product-image {
        height: 390px;
    }

    .bestsellers .product-info h3 {
        font-size: 27px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .bestsellers {
        padding: 68px 6% 60px !important;
    }

    .bestsellers .section-heading {
        margin-bottom: 34px;
    }

    .bestsellers .product-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .bestsellers .product-image {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .bestsellers .product-info {
        padding-top: 18px;
    }

    .bestsellers .product-info h3 {
        font-size: 27px;
    }

    .bestsellers .product-description {
        min-height: auto;
    }

    .bestsellers .product-meta {
        margin-top: 16px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 400px) {

    .bestsellers {
        padding-left: 5%;
        padding-right: 5%;
    }

    .bestsellers .product-grid {
        gap: 38px;
    }

    .bestsellers .product-image {
        aspect-ratio: .95 / 1;
    }

    .bestsellers .product-info h3 {
        font-size: 25px;
    }
}
/* =========================================================
   09. SHOP BY CONCERN
   ========================================================= */

/* =========================================================
   SHOP BY CONCERN — PREMIUM EDITORIAL
   ========================================================= */

.concerns {
    background: var(--white);
    padding-top: 95px;
    padding-bottom: 100px;
}

.concerns .section-heading {
    margin-bottom: 48px;
}


/* ---------- GRID ---------- */

.concern-grid {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


/* ---------- CARD ---------- */

.concern-card {
    position: relative;
    min-height: 475px;
    overflow: hidden;
    background: var(--cream);
    text-decoration: none;
    display: block;
}


/* ---------- IMAGE ---------- */

.concern-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition:
        transform 0.9s cubic-bezier(.22,.61,.36,1),
        filter 0.7s ease;
}

.concern-card:hover .concern-image {
    transform: scale(1.055);
}


/* ---------- IMAGE OVERLAYS ---------- */

.concern-dullness {
    background-image:
        linear-gradient(
            180deg,
            rgba(45,39,35,.02) 20%,
            rgba(45,39,35,.10) 45%,
            rgba(45,39,35,.58) 100%
        ),
        url("images/SerumBenefits.jpg");
}

.concern-dryness {
    background-image:
        linear-gradient(
            180deg,
            rgba(45,39,35,.02) 20%,
            rgba(45,39,35,.10) 45%,
            rgba(45,39,35,.58) 100%
        ),
        url("images/nightCream.webp");
}

.concern-acne {
    background-image:
        linear-gradient(
            180deg,
            rgba(45,39,35,.02) 20%,
            rgba(45,39,35,.10) 45%,
            rgba(45,39,35,.58) 100%
        ),
        url("images/toner.webp");
}

.concern-aging {
    background-image:
        linear-gradient(
            180deg,
            rgba(45,39,35,.02) 20%,
            rgba(45,39,35,.10) 45%,
            rgba(45,39,35,.62) 100%
        ),
        url("images/AntiAgingSkincare.jpeg");
}


/* ---------- CONTENT ---------- */

.concern-content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: var(--white);
}

.concern-content span {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 2.5px;
    font-weight: 600;
    opacity: .9;
}

.concern-content h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.3px;
}

.concern-content small {
    display: inline-flex;
    align-items: center;
    margin-top: 17px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,.75);
    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.8px;
    font-weight: 500;
    transition:
        border-color .3s ease,
        letter-spacing .3s ease;
}

.concern-card:hover .concern-content small {
    letter-spacing: 2.2px;
    border-color: var(--white);
}


/* ---------- SUBTLE TOP FRAME ---------- */

.concern-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
    z-index: 1;
    transition: border-color .5s ease;
}

.concern-card:hover::after {
    border-color: rgba(255,255,255,.38);
}


/* ---------- TABLET ---------- */

@media (max-width: 1050px) {

    .concern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .concern-card {
        min-height: 440px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .concerns {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .concerns .section-heading {
        margin-bottom: 32px;
    }

    .concern-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .concern-card {
        min-height: 390px;
    }

    .concern-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .concern-content h3 {
        font-size: 27px;
    }

    .concern-card::after {
        inset: 9px;
    }
}

/* =========================================================
   10. RITUAL SECTION
   ========================================================= */

/* =========================================================
   AURELIA RITUAL — PREMIUM EDITORIAL
   ========================================================= */

.ritual-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(50px, 7vw, 105px);
    align-items: center;
    background: var(--ivory);
    padding-top: 110px;
    padding-bottom: 110px;
}


/* ---------- IMAGE ---------- */

.ritual-image {
    height: 650px;
    overflow: hidden;
    position: relative;
}

.ritual-image::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.28);
    pointer-events: none;
}

.ritual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 1s cubic-bezier(.22,.61,.36,1);
}

.ritual-section:hover .ritual-image img {
    transform: scale(1.025);
}


/* ---------- CONTENT ---------- */

.ritual-content {
    max-width: 540px;
    padding-right: 4%;
}

.ritual-content h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 4.4vw, 64px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.8px;
    color: var(--brown);
}

.ritual-content h2 span {
    display: block;
    margin-top: 4px;
    font-style: italic;
    color: #765f56;
}


/* ---------- DESCRIPTION ---------- */

.ritual-content > p {
    max-width: 480px;
    margin-top: 28px;
    color: var(--brown-soft);
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: .1px;
}


/* ---------- RITUAL STEPS ---------- */

.ritual-steps {
    margin: 38px 0 34px;
    border-top: 1px solid var(--line);
}

.ritual-steps div {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 58px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .35s ease;
}

.ritual-steps div:hover {
    padding-left: 7px;
}

.ritual-steps span {
    width: 28px;
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    color: var(--rose);
}

.ritual-steps strong {
    font-size: 9px;
    line-height: 1;
    letter-spacing: 2.2px;
    font-weight: 600;
    color: var(--brown);
}


/* ---------- BUTTON AREA ---------- */

.ritual-content .btn {
    margin-top: 2px;
}


/* ---------- TABLET ---------- */

@media (max-width: 950px) {

    .ritual-section {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .ritual-image {
        height: 540px;
    }

    .ritual-content {
        padding-right: 0;
    }

    .ritual-content h2 {
        font-size: clamp(38px, 5vw, 52px);
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 700px) {

    .ritual-section {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .ritual-image {
        height: 460px;
    }

    .ritual-content {
        max-width: 100%;
        padding-right: 0;
    }

    .ritual-content h2 {
        font-size: 42px;
        line-height: 1.04;
    }

    .ritual-content > p {
        margin-top: 22px;
        font-size: 13px;
        line-height: 1.85;
    }

    .ritual-steps {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .ritual-steps div {
        min-height: 54px;
        gap: 18px;
    }

    .ritual-steps strong {
        font-size: 8px;
        letter-spacing: 1.8px;
    }
}

/* =========================================================
   11. FEATURED COLLECTION
   ========================================================= */

/* =========================================================
   FEATURED COLLECTION — PREMIUM CAMPAIGN
   ========================================================= */

.featured-collection {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 100px 8%;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(45,39,35,.80) 0%,
            rgba(45,39,35,.48) 42%,
            rgba(45,39,35,.08) 100%
        ),
        url("images/SunProtection.webp") center/cover no-repeat;

    color: var(--white);
}


/* ---------- SUBTLE INNER FRAME ---------- */

.featured-collection::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}


/* ---------- CONTENT ---------- */

.featured-content {
    position: relative;
    z-index: 2;
    max-width: 570px;
}


/* ---------- EYEBROW ---------- */

.featured-content .section-eyebrow {
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
    letter-spacing: 3px;
}


/* ---------- HEADING ---------- */

.featured-content h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(54px, 6vw, 84px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -1px;
}

.featured-content h2 span {
    display: block;
    margin-top: 6px;
    font-style: italic;
    font-weight: 400;
}


/* ---------- DESCRIPTION ---------- */

.featured-content p:not(.section-eyebrow) {
    max-width: 420px;
    margin: 28px 0 34px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,.86);
}


/* ---------- BUTTON ---------- */

.featured-content .btn {
    border-color: rgba(255,255,255,.75);
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.featured-content .btn:hover {
    background: var(--white);
    color: var(--brown);
    border-color: var(--white);
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .featured-collection {
        min-height: 580px;
        padding: 85px 7%;
        background:
            linear-gradient(
                90deg,
                rgba(45,39,35,.78),
                rgba(45,39,35,.22)
            ),
            url("images/SunProtection.webp") center/cover no-repeat;
    }

    .featured-content h2 {
        font-size: clamp(50px, 8vw, 70px);
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .featured-collection {
        min-height: 560px;
        padding: 75px 7%;
        align-items: flex-end;

        background:
            linear-gradient(
                180deg,
                rgba(45,39,35,.10) 15%,
                rgba(45,39,35,.78) 100%
            ),
            url("images/SunProtection.webp") center/cover no-repeat;
    }

    .featured-collection::after {
        inset: 10px;
    }

    .featured-content {
        max-width: 100%;
    }

    .featured-content .section-eyebrow {
        margin-bottom: 14px;
        font-size: 8px;
    }

    .featured-content h2 {
        font-size: 48px;
        line-height: .98;
        letter-spacing: -.5px;
    }

    .featured-content p:not(.section-eyebrow) {
        margin: 22px 0 28px;
        font-size: 13px;
        line-height: 1.8;
    }
}

/* =========================================================
   12. INGREDIENTS
   ========================================================= */

/* =========================================================
   INGREDIENTS — PREMIUM EDITORIAL
   ========================================================= */

.ingredients {
    background: var(--white);
    padding-top: 100px;
    padding-bottom: 105px;
}


/* ---------- GRID ---------- */

.ingredient-grid {
    width: min(100%, var(--container));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


/* ---------- ITEM ---------- */

.ingredient-item {
    position: relative;
    min-height: 275px;
    padding: 32px 34px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: var(--white);

    transition:
        background .35s ease,
        transform .35s ease;
}


/* ---------- NUMBER ---------- */

.ingredient-item > span {
    display: inline-block;

    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    line-height: 1;

    color: var(--rose);

    transition: transform .35s ease;
}


/* ---------- HEADING ---------- */

.ingredient-item h3 {
    margin-top: 58px;

    font-family: var(--serif);
    font-size: 29px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.2px;

    color: var(--brown);
}


/* ---------- DESCRIPTION ---------- */

.ingredient-item p {
    max-width: 220px;
    margin-top: 12px;

    font-size: 11px;
    line-height: 1.75;
    letter-spacing: .1px;

    color: var(--brown-soft);
}


/* ---------- HOVER ---------- */

.ingredient-item:hover {
    background: var(--ivory);
}

.ingredient-item:hover > span {
    transform: translateX(4px);
}


/* ---------- SUBTLE CORNER DETAIL ---------- */

.ingredient-item::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;

    width: 22px;
    height: 22px;

    border-right: 1px solid rgba(118,95,86,.65);
    border-bottom: 1px solid rgba(118,95,86,.65);

    opacity: .8;
    transform: translate(0, 0);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.ingredient-item:hover::after {
    opacity: 1;
    transform: translate(3px, 3px);
}

.ingredient-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .ingredients {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .ingredient-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredient-item {
        min-height: 250px;
        padding: 30px;
    }

    .ingredient-item h3 {
        margin-top: 50px;
        font-size: 27px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .ingredients {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .ingredient-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-item {
        min-height: 220px;
        padding: 27px 24px;
    }

    .ingredient-item h3 {
        margin-top: 42px;
        font-size: 27px;
    }

    .ingredient-item p {
        max-width: 280px;
        font-size: 11px;
    }

    .ingredient-item::after {
        right: 18px;
        bottom: 18px;
    }
}
/* =========================================================
   13. WHY AURELIA
   ========================================================= */

/* =========================================================
   WHY AURELIA — PREMIUM BRAND PHILOSOPHY
   ========================================================= */

.why-aurelia {
    background: var(--cream);
    padding-top: 100px;
    padding-bottom: 105px;
}


/* ---------- GRID ---------- */

.why-grid {
    width: min(100%, var(--container));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


/* ---------- ITEM ---------- */

.why-item {
    position: relative;
    min-height: 270px;
    padding: 34px;

    background: var(--cream);

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition:
        background .35s ease,
        padding-left .35s ease;
}


/* ---------- NUMBER ---------- */

.why-item > span {
    display: inline-block;

    font-family: var(--serif);
    font-size: 16px;
    line-height: 1;
    font-style: italic;

    color: var(--rose);

    transition: transform .35s ease;
}


/* ---------- HEADING ---------- */

.why-item h3 {
    margin-top: 58px;

    font-family: var(--serif);
    font-size: 29px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.2px;

    color: var(--brown);
}


/* ---------- DESCRIPTION ---------- */

.why-item p {
    max-width: 220px;

    margin-top: 12px;

    font-size: 11px;
    line-height: 1.75;
    letter-spacing: .1px;

    color: var(--brown-soft);
}


/* ---------- HOVER ---------- */

.why-item:hover {
    background: var(--ivory);
    padding-left: 39px;
}

.why-item:hover > span {
    transform: translateX(4px);
}


/* ---------- CORNER DETAIL ---------- */

.why-item::after {
    content: "";

    position: absolute;
    right: 23px;
    bottom: 23px;

    width: 20px;
    height: 20px;

    border-right: 1px solid rgba(118,95,86,.55);
    border-bottom: 1px solid rgba(118,95,86,.55);

    opacity: .7;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.why-item:hover::after {
    opacity: 1;
    transform: translate(3px, 3px);
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .why-aurelia {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item {
        min-height: 245px;
        padding: 30px;
    }

    .why-item h3 {
        margin-top: 50px;
        font-size: 27px;
    }

    .why-item:hover {
        padding-left: 34px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .why-aurelia {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: 215px;
        padding: 27px 24px;
    }

    .why-item h3 {
        margin-top: 42px;
        font-size: 27px;
    }

    .why-item p {
        max-width: 290px;
        font-size: 11px;
    }

    .why-item:hover {
        padding-left: 28px;
    }

    .why-item::after {
        right: 18px;
        bottom: 18px;
    }
}
/* =========================================================
   14. REVIEWS
   ========================================================= */

/* =========================================================
   REVIEWS — PREMIUM TESTIMONIALS
   ========================================================= */

.reviews {
    background: var(--ivory);
    padding-top: 100px;
    padding-bottom: 105px;
}


/* ---------- GRID ---------- */

.review-grid {
    width: min(100%, 1100px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* ---------- CARD ---------- */

.review-card {
    position: relative;
    min-height: 300px;

    padding: 38px 34px 34px;

    background: var(--white);
    border: 1px solid var(--line);

    display: flex;
    flex-direction: column;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: #f2e1c0;
    border-color: rgba(118,95,86,.25);
}


/* ---------- QUOTE MARK ---------- */

.review-card::before {
    content: "“";

    position: absolute;
    top: 20px;
    right: 28px;

    font-family: var(--serif);
    font-size: 58px;
    line-height: 1;

    color: rgba(118,95,86,.12);
}


/* ---------- STARS ---------- */

.review-stars {
    position: relative;
    z-index: 1;

    letter-spacing: 4px;
    font-size: 10px;

    color: var(--rose);
}


/* ---------- REVIEW TEXT ---------- */

.review-card p {
    margin: 28px 0 30px;

    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;

    color: var(--brown);

    flex: 1;
}


/* ---------- CUSTOMER ---------- */

.review-card strong {
    display: block;

    padding-top: 17px;

    border-top: 1px solid var(--line);

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.5px;
    font-weight: 600;

    color: var(--brown-soft);
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .reviews {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .review-card {
        min-height: 280px;
        padding: 34px 28px 30px;
    }

    .review-card p {
        font-size: 19px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .reviews {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card {
        min-height: 260px;
        padding: 32px 25px 27px;
    }

    .review-card::before {
        top: 16px;
        right: 22px;
        font-size: 50px;
    }

    .review-card p {
        margin: 24px 0 26px;
        font-size: 19px;
        line-height: 1.5;
    }
}

/* =========================================================
   15. JOURNAL
   ========================================================= */

/* =========================================================
   JOURNAL — EDITORIAL BEAUTY MAGAZINE
   ========================================================= */

.journal {
    background: var(--white);
    padding-top: 100px;
    padding-bottom: 105px;
}


/* ---------- GRID ---------- */

.journal-grid {
    width: min(100%, var(--container));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* ---------- IMAGE ---------- */

.journal-card {
    min-width: 0;
}

.journal-card img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    display: block;

    transform: scale(1);
    transition:
        transform .8s cubic-bezier(.22,.61,.36,1);
}

.journal-card:hover img {
    transform: scale(1.035);
}


/* ---------- CONTENT ---------- */

.journal-card > div {
    padding-top: 20px;
}


/* ---------- CATEGORY ---------- */

.journal-card span {
    display: block;

    font-size: 8px;
    line-height: 1;
    letter-spacing: 2.2px;
    font-weight: 600;

    color: var(--brown-soft);
}


/* ---------- TITLE ---------- */

.journal-card h3 {
    max-width: 330px;

    margin: 11px 0 17px;

    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -.2px;

    color: var(--brown);
}


/* ---------- READ MORE ---------- */

.journal-card a {
    display: inline-block;

    padding-bottom: 5px;

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.7px;
    font-weight: 600;

    color: var(--brown);

    border-bottom: 1px solid var(--brown);

    transition:
        letter-spacing .3s ease,
        opacity .3s ease;
}

.journal-card a:hover {
    letter-spacing: 2.2px;
    opacity: .7;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .journal {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .journal-card h3 {
        font-size: 24px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .journal {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .journal-card img {
        aspect-ratio: 1.3;
    }

    .journal-card > div {
        padding-top: 17px;
    }

    .journal-card h3 {
        max-width: 100%;
        margin: 10px 0 15px;
        font-size: 25px;
    }
}


/* =========================================================
   16. INSTAGRAM
   ========================================================= */

/* =========================================================
   INSTAGRAM — LUXURY SOCIAL FEED
   ========================================================= */

.instagram-section {
    background: var(--ivory);
    padding-top: 100px;
    padding-bottom: 0;
}


/* ---------- HEADING ---------- */

.instagram-heading {
    text-align: center;
    padding: 0 20px 48px;
}

.instagram-heading h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.5px;

    color: var(--brown);
}


/* ---------- IMAGE GRID ---------- */

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}


/* ---------- IMAGE ITEM ---------- */

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transform: scale(1);
    transition:
        transform .8s cubic-bezier(.22,.61,.36,1),
        filter .5s ease;
}


/* ---------- HOVER ---------- */

.instagram-item:hover img {
    transform: scale(1.07);
    filter: brightness(.88);
}


/* ---------- SUBTLE FRAME ---------- */

.instagram-item::after {
    content: "";

    position: absolute;
    inset: 10px;

    border: 1px solid rgba(255,255,255,.28);

    pointer-events: none;
    opacity: 0;

    transition: opacity .4s ease;
}

.instagram-item:hover::after {
    opacity: 1;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .instagram-section {
        padding-top: 80px;
    }

    .instagram-heading {
        padding-bottom: 38px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .instagram-section {
        padding-top: 70px;
    }

    .instagram-heading {
        padding: 0 18px 32px;
    }

    .instagram-heading h2 {
        font-size: 39px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-item::after {
        inset: 7px;
    }
}


/* =========================================================
   17. NEWSLETTER
   ========================================================= */

/* =========================================================
   NEWSLETTER — QUIET LUXURY
   ========================================================= */

.newsletter {
    background: var(--cream);
    padding-top: 105px;
    padding-bottom: 110px;
}


/* ---------- CONTENT ---------- */

.newsletter-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}


/* ---------- HEADING ---------- */

.newsletter-content h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 66px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.7px;

    color: var(--brown);
}

.newsletter-content h2 span {
    display: block;
    margin-top: 4px;
    font-style: italic;
}


/* ---------- DESCRIPTION ---------- */

.newsletter-content > p:not(.section-eyebrow) {
    max-width: 500px;
    margin: 24px auto 34px;

    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.8;
}


/* ---------- FORM ---------- */

.newsletter-form {
    max-width: 540px;
    margin: 0 auto;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(45,39,35,.65);

    transition: border-color .3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--brown);
}


/* ---------- INPUT ---------- */

.newsletter-form input {
    flex: 1;
    min-width: 0;

    height: 54px;
    padding: 0 4px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--brown);

    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .2px;
}

.newsletter-form input::placeholder {
    color: rgba(45,39,35,.55);
}


/* ---------- BUTTON ---------- */

.newsletter-form button {
    flex-shrink: 0;

    height: 54px;
    padding: 0 4px;

    border: 0;
    background: transparent;

    color: var(--brown);

    font-size: 9px;
    letter-spacing: 1.8px;
    font-weight: 600;

    cursor: pointer;

    transition:
        letter-spacing .3s ease,
        opacity .3s ease;
}

.newsletter-form button:hover {
    letter-spacing: 2.3px;
    opacity: .7;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .newsletter {
        padding-top: 85px;
        padding-bottom: 90px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .newsletter {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .newsletter-content {
        max-width: 100%;
    }

    .newsletter-content h2 {
        font-size: 43px;
    }

    .newsletter-content > p:not(.section-eyebrow) {
        margin: 21px auto 29px;
        font-size: 12px;
        line-height: 1.8;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-form input {
        height: 50px;
        font-size: 11px;
    }

    .newsletter-form button {
        height: 50px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }
}

/* =========================================================
   18. FINAL CTA
   ========================================================= */

/* =========================================================
   FINAL CTA — LUXURY CLOSING STATEMENT
   ========================================================= */

.final-cta {
    position: relative;

    min-height: 570px;
    padding: 110px 6%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--brown);
    color: var(--white);

    overflow: hidden;
}


/* ---------- SUBTLE ATMOSPHERE ---------- */

.final-cta::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 620px;
    height: 620px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;

    pointer-events: none;
}


/* ---------- INNER FRAME ---------- */

.final-cta::after {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(255,255,255,.12);

    pointer-events: none;
}


/* ---------- CONTENT ---------- */

.final-cta > div {
    position: relative;
    z-index: 2;

    max-width: 820px;
}


/* ---------- EYEBROW ---------- */

.final-cta p {
    margin: 0;

    font-size: 9px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 500;

    color: rgba(255,255,255,.68);
}


/* ---------- HEADING ---------- */

.final-cta h2 {
    margin: 28px 0 38px;

    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 80px);
    line-height: .96;
    font-weight: 400;
    letter-spacing: -1px;
}

.final-cta h2 span {
    display: block;

    margin-top: 5px;

    font-style: italic;
    font-weight: 400;

    color: #d8bdb3;
}


/* ---------- BUTTON ---------- */

.final-cta .btn {
    position: relative;
    z-index: 2;

    border-color: rgba(255,255,255,.65);

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.final-cta .btn:hover {
    background: var(--white);
    color: var(--brown);
    border-color: var(--white);
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .final-cta {
        min-height: 520px;
        padding: 90px 7%;
    }

    .final-cta::before {
        width: 500px;
        height: 500px;
    }

    .final-cta h2 {
        font-size: clamp(48px, 8vw, 68px);
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .final-cta {
        min-height: 500px;
        padding: 80px 7%;
    }

    .final-cta::before {
        width: 350px;
        height: 350px;
    }

    .final-cta::after {
        inset: 10px;
    }

    .final-cta > div {
        max-width: 100%;
    }

    .final-cta p {
        font-size: 8px;
        letter-spacing: 2.4px;
    }

    .final-cta h2 {
        margin: 23px 0 32px;

        font-size: 46px;
        line-height: .98;
        letter-spacing: -.5px;
    }
}
/* =========================================================
   19. FOOTER
   ========================================================= */

/* =========================================================
AURELIA — MODERN PREMIUM FOOTER
========================================================= */

.footer {
position: relative;
overflow: hidden;


background: #211c19;
color: var(--white);


}

/* Subtle editorial detail */

.footer::before {
content: "";


position: absolute;
top: -220px;
right: -160px;

width: 520px;
height: 520px;

border: 1px solid rgba(255,255,255,.045);
border-radius: 50%;

pointer-events: none;


}

.footer::after {
content: "";


position: absolute;
bottom: -260px;
left: -190px;

width: 560px;
height: 560px;

border: 1px solid rgba(255,255,255,.035);
border-radius: 50%;

pointer-events: none;


}

/* =========================================================
MAIN FOOTER
========================================================= */

.footer-container {
position: relative;
z-index: 2;


width: min(100% - 60px, var(--container));
margin: 0 auto;

padding: 92px 0 78px;

display: grid;
grid-template-columns: 2.1fr 1fr 1fr 1fr;
gap: 65px;


}

/* =========================================================
BRAND
========================================================= */

.footer-brand {
padding-right: 40px;
}

.footer-brand .logo-name {
color: var(--white);


transition: opacity .3s ease;


}

.footer-brand .logo-tagline {
color: rgba(255,255,255,.43);
transition: color .3s ease;


}

.footer-brand .logo:hover .logo-name {
opacity: .82;
}

.footer-brand .logo:hover .logo-tagline {
color: rgba(255,255,255,.62);
}

.footer-brand p {
max-width: 285px;


margin-top: 27px;

color: rgba(255,255,255,.53);

font-size: 11px;
line-height: 1.9;
letter-spacing: .1px;


}

/* =========================================================
FOOTER COLUMNS
========================================================= */

.footer-column {
display: flex;
flex-direction: column;
align-items: flex-start;


gap: 15px;


}

.footer-column h4 {
margin: 0 0 11px;


color: rgba(255,255,255,.86);

font-size: 8px;
line-height: 1;

letter-spacing: 2.7px;
font-weight: 600;


}

.footer-column a {
position: relative;


width: fit-content;

color: rgba(255,255,255,.52);

font-size: 10px;
line-height: 1.5;

text-decoration: none;

transition:
    color .3s ease,
    transform .3s ease;


}

.footer-column a::after {
content: "";


position: absolute;
left: 0;
bottom: -5px;

width: 0;
height: 1px;

background: rgba(255,255,255,.78);

transition: width .35s cubic-bezier(.22,.61,.36,1);


}

.footer-column a:hover {
color: var(--white);


transform: translateX(4px);


}

.footer-column a:hover::after {
width: 100%;
}

/* =========================================================
FOOTER BOTTOM
========================================================= */

.footer-bottom {
position: relative;
z-index: 2;


width: min(100% - 60px, var(--container));
margin: 0 auto;

padding: 25px 0 29px;

border-top: 1px solid rgba(255,255,255,.11);

display: flex;
justify-content: space-between;
align-items: center;

gap: 25px;


}

.footer-bottom p {
margin: 0;


color: rgba(255,255,255,.38);

font-size: 8px;
line-height: 1.5;

letter-spacing: .4px;


}

/* =========================================================
SOCIAL ICONS
========================================================= */

.footer-social {
display: flex;
align-items: center;


gap: 11px;


}

.footer-social a {
position: relative;


display: inline-flex;
align-items: center;
justify-content: center;

width: 31px;
height: 31px;

color: rgba(255,255,255,.48);

border: 1px solid rgba(255,255,255,.13);

font-size: 11px;

text-decoration: none;

transition:
    color .35s ease,
    background .35s ease,
    border-color .35s ease,
    transform .35s ease;


}

.footer-social a:hover {
color: #211c19;


background: var(--white);
border-color: var(--white);

transform: translateY(-3px);


}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1050px) {


.footer-container {
    grid-template-columns: 1.7fr 1fr 1fr;

    gap: 50px 35px;
}

.footer-brand {
    grid-column: 1 / -1;

    padding-right: 0;
    padding-bottom: 10px;
}


}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 760px) {

.footer-container {
    width: calc(100% - 40px);

    padding: 68px 0 56px;

    grid-template-columns: 1fr 1fr;

    gap: 48px 28px;
}

.footer-brand {
    grid-column: 1 / -1;

    padding-right: 0;
    padding-bottom: 4px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 21px;

    font-size: 10px;
}

.footer-column {
    gap: 13px;
}

.footer-column h4 {
    margin-bottom: 8px;

    font-size: 7px;
    letter-spacing: 2.4px;
}

.footer-column a {
    font-size: 9px;
}

.footer-bottom {
    width: calc(100% - 40px);

    padding: 22px 0 25px;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
}

.footer-bottom p {
    font-size: 7px;
}

.footer-social {
    gap: 9px;
}

.footer-social a {
    width: 29px;
    height: 29px;

    font-size: 10px;
}


}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


.footer-container {
    grid-template-columns: 1fr;

    gap: 38px;

    padding: 56px 0 48px;
}

.footer-brand {
    grid-column: auto;
}

.footer-brand p {
    max-width: 270px;
}

.footer-bottom {
    gap: 17px;
}


}

/* =========================================================
   BESTSELLERS — FINAL OVERRIDE
   Fix wishlist crop + premium buttons + hover
   ========================================================= */

/* ---------- PRODUCT IMAGE ---------- */

.bestsellers .product-image {
    position: relative !important;
    overflow: hidden !important;
}

/* ---------- WISHLIST ICON ---------- */

.bestsellers .wishlist-btn {
    position: absolute !important;

    top: 16px !important;
    right: 16px !important;

    width: 36px !important;
    height: 36px !important;

    min-width: 36px !important;
    min-height: 36px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    border: 1px solid rgba(45, 39, 35, .18) !important;
    border-radius: 50% !important;

    background: rgba(255, 255, 255, .96) !important;
    color: var(--brown) !important;

    font-size: 13px !important;
    line-height: 1 !important;

    cursor: pointer !important;

    transform: none !important;

    z-index: 20 !important;

   transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease !important;
}

.bestsellers .wishlist-btn i {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;

    color: inherit !important;

    pointer-events: none !important;
}

/* Wishlist hover */

.bestsellers .wishlist-btn:hover {
    background: var(--brown) !important;
    color: var(--white) !important;
    border-color: var(--brown) !important;

    transform: translateY(-2px) !important;
}

/* ---------- PRODUCT BADGE ---------- */

.bestsellers .product-badge {
    position: absolute !important;

    top: 16px !important;
    left: 16px !important;

    z-index: 20 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 24px !important;
    min-height: 24px !important;

    padding: 0 10px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid rgba(45, 39, 35, .12) !important;

    color: var(--brown) !important;

    font-size: 7px !important;
    line-height: 1 !important;
    letter-spacing: 1.6px !important;
    font-weight: 600 !important;
}

/* ---------- RATING ---------- */

.bestsellers .rating {
    display: inline-flex !important;
    align-items: center !important;

    gap: 7px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: var(--brown) !important;

    font-size: 9px !important;
    line-height: 1 !important;
    letter-spacing: 1.2px !important;
}

.bestsellers .rating small {
    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: var(--brown-soft) !important;

    font-size: 8px !important;
    line-height: 1 !important;
    letter-spacing: .2px !important;
}

/* ---------- PRICE ---------- */

.bestsellers .price {
    display: inline-block !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: var(--brown) !important;

    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
}

/* ---------- ADD TO BAG ---------- */

.bestsellers .add-to-bag {
    width: 100% !important;
    height: 48px !important;

    min-height: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 18px 0 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    border: 1px solid var(--brown) !important;
    border-radius: 0 !important;

    outline: none !important;

    background: var(--brown) !important;
    color: var(--white) !important;

    font-family: var(--sans) !important;
    font-size: 8px !important;
    line-height: 1 !important;

    letter-spacing: 2px !important;
    font-weight: 600 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease !important;
}

/* Button hover */

.bestsellers .add-to-bag:hover {
    background: transparent !important;
    color: var(--brown) !important;
    border-color: var(--brown) !important;

    transform: translateY(-2px) !important;
}

/* Button click */

.bestsellers .add-to-bag:active {
    transform: translateY(0) !important;
}

/* Focus */

.bestsellers .add-to-bag:focus-visible {
    outline: 1px solid var(--brown) !important;
    outline-offset: 4px !important;
}


/* =========================================================
   BESTSELLERS — DARK LUXURY ADD TO BAG BUTTON
   ========================================================= */

.bestsellers .add-to-bag {
    position: relative !important;
    overflow: hidden !important;

    width: 100% !important;
    height: 50px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-top: 20px !important;
    padding: 0 22px !important;

    background: #211c19 !important;
    color: #ffffff !important;

    border: 1px solid #211c19 !important;
    border-radius: 0 !important;

    font-family: var(--sans) !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;

    cursor: pointer !important;

    box-shadow: 0 5px 14px rgba(33, 28, 25, .10) !important;

    transform: translateY(0);

    transition:
        background .45s ease,
        color .45s ease,
        border-color .45s ease,
        transform .45s cubic-bezier(.22,.61,.36,1),
        box-shadow .45s ease,
        letter-spacing .45s ease !important;
}


/* ---------- INNER LUXURY FRAME ---------- */

.bestsellers .add-to-bag::before {
    content: "";

    position: absolute;
    inset: 5px;

    border: 1px solid rgba(255,255,255,.14);

    pointer-events: none;

    transition:
        inset .5s cubic-bezier(.22,.61,.36,1),
        border-color .4s ease;
}


/* ---------- LUXURY SHINE ---------- */

.bestsellers .add-to-bag::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255,255,255,.03) 35%,
        rgba(255,255,255,.18) 50%,
        rgba(255,255,255,.03) 65%,
        transparent 100%
    );

    transform: skewX(-18deg);

    pointer-events: none;
}


/* ---------- HOVER ---------- */

.bestsellers .add-to-bag:hover {
    background: #2d2723 !important;
    color: #ffffff !important;

    border-color: #2d2723 !important;

    transform: translateY(-4px) !important;

    box-shadow:
        0 10px 24px rgba(33, 28, 25, .18) !important;

    letter-spacing: 2.9px !important;
}


/* Inner frame hover */

.bestsellers .add-to-bag:hover::before {
    inset: 4px;

    border-color: rgba(255,255,255,.28);
}


/* Shine animation */

.bestsellers .add-to-bag:hover::after {
    animation: aureliaButtonShine .85s cubic-bezier(.22,.61,.36,1) forwards;
}


@keyframes aureliaButtonShine {

    from {
        left: -120%;
    }

    to {
        left: 150%;
    }

}


/* ---------- CLICK ---------- */

.bestsellers .add-to-bag:active {
    transform: translateY(-1px) !important;

    box-shadow:
        0 4px 10px rgba(33, 28, 25, .12) !important;
}


/* ---------- FOCUS ---------- */

.bestsellers .add-to-bag:focus-visible {
    outline: 1px solid #211c19 !important;
    outline-offset: 4px !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .bestsellers .add-to-bag {
        height: 50px !important;
        margin-top: 18px !important;
    }

}
/* cart */
/* =========================================================
   CART PAGE
   ========================================================= */

.cart-page {
    background: var(--ivory);
    min-height: 70vh;
}

.cart-hero {
    text-align: center;
    padding: 90px 20px 70px;
    border-bottom: 1px solid var(--line);
}

.cart-hero h1 {
    margin: 10px 0 14px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    color: var(--brown);
}

.cart-hero p:last-child {
    max-width: 520px;
    margin: auto;
    color: var(--brown-soft);
    font-size: 14px;
    line-height: 1.8;
}

.cart-section {
    padding: 70px 0 100px;
}

.cart-container {
    width: min(100% - 60px, var(--container));
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    align-items: start;
}

.cart-items {
    min-height: 250px;
    border-top: 1px solid var(--line);
}

.cart-summary {
    border: 1px solid var(--line);
    padding: 35px;
    background: rgba(255,255,255,0.35);
}

.cart-summary h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin: 8px 0 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    font-size: 13px;
    color: var(--brown-soft);
}

.summary-row strong {
    color: var(--brown);
    font-weight: 600;
}

.summary-line {
    height: 1px;
    background: var(--line);
    margin: 15px 0;
}

.total-row {
    color: var(--brown);
    font-size: 15px;
}

.total-row strong {
    font-size: 18px;
}

.checkout-btn {
    width: 100%;
    height: 50px;
    margin-top: 25px;
    border: 1px solid var(--brown);
    background: var(--brown);
    color: white;
    font-size: 10px;
    letter-spacing: 1.8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.checkout-btn:hover {
    background: transparent;
    color: var(--brown);
}

.continue-shopping {
    display: block;
    margin-top: 22px;
    text-align: center;
    color: var(--brown-soft);
    font-size: 10px;
    letter-spacing: 1.4px;
}

.continue-shopping:hover {
    color: var(--brown);
}

/* =========================================================
   AURELIA — CART PAGE PREMIUM LAYOUT
   ========================================================= */

.cart-page {
    background: #fffdf9;
}

.cart-hero {
    padding: 115px 7% 70px;
    text-align: center;
    background: #f7f3ed;
    border-bottom: 1px solid #e5ddd2;
}

.cart-hero .section-eyebrow {
    margin-bottom: 14px;
}

.cart-hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 500;
    color: #3b3029;
}

.cart-hero > p:last-child {
    margin: 18px auto 0;
    color: #75685f;
    font-size: 14px;
    line-height: 1.7;
}


/* CART SECTION */

.cart-section {
    padding: 75px 7% 110px;
}

.cart-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, .8fr);
    gap: 55px;
    align-items: start;
}


/* CART ITEMS */

.cart-items {
    width: 100%;
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) auto;
    gap: 25px;
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e4ddd5;
}

.cart-item-image {
    width: 145px;
    height: 175px;
    background: #f3eee8;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-details {
    min-width: 0;
    padding-top: 4px;
}

.cart-item-category {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a806d;
    font-weight: 600;
}

.cart-item-details h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;
    color: #332a25;
}

.cart-item-details > p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #5e5149;
    font-weight: 600;
}


/* QUANTITY + REMOVE */

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.quantity-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #dcd2c8;
    background: #fff;
    color: #493b33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.cart-item-actions > span {
    width: 38px;
    height: 34px;
    border-top: 1px solid #dcd2c8;
    border-bottom: 1px solid #dcd2c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #493b33;
}

.quantity-btn:hover {
    background: #493b33;
    color: #fff;
}

.remove-item {
    margin-left: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8d7667;
    font-size: 10px;
    letter-spacing: 1.3px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.remove-item:hover {
    color: #3b3029;
}


/* ITEM TOTAL */

.cart-item-total {
    padding-top: 5px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #3b3029;
}


/* ORDER SUMMARY */

.cart-summary {
    position: sticky;
    top: 30px;
    padding: 30px;
    background: #f7f3ed;
    border: 1px solid #e4dcd3;
}

.cart-summary .section-label {
    margin: 0 0 10px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #9a806d;
    font-weight: 600;
}

.cart-summary h2 {
    margin: 0 0 28px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 500;
    color: #3b3029;
}

.summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
    font-size: 13px;
    color: #6f625a;
}

.summary-row strong {
    color: #3b3029;
    font-weight: 600;
}

.summary-line {
    height: 1px;
    background: #ddd4cb;
    margin: 23px 0;
}

.summary-row.total-row {
    margin-bottom: 0;
    font-size: 15px;
    color: #3b3029;
}

.summary-row.total-row strong {
    font-size: 17px;
}


/* CHECKOUT BUTTON */

.final-checkout-button {
    min-height: 52px !important;
    box-sizing: border-box !important;
    margin-top: 25px !important;
    background: #493b33 !important;
    border: 1px solid #493b33 !important;
    color: #fff !important;
    transition: all .25s ease;
}

.final-checkout-button:hover {
    background: transparent !important;
    color: #493b33 !important;
}

.continue-shopping {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #66574e;
    font-size: 10px;
    letter-spacing: 1.3px;
    text-decoration: none;
}

.continue-shopping:hover {
    color: #332a25;
}


/* EMPTY CART */

.empty-cart {
    padding: 75px 30px;
    text-align: center;
    border-top: 1px solid #e4ddd5;
    border-bottom: 1px solid #e4ddd5;
}

.empty-cart h3 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 500;
    color: #3b3029;
}

.empty-cart p {
    margin: 0 0 25px;
    font-size: 14px;
    color: #75685f;
}

.empty-cart a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    background: #493b33;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}


/* TABLET */

@media (max-width: 900px) {

    .cart-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cart-summary {
        position: static;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .cart-hero {
        padding: 90px 6% 55px;
    }

    .cart-hero h1 {
        font-size: 42px;
    }

    .cart-section {
        padding: 55px 5% 75px;
    }

    .cart-item {
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 16px;
    }

    .cart-item-image {
        width: 95px;
        height: 125px;
    }

    .cart-item-details h3 {
        font-size: 19px;
    }

    .cart-item-total {
        grid-column: 2;
        padding-top: 0;
    }

    .cart-item-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    .remove-item {
        margin-left: 8px;
    }

    .cart-summary {
        padding: 24px 20px;
    }
}

/* CART MOBILE */

@media (max-width: 900px) {

    .cart-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cart-summary {
        max-width: 500px;
        width: 100%;
        margin: auto;
    }

}

@media (max-width: 600px) {

    .cart-container {
        width: min(100% - 32px, var(--container));
    }

    .cart-hero {
        padding: 65px 20px 50px;
    }

    .cart-hero h1 {
        font-size: 42px;
    }

    .cart-summary {
        padding: 25px;
    }

}
/* =========================
   CART ITEMS - PREMIUM LAYOUT
========================= */

.cart-items {
    border-top: 1px solid var(--line);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item-image {
    width: 120px;
    height: 140px;
    overflow: hidden;
    background: var(--cream);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-details {
    padding: 0;
}

.cart-item-category {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
    letter-spacing: 1.8px;
    color: var(--brown-soft);
}

.cart-item-details h3 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--brown);
}

.cart-item-details p {
    margin: 0;
    font-size: 13px;
    color: var(--brown-soft);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    font-size: 15px;
}

.quantity-btn:hover {
    background: var(--brown);
    color: white;
}

.cart-item-actions > span {
    min-width: 18px;
    text-align: center;
    font-size: 12px;
}

.remove-item {
    margin-left: 12px;
    border: 0;
    background: transparent;
    color: var(--brown-soft);
    font-size: 8px;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.remove-item:hover {
    color: var(--brown);
}

.cart-item-total {
    align-self: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown);
    white-space: nowrap;
}


/* MOBILE */
@media (max-width: 600px) {

    .cart-item {
        grid-template-columns: 90px 1fr;
        gap: 18px;
    }

    .cart-item-image {
        width: 90px;
        height: 110px;
    }

    .cart-item-details h3 {
        font-size: 18px;
    }

    .cart-item-total {
        grid-column: 2;
        margin-top: -8px;
    }

}
/* FINAL CHECKOUT BUTTON */

.final-checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 52px !important;

    margin-top: 25px !important;
    padding: 0 !important;

    background: #2d2723 !important;
    color: #ffffff !important;

    border: 1px solid #2d2723 !important;

    font-family: "DM Sans", sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px !important;

    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-sizing: border-box !important;
}

.final-checkout-button:hover {
    background: #ffffff !important;
    color: #2d2723 !important;
}
/* Checkout css */
/* =========================================
   AURELIA PREMIUM CHECKOUT
========================================= */

.checkout-hero {
    text-align: center;
    padding: 90px 20px 70px;
    border-bottom: 1px solid var(--line);
}

.checkout-hero h1 {
    margin: 12px 0 15px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    color: var(--brown);
}

.checkout-hero p:last-child {
    max-width: 520px;
    margin: auto;
    color: var(--brown-soft);
    font-size: 14px;
    line-height: 1.8;
}


/* CHECKOUT LAYOUT */

.checkout-section {
    padding: 75px 0 110px;
}

.checkout-container {
    width: min(100% - 60px, var(--container));
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 80px;
    align-items: start;
}


/* FORM */

.checkout-form {
    max-width: 680px;
}

.checkout-form h2 {
    margin: 10px 0 35px;

    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    color: var(--brown);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: var(--brown);
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    border: 1px solid var(--line);
    border-radius: 0;

    background: #fffdfa;
    color: var(--brown);

    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    outline: none;

    box-sizing: border-box;

    transition: border-color .25s ease,
                background .25s ease;
}

.form-group input::placeholder {
    color: #a69c94;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brown);
    background: #ffffff;
}

.form-group select {
    appearance: auto;
    cursor: pointer;
}


/* CHECKOUT NOTE */

.checkout-note {
    margin-top: 28px;
    padding: 18px 20px;

    border-left: 2px solid var(--rose);

    background: rgba(223, 211, 195, 0.25);

    color: var(--brown-soft);

    font-size: 11px;
    line-height: 1.8;
}


/* ORDER SUMMARY */

.checkout-summary {
    position: sticky;
    top: 115px;

    padding: 32px;

    border: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.45);
}

.checkout-summary h2 {
    margin: 8px 0 28px;

    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--brown);
}


/* CHECKOUT PRODUCT */

.checkout-product {
    display: grid;
    grid-template-columns: 65px 1fr auto;

    gap: 14px;
    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid var(--line);
}

.checkout-product-image {
    width: 65px;
    height: 75px;

    overflow: hidden;
    background: var(--cream);
}

.checkout-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.checkout-product-info h3 {
    margin: 0 0 6px;

    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;

    color: var(--brown);
}

.checkout-product-info span {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--brown-soft);
}

.checkout-product > strong {
    font-size: 12px;
    font-weight: 600;
    color: var(--brown);
    white-space: nowrap;
}


/* SUMMARY */

.checkout-summary .summary-row {
    padding: 12px 0;
}

.checkout-summary .summary-line {
    margin: 12px 0;
}

.checkout-summary .total-row strong {
    font-size: 18px;
}


/* PLACE ORDER */

.place-order-btn {
    width: 100%;
    height: 52px;

    margin-top: 25px;

    border: 1px solid var(--brown);

    background: var(--brown);
    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;

    cursor: pointer;

    transition: all .3s ease;
}

.place-order-btn:hover {
    background: transparent;
    color: var(--brown);
}


/* BACK TO BAG */

.back-cart {
    display: block;

    margin-top: 20px;

    text-align: center;

    color: var(--brown-soft);

    font-size: 9px;
    letter-spacing: 1.4px;

    text-decoration: none;
}

.back-cart:hover {
    color: var(--brown);
}


/* EMPTY CHECKOUT */

.checkout-empty {
    padding: 20px 0;

    color: var(--brown-soft);

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 900px) {

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .checkout-form {
        max-width: 100%;
    }

    .checkout-summary {
        position: static;
        max-width: 600px;
        width: 100%;
        margin: auto;
        box-sizing: border-box;
    }

}


@media (max-width: 600px) {

    .checkout-container {
        width: min(100% - 32px, var(--container));
    }

    .checkout-hero {
        padding: 65px 20px 50px;
    }

    .checkout-hero h1 {
        font-size: 42px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-summary {
        padding: 24px;
    }

}
/* =====================================================
   AURELIA — CHECKOUT FINAL LAYOUT FIX
===================================================== */

.checkout-hero {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 90px 20px 70px;
    background: #f7f3ed;
    border-bottom: 1px solid #d8cec2;
}

.checkout-hero .section-label {
    margin: 0 0 14px;
    color: #665d57;
}

.checkout-hero h1 {
    margin: 0 0 16px;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.1;
    color: #2d2723;
}

.checkout-hero p:last-child {
    max-width: 540px;
    margin: 0 auto;
    color: #665d57;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}


/* MAIN CHECKOUT AREA */

.checkout-section {
    width: 100%;
    padding: 80px 0 110px;
    background: #f7f3ed;
    box-sizing: border-box;
}

.checkout-container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 80px;
    align-items: start;
    box-sizing: border-box;
}


/* LEFT FORM */

.checkout-form {
    width: 100%;
    max-width: 680px;
}

.checkout-form .section-label {
    margin: 0 0 10px;
    color: #665d57;
}

.checkout-form h2 {
    margin: 0 0 38px;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 500;
    color: #2d2723;
}


/* FORM GRID */

.form-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin: 0 0 22px;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    margin: 0 0 9px;
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #2d2723;
}

.form-group input,
.form-group select {
    display: block;
    width: 100%;
    height: 52px;
    box-sizing: border-box;

    padding: 0 15px;

    border: 1px solid #d8cec2;
    border-radius: 0;

    background: #fffdfa;
    color: #2d2723;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    outline: none;
    box-shadow: none;

    transition: border-color .25s ease,
                background .25s ease;
}

.form-group input::placeholder {
    color: #a69c94;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2d2723;
    background: #ffffff;
}


/* NOTE */

.checkout-note {
    width: 100%;
    box-sizing: border-box;

    margin: 12px 0 0;
    padding: 18px 20px;

    border-left: 2px solid #c9a9a0;
    background: rgba(223, 211, 195, .25);

    color: #665d57;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    line-height: 1.8;
}


/* =====================================================
   RIGHT ORDER SUMMARY
===================================================== */

.checkout-summary {
    width: 100%;
    box-sizing: border-box;

    position: sticky;
    top: 115px;

    padding: 32px;

    border: 1px solid #d8cec2;
    background: #fffdfa;

    color: #2d2723;
}

.checkout-summary .section-label {
    margin: 0 0 8px;
    color: #665d57;
}

.checkout-summary h2 {
    margin: 0 0 25px;

    font-family: "Playfair Display", serif;
    font-size: 29px;
    font-weight: 500;

    color: #2d2723;
}


/* PRODUCTS */

#checkoutItems {
    width: 100%;
}

.checkout-product {
    width: 100%;
    display: grid;
    grid-template-columns: 65px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid #d8cec2;
    box-sizing: border-box;
}

.checkout-product-image {
    width: 65px;
    height: 75px;
    overflow: hidden;
    background: #eee7dc;
}

.checkout-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-product-info {
    min-width: 0;
}

.checkout-product-info h3 {
    margin: 0 0 6px;

    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 500;

    color: #2d2723;
}

.checkout-product-info span {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    color: #665d57;
}

.checkout-product > strong {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2d2723;
    white-space: nowrap;
}


/* SUMMARY */

.checkout-summary .summary-line {
    width: 100%;
    height: 1px;
    margin: 15px 0;
    background: #d8cec2;
}

.checkout-summary .summary-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 0;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #665d57;
}

.checkout-summary .summary-row strong {
    color: #2d2723;
    font-weight: 600;
}

.checkout-summary .total-row {
    padding-top: 15px;
}

.checkout-summary .total-row span {
    color: #2d2723;
    font-weight: 600;
}

.checkout-summary .total-row strong {
    font-size: 19px;
}


/* =====================================================
   PLACE ORDER BUTTON
===================================================== */

.place-order-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100% !important;
    height: 54px !important;

    margin-top: 25px !important;
    padding: 0 !important;

    border: 1px solid #2d2723 !important;
    border-radius: 0 !important;

    background: #2d2723 !important;
    color: #ffffff !important;

    font-family: "DM Sans", sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px !important;

    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;

    transition: all .3s ease;
}

.place-order-btn:hover {
    background: transparent !important;
    color: #2d2723 !important;
}


/* BACK TO BAG */

.back-cart {
    display: block;

    margin-top: 20px;

    text-align: center;

    color: #665d57 !important;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 1.4px;

    text-decoration: none;
}

.back-cart:hover {
    color: #2d2723 !important;
}


/* EMPTY CART */

.checkout-empty {
    padding: 20px 0;
    color: #665d57;
    font-size: 12px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .checkout-container {
        width: min(100% - 50px, 680px);
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .checkout-form {
        max-width: 100%;
    }

    .checkout-summary {
        position: static;
        max-width: 100%;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .checkout-hero {
        padding: 65px 20px 50px;
    }

    .checkout-hero h1 {
        font-size: 40px;
    }

    .checkout-section {
        padding: 55px 0 80px;
    }

    .checkout-container {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .checkout-form h2 {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-summary {
        padding: 24px;
    }

    .checkout-product {
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .checkout-product-image {
        width: 58px;
        height: 68px;
    }
}
/* =====================================================
   AURELIA ORDER CONFIRMATION
===================================================== */

.order-confirmation {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    align-items: center;
    justify-content: center;

    padding: 25px;
    box-sizing: border-box;

    background: rgba(45, 39, 35, 0.45);
    backdrop-filter: blur(8px);
}

.confirmation-box {
    width: min(500px, 100%);
    box-sizing: border-box;

    padding: 55px 45px;

    text-align: center;

    background: #fffdfa;
    border: 1px solid #d8cec2;

    box-shadow: 0 25px 70px rgba(45, 39, 35, 0.18);
}

.confirmation-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c9a9a0;
    border-radius: 50%;

    color: #2d2723;
    font-size: 18px;
}

.confirmation-box .section-label {
    margin: 0 0 10px;
    color: #665d57;
}

.confirmation-box h2 {
    margin: 0 0 18px;

    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;

    color: #2d2723;
}

.confirmation-text {
    max-width: 360px;
    margin: 0 auto 22px;

    color: #665d57;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.confirmation-number {
    margin: 0 0 30px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;

    color: #2d2723;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.confirmation-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 52px;

    box-sizing: border-box;

    border: 1px solid #2d2723;

    background: #2d2723;
    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.7px;

    text-decoration: none;

    transition: all .3s ease;
}

.confirmation-btn:hover {
    background: transparent;
    color: #2d2723;
}

.confirmation-link {
    color: #665d57;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 1.4px;

    text-decoration: none;
}

.confirmation-link:hover {
    color: #2d2723;
}


@media (max-width: 600px) {

    .order-confirmation {
        padding: 16px;
    }

    .confirmation-box {
        padding: 42px 25px;
    }

    .confirmation-box h2 {
        font-size: 32px;
    }

}
/* =========================================================
   AURELIA — PREMIUM SHOP PAGE
========================================================= */

.shop-page-hero {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background:
        linear-gradient(rgba(247,243,237,.35), rgba(247,243,237,.35)),
        url("images/about.avif") center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

.shop-page-hero-inner {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
}

.shop-page-hero .section-label {
    margin: 0 0 16px;
    color: var(--brown-soft);
}

.shop-page-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 500;
    color: var(--brown);
}

.shop-page-hero h1 em {
    font-weight: 400;
}

.shop-page-hero-inner > p:last-child {
    max-width: 500px;
    margin: 25px auto 0;
    color: var(--brown-soft);
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   INTRO
========================================================= */

.shop-intro {
    padding: 90px 0 70px;
    background: var(--ivory);
}

.shop-intro-inner {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.shop-intro h2 {
    margin: 10px 0 0;
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 500;
    color: var(--brown);
}

.shop-intro-inner > p {
    max-width: 480px;
    margin: 0;
    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.shop-products-section {
    width: 100%;
    padding: 20px 0 110px;
    background: var(--ivory);
    box-sizing: border-box;
}

.shop-products-container {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   FILTER BAR
========================================================= */

.shop-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    margin-bottom: 55px;
    padding-bottom: 18px;

    border-bottom: 1px solid var(--line);
}

.shop-filter {
    position: relative;

    border: 0;
    padding: 5px 0;

    background: transparent;
    color: var(--brown-soft);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;

    cursor: pointer;
}

.shop-filter::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -7px;

    width: 100%;
    height: 1px;

    background: var(--brown);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .25s ease;
}

.shop-filter:hover,
.shop-filter.active {
    color: var(--brown);
}

.shop-filter:hover::after,
.shop-filter.active::after {
    transform: scaleX(1);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 65px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.shop-product-card {
    min-width: 0;
    background: transparent;
}


/* IMAGE */

.shop-product-image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--cream);
}

.shop-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.shop-product-card:hover
.shop-product-image img {
    transform: scale(1.035);
}


/* BADGE */

.product-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    padding: 7px 10px;

    background: rgba(255,253,250,.94);
    color: var(--brown);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1.2px;
}


/* PRODUCT INFO */

.shop-product-info {
    padding-top: 18px;
}

.shop-product-category {
    display: block;

    margin-bottom: 8px;

    color: var(--brown-soft);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.7px;
}

.shop-product-info h3 {
    margin: 0;

    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.25;

    color: var(--brown);
}

.shop-product-info p {
    min-height: 48px;

    margin: 9px 0 17px;

    color: var(--brown-soft);

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    line-height: 1.7;
}


/* PRICE + BUTTON */

.shop-product-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
}

.shop-product-bottom strong {
    color: var(--brown);

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
}


/* ADD TO BAG */

.shop-add-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100% !important;
    height: 43px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid var(--brown) !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: var(--brown) !important;

    font-family: "DM Sans", sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 1.6px !important;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.shop-add-btn:hover {
    background: var(--brown) !important;
    color: #ffffff !important;
    border-color: var(--brown) !important;
}


/* =========================================================
   RITUAL BANNER
========================================================= */

.shop-ritual-banner {
    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background:
        linear-gradient(
            rgba(247,243,237,.78),
            rgba(247,243,237,.78)
        ),
        url("images/aboutstory.jpg") center / cover no-repeat;
}

.shop-ritual-content {
    width: min(620px, calc(100% - 40px));
    text-align: center;
}

.shop-ritual-content h2 {
    margin: 12px 0 20px;

    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 500;

    color: var(--brown);
}

.shop-ritual-content > p:not(.section-label) {
    max-width: 420px;
    margin: 0 auto 28px;

    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.8;
}

.shop-ritual-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    height: 48px;

    padding: 0 25px;

    border: 1px solid var(--brown);

    background: var(--brown);
    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.6px;

    text-decoration: none;

    transition: all .3s ease;
}

.shop-ritual-btn:hover {
    background: transparent;
    color: var(--brown);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 100px 20px;

    background: var(--cream);

    text-align: center;
}

.newsletter-inner {
    width: min(600px, 100%);
    margin: auto;
}

.newsletter h2 {
    margin: 10px 0 17px;

    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 500;

    color: var(--brown);
}

.newsletter-inner > p:not(.section-label) {
    max-width: 440px;
    margin: 0 auto 28px;

    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;

    width: min(470px, 100%);
    margin: auto;
}

.newsletter-form input {
    flex: 1;

    min-width: 0;
    height: 48px;

    padding: 0 15px;

    border: 1px solid var(--line);
    border-right: 0;

    border-radius: 0;

    background: #fffdfa;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;

    outline: none;
}

.newsletter-form button {
    width: 125px;
    height: 48px;

    border: 1px solid var(--brown);

    background: var(--brown);
    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;

    cursor: pointer;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #2d2723;
    color: #ffffff;
}

.footer-grid {
    width: min(1120px, calc(100% - 80px));
    margin: auto;

    padding: 75px 0 55px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 14px;

    color: #ffffff;

    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 3px;

    text-decoration: none;
}

.footer-brand p {
    max-width: 250px;

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 11px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.6px;
}

.footer-column a {
    color: rgba(255,255,255,.62);

    font-size: 10px;

    text-decoration: none;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: min(1120px, calc(100% - 80px));
    margin: auto;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,.14);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 9px;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.footer-social a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 25px;
    }

    .shop-intro-inner {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .shop-page-hero {
        min-height: 430px;
    }

    .shop-page-hero-inner {
        padding: 70px 0;
    }

    .shop-page-hero h1 {
        font-size: 46px;
    }


    .shop-intro {
        padding: 65px 0 45px;
    }

    .shop-intro-inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .shop-products-section {
        padding-bottom: 75px;
    }

    .shop-products-container {
        width: calc(100% - 32px);
    }


    .shop-filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 25px;

        margin-bottom: 40px;
        padding-bottom: 15px;

        scrollbar-width: none;
    }

    .shop-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .shop-filter {
        flex: 0 0 auto;
    }


    .shop-product-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 14px;
        row-gap: 42px;
    }

    .shop-product-info {
        padding-top: 13px;
    }

    .shop-product-info h3 {
        font-size: 17px;
    }

    .shop-product-info p {
        min-height: auto;
        margin-bottom: 13px;
        font-size: 10px;
    }

    .shop-product-category {
        font-size: 7px;
        letter-spacing: 1.3px;
    }

    .shop-product-bottom {
        gap: 10px;
    }

    .shop-add-btn {
        height: 40px !important;
        font-size: 8px !important;
    }


    .shop-ritual-banner {
        min-height: 400px;
    }


    .newsletter {
        padding: 75px 16px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
        border-right: 1px solid var(--line);
        box-sizing: border-box;
    }

    .newsletter-form button {
        width: 100%;
    }


    .footer-grid {
        width: calc(100% - 32px);

        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;

        padding: 60px 0 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        width: calc(100% - 32px);
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}
/* =====================================================
   AURELIA — FINAL ADD TO BAG VISIBILITY FIX
===================================================== */

.shop-product-card .shop-add-btn,
.shop-product-card button.add-to-bag {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    height: 43px !important;

    margin: 0 !important;
    padding: 0 !important;

    position: relative !important;
    z-index: 5 !important;

    border: 1px solid #2d2723 !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: #2d2723 !important;

    font-family: "DM Sans", sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 1.6px !important;

    cursor: pointer !important;

    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: none !important;
    transform: none !important;
}

.shop-product-card .shop-add-btn:hover,
.shop-product-card button.add-to-bag:hover {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    background: #2d2723 !important;
    color: #ffffff !important;
    border-color: #2d2723 !important;
}
/* =========================================================
   AURELIA — COLLECTIONS PAGE
   FINAL PREMIUM EDITORIAL / LUXURY ECOMMERCE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

body {
    overflow-x: hidden;
}

.collections-page {
    overflow-x: hidden;
}


/* =========================================================
   HERO
========================================================= */

.collection-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 30px;
    text-align: center;

    background:
        linear-gradient(
            rgba(247, 243, 237, 0.38),
            rgba(247, 243, 237, 0.38)
        ),
        url("images/collectionhero.webp") center / cover no-repeat;

    overflow: hidden;
}

/* subtle editorial frame */

.collection-hero::before {
    content: "";
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(73, 56, 46, 0.12);
    pointer-events: none;
}

.collection-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 78px;
    background: rgba(73, 56, 46, 0.22);
    transform-origin: bottom;
    animation: collectionLine 1.4s ease both;
}

.collection-hero-inner {
    position: relative;
    z-index: 2;
    width: min(820px, 100%);
    padding: 50px 25px;
    animation: collectionHeroReveal 1s ease both;
}

.collection-hero .section-label {
    display: block;
    margin-bottom: 23px;
}

.collection-hero h1 {
    margin: 0 auto;
    max-width: 800px;

    font-family: var(--serif);
    font-size: clamp(48px, 6.5vw, 82px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -1.5px;
    color: var(--brown);
}

.collection-hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.collection-hero-inner > p:last-child {
    max-width: 590px;
    margin: 30px auto 0;

    font-size: 14px;
    line-height: 1.95;
    color: var(--brown-soft);
}


/* =========================================================
   INTRO
========================================================= */

.collection-intro {
    padding: 110px 30px 90px;
    background: var(--ivory);
}

.collection-intro-inner {
    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.collection-intro .section-label {
    display: block;
    margin-bottom: 18px;
}

.collection-intro h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.8px;
    color: var(--brown);
}

.collection-intro-inner > p {
    max-width: 470px;
    margin: 0;

    font-size: 14px;
    line-height: 1.95;
    color: var(--brown-soft);
}


/* =========================================================
   COLLECTION SECTION
========================================================= */

.collections-section {
    padding: 25px 30px 125px;
    background: var(--ivory);
}

.collections-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.collection-grid {
    display: flex;
    flex-direction: column;
    gap: 55px;
}


/* =========================================================
   COLLECTION CARD
========================================================= */

.collection-card {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 540px;

    background: #f4efe8;
    overflow: hidden;

    animation: collectionCardReveal 0.9s ease both;
}

.collection-card:nth-child(1) {
    animation-delay: 0.05s;
}

.collection-card:nth-child(2) {
    animation-delay: 0.15s;
}

.collection-card:nth-child(3) {
    animation-delay: 0.25s;
}

.collection-card:nth-child(4) {
    animation-delay: 0.35s;
}


/* alternating editorial direction */

.collection-card:nth-child(even) {
    direction: rtl;
}

.collection-card:nth-child(even) .collection-content {
    direction: ltr;
}


/* =========================================================
   COLLECTION IMAGE
========================================================= */

.collection-image {
    position: relative;

    width: 100%;
    height: 540px;

    overflow: hidden;
    background: var(--cream);
}

.collection-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(45,39,35,0.08)
    );

    pointer-events: none;
}

.collection-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.65,.2,1),
        filter .6s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.055);
    filter: brightness(.96);
}


/* =========================================================
   COLLECTION NUMBER
========================================================= */

.collection-number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(73,56,46,.22);
    background: rgba(247,243,237,.88);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 1.8px;
    color: var(--brown);

    backdrop-filter: blur(5px);
}


/* =========================================================
   COLLECTION CONTENT
========================================================= */

.collection-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 75px;

    background: #f8f5ef;
}

.collection-content::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;

    width: 1px;
    height: 60px;

    background: rgba(73,56,46,.18);
}

.collection-card:nth-child(even) .collection-content::before {
    left: auto;
    right: 0;
}

.collection-category {
    display: block;
    margin-bottom: 17px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.8px;
    color: var(--brown-soft);
}

.collection-content h2,
.collection-content h3 {
    margin: 0 0 18px;

    font-family: var(--serif);
    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--brown);
}

.collection-content p {
    max-width: 430px;
    margin: 0 0 29px;

    font-size: 13px;
    line-height: 1.9;
    color: var(--brown-soft);
}


/* =========================================================
   COLLECTION LINK / BUTTON
========================================================= */

.collection-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: fit-content !important;
    min-width: 210px;
    min-height: 47px;

    padding: 0 25px !important;

    border: 1px solid var(--brown) !important;

    background: transparent !important;
    color: var(--brown) !important;

    text-decoration: none !important;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.collection-link span {
    margin-left: 10px;
    font-size: 14px;
    transition: transform .3s ease;
}

.collection-link:hover {
    background: #49382e !important;
    color: #fff !important;
    border-color: #49382e !important;
    transform: translateY(-2px);
}

.collection-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   DAILY RITUAL
========================================================= */

.collection-routine {
    position: relative;

    padding: 125px 30px;

    background: var(--cream);
    overflow: hidden;
}

.collection-routine::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: 50%;
    left: -230px;

    border: 1px solid rgba(73,56,46,.08);
    border-radius: 50%;

    transform: translateY(-50%);
}

.collection-routine-inner {
    position: relative;
    z-index: 2;

    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 95px;
    align-items: center;
}


/* =========================================================
   ROUTINE IMAGE
========================================================= */

.collection-routine-image {
    position: relative;

    height: 650px;
    overflow: hidden;

    animation: collectionFade 1s ease both;
}

.collection-routine-image::after {
    content: "";
    position: absolute;
    inset: 18px;

    border: 1px solid rgba(255,255,255,.35);

    pointer-events: none;
}

.collection-routine-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.65,.2,1),
        filter .5s ease;
}

.collection-routine-image:hover img {
    transform: scale(1.045);
    filter: brightness(.97);
}


/* =========================================================
   ROUTINE CONTENT
========================================================= */

.collection-routine-content {
    max-width: 520px;

    animation: collectionFadeUp 1s ease .15s both;
}

.collection-routine-content .section-label {
    display: block;
    margin-bottom: 17px;
}

.collection-routine-content h2 {
    margin: 0 0 25px;

    font-family: var(--serif);
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -0.8px;
    color: var(--brown);
}

.collection-routine-content > p:not(.section-label) {
    max-width: 480px;
    margin: 0;

    font-size: 14px;
    line-height: 1.95;
    color: var(--brown-soft);
}


/* =========================================================
   ROUTINE STEPS
========================================================= */

.routine-steps {
    margin-top: 38px;

    border-top: 1px solid var(--line);
}

.routine-step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;

    padding: 21px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding-left .3s ease,
        background .3s ease;
}

.routine-step:hover {
    padding-left: 8px;
}

.routine-step > span {
    padding-top: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 1.8px;
    color: var(--brown-soft);
}

.routine-step h4 {
    margin: 0 0 6px;

    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--brown);
}

.routine-step p {
    margin: 0;

    font-size: 11px;
    line-height: 1.7;
    color: var(--brown-soft);
}


/* =========================================================
   MAIN BUTTON
========================================================= */

.collection-main-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 195px;
    min-height: 49px;

    margin-top: 34px;
    padding: 0 28px;

    border: 1px solid var(--brown);

    background: var(--brown);
    color: #fff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.collection-main-btn:hover {
    background: transparent;
    color: var(--brown);
    transform: translateY(-2px);
}


/* =========================================================
   SETS BANNER
========================================================= */

.sets-banner {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 30px;

    text-align: center;

    background:
        linear-gradient(
            rgba(45,39,35,.55),
            rgba(45,39,35,.55)
        ),
        url("images/CollectionSet.webp") center / cover no-repeat;

    overflow: hidden;
}

.sets-banner::before {
    content: "";
    position: absolute;
    inset: 25px;

    border: 1px solid rgba(255,255,255,.22);

    pointer-events: none;
}

.sets-banner-content {
    position: relative;
    z-index: 2;

    width: min(700px, 100%);

    animation: collectionFadeUp 1s ease both;
}

.sets-banner-content .section-label {
    color: rgba(255,255,255,.75);
}

.sets-banner h2 {
    margin: 17px 0 20px;

    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.8px;

    color: #fff;
}

.sets-banner p:not(.section-label) {
    max-width: 520px;
    margin: 0 auto;

    font-size: 13px;
    line-height: 1.85;

    color: rgba(255,255,255,.84);
}


/* =========================================================
   SETS BUTTON
========================================================= */

.sets-banner-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;
    min-height: 49px;

    margin-top: 31px;
    padding: 0 28px;

    border: 1px solid #fff;

    background: #fff;
    color: var(--brown);

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.sets-banner-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   NEWSLETTER — MATCH EXISTING SITE
========================================================= */

.newsletter {
    position: relative;
}

.newsletter-form button[type="submit"] {
    background: var(--brown);
    color: #fff;
    border: 1px solid var(--brown);

    padding: 14px 28px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;

    cursor: pointer;

    opacity: 1;
    visibility: visible;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.newsletter-form button[type="submit"]:hover {
    background: #fff;
    color: var(--brown);
    border-color: var(--brown);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes collectionHeroReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes collectionCardReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes collectionFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes collectionFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes collectionLine {

    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .collection-hero-inner,
    .collection-card,
    .collection-routine-image,
    .collection-routine-content,
    .sets-banner-content {
        animation: none;
    }

    .collection-image img,
    .collection-routine-image img,
    .collection-link,
    .collection-main-btn,
    .sets-banner-btn,
    .routine-step {
        transition: none;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .collection-hero {
        min-height: 560px;
        padding: 90px 22px;
    }

    .collection-hero::before {
        inset: 18px;
    }

    .collection-intro {
        padding: 80px 25px 70px;
    }

    .collection-intro-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .collection-intro-inner > p {
        max-width: 620px;
    }

    .collections-section {
        padding: 15px 22px 90px;
    }

    .collections-container {
        width: min(100%, 720px);
    }

    .collection-card,
    .collection-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .collection-image {
        height: 460px;
    }

    .collection-content {
        min-height: 390px;
        padding: 55px 45px;
    }

    .collection-content::before,
    .collection-card:nth-child(even) .collection-content::before {
        top: 0;
        left: 45px;
        right: auto;

        width: 60px;
        height: 1px;
    }

    .collection-routine {
        padding: 90px 25px;
    }

    .collection-routine-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .collection-routine-image {
        height: 500px;
    }

    .collection-routine-content {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    .sets-banner {
        min-height: 470px;
        padding: 85px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .collection-hero {
        min-height: 500px;
        padding: 75px 18px;
    }

    .collection-hero::before {
        inset: 12px;
    }

    .collection-hero::after {
        height: 55px;
    }

    .collection-hero-inner {
        padding: 30px 10px;
    }

    .collection-hero h1 {
        font-size: 43px;
        letter-spacing: -0.8px;
    }

    .collection-hero-inner > p:last-child {
        margin-top: 23px;
        font-size: 12px;
        line-height: 1.8;
    }

    .collection-intro {
        padding: 70px 22px 55px;
    }

    .collection-intro h2 {
        font-size: 38px;
    }

    .collection-intro-inner > p {
        font-size: 12px;
        line-height: 1.85;
    }

    .collections-section {
        padding: 10px 14px 70px;
    }

    .collections-container {
        width: 100%;
    }

    .collection-grid {
        gap: 30px;
    }

    .collection-card {
        min-height: auto;
        margin: 0;
    }

    .collection-image {
        height: 350px;
    }

    .collection-number {
        top: 15px;
        left: 15px;

        width: 38px;
        height: 38px;
    }

    .collection-content {
        min-height: auto;
        padding: 42px 25px 45px;
    }

    .collection-content::before,
    .collection-card:nth-child(even) .collection-content::before {
        left: 25px;
        top: 0;

        width: 45px;
    }

    .collection-category {
        font-size: 8px;
        letter-spacing: 2.2px;
    }

    .collection-content h2,
    .collection-content h3 {
        font-size: 32px;
    }

    .collection-content p {
        font-size: 12px;
        line-height: 1.85;
    }

    .collection-link {
        width: 100% !important;
        min-width: 0;
    }

    .collection-routine {
        padding: 75px 20px;
    }

    .collection-routine::before {
        width: 300px;
        height: 300px;
        left: -190px;
    }

    .collection-routine-image {
        height: 390px;
    }

    .collection-routine-image::after {
        inset: 12px;
    }

    .collection-routine-content h2 {
        font-size: 43px;
    }

    .collection-routine-content > p:not(.section-label) {
        font-size: 12px;
    }

    .routine-steps {
        margin-top: 28px;
    }

    .routine-step {
        grid-template-columns: 35px 1fr;
        gap: 12px;
        padding: 18px 0;
    }

    .routine-step h4 {
        font-size: 19px;
    }

    .routine-step p {
        font-size: 10px;
    }

    .collection-main-btn {
        width: 100%;
    }

    .sets-banner {
        min-height: 430px;
        padding: 70px 20px;
    }

    .sets-banner::before {
        inset: 12px;
    }

    .sets-banner h2 {
        font-size: 40px;
    }

    .sets-banner p:not(.section-label) {
        font-size: 12px;
    }

    .sets-banner-btn {
        width: 100%;
        max-width: 220px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .collection-hero h1 {
        font-size: 39px;
    }

    .collection-intro h2 {
        font-size: 34px;
    }

    .collection-image {
        height: 320px;
    }

    .collection-content {
        padding: 38px 22px 42px;
    }

    .collection-content h2,
    .collection-content h3 {
        font-size: 29px;
    }

    .collection-routine-image {
        height: 340px;
    }

    .collection-routine-content h2 {
        font-size: 39px;
    }

    .sets-banner h2 {
        font-size: 36px;
    }

}

/* =========================================================
   AURELIA ABOUT PAGE
   PREMIUM EDITORIAL / LUXURY D2C
   ========================================================= */

.about-page {
    overflow-x: hidden;
    background: var(--ivory);
}


/* =========================================================
   GLOBAL ABOUT ANIMATION
   ========================================================= */

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes aboutScale {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes aboutLine {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
    position: relative;
    min-height: 650px;
    padding: 145px 30px 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    background: var(--ivory);

    overflow: hidden;
}


/* subtle editorial frame */

.about-hero::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(73, 56, 46, .10);
    pointer-events: none;
    animation: aboutFade 1.5s ease forwards;
}


/* decorative vertical line */

.about-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 1px;
    height: 85px;

    background: rgba(73, 56, 46, .22);

    transform-origin: top;
    animation: aboutFade 1.5s ease .8s both;
}


.about-hero-inner {
    position: relative;
    z-index: 2;

    width: min(100%, 920px);
    margin: 0 auto;
}


/* label */

.about-hero .section-label {
    display: block;
    margin-bottom: 28px;

    opacity: 0;
    animation: aboutFadeUp .8s ease .15s forwards;
}


/* heading */

.about-hero h1 {
    max-width: 900px;
    margin: 0 auto 28px;

    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--brown);

    opacity: 0;
    animation: aboutFadeUp 1s cubic-bezier(.2,.7,.2,1) .3s forwards;
}


.about-hero h1 em {
    font-style: italic;
    font-weight: 400;
}


/* description */

.about-hero p {
    max-width: 600px;
    margin: 0 auto;

    font-size: 13px;
    line-height: 2;

    letter-spacing: .02em;
    color: var(--brown-soft);

    opacity: 0;
    animation: aboutFadeUp .9s ease .55s forwards;
}


/* =========================================================
   STORY
   ========================================================= */

.about-story {
    position: relative;

    width: min(100% - 80px, 1220px);
    margin: 0 auto;

    padding: 110px 0 140px;

    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: stretch;
}


/* image */

.about-story-image {
    position: relative;

    min-height: 650px;
    overflow: hidden;

    background: #eee7dc;
}


.about-story-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(40,30,24,.08)
    );

    pointer-events: none;
}


.about-story-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1),
        filter .8s ease;
}


.about-story-image:hover img {
    transform: scale(1.055);
}


/* content */

.about-story-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 82px;

    background: #f5f0e9;

    border-top: 1px solid rgba(73,56,46,.12);
    border-bottom: 1px solid rgba(73,56,46,.12);
}


.about-story-content::before {
    content: "";

    position: absolute;
    top: 70px;
    left: 0;

    width: 42px;
    height: 1px;

    background: var(--brown);

    transform-origin: left;
    animation: aboutLine 1s ease .3s both;
}


.about-story-content .section-label {
    margin-bottom: 22px;
}


.about-story-content h2 {
    max-width: 500px;

    margin: 0 0 28px;

    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.025em;

    color: var(--brown);
}


.about-story-content h2 em {
    font-style: italic;
    font-weight: 400;
}


.about-story-content p {
    max-width: 470px;

    margin: 0 0 18px;

    font-size: 12px;
    line-height: 2;

    letter-spacing: .015em;

    color: var(--brown-soft);
}


.about-story-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.about-philosophy {
    position: relative;

    padding: 150px 30px;

    text-align: center;

    background: #eee7dc;

    overflow: hidden;
}


/* oversized decorative quotation */

.about-philosophy::before {
    content: "“";

    position: absolute;

    top: 35px;
    left: 7%;

    font-family: var(--serif);
    font-size: 220px;
    line-height: 1;

    color: rgba(73,56,46,.055);

    pointer-events: none;
}


.about-philosophy::after {
    content: "";

    position: absolute;

    right: 8%;
    bottom: 50px;

    width: 90px;
    height: 90px;

    border: 1px solid rgba(73,56,46,.12);
    border-radius: 50%;

    pointer-events: none;
}


.about-philosophy-inner {
    position: relative;
    z-index: 2;

    max-width: 820px;
    margin: 0 auto;
}


.about-philosophy .section-label {
    display: block;
    margin-bottom: 22px;
}


.about-philosophy h2 {
    margin: 0 0 25px;

    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--brown);
}


.about-philosophy h2 em {
    font-style: italic;
    font-weight: 400;
}


.about-philosophy p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 13px;
    line-height: 2;

    color: var(--brown-soft);
}


/* =========================================================
   VALUES
   ========================================================= */

.about-values {
    width: min(100% - 80px, 1220px);
    margin: 0 auto;

    padding: 135px 0 145px;
}


.about-values-heading {
    max-width: 720px;
    margin-bottom: 70px;
}


.about-values-heading .section-label {
    display: block;
    margin-bottom: 20px;
}


.about-values-heading h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 66px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--brown);
}


.about-values-heading h2 em {
    font-style: italic;
    font-weight: 400;
}


/* grid */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
}


/* individual value */

.about-value {
    position: relative;

    min-height: 285px;

    padding: 36px 30px 32px;

    border-right: 1px solid var(--line);

    background: transparent;

    transition:
        background .4s ease,
        transform .4s ease;
}


.about-value:first-child {
    border-left: 1px solid var(--line);
}


.about-value:hover {
    background: #f7f3ed;
    transform: translateY(-7px);
}


/* number */

.value-number {
    display: block;

    margin-bottom: 38px;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;

    color: var(--brown-soft);
}


/* icon */

.value-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(73,56,46,.22);

    color: var(--brown);

    font-size: 14px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}


.about-value:hover .value-icon {
    transform: rotate(8deg);
    background: var(--brown);
    color: #fff;
}


.about-value h3 {
    margin: 0 0 15px;

    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;

    color: var(--brown);
}


.about-value p {
    max-width: 230px;

    margin: 0;

    font-size: 11px;
    line-height: 1.9;

    color: var(--brown-soft);
}


/* =========================================================
   AURELIA WAY / QUOTE
   ========================================================= */

.about-quote {
    width: min(100% - 80px, 1220px);
    margin: 0 auto;

    padding-bottom: 140px;

    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch;
}


.about-quote-image {
    position: relative;

    min-height: 610px;
    overflow: hidden;

    background: #eee7dc;
}


.about-quote-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}


.about-quote-image:hover img {
    transform: scale(1.05);
}


.about-quote-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 75px;

    background: #f5f0e9;

    border-top: 1px solid rgba(73,56,46,.12);
    border-bottom: 1px solid rgba(73,56,46,.12);
}


.about-quote-content::before {
    content: "";

    position: absolute;

    top: 72px;
    left: 75px;

    width: 38px;
    height: 1px;

    background: var(--brown);
}


.about-quote-content .section-label {
    margin-bottom: 42px;
}


.about-quote-content blockquote {
    margin: 0 0 28px;

    font-family: var(--serif);
    font-size: clamp(30px, 3.4vw, 47px);
    line-height: 1.18;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -.02em;

    color: var(--brown);
}


.about-quote-content p {
    max-width: 410px;

    margin: 0;

    font-size: 12px;
    line-height: 2;

    color: var(--brown-soft);
}


/* =========================================================
   ROUTINE
   ========================================================= */

.about-routine {
    position: relative;

    padding: 135px 30px 145px;

    text-align: center;

    background: #eee7dc;

    overflow: hidden;
}


.about-routine::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(73,56,46,.07);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


.about-routine-inner {
    position: relative;
    z-index: 2;

    max-width: 1220px;
    margin: 0 auto;
}


.about-routine .section-label {
    display: block;
    margin-bottom: 20px;
}


.about-routine h2 {
    margin: 0 0 70px;

    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 66px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--brown);
}


.about-routine h2 em {
    font-style: italic;
    font-weight: 400;
}


/* routine grid */

.about-routine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(45,39,35,.18);
}


.about-routine-item {
    position: relative;

    min-height: 220px;

    padding: 34px 30px;

    border-right: 1px solid rgba(45,39,35,.18);

    transition:
        background .4s ease,
        transform .4s ease;
}


.about-routine-item:first-child {
    border-left: 1px solid rgba(45,39,35,.18);
}


.about-routine-item:hover {
    background: rgba(255,255,255,.30);
    transform: translateY(-5px);
}


.about-routine-item > span {
    display: block;

    margin-bottom: 35px;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;

    color: var(--brown-soft);
}


.about-routine-item h3 {
    margin: 0 0 14px;

    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;

    color: var(--brown);
}


.about-routine-item p {
    max-width: 230px;
    margin: 0 auto;

    font-size: 11px;
    line-height: 1.9;

    color: var(--brown-soft);
}


/* =========================================================
   CTA
   ========================================================= */

.about-cta {
    position: relative;

    padding: 150px 30px;

    text-align: center;

    background: var(--ivory);

    overflow: hidden;
}


.about-cta::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(73,56,46,.08);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


.about-cta::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(73,56,46,.055);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


.about-cta-inner {
    position: relative;
    z-index: 2;

    max-width: 800px;
    margin: 0 auto;
}


.about-cta .section-label {
    display: block;
    margin-bottom: 22px;
}


.about-cta h2 {
    margin: 0 0 24px;

    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--brown);
}


.about-cta h2 em {
    display: block;

    font-style: italic;
    font-weight: 400;
}


.about-cta p {
    max-width: 570px;

    margin: 0 auto 38px;

    font-size: 12px;
    line-height: 2;

    color: var(--brown-soft);
}


/* premium button */

.about-main-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 36px;

    border: 1px solid var(--brown);

    background: var(--brown);
    color: #fff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    overflow: hidden;

    transition:
        color .35s ease,
        transform .35s ease;
}


.about-main-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #fff;

    transform: translateY(101%);

    transition: transform .4s cubic-bezier(.7,0,.2,1);
}


.about-main-btn:hover::before {
    transform: translateY(0);
}


.about-main-btn:hover {
    color: var(--brown);
    transform: translateY(-3px);
}


.about-main-btn {
    isolation: isolate;
}


.about-main-btn::after {
    content: "→";

    position: absolute;

    right: 15px;

    opacity: 0;

    transform: translateX(-6px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.about-main-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}


.about-main-btn {
    padding-right: 45px;
}


.about-main-btn::before {
    z-index: -1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about-hero {
        min-height: 580px;
    }

    .about-story {
        grid-template-columns: 1fr 1fr;
        width: min(100% - 50px, 1000px);
    }

    .about-story-image {
        min-height: 560px;
    }

    .about-story-content {
        padding: 55px 45px;
    }

    .about-values {
        width: min(100% - 50px, 1000px);
    }

    .about-value {
        padding: 30px 22px;
    }

    .about-quote {
        width: min(100% - 50px, 1000px);
    }

    .about-quote-content {
        padding: 55px 45px;
    }

    .about-quote-content::before {
        left: 45px;
    }

    .about-routine-item {
        padding: 30px 20px;
    }
}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 800px) {

    .about-hero {
        min-height: 540px;
        padding: 105px 25px 95px;
    }

    .about-hero::before {
        inset: 16px;
    }

    .about-hero h1 {
        font-size: clamp(42px, 10vw, 62px);
    }


    .about-story {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        padding: 70px 0 90px;
    }

    .about-story-image {
        min-height: 480px;
    }

    .about-story-content {
        padding: 55px 38px;
    }


    .about-values {
        width: calc(100% - 32px);
        padding: 90px 0 100px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-value:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .about-value:nth-child(3) {
        border-left: 1px solid var(--line);
        border-top: 1px solid var(--line);
    }

    .about-value:nth-child(4) {
        border-top: 1px solid var(--line);
    }


    .about-quote {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        padding-bottom: 90px;
    }

    .about-quote-image {
        min-height: 480px;
    }

    .about-quote-content {
        padding: 55px 38px;
    }


    .about-routine {
        padding: 95px 22px 105px;
    }

    .about-routine-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-routine-item:nth-child(3),
    .about-routine-item:nth-child(4) {
        border-top: 1px solid rgba(45,39,35,.18);
    }


    .about-cta {
        padding: 105px 22px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .about-hero {
        min-height: 500px;
        padding: 90px 20px 80px;
    }

    .about-hero h1 {
        font-size: 42px;
        line-height: 1.06;
    }

    .about-hero p {
        max-width: 340px;
        font-size: 11px;
        line-height: 1.9;
    }


    .about-story {
        width: calc(100% - 24px);

        padding: 55px 0 75px;
    }

    .about-story-image {
        min-height: 350px;
    }

    .about-story-content {
        padding: 45px 27px;
    }

    .about-story-content::before {
        top: 35px;
    }

    .about-story-content h2 {
        font-size: 35px;
    }

    .about-story-content p {
        font-size: 11px;
        line-height: 1.9;
    }


    .about-philosophy {
        padding: 90px 22px;
    }

    .about-philosophy::before {
        font-size: 150px;
        left: 0;
    }

    .about-philosophy::after {
        width: 55px;
        height: 55px;
        right: 6%;
    }

    .about-philosophy h2 {
        font-size: 42px;
    }

    .about-philosophy p {
        font-size: 11px;
    }


    .about-values {
        width: calc(100% - 24px);
        padding: 75px 0 80px;
    }

    .about-values-heading {
        margin-bottom: 45px;
    }

    .about-values-heading h2 {
        font-size: 42px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value,
    .about-value:first-child {
        min-height: auto;

        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .about-value {
        padding: 30px 25px;
    }

    .about-value:hover {
        transform: none;
    }


    .about-quote {
        width: calc(100% - 24px);
        padding-bottom: 75px;
    }

    .about-quote-image {
        min-height: 350px;
    }

    .about-quote-content {
        padding: 48px 27px;
    }

    .about-quote-content::before {
        top: 32px;
        left: 27px;
    }

    .about-quote-content .section-label {
        margin-bottom: 35px;
    }

    .about-quote-content blockquote {
        font-size: 30px;
    }

    .about-quote-content p {
        font-size: 11px;
    }


    .about-routine {
        padding: 80px 18px 90px;
    }

    .about-routine::before {
        width: 350px;
        height: 350px;
    }

    .about-routine h2 {
        margin-bottom: 45px;
        font-size: 42px;
    }

    .about-routine-grid {
        grid-template-columns: 1fr;
    }

    .about-routine-item,
    .about-routine-item:nth-child(3),
    .about-routine-item:nth-child(4) {
        min-height: auto;

        padding: 30px 24px;

        border-left: 1px solid rgba(45,39,35,.18);
        border-right: 1px solid rgba(45,39,35,.18);
        border-bottom: 1px solid rgba(45,39,35,.18);
        border-top: 0;
    }

    .about-routine-item:hover {
        transform: none;
    }

    .about-routine-item p {
        font-size: 11px;
    }


    .about-cta {
        padding: 90px 20px;
    }

    .about-cta::before {
        width: 340px;
        height: 340px;
    }

    .about-cta::after {
        width: 230px;
        height: 230px;
    }

    .about-cta h2 {
        font-size: 40px;
    }

    .about-cta p {
        font-size: 11px;
    }

    .about-main-btn {
        min-height: 50px;
        padding-left: 28px;
        padding-right: 40px;
    }
}
/* =========================================================
   AURELIA — PREMIUM HERO OVERRIDE
   ========================================================= */

.about-hero {
    position: relative;
    min-height: 650px;
    padding: 105px 7vw 115px;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;

    text-align: left;

    background: var(--ivory);

    overflow: hidden;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.about-hero-visual {
    position: relative;

    width: min(100%, 500px);
    height: 510px;

    justify-self: center;

    order: 2;

    opacity: 0;
    animation: aboutHeroImageIn 1.2s cubic-bezier(.2,.7,.2,1) .25s forwards;
}


.about-hero-image {
    position: absolute;

    inset: 20px 20px 0 0;

    overflow: hidden;

    background: #eee7dc;
}


.about-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(45,35,28,.10)
    );

    pointer-events: none;
}


.about-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.04);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}


.about-hero-image:hover img {
    transform: scale(1.085);
}


/* elegant offset border */

.about-hero-visual::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 88%;
    height: 92%;

    border: 1px solid rgba(73,56,46,.18);

    pointer-events: none;
}


/* small vertical label */

.about-hero-side-label {
    position: absolute;

    right: -8px;
    bottom: 42px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2.5px;

    color: var(--brown-soft);
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.about-hero-inner {
    position: relative;
    z-index: 3;

    width: min(100%, 620px);

    margin: 0;

    order: 1;
}


.about-hero .section-label {
    display: block;

    margin-bottom: 24px;

    opacity: 0;
    animation: aboutHeroTextIn .8s ease .35s forwards;
}


.about-hero h1 {
    max-width: 650px;

    margin: 0 0 27px;

    font-family: var(--serif);
    font-size: clamp(52px, 6.2vw, 82px);
    line-height: .98;

    font-weight: 500;
    letter-spacing: -.04em;

    color: var(--brown);

    opacity: 0;
    animation: aboutHeroTextIn 1s cubic-bezier(.2,.7,.2,1) .48s forwards;
}


.about-hero h1 em {
    display: block;

    font-style: italic;
    font-weight: 400;
}


.about-hero p {
    max-width: 480px;

    margin: 0 0 35px;

    font-size: 12px;
    line-height: 2;

    letter-spacing: .015em;

    color: var(--brown-soft);

    opacity: 0;
    animation: aboutHeroTextIn .9s ease .7s forwards;
}


/* =========================================================
   HERO SCROLL INDICATOR
   ========================================================= */

.about-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding-top: 18px;

    border-top: 1px solid rgba(73,56,46,.20);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;

    color: var(--brown);

    opacity: 0;
    animation: aboutHeroTextIn .8s ease .9s forwards;
}


.about-hero-scroll i {
    font-size: 10px;

    animation: aboutHeroArrow 1.7s ease-in-out infinite;
}


/* =========================================================
   HERO DECORATION
   ========================================================= */

.about-hero::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -190px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(73,56,46,.07);
    border-radius: 50%;

    transform: translateX(-50%);

    pointer-events: none;
}


.about-hero::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 1px;
    height: 70px;

    background: rgba(73,56,46,.20);

    pointer-events: none;
}


/* =========================================================
   HERO ANIMATIONS
   ========================================================= */

@keyframes aboutHeroTextIn {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes aboutHeroImageIn {

    from {
        opacity: 0;
        transform: translateX(35px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}


@keyframes aboutHeroArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: auto;

        padding: 100px 40px 110px;

        grid-template-columns: 1fr;
        gap: 55px;

        text-align: center;
    }


    .about-hero-inner {
        width: min(100%, 700px);
        margin: 0 auto;

        order: 1;
    }


    .about-hero h1 {
        margin-left: auto;
        margin-right: auto;
    }


    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }


    .about-hero-scroll {
        justify-content: center;
    }


    .about-hero-visual {
        width: min(100%, 520px);
        height: 500px;

        order: 2;
    }


    .about-hero-side-label {
        right: -5px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-hero {
        min-height: auto;

        padding: 78px 20px 95px;

        gap: 42px;
    }


    .about-hero::before {
        width: 280px;
        height: 280px;

        bottom: -130px;
    }


    .about-hero::after {
        height: 50px;
    }


    .about-hero h1 {
        font-size: 43px;
        line-height: 1.02;

        margin-bottom: 22px;
    }


    .about-hero p {
        max-width: 340px;

        font-size: 11px;
        line-height: 1.9;
    }


    .about-hero-visual {
        width: calc(100% - 18px);
        height: 390px;
    }


    .about-hero-image {
        inset: 14px 14px 0 0;
    }


    .about-hero-visual::before {
        width: 88%;
        height: 92%;
    }


    .about-hero-side-label {
        right: -8px;
        bottom: 28px;

        font-size: 7px;
        letter-spacing: 2px;
    }


    .about-hero-scroll {
        font-size: 7px;
        letter-spacing: 1.7px;
    }

}

/* =========================================================
   AURELIA JOURNAL
   Editorial • Luxury • Modern
   ========================================================= */

.journal-page {
    overflow-x: hidden;
}


/* =========================================================
   JOURNAL HERO
========================================================= */

.journal-hero {
    padding: 120px 30px 105px;
    text-align: center;
    background: var(--ivory);
}

.journal-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.journal-hero .section-label {
    display: block;
    margin-bottom: 22px;
}

.journal-hero h1 {
    max-width: 780px;
    margin: 0 auto 25px;
    font-family: var(--serif);
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 500;
    color: var(--brown);
}

.journal-hero h1 em {
    font-style: italic;
}

.journal-hero p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.9;
    color: var(--brown-soft);
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.journal-featured {
    width: min(100% - 80px, 1180px);
    margin: 0 auto;
    padding: 75px 0 120px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 620px;
}

.journal-featured-image {
    min-height: 620px;
    overflow: hidden;
    background: var(--cream);
}

.journal-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.65,.2,1);
}

.journal-featured:hover .journal-featured-image img {
    transform: scale(1.035);
}

.journal-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    background: #f5f0e9;
}

.journal-category {
    display: block;
    margin-bottom: 14px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.3px;
    color: var(--brown-soft);
}

.journal-number {
    display: block;
    margin-bottom: 20px;
    font-size: 8px;
    letter-spacing: 2px;
    color: #9a9088;
}

.journal-featured-content h2 {
    max-width: 470px;
    margin: 0 0 22px;
    font-family: var(--serif);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 500;
    color: var(--brown);
}

.journal-featured-content p {
    max-width: 430px;
    margin: 0 0 30px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--brown-soft);
}

.journal-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: fit-content;
    min-width: 205px;
    height: 48px;
    padding: 0 22px;
    border: 1px solid var(--brown);
    background: transparent;
    color: var(--brown);
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
    transition: all .3s ease;
}

.journal-read-btn span {
    font-size: 14px;
    transition: transform .3s ease;
}

.journal-read-btn:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
}

.journal-read-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   JOURNAL ARTICLE SECTION
========================================================= */

.journal-section {
    padding: 120px 30px;
    background: #eee7dc;
}

.journal-section-heading {
    width: min(100%, 1180px);
    margin: 0 auto 65px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.journal-section-heading .section-label {
    display: block;
    margin-bottom: 17px;
}

.journal-section-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 500;
    color: var(--brown);
}

.journal-section-heading h2 em {
    font-style: italic;
}

.journal-section-heading > p {
    max-width: 330px;
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    color: var(--brown-soft);
}


/* =========================================================
   ARTICLE GRID
========================================================= */

.journal-grid {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 35px;
}

.journal-card {
    min-width: 0;
}

.journal-card-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: var(--cream);
}

.journal-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.65,.2,1);
}

.journal-card:hover .journal-card-image img {
    transform: scale(1.04);
}

.journal-card-content {
    padding: 25px 5px 0;
}

.journal-card-content .journal-category {
    margin-bottom: 13px;
}

.journal-card-content h3 {
    max-width: 500px;
    margin: 0 0 15px;
    font-family: var(--serif);
    font-size: 29px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--brown);
}

.journal-card-content p {
    max-width: 470px;
    margin: 0 0 20px;
    font-size: 12px;
    line-height: 1.8;
    color: var(--brown-soft);
}

.journal-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--brown);
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    border-bottom: 1px solid var(--brown);
    padding-bottom: 5px;
    transition: all .3s ease;
}

.journal-link span {
    transition: transform .3s ease;
}

.journal-link:hover {
    opacity: .65;
}

.journal-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   JOURNAL QUOTE
========================================================= */

.journal-quote {
    padding: 125px 30px;
    text-align: center;
    background: var(--ivory);
}

.journal-quote-inner {
    max-width: 850px;
    margin: 0 auto;
}

.journal-quote .section-label {
    display: block;
    margin-bottom: 28px;
}

.journal-quote blockquote {
    max-width: 800px;
    margin: 0 auto 25px;
    font-family: var(--serif);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.25;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
}

.journal-quote p {
    margin: 0;
    font-size: 12px;
    color: var(--brown-soft);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.journal-newsletter {
    padding: 120px 30px;
    text-align: center;
    background: #f5f0e9;
}

.journal-newsletter-inner {
    max-width: 720px;
    margin: 0 auto;
}

.journal-newsletter .section-label {
    display: block;
    margin-bottom: 18px;
}

.journal-newsletter h2 {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 500;
    color: var(--brown);
}

.journal-newsletter h2 em {
    font-style: italic;
}

.journal-newsletter p {
    max-width: 540px;
    margin: 0 auto 35px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--brown-soft);
}

.journal-subscribe {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border-bottom: 1px solid var(--brown);
}

.journal-subscribe input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 5px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--brown);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
}

.journal-subscribe input::placeholder {
    color: #8d847d;
}

.journal-subscribe button {
    height: 50px;
    padding: 0 8px 0 20px;
    border: 0;
    background: transparent;
    color: var(--brown);
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .journal-featured {
        width: min(100% - 40px, 700px);
        grid-template-columns: 1fr;
        padding-bottom: 80px;
    }

    .journal-featured-image {
        min-height: 480px;
    }

    .journal-featured-content {
        padding: 55px 45px;
    }

    .journal-section-heading {
        width: min(100%, 700px);
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-grid {
        width: min(100%, 700px);
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .journal-card-image {
        height: 480px;
    }

}


@media (max-width: 600px) {

    .journal-hero {
        padding: 75px 22px 60px;
    }

    .journal-hero h1 {
        font-size: 40px;
    }

    .journal-hero p {
        font-size: 12px;
    }

    .journal-featured {
        width: calc(100% - 28px);
        padding: 45px 0 70px;
    }

    .journal-featured-image {
        min-height: 330px;
    }

    .journal-featured-content {
        padding: 42px 28px;
    }

    .journal-featured-content h2 {
        font-size: 34px;
    }

    .journal-featured-content p {
        font-size: 12px;
    }

    .journal-section {
        padding: 75px 22px;
    }

    .journal-section-heading {
        margin-bottom: 45px;
    }

    .journal-section-heading h2 {
        font-size: 40px;
    }

    .journal-section-heading > p {
        font-size: 11px;
    }

    .journal-grid {
        width: 100%;
        gap: 45px;
    }

    .journal-card-image {
        height: 330px;
    }

    .journal-card-content {
        padding-top: 22px;
    }

    .journal-card-content h3 {
        font-size: 26px;
    }

    .journal-card-content p {
        font-size: 11px;
    }

    .journal-quote {
        padding: 80px 22px;
    }

    .journal-quote blockquote {
        font-size: 29px;
    }

    .journal-newsletter {
        padding: 80px 22px;
    }

    .journal-newsletter h2 {
        font-size: 38px;
    }

    .journal-subscribe {
        width: 100%;
    }

}
/* =========================================================
   JOURNAL BUTTON HOVER FIX
========================================================= */

.journal-read-btn,
.journal-link {
    transition: background-color .2s ease,
                color .2s ease,
                border-color .2s ease,
                transform .2s ease;
}

.journal-read-btn {
    color: var(--brown) !important;
}

.journal-read-btn:hover {
    background: var(--brown) !important;
    color: #fff !important;
}

.journal-read-btn:hover span {
    color: #fff !important;
}

.journal-link {
    color: var(--brown) !important;
}

.journal-link:hover {
    color: var(--brown) !important;
    opacity: .65;
}

.journal-link span {
    color: inherit;
}
/* =========================================================
   JOURNAL ARTICLE MODAL
========================================================= */

.article-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
}

.article-modal.active {
    visibility: visible;
    opacity: 1;
}

.article-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45,39,35,.62);
    backdrop-filter: blur(5px);
}

.article-modal-box {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
    max-height: 85vh;
    overflow-y: auto;
    padding: 65px 70px;
    background: var(--ivory);
    transform: translateY(18px);
    transition: transform .3s ease;
}

.article-modal.active .article-modal-box {
    transform: translateY(0);
}

.article-modal-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    font-size: 14px;
    transition: all .2s ease;
}

.article-modal-close:hover {
    background: var(--brown);
    color: #fff;
}

.article-modal-content .journal-category {
    margin-bottom: 18px;
}

.article-modal-content h2 {
    margin: 0 0 28px;
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    color: var(--brown);
}

.article-modal-text p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--brown-soft);
}

@media (max-width: 600px) {

    .article-modal {
        padding: 15px;
    }

    .article-modal-box {
        padding: 55px 28px 40px;
        max-height: 90vh;
    }

    .article-modal-content h2 {
        font-size: 30px;
    }

    .article-modal-text p {
        font-size: 12px;
    }

}
/* =========================================================
   AURELIA JOURNAL — FINAL PREMIUM ENHANCEMENT
   Editorial Luxury • Modern Beauty Journal
========================================================= */


/* =========================================================
   PAGE BASE
========================================================= */

.journal-page {
    overflow-x: hidden;
    background: var(--ivory);
}

.journal-page ::selection {
    background: var(--brown);
    color: #fff;
}


/* =========================================================
   JOURNAL HERO — EDITORIAL
========================================================= */

.journal-hero {
    position: relative;
    min-height: 620px;
    padding: 130px 30px 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f8f4ee 0%,
            #f4eee6 100%
        );
}

.journal-hero::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -180px;
    top: 50%;
    border: 1px solid rgba(73,56,46,.08);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.journal-hero::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 78px;
    bottom: 0;
    left: 50%;
    background: rgba(73,56,46,.18);
}

.journal-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    animation: journalHeroReveal 1s cubic-bezier(.2,.65,.2,1) both;
}

@keyframes journalHeroReveal {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.journal-hero .section-label {
    position: relative;
    display: inline-block;
    margin-bottom: 27px;
}

.journal-hero .section-label::before,
.journal-hero .section-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38px;
    height: 1px;
    background: rgba(73,56,46,.22);
}

.journal-hero .section-label::before {
    right: calc(100% + 15px);
}

.journal-hero .section-label::after {
    left: calc(100% + 15px);
}

.journal-hero h1 {
    position: relative;
    max-width: 850px;
    margin: 0 auto 28px;
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -.8px;
    font-weight: 500;
    color: var(--brown);
}

.journal-hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.journal-hero p {
    max-width: 590px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 2;
    letter-spacing: .15px;
    color: var(--brown-soft);
}


/* =========================================================
   FEATURED ARTICLE — PREMIUM EDITORIAL
========================================================= */

.journal-featured {
    position: relative;
    width: min(100% - 80px, 1180px);
    margin: 0 auto;
    padding: 80px 0 125px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 620px;
}

.journal-featured::before {
    content: "01";
    position: absolute;
    left: -35px;
    top: 52px;
    font-family: var(--serif);
    font-size: 13px;
    color: #a79b91;
    letter-spacing: 2px;
}

.journal-featured-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--cream);
}

.journal-featured-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.35);
    pointer-events: none;
    opacity: 0;
    transform: scale(.97);
    transition:
        opacity .6s ease,
        transform .7s cubic-bezier(.2,.65,.2,1);
}

.journal-featured:hover .journal-featured-image::after {
    opacity: 1;
    transform: scale(1);
}

.journal-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 1s cubic-bezier(.2,.65,.2,1),
        filter .8s ease;
}

.journal-featured:hover .journal-featured-image img {
    transform: scale(1.045);
}

.journal-featured-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    background: #f5f0e9;
}

.journal-featured-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 70px;
    width: 32px;
    height: 1px;
    background: var(--brown);
}

.journal-featured-content .journal-category {
    margin-bottom: 12px;
    padding-top: 18px;
}

.journal-number {
    opacity: .8;
}

.journal-featured-content h2 {
    max-width: 480px;
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 53px);
    line-height: 1.08;
    letter-spacing: -.3px;
    font-weight: 500;
    color: var(--brown);
}

.journal-featured-content p {
    max-width: 425px;
    margin: 0 0 32px;
    font-size: 12px;
    line-height: 2;
    color: var(--brown-soft);
}

.journal-read-btn {
    position: relative;
    overflow: hidden;
    min-width: 210px;
    height: 50px;
    padding: 0 22px;
    border: 1px solid var(--brown);
    background: transparent;
    color: var(--brown);
}

.journal-read-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brown);
    transform: translateY(101%);
    transition: transform .4s cubic-bezier(.2,.65,.2,1);
    z-index: 0;
}

.journal-read-btn:hover::before {
    transform: translateY(0);
}

.journal-read-btn span,
.journal-read-btn {
    z-index: 1;
}

.journal-read-btn {
    transition:
        color .4s ease,
        border-color .4s ease,
        transform .3s ease;
}

.journal-read-btn:hover {
    color: #fff !important;
    border-color: var(--brown);
    transform: translateY(-3px);
}


/* =========================================================
   JOURNAL SECTION
========================================================= */

.journal-section {
    position: relative;
    padding: 125px 30px 135px;
    background: #eee7dc;
}

.journal-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 45px;
    background: rgba(73,56,46,.16);
}

.journal-section-heading {
    position: relative;
    width: min(100%, 1180px);
    margin: 0 auto 72px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.journal-section-heading .section-label {
    display: block;
    margin-bottom: 18px;
}

.journal-section-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 61px);
    line-height: 1.05;
    letter-spacing: -.4px;
    font-weight: 500;
    color: var(--brown);
}

.journal-section-heading h2 em {
    font-style: italic;
    font-weight: 400;
}

.journal-section-heading > p {
    max-width: 330px;
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.9;
    color: var(--brown-soft);
}


/* =========================================================
   JOURNAL GRID
========================================================= */

.journal-grid {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 85px 40px;
}

.journal-card {
    position: relative;
    min-width: 0;
    opacity: 0;
    transform: translateY(25px);
    animation: journalCardReveal .8s cubic-bezier(.2,.65,.2,1) forwards;
}

.journal-card:nth-child(1) {
    animation-delay: .05s;
}

.journal-card:nth-child(2) {
    animation-delay: .12s;
}

.journal-card:nth-child(3) {
    animation-delay: .19s;
}

.journal-card:nth-child(4) {
    animation-delay: .26s;
}

@keyframes journalCardReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.journal-card-image {
    position: relative;
    width: 100%;
    height: 435px;
    overflow: hidden;
    background: var(--cream);
}

.journal-card-image::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255,255,255,.35);
    opacity: 0;
    transform: scale(.97);
    transition:
        opacity .5s ease,
        transform .6s cubic-bezier(.2,.65,.2,1);
    pointer-events: none;
}

.journal-card:hover .journal-card-image::after {
    opacity: 1;
    transform: scale(1);
}

.journal-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform .9s cubic-bezier(.2,.65,.2,1),
        filter .5s ease;
}

.journal-card:hover .journal-card-image img {
    transform: scale(1.055);
}

.journal-card-content {
    position: relative;
    padding: 27px 5px 0;
}

.journal-card-content::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 26px;
    height: 1px;
    background: var(--brown);
}

.journal-card-content .journal-category {
    margin-bottom: 15px;
    padding-top: 12px;
}

.journal-card-content h3 {
    max-width: 500px;
    margin: 0 0 16px;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -.2px;
    font-weight: 500;
    color: var(--brown);
    transition: transform .3s ease;
}

.journal-card:hover .journal-card-content h3 {
    transform: translateX(3px);
}

.journal-card-content p {
    max-width: 465px;
    margin: 0 0 22px;
    font-size: 12px;
    line-height: 1.9;
    color: var(--brown-soft);
}

.journal-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 6px;
    color: var(--brown) !important;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration: none;
}

.journal-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--brown);
    transform-origin: left;
    transition: transform .35s ease;
}

.journal-link:hover {
    opacity: 1;
}

.journal-link:hover::after {
    transform: scaleX(.55);
}

.journal-link span {
    transition: transform .35s ease;
}

.journal-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   JOURNAL QUOTE
========================================================= */

.journal-quote {
    position: relative;
    padding: 135px 30px;
    text-align: center;
    background: var(--ivory);
    overflow: hidden;
}

.journal-quote::before {
    content: "“";
    position: absolute;
    left: 50%;
    top: 32px;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 125px;
    line-height: 1;
    color: rgba(73,56,46,.055);
}

.journal-quote::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    bottom: -190px;
    border: 1px solid rgba(73,56,46,.07);
    border-radius: 50%;
}

.journal-quote-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.journal-quote .section-label {
    display: block;
    margin-bottom: 30px;
}

.journal-quote blockquote {
    max-width: 820px;
    margin: 0 auto 27px;
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 51px);
    line-height: 1.2;
    letter-spacing: -.3px;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
}

.journal-quote p {
    margin: 0;
    font-size: 11px;
    letter-spacing: .4px;
    color: var(--brown-soft);
}


/* =========================================================
   NEWSLETTER — PREMIUM
========================================================= */

.journal-newsletter {
    position: relative;
    padding: 125px 30px;
    text-align: center;
    background: #f5f0e9;
    overflow: hidden;
}

.journal-newsletter::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    top: -170px;
    border: 1px solid rgba(73,56,46,.07);
    border-radius: 50%;
}

.journal-newsletter::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: -150px;
    border: 1px solid rgba(73,56,46,.06);
    border-radius: 50%;
}

.journal-newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.journal-newsletter .section-label {
    display: block;
    margin-bottom: 20px;
}

.journal-newsletter h2 {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: clamp(39px, 5vw, 60px);
    line-height: 1.06;
    letter-spacing: -.4px;
    font-weight: 500;
    color: var(--brown);
}

.journal-newsletter h2 em {
    font-style: italic;
    font-weight: 400;
}

.journal-newsletter p {
    max-width: 530px;
    margin: 0 auto 38px;
    font-size: 12px;
    line-height: 1.9;
    color: var(--brown-soft);
}

.journal-subscribe {
    position: relative;
    max-width: 510px;
    margin: 0 auto;
    display: flex;
    border-bottom: 1px solid var(--brown);
}

.journal-subscribe::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #9d8571;
    transition: width .5s ease;
}

.journal-subscribe:focus-within::after {
    width: 100%;
}

.journal-subscribe input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 8px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--brown);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
}

.journal-subscribe input::placeholder {
    color: #8d847d;
}

.journal-subscribe button {
    position: relative;
    height: 52px;
    padding: 0 10px 0 22px;
    border: 0;
    background: transparent;
    color: var(--brown);
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
    cursor: pointer;
    transition: color .3s ease;
}

.journal-subscribe button:hover {
    color: #8a6f5c;
}

.journal-subscribe button:disabled {
    cursor: default;
    opacity: .7;
}


/* =========================================================
   ARTICLE MODAL — EDITORIAL
========================================================= */

.article-modal {
    padding: 25px;
    backdrop-filter: blur(0);
}

.article-modal-overlay {
    background: rgba(43,36,31,.68);
    backdrop-filter: blur(7px);
}

.article-modal-box {
    width: min(100%, 760px);
    max-height: 86vh;
    padding: 72px 75px 65px;
    background: #f8f4ee;
    border: 1px solid rgba(73,56,46,.08);
    box-shadow: 0 30px 80px rgba(35,27,22,.18);
}

.article-modal-box::before {
    content: "";
    position: absolute;
    left: 75px;
    top: 0;
    width: 45px;
    height: 1px;
    background: var(--brown);
}

.article-modal-close {
    top: 20px;
    right: 22px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(73,56,46,.2);
    background: transparent;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.article-modal-close:hover {
    background: var(--brown);
    color: #fff;
    transform: rotate(90deg);
}

.article-modal-content .journal-category {
    margin-bottom: 20px;
}

.article-modal-content h2 {
    max-width: 620px;
    margin: 0 0 32px;
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -.3px;
    font-weight: 500;
    color: var(--brown);
}

.article-modal-text {
    border-top: 1px solid rgba(73,56,46,.13);
    padding-top: 28px;
}

.article-modal-text p {
    max-width: 620px;
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 2;
    color: var(--brown-soft);
}

.article-modal-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .journal-hero {
        min-height: 540px;
        padding: 105px 25px 90px;
    }

    .journal-featured {
        width: min(100% - 40px, 700px);
        grid-template-columns: 1fr;
        padding: 70px 0 90px;
    }

    .journal-featured::before {
        left: -5px;
        top: 42px;
    }

    .journal-featured-image {
        min-height: 500px;
    }

    .journal-featured-content {
        padding: 60px 50px;
    }

    .journal-featured-content::before {
        top: 60px;
    }

    .journal-section {
        padding: 105px 25px 110px;
    }

    .journal-section-heading {
        width: min(100%, 700px);
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 55px;
    }

    .journal-grid {
        width: min(100%, 700px);
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .journal-card-image {
        height: 480px;
    }

    .journal-newsletter {
        padding: 105px 25px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .journal-hero {
        min-height: 500px;
        padding: 80px 22px 75px;
    }

    .journal-hero::before {
        width: 300px;
        height: 300px;
        left: -150px;
    }

    .journal-hero::after {
        height: 55px;
    }

    .journal-hero .section-label::before,
    .journal-hero .section-label::after {
        width: 22px;
    }

    .journal-hero .section-label::before {
        right: calc(100% + 9px);
    }

    .journal-hero .section-label::after {
        left: calc(100% + 9px);
    }

    .journal-hero h1 {
        font-size: 41px;
        line-height: 1.08;
        letter-spacing: -.4px;
    }

    .journal-hero p {
        max-width: 330px;
        font-size: 11.5px;
        line-height: 1.9;
    }


    .journal-featured {
        width: calc(100% - 28px);
        padding: 48px 0 72px;
    }

    .journal-featured::before {
        display: none;
    }

    .journal-featured-image {
        min-height: 340px;
    }

    .journal-featured-image::after {
        inset: 12px;
    }

    .journal-featured-content {
        padding: 45px 28px 42px;
    }

    .journal-featured-content::before {
        top: 45px;
        width: 25px;
    }

    .journal-featured-content .journal-category {
        padding-top: 13px;
    }

    .journal-featured-content h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    .journal-featured-content p {
        font-size: 11.5px;
        line-height: 1.9;
    }

    .journal-read-btn {
        min-width: 190px;
        height: 46px;
    }


    .journal-section {
        padding: 78px 22px 85px;
    }

    .journal-section::before {
        height: 30px;
    }

    .journal-section-heading {
        width: 100%;
        margin-bottom: 48px;
        gap: 20px;
    }

    .journal-section-heading h2 {
        font-size: 40px;
    }

    .journal-section-heading > p {
        max-width: 310px;
        font-size: 11px;
        line-height: 1.8;
    }

    .journal-grid {
        width: 100%;
        gap: 52px;
    }

    .journal-card-image {
        height: 335px;
    }

    .journal-card-image::after {
        inset: 11px;
    }

    .journal-card-content {
        padding: 24px 3px 0;
    }

    .journal-card-content::before {
        left: 3px;
    }

    .journal-card-content h3 {
        font-size: 26px;
        line-height: 1.18;
    }

    .journal-card-content p {
        font-size: 11px;
        line-height: 1.85;
    }


    .journal-quote {
        padding: 90px 22px;
    }

    .journal-quote::before {
        top: 20px;
        font-size: 95px;
    }

    .journal-quote blockquote {
        font-size: 29px;
        line-height: 1.25;
    }

    .journal-quote p {
        font-size: 10px;
    }


    .journal-newsletter {
        padding: 82px 22px;
    }

    .journal-newsletter h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .journal-newsletter p {
        font-size: 11px;
        line-height: 1.85;
    }

    .journal-subscribe {
        width: 100%;
    }

    .journal-subscribe input {
        height: 48px;
        font-size: 11px;
    }

    .journal-subscribe button {
        height: 48px;
        padding-left: 12px;
        font-size: 8px;
    }


    .article-modal {
        padding: 12px;
    }

    .article-modal-box {
        max-height: 91vh;
        padding: 58px 26px 40px;
    }

    .article-modal-box::before {
        left: 26px;
        width: 32px;
    }

    .article-modal-content h2 {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .article-modal-text {
        padding-top: 22px;
    }

    .article-modal-text p {
        font-size: 11.5px;
        line-height: 1.9;
    }

    .article-modal-close {
        top: 15px;
        right: 15px;
        width: 34px;
        height: 34px;
    }

}
/* =========================================================
   JOURNAL — DARK READ ARTICLE BUTTON
========================================================= */

.journal-read-btn {
    background: #3b2c24 !important;
    border-color: #3b2c24 !important;
    color: #fff !important;
}

.journal-read-btn span {
    color: #fff !important;
}

.journal-read-btn:hover {
    background: #241914 !important;
    border-color: #241914 !important;
    color: #fff !important;
}

.journal-read-btn:hover span {
    color: #fff !important;
}
/* =========================================================
   FROM THE JOURNAL — DARK READ MORE BUTTONS
========================================================= */

.journal-card .journal-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 22px !important;

    min-width: 145px !important;
    height: 42px !important;
    padding: 0 16px !important;

    background: #3b2c24 !important;
    color: #fff !important;
    border: 1px solid #3b2c24 !important;

    text-decoration: none !important;
    opacity: 1 !important;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease !important;
}

.journal-card .journal-link::after {
    display: none !important;
}

.journal-card .journal-link span {
    color: #fff !important;
    transition: transform .3s ease !important;
}

.journal-card .journal-link:hover {
    background: #241914 !important;
    border-color: #241914 !important;
    color: #fff !important;
    opacity: 1 !important;
    transform: translateY(-2px) !important;
}

.journal-card .journal-link:hover span {
    color: #fff !important;
    transform: translateX(4px) !important;
}

/* =========================================================
   AURELIA CONTACT PAGE
   FINAL PREMIUM ECOMMERCE DESIGN
   Editorial • Luxury • Modern • Animated
========================================================= */

.contact-page {
    overflow-x: hidden;
    background: var(--ivory);
}


/* =========================================================
   GLOBAL SELECTION
========================================================= */

.contact-page ::selection {
    background: var(--brown);
    color: #fff;
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes contactScale {
    from {
        opacity: 0;
        transform: scale(1.035);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes contactLineGrow {
    from {
        transform: scaleY(0);
        transform-origin: top;
    }

    to {
        transform: scaleY(1);
        transform-origin: top;
    }
}

@keyframes contactFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;
    min-height: 620px;
    padding: 110px 30px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--ivory);
}

/* Large editorial circle */

.contact-hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(73, 56, 46, .09);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Vertical editorial line */

.contact-hero::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 78px;
    background: rgba(73, 56, 46, .22);
    bottom: 0;
    left: 50%;
    animation: contactLineGrow 1.2s ease .5s both;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    animation: contactFadeUp .9s ease both;
}

.contact-hero .section-label {
    display: block;
    margin-bottom: 24px;
}

.contact-hero h1 {
    max-width: 820px;
    margin: 0 auto 26px;
    font-family: var(--serif);
    font-size: clamp(48px, 6.5vw, 78px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -.8px;
    color: var(--brown);
}

.contact-hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.contact-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.95;
    color: var(--brown-soft);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    position: relative;
    padding: 0 30px 115px;
    background: var(--ivory);
}

.contact-details-inner {
    position: relative;
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-detail {
    position: relative;
    padding: 46px 38px 48px;
    text-align: center;
    border-right: 1px solid var(--line);
    overflow: hidden;
    transition:
        background .35s ease,
        transform .35s ease;
}

.contact-detail:first-child {
    border-left: 1px solid var(--line);
}

.contact-detail:last-child {
    border-right: 1px solid var(--line);
}

/* Bottom animated line */

.contact-detail::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 0;
    height: 1px;
    background: var(--brown);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .4s ease;
}

.contact-detail:hover {
    background: rgba(255, 255, 255, .32);
    transform: translateY(-4px);
}

.contact-detail:hover::after {
    transform: scaleX(1);
}

.contact-detail-number {
    display: block;
    margin-bottom: 25px;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--brown-soft);
}

.contact-detail > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 20px;
    border: 1px solid rgba(73, 56, 46, .16);
    border-radius: 50%;
    font-size: 14px;
    color: var(--brown);
    transition:
        transform .4s ease,
        background .3s ease,
        color .3s ease;
}

.contact-detail:hover > i {
    transform: translateY(-4px) rotate(-5deg);
    background: var(--brown);
    color: #fff;
}

.contact-detail-label {
    display: block;
    margin-bottom: 12px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown-soft);
}

.contact-detail h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--brown);
}

.contact-detail p {
    margin: 0;
    font-size: 11px;
    line-height: 1.8;
    color: var(--brown-soft);
}


/* =========================================================
   CONTACT MESSAGE SECTION
========================================================= */

.contact-message {
    position: relative;
    padding: 0 0 125px;
    background: var(--ivory);
}

.contact-message-inner {
    position: relative;
    width: min(100% - 80px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
}


/* =========================================================
   CONTACT IMAGE
========================================================= */

.contact-message-image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--cream);
}

.contact-message-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .45);
    pointer-events: none;
    z-index: 2;
    opacity: .8;
}

.contact-message-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    animation: contactScale 1.2s ease both;
    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1);
}

.contact-message-image:hover img {
    transform: scale(1.045);
}


/* =========================================================
   CONTACT FORM CONTENT
========================================================= */

.contact-message-content {
    position: relative;
    padding: 75px 78px;
    background: #f5f0e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Decorative circle */

.contact-message-content::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(73, 56, 46, .07);
    border-radius: 50%;
    right: -110px;
    top: -100px;
    pointer-events: none;
}

.contact-message-content .section-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 18px;
}

.contact-message-content h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    font-family: var(--serif);
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.3px;
    color: var(--brown);
}

.contact-message-content h2 em {
    display: block;
    font-style: italic;
    font-weight: 400;
}

.contact-message-content > p {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 0 40px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--brown-soft);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.aurelia-contact-form {
    position: relative;
    z-index: 3;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    position: relative;
    margin-bottom: 23px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--brown-soft);
}

.form-field input,
.form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid #cfc3b6;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--brown);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    padding: 10px 0 13px;
    transition:
        border-color .3s ease,
        padding-left .3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9a9088;
    opacity: .9;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--brown);
    padding-left: 5px;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.7;
}


/* =========================================================
   SEND MESSAGE BUTTON
========================================================= */

.contact-submit {
    position: relative;
    z-index: 5;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100% !important;
    min-height: 52px !important;
    margin-top: 8px;
    padding: 0 28px !important;

    border: 1px solid #3b2c24 !important;
    border-radius: 0 !important;

    background: #3b2c24 !important;
    color: #fff !important;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    cursor: pointer;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.contact-submit span {
    font-size: 15px;
    line-height: 1;
    color: #fff;
    transition: transform .3s ease;
}

.contact-submit:hover {
    background: #241914 !important;
    border-color: #241914 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.contact-submit:hover span {
    transform: translateX(5px);
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.contact-success {
    display: none;
    margin: 18px 0 0;
    padding: 13px 15px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .35);
    font-size: 10px;
    letter-spacing: .3px;
    line-height: 1.6;
    color: var(--brown);
}

.contact-success.show {
    display: block;
    animation: contactFadeUp .45s ease both;
}


/* =========================================================
   HELP SECTION
========================================================= */

.contact-help {
    position: relative;
    padding: 125px 30px;
    text-align: center;
    background: #eee7dc;
    overflow: hidden;
}

.contact-help::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(73, 56, 46, .07);
    border-radius: 50%;
    top: -230px;
    right: -160px;
    pointer-events: none;
}

.contact-help-inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.contact-help .section-label {
    display: block;
    margin-bottom: 18px;
}

.contact-help h2 {
    margin: 0 auto 65px;
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 500;
    color: var(--brown);
}

.contact-help h2 em {
    font-style: italic;
    font-weight: 400;
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(45, 39, 35, .18);
}

.contact-help-item {
    position: relative;
    min-height: 285px;
    padding: 40px 35px 32px;
    text-align: left;
    border-right: 1px solid rgba(45, 39, 35, .18);
    overflow: hidden;
    transition:
        background .35s ease,
        transform .35s ease;
}

.contact-help-item:first-child {
    border-left: 1px solid rgba(45, 39, 35, .18);
}

.contact-help-item:last-child {
    border-right: 1px solid rgba(45, 39, 35, .18);
}

/* Hover line */

.contact-help-item::before {
    content: "";
    position: absolute;
    left: 35px;
    right: 35px;
    top: 0;
    height: 1px;
    background: var(--brown);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.contact-help-item:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-4px);
}

.contact-help-item:hover::before {
    transform: scaleX(1);
}

.contact-help-item > span {
    display: block;
    margin-bottom: 20px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown-soft);
}

.contact-help-item h3 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--brown);
}

.contact-help-item p {
    min-height: 65px;
    margin: 0 0 27px;
    font-size: 11px;
    line-height: 1.8;
    color: var(--brown-soft);
}

.contact-help-item a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brown);
    text-decoration: none;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.7px;
    padding-bottom: 6px;
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.contact-help-item a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--brown);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .3s ease;
}

.contact-help-item a:hover {
    opacity: .8;
    transform: translateX(4px);
}

.contact-help-item a:hover::after {
    transform: scaleX(.35);
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-cta {
    position: relative;
    padding: 135px 30px;
    text-align: center;
    background: var(--ivory);
    overflow: hidden;
}

/* Large decorative ring */

.contact-cta::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(73, 56, 46, .08);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Smaller ring */

.contact-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(73, 56, 46, .06);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.contact-cta .section-label {
    display: block;
    margin-bottom: 19px;
}

.contact-cta h2 {
    margin: 0 0 21px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.07;
    font-weight: 500;
    letter-spacing: -.4px;
    color: var(--brown);
}

.contact-cta h2 em {
    display: block;
    font-style: italic;
    font-weight: 400;
}

.contact-cta p {
    max-width: 570px;
    margin: 0 auto 34px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--brown-soft);
}


/* =========================================================
   SHOP AURELIA BUTTON
========================================================= */

.contact-main-btn {
    position: relative;
    z-index: 5;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 52px !important;
    padding: 0 34px !important;

    border: 1px solid #3b2c24 !important;
    border-radius: 0 !important;

    background: #3b2c24 !important;
    color: #fff !important;

    text-decoration: none !important;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    cursor: pointer;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.contact-main-btn:hover {
    background: #241914 !important;
    border-color: #241914 !important;
    color: #fff !important;
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-hero {
        min-height: 540px;
    }

    .contact-details-inner {
        grid-template-columns: 1fr;
    }

    .contact-detail {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .contact-detail:first-child {
        border-left: 1px solid var(--line);
    }

    .contact-detail:last-child {
        border-bottom: 0;
    }

    .contact-message-inner {
        width: min(100% - 40px, 720px);
        grid-template-columns: 1fr;
    }

    .contact-message-image {
        min-height: 500px;
    }

    .contact-message-content {
        padding: 60px 50px;
    }

    .contact-help-inner {
        width: min(100%, 720px);
    }

    .contact-help-grid {
        grid-template-columns: 1fr;
    }

    .contact-help-item {
        min-height: auto;
        border-left: 1px solid rgba(45, 39, 35, .18);
        border-bottom: 1px solid rgba(45, 39, 35, .18);
    }

    .contact-help-item:last-child {
        border-bottom: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-hero {
        min-height: 500px;
        padding: 75px 22px 65px;
    }

    .contact-hero::before {
        width: 320px;
        height: 320px;
    }

    .contact-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .contact-hero p {
        font-size: 12px;
        line-height: 1.85;
    }


    /* Details */

    .contact-details {
        padding: 0 14px 75px;
    }

    .contact-detail {
        padding: 34px 22px 38px;
    }

    .contact-detail h3 {
        font-size: 18px;
    }


    /* Message */

    .contact-message {
        padding-bottom: 75px;
    }

    .contact-message-inner {
        width: calc(100% - 28px);
    }

    .contact-message-image {
        min-height: 350px;
    }

    .contact-message-image::after {
        inset: 12px;
    }

    .contact-message-content {
        padding: 45px 28px;
    }

    .contact-message-content h2 {
        font-size: 35px;
    }

    .contact-message-content > p {
        font-size: 12px;
        line-height: 1.85;
    }


    /* Form */

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field {
        margin-bottom: 21px;
    }

    .contact-submit {
        min-height: 50px !important;
    }


    /* Help */

    .contact-help {
        padding: 85px 22px;
    }

    .contact-help::before {
        width: 280px;
        height: 280px;
    }

    .contact-help h2 {
        margin-bottom: 45px;
        font-size: 38px;
    }

    .contact-help-item {
        padding: 32px 24px;
    }

    .contact-help-item::before {
        left: 24px;
        right: 24px;
    }

    .contact-help-item h3 {
        font-size: 21px;
    }


    /* CTA */

    .contact-cta {
        padding: 90px 22px;
    }

    .contact-cta::before {
        width: 330px;
        height: 330px;
    }

    .contact-cta::after {
        width: 240px;
        height: 240px;
    }

    .contact-cta h2 {
        font-size: 39px;
    }

    .contact-cta p {
        font-size: 12px;
    }

    .contact-main-btn {
        min-height: 50px !important;
        padding: 0 28px !important;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-hero-inner,
    .contact-message-image img,
    .contact-hero::after,
    .contact-success {
        animation: none !important;
    }

    .contact-detail,
    .contact-detail > i,
    .contact-help-item,
    .contact-submit,
    .contact-main-btn,
    .contact-message-image img {
        transition: none !important;
    }
}
/* =========================================================
   AURELIA WISHLIST
========================================================= */

.wishlist-btn {
    position: relative !important;
    z-index: 5 !important;
    cursor: pointer !important;
}

.wishlist-btn i {
    transition: transform .2s ease;
}

.wishlist-btn:hover i {
    transform: scale(1.12);
}

.wishlist-btn.wishlisted i {
    color: #2d2723;
}

.wishlist-nav-btn {
    position: relative !important;
    cursor: pointer !important;
}

.wishlist-count {
    position: absolute;
    top: -7px;
    right: -8px;

    min-width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 3px;

    border-radius: 50%;

    background: #2d2723;
    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 600;
    line-height: 1;
}
/* =========================================================
   AURELIA SEARCH + WISHLIST OVERLAYS
========================================================= */

body.wishlist-open {
    overflow: hidden;
}


/* =========================================================
   OVERLAY
========================================================= */
/* =====================================================
   AURELIA OVERLAY — FINAL
===================================================== */

.aurelia-wishlist-overlay,
.aurelia-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(45, 39, 35, 0.48);

    opacity: 0;
    visibility: hidden;

    overflow: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.aurelia-wishlist-overlay.active,
.aurelia-search-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   SEARCH BOX
===================================================== */

.aurelia-search-overlay .aurelia-search-box {
    width: min(100%, 760px);
    max-height: min(720px, calc(100vh - 60px));

    display: flex;
    flex-direction: column;

    background: var(--ivory, #f7f4ec);

    overflow: hidden;

    position: relative;

    box-shadow:
        0 24px 70px rgba(33, 28, 25, .18);

    transform: translateY(10px);
    transition: transform .35s ease;
}


.aurelia-search-overlay.active .aurelia-search-box {
    transform: translateY(0);
}


/* =====================================================
   SEARCH RESULTS — ONLY THIS AREA SCROLLS
===================================================== */

.aurelia-search-overlay .aurelia-search-results {
    flex: 1 1 auto;

    min-height: 0;

    max-height: 430px;

    overflow-y: auto;
    overflow-x: hidden;

    overscroll-behavior: contain;

    scrollbar-width: thin;
}


/* Chrome / Edge scrollbar */

.aurelia-search-overlay
.aurelia-search-results::-webkit-scrollbar {
    width: 5px;
}


.aurelia-search-overlay
.aurelia-search-results::-webkit-scrollbar-track {
    background: transparent;
}


.aurelia-search-overlay
.aurelia-search-results::-webkit-scrollbar-thumb {
    background: rgba(45, 39, 35, .22);
}


.aurelia-search-overlay
.aurelia-search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 39, 35, .40);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .aurelia-search-overlay {
        padding: 16px;
    }


    .aurelia-search-overlay .aurelia-search-box {
        width: 100%;
        max-height: calc(100vh - 32px);
    }


    .aurelia-search-overlay .aurelia-search-results {
        max-height: 55vh;
    }

}

.aurelia-wishlist-overlay.active,
.aurelia-search-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   WISHLIST BOX
========================================================= */

.aurelia-wishlist-box {
    position: relative;

    width: min(650px, 100%);
    max-height: 85vh;

    overflow-y: auto;

    background: #f7f4ec;

    border: 1px solid rgba(45,39,35,.12);

    padding: 45px;
}


.aurelia-wishlist-close,
.aurelia-search-close {
    position: absolute;

    top: 18px;
    right: 22px;

    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;

    font-size: 30px;
    font-weight: 300;

    cursor: pointer;

    color: #2d2723;

    line-height: 1;
}


.aurelia-wishlist-header {
    margin-bottom: 28px;
}


.aurelia-wishlist-header p,
.aurelia-search-heading p {
    margin: 0 0 8px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;

    color: #8a7669;
}


.aurelia-wishlist-header h2,
.aurelia-search-heading h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 38px;
    font-weight: 400;

    color: #2d2723;
}


/* =========================================================
   WISHLIST ITEMS
========================================================= */

.wishlist-items {
    display: flex;
    flex-direction: column;
}


.wishlist-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-top: 1px solid rgba(45,39,35,.12);
}


.wishlist-item:last-child {
    border-bottom: 1px solid rgba(45,39,35,.12);
}


.wishlist-item-image {
    width: 90px;
    height: 105px;

    flex-shrink: 0;

    overflow: hidden;

    background: #ebe5dc;
}


.wishlist-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.wishlist-item-info {
    flex: 1;
}


.wishlist-item-info span {
    display: block;

    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    letter-spacing: 1.5px;

    color: #9b8779;
}


.wishlist-item-info h3 {
    margin: 0 0 7px;

    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 400;

    color: #2d2723;
}


.wishlist-item-info strong {
    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 600;

    color: #2d2723;
}


.wishlist-remove {
    width: 30px;
    height: 30px;

    border: 0;

    background: transparent;

    font-size: 23px;
    font-weight: 300;

    color: #7b6b61;

    cursor: pointer;
}


.wishlist-remove:hover {
    color: #2d2723;
}


/* =========================================================
   EMPTY WISHLIST
========================================================= */

.wishlist-empty {
    text-align: center;

    padding: 35px 15px 15px;
}


.wishlist-empty-icon {
    margin-bottom: 15px;

    font-size: 48px;
    font-weight: 300;

    color: #9b8779;
}


.wishlist-empty h3 {
    margin: 0 0 8px;

    font-family: "Playfair Display", serif;

    font-size: 27px;
    font-weight: 400;

    color: #2d2723;
}


.wishlist-empty p {
    max-width: 390px;

    margin: 0 auto 25px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    line-height: 1.7;

    color: #75685f;
}


/* =========================================================
   WISHLIST FOOTER
========================================================= */

.wishlist-footer {
    margin-top: 25px;
}


.wishlist-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 25px;

    background: #2d2723;
    color: #fff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    transition: .25s ease;
}


.wishlist-shop-btn:hover {
    opacity: .88;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.aurelia-search-box {
    position: relative;

    width: min(720px, 100%);

    background: #f7f4ec;

    padding: 50px;
}


.aurelia-search-heading {
    margin-bottom: 25px;
}


.aurelia-search-input-wrap {
    position: relative;

    display: flex;
    align-items: center;
}


.aurelia-search-input-wrap i {
    position: absolute;
    left: 17px;

    font-size: 14px;

    color: #8a7669;
}


.aurelia-search-input {
    width: 100%;

    height: 58px;

    padding: 0 18px 0 48px;

    border: 1px solid rgba(45,39,35,.2);

    background: #fff;

    outline: none;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    color: #2d2723;
}


.aurelia-search-input:focus {
    border-color: #2d2723;
}


.aurelia-search-results {
    margin-top: 20px;
}


/* =========================================================
   SEARCH PRODUCT
========================================================= */

.search-product {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 13px 5px;

    border: 0;
    border-top: 1px solid rgba(45,39,35,.12);

    background: transparent;

    text-align: left;

    cursor: pointer;

    transition: .2s ease;
}


.search-product:hover {
    background: rgba(255,255,255,.5);
}


.search-product-image {
    width: 65px;
    height: 72px;

    flex-shrink: 0;

    overflow: hidden;

    background: #ebe5dc;
}


.search-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.search-product-info {
    flex: 1;
}


.search-product-info span {
    display: block;

    margin-bottom: 4px;

    font-size: 9px;
    letter-spacing: 1.5px;

    color: #9b8779;
}


.search-product-info strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Playfair Display", serif;

    font-size: 18px;
    font-weight: 400;

    color: #2d2723;
}


.search-product-info small {
    font-size: 12px;

    color: #5e5149;
}


.search-arrow {
    font-size: 20px;

    color: #8a7669;

    transition: transform .2s ease;
}


.search-product:hover .search-arrow {
    transform: translateX(4px);
}


/* =========================================================
   POPULAR SEARCH
========================================================= */

.search-default {
    padding-top: 8px;
}


.search-default > span {
    display: block;

    margin-bottom: 14px;

    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 600;

    color: #9b8779;
}


.search-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.search-tags button {
    padding: 9px 15px;

    border: 1px solid rgba(45,39,35,.18);

    background: transparent;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    color: #2d2723;

    cursor: pointer;

    transition: .2s ease;
}


.search-tags button:hover {
    background: #2d2723;
    color: #fff;
}


/* =========================================================
   NO SEARCH RESULTS
========================================================= */

.search-no-results {
    padding: 30px 5px;

    text-align: center;
}


.search-no-results span {
    font-size: 9px;
    letter-spacing: 2px;

    color: #9b8779;
}


.search-no-results h3 {
    margin: 10px 0;

    font-family: "Playfair Display", serif;

    font-size: 25px;
    font-weight: 400;

    color: #2d2723;
}


.search-no-results p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    color: #75685f;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aurelia-wishlist-overlay,
    .aurelia-search-overlay {
        padding: 15px;
    }


    .aurelia-wishlist-box,
    .aurelia-search-box {
        padding: 35px 22px 25px;
    }


    .aurelia-wishlist-header h2,
    .aurelia-search-heading h2 {
        font-size: 30px;
    }


    .wishlist-item {
        gap: 13px;
    }


    .wishlist-item-image {
        width: 72px;
        height: 85px;
    }


    .wishlist-item-info h3 {
        font-size: 18px;
    }


    .aurelia-search-input {
        height: 52px;
    }

}
/* =========================================================
   AURELIA — WISHLIST PREMIUM LAYOUT
   ========================================================= */

.wishlist-hero {
    padding: 120px 7% 75px;
    background: #f7f3ed;
    text-align: center;
    border-bottom: 1px solid #e5ddd2;
}

.wishlist-hero p {
    margin: 0 0 14px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #9a806d;
    font-weight: 600;
}

.wishlist-hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    color: #3b3029;
}

.wishlist-hero .wishlist-subtitle {
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 14px;
    line-height: 1.8;
    color: #75685f;
}


/* MAIN WISHLIST */

.wishlist-section {
    padding: 80px 7% 110px;
    background: #fffdf9;
}

#wishlistGrid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* PRODUCT CARD */

.wishlist-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e0d7;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.wishlist-card:hover {
    transform: translateY(-4px);
    border-color: #cdb9a9;
}


/* IMAGE */

.wishlist-card-image {
    position: relative;
    width: 100%;
    height: 360px;
    background: #f3eee8;
    overflow: hidden;
}

.wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.wishlist-card:hover .wishlist-card-image img {
    transform: scale(1.035);
}


/* REMOVE BUTTON — ALWAYS VISIBLE */

.wishlist-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid #ddd2c8;
    background: rgba(255,255,255,.96);
    color: #493b33;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 17px;
    transition: all .2s ease;
}

.wishlist-remove:hover {
    background: #493b33;
    color: #fff;
}


/* PRODUCT DETAILS */

.wishlist-card-info {
    padding: 22px 20px 24px;
    background: #fff;
}

.wishlist-card-category {
    margin: 0 0 8px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a08470;
    font-weight: 600;
}

.wishlist-card-name {
    margin: 0 0 9px;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 500;
    color: #332a25;
}

.wishlist-card-price {
    margin: 0 0 20px;
    font-size: 14px;
    color: #5e5149;
    font-weight: 600;
}


/* ADD TO BAG — ALWAYS VISIBLE */

.wishlist-add-cart {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border: 1px solid #493b33;
    background: #493b33;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    display: block;
    transition: all .25s ease;
}

.wishlist-add-cart:hover {
    background: transparent;
    color: #493b33;
}


/* EMPTY WISHLIST */

#wishlistEmpty {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    padding: 75px 30px;
    border-top: 1px solid #e5ddd2;
    border-bottom: 1px solid #e5ddd2;
}

#wishlistEmpty h2 {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 400;
    color: #3b3029;
}

#wishlistEmpty p {
    margin: 0 0 28px;
    color: #766960;
    font-size: 14px;
    line-height: 1.7;
}

#wishlistEmpty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    background: #493b33;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}


/* TABLET */

@media (max-width: 1000px) {
    #wishlistGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .wishlist-card-image {
        height: 340px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .wishlist-hero {
        padding: 90px 6% 55px;
    }

    .wishlist-hero h1 {
        font-size: 42px;
    }

    .wishlist-section {
        padding: 55px 5% 75px;
    }

    #wishlistGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wishlist-card-image {
        height: 390px;
    }

    .wishlist-card-info {
        padding: 20px 18px 22px;
    }

    .wishlist-card-name {
        font-size: 22px;
    }

    #wishlistEmpty {
        padding: 55px 20px;
    }
}
/* FIX — Wishlist Remove Button Position */

.wishlist-card {
    position: relative !important;
}

.wishlist-card .wishlist-remove {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;

    width: 34px !important;
    height: 34px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #ddd2c8 !important;
    color: #493b33 !important;

    z-index: 20 !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.wishlist-card .wishlist-remove:hover {
    background: #493b33 !important;
    color: #ffffff !important;
}
.aurelia-search-overlay {
    display: none !important;
}

.aurelia-search-overlay.active {
    display: flex !important;
}
/* ===== WISHLIST REMOVE X — POSITION FIX ===== */

.wishlist-card {
    position: relative !important;
}

.wishlist-card-image {
    position: relative !important;
    overflow: hidden;
}

/* X always stays on the product image */
.wishlist-card .wishlist-remove {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;

    width: 34px !important;
    height: 34px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
    color: #3b3029 !important;
    border: 1px solid #ddd5cd !important;

    z-index: 999 !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    cursor: pointer !important;
}

.wishlist-card .wishlist-remove:hover {
    background: #3b3029 !important;
    color: #ffffff !important;
}
/* =========================================================
   AURELIA WISHLIST — FINAL PRODUCT CARD FIX
   ========================================================= */

.wishlist-product-card {
    position: relative !important;
    background: #ffffff;
    border: 1px solid #e8e0d7;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.wishlist-product-card:hover {
    transform: translateY(-4px);
    border-color: #cdb9a9;
}


/* PRODUCT IMAGE */

.wishlist-product-image {
    position: relative !important;
    width: 100%;
    height: 360px;
    background: #f3eee8;
    overflow: hidden;
}

.wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* REMOVE X — STAYS INSIDE IMAGE */

.wishlist-product-image .wishlist-remove {
    position: absolute !important;

    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;

    width: 34px !important;
    height: 34px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;
    color: #3b3029 !important;

    border: 1px solid #ddd5cd !important;
    border-radius: 50% !important;

    z-index: 50 !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    cursor: pointer !important;
}

.wishlist-product-image .wishlist-remove:hover {
    background: #3b3029 !important;
    color: #ffffff !important;
}


/* PRODUCT INFORMATION */

.wishlist-product-info {
    padding: 20px 20px 22px;
    background: #ffffff;
}

.wishlist-product-info .product-category {
    display: block;
    margin-bottom: 8px;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #9a806d;
    font-weight: 600;
}

.wishlist-product-info h3 {
    margin: 0 0 16px;

    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;

    color: #332a25;
}


/* PRICE + BUTTON */

.wishlist-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.wishlist-price {
    font-size: 14px;
    font-weight: 600;
    color: #493b33;
    white-space: nowrap;
}


/* ADD TO BAG — ALWAYS VISIBLE */

.wishlist-product-bottom .add-to-bag {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    background: #493b33 !important;
    color: #ffffff !important;

    border: 1px solid #493b33 !important;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;

    white-space: nowrap;

    opacity: 1 !important;
    visibility: visible !important;

    cursor: pointer;

    transition: all 0.25s ease;
}

.wishlist-product-bottom .add-to-bag:hover {
    background: transparent !important;
    color: #493b33 !important;
}


/* DESKTOP GRID */

.wishlist-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* TABLET */

@media (max-width: 1000px) {

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wishlist-product-image {
        height: 340px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .wishlist-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wishlist-product-image {
        height: 390px;
    }

    .wishlist-product-info {
        padding: 20px 18px 22px;
    }

    .wishlist-product-bottom {
        align-items: stretch;
    }

    .wishlist-product-bottom .add-to-bag {
        flex: 1;
    }
}


/* =========================================================
   AURELIA — PREMIUM SHOP PAGE
   Products / Collections Ecommerce Styling
========================================================= */


/* ---------------------------------------------------------
   SHOP PAGE BASE
--------------------------------------------------------- */

.shop-page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 25%, rgba(205, 174, 143, 0.16), transparent 28%),
        linear-gradient(135deg, #f7f3ec 0%, #eee6da 48%, #e8ddd0 100%);
    border-bottom: 1px solid rgba(55, 42, 32, 0.10);
}

.shop-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(88, 66, 50, 0.10);
    border-radius: 50%;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.shop-page-hero::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(88, 66, 50, 0.08);
    border-radius: 50%;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.shop-page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, 90%);
    margin: 0 auto;
    padding: 100px 0;
    animation: shopHeroReveal 1s ease both;
}

.shop-page-hero .section-label {
    margin-bottom: 24px;
}

.shop-page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #3f3027;
    font-family: "Playfair Display", serif;
    font-size: clamp(54px, 7vw, 100px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2.8px;
}

.shop-page-hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.shop-page-hero p:last-child {
    max-width: 500px;
    margin-top: 30px;
    color: #725f52;
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.shop-intro {
    background: #fbf9f5;
    border-bottom: 1px solid rgba(63, 48, 39, 0.08);
}

.shop-intro-inner {
    width: min(1240px, 90%);
    margin: 0 auto;
    padding: 100px 0 90px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: end;
}

.shop-intro .section-label {
    margin-bottom: 20px;
}

.shop-intro h2 {
    margin: 0;
    color: #44342b;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.shop-intro-inner > p {
    max-width: 500px;
    margin: 0;
    color: #756359;
    font-size: 15px;
    line-height: 1.9;
}


/* ---------------------------------------------------------
   PRODUCT SECTION
--------------------------------------------------------- */

.shop-products-section {
    position: relative;
    background: #f7f4ee;
    padding: 70px 0 120px;
}

.shop-products-container {
    width: min(1380px, 92%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   FILTER BAR
--------------------------------------------------------- */

.shop-filter-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 55px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(63, 48, 39, 0.14);
}

.shop-filter {
    position: relative;
    border: 0;
    background: transparent;
    padding: 12px 19px;
    color: #806f64;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.7px;
    cursor: pointer;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.shop-filter::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: #4b392f;
    transform: translateX(-50%);
    transition: width 0.35s ease;
    pointer-events: none;
}

.shop-filter:hover {
    color: #3f3027;
    transform: translateY(-2px);
}

.shop-filter.active {
    color: #3f3027;
}

.shop-filter.active::after {
    width: 70%;
}


/* ---------------------------------------------------------
   PRODUCT GRID
--------------------------------------------------------- */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 62px 24px;
}


/* ---------------------------------------------------------
   PRODUCT CARD
--------------------------------------------------------- */

.shop-product-card {
    position: relative;
    min-width: 0;
    background: transparent;
    animation: productReveal 0.7s ease both;
    transition:
        transform 0.45s cubic-bezier(.2, .7, .2, 1);
}

.shop-product-card:hover {
    transform: translateY(-7px);
}


/* ---------------------------------------------------------
   PRODUCT IMAGE
--------------------------------------------------------- */

.shop-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.86 / 1;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            145deg,
            #eee7dc 0%,
            #e6ddd0 100%
        );
    border: 1px solid rgba(65, 49, 39, 0.08);
}

.shop-product-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    transition:
        transform 0.9s cubic-bezier(.2, .65, .2, 1),
        filter 0.5s ease;
}

.shop-product-card:hover
.shop-product-image img {
    transform: scale(1.055);
}


/* IMAGE SHINE EFFECT */

.shop-product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            120deg,
            transparent 35%,
            rgba(255, 255, 255, 0.20) 50%,
            transparent 65%
        );
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.shop-product-card:hover
.shop-product-image::after {
    transform: translateX(120%);
}


/* IMPORTANT:
   No ::before Quick View overlay here.
   The real .quick-view-btn is used.
*/


/* ---------------------------------------------------------
   PRODUCT BADGE
--------------------------------------------------------- */

.product-badge {
    position: absolute;
    z-index: 5;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    background: rgba(250, 247, 241, 0.92);
    border: 1px solid rgba(63, 48, 39, 0.12);
    color: #57463b;
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: badgeAppear 0.6s ease both;
}


/* ---------------------------------------------------------
   WISHLIST BUTTON
--------------------------------------------------------- */

.shop-product-image > .wishlist-product-btn {
    position: absolute;
    z-index: 20;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(63, 48, 39, 0.12);
    background: rgba(250, 247, 241, 0.92);
    color: #4b392f;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.shop-product-image > .wishlist-product-btn:hover {
    background: #4b392f;
    color: #ffffff;
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   QUICK VIEW — REAL BUTTON
--------------------------------------------------------- */

.shop-product-image > .quick-view-btn {
    position: absolute !important;
    z-index: 30 !important;
    left: 50% !important;
    bottom: 18px !important;

    width: auto !important;
    min-width: 125px !important;

    padding: 11px 17px !important;

    border: 1px solid rgba(63, 48, 39, 0.95) !important;
    background: rgba(63, 48, 39, 0.95) !important;
    color: #ffffff !important;

    font-family: "DM Sans", sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;

    cursor: pointer !important;
    pointer-events: none !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform: translate(-50%, 14px) !important;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease !important;
}

.shop-product-card:hover
.shop-product-image > .quick-view-btn {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
}

.shop-product-image > .quick-view-btn:hover {
    background: #ffffff !important;
    color: #49382e !important;
    border-color: #ffffff !important;
}


/* ---------------------------------------------------------
   PRODUCT INFO
--------------------------------------------------------- */

.shop-product-info {
    padding: 22px 2px 0;
}

.shop-product-category {
    display: block;
    margin-bottom: 9px;
    color: #9a8273;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.shop-product-info h3 {
    margin: 0;
    color: #43342c;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.25px;
    transition: color 0.3s ease;
}

.shop-product-card:hover
.shop-product-info h3 {
    color: #866452;
}

.shop-product-info p {
    min-height: 54px;
    margin: 11px 0 20px;
    color: #79695e;
    font-size: 13px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   PRICE + BUTTON
--------------------------------------------------------- */

.shop-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(63, 48, 39, 0.11);
}

.shop-product-bottom strong {
    color: #49372d;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}


/* ---------------------------------------------------------
   ADD TO BAG
--------------------------------------------------------- */

.shop-add-btn {
    position: relative;
    z-index: 1;
    isolation: isolate;

    border: 1px solid #4b392f;
    background: #4b392f;

    padding: 11px 15px;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;

    cursor: pointer;
    overflow: hidden;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.25s ease;
}

.shop-add-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: #d9c7b5;

    transform: translateX(-101%);
    transition:
        transform 0.4s cubic-bezier(.2, .7, .2, 1);

    pointer-events: none;
}

.shop-add-btn:hover::before {
    transform: translateX(0);
}

.shop-add-btn:hover {
    color: #3e3028;
}

.shop-add-btn:active {
    transform: scale(0.96);
}


/* ---------------------------------------------------------
   RITUAL BANNER
--------------------------------------------------------- */

.shop-ritual-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            rgba(57, 43, 34, 0.94),
            rgba(82, 61, 48, 0.88)
        ),
        url("images/about.avif") center / cover no-repeat;

    color: #ffffff;
}

.shop-ritual-banner::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: 50%;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    transform: translateY(-50%);
    pointer-events: none;
}

.shop-ritual-banner::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -20px;
    top: 50%;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    transform: translateY(-50%);
    pointer-events: none;
}

.shop-ritual-content {
    position: relative;
    z-index: 2;
    width: min(1240px, 90%);
    margin: 0 auto;
    padding: 90px 0;
}

.shop-ritual-content .section-label {
    color: #d8c4b0;
    margin-bottom: 22px;
}

.shop-ritual-content h2 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.shop-ritual-content > p:not(.section-label) {
    max-width: 500px;
    margin: 25px 0 35px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.8;
}

.shop-ritual-btn {
    display: inline-flex;
    align-items: center;

    padding: 15px 23px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    color: #ffffff;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.shop-ritual-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #46352b;
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   NEWSLETTER
--------------------------------------------------------- */

.shop-products-section + .shop-ritual-banner + .newsletter {
    background: #f3ede4;
}

.newsletter {
    position: relative;
    overflow: hidden;
}

.newsletter-inner {
    position: relative;
}

.newsletter-inner::before {
    content: "A";
    position: absolute;
    right: 7%;
    top: 25px;

    color: rgba(85, 64, 51, 0.035);

    font-family: "Playfair Display", serif;
    font-size: 230px;
    line-height: 1;

    pointer-events: none;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   SHOP PAGE LOADER
--------------------------------------------------------- */

#loader {
    background: #f7f3ec;
}

#loader .spinner-ring {
    border-color: rgba(73, 55, 44, 0.15);
    border-top-color: #4b392f;
}

.loader-brand span {
    color: #4b392f;
    font-family: "Playfair Display", serif;
    letter-spacing: 4px;
}

.loader-brand small {
    color: #927d6d;
}


/* ---------------------------------------------------------
   PRODUCT REVEAL ANIMATIONS
--------------------------------------------------------- */

.shop-product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.shop-product-card:nth-child(2) {
    animation-delay: 0.10s;
}

.shop-product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.shop-product-card:nth-child(4) {
    animation-delay: 0.20s;
}

.shop-product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.shop-product-card:nth-child(6) {
    animation-delay: 0.30s;
}

.shop-product-card:nth-child(7) {
    animation-delay: 0.35s;
}

.shop-product-card:nth-child(8) {
    animation-delay: 0.40s;
}

@keyframes shopHeroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---------------------------------------------------------
   FILTER ANIMATION
--------------------------------------------------------- */

.shop-product-card.shop-filter-hidden {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
}

.shop-product-card.shop-filter-visible {
    animation: filterProductIn 0.5s ease both;
}

@keyframes filterProductIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ---------------------------------------------------------
   DESKTOP LARGE
--------------------------------------------------------- */

@media (min-width: 1500px) {

    .shop-products-container {
        width: min(1420px, 91%);
    }

    .shop-product-grid {
        gap: 72px 30px;
    }
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .shop-page-hero {
        min-height: 500px;
    }

    .shop-intro-inner {
        gap: 55px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 50px 20px;
    }

    .shop-product-info h3 {
        font-size: 21px;
    }
}


/* ---------------------------------------------------------
   SMALL TABLET
--------------------------------------------------------- */

@media (max-width: 820px) {

    .shop-page-hero-inner {
        padding: 80px 0;
    }

    .shop-page-hero h1 {
        font-size: clamp(50px, 9vw, 72px);
        letter-spacing: -2px;
    }

    .shop-intro-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 75px 0;
    }

    .shop-intro h2 {
        font-size: 52px;
    }

    .shop-products-section {
        padding: 55px 0 85px;
    }

    .shop-filter-bar {
        gap: 4px;
        margin-bottom: 42px;
    }

    .shop-filter {
        padding: 10px 12px;
        font-size: 10px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 18px;
    }

    .shop-product-info h3 {
        font-size: 21px;
    }

    .shop-product-info p {
        min-height: auto;
    }

    .shop-ritual-banner {
        min-height: 450px;
    }
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

    .shop-page-hero {
        min-height: 470px;
    }

    .shop-page-hero::before {
        width: 280px;
        height: 280px;
        right: -160px;
    }

    .shop-page-hero::after {
        display: none;
    }

    .shop-page-hero-inner {
        width: 88%;
        padding: 75px 0;
    }

    .shop-page-hero h1 {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -1.7px;
    }

    .shop-page-hero p:last-child {
        max-width: 360px;
        font-size: 14px;
        line-height: 1.75;
    }


    /* INTRO */

    .shop-intro-inner {
        width: 88%;
        padding: 65px 0;
    }

    .shop-intro h2 {
        font-size: 43px;
    }

    .shop-intro-inner > p {
        font-size: 14px;
    }


    /* PRODUCT SECTION */

    .shop-products-section {
        padding: 45px 0 70px;
    }

    .shop-products-container {
        width: 90%;
    }


    /* HORIZONTAL FILTER SCROLL */

    .shop-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 35px;
        padding-bottom: 14px;
        scrollbar-width: none;
    }

    .shop-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .shop-filter {
        flex: 0 0 auto;
        padding: 10px 13px;
        white-space: nowrap;
    }


    /* TWO PRODUCTS PER ROW */

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 12px;
    }

    .shop-product-image {
        aspect-ratio: 0.82 / 1;
    }


    /* MOBILE WISHLIST */

    .shop-product-image > .wishlist-product-btn {
        top: 9px;
        right: 9px;
        width: 31px;
        height: 31px;
        font-size: 12px;
    }


    /* MOBILE QUICK VIEW */

    .shop-product-image > .quick-view-btn {
        left: 50% !important;
        bottom: 10px !important;

        min-width: 92px !important;

        padding: 9px 10px !important;

        font-size: 7px !important;
        letter-spacing: 1px !important;
    }

    .shop-product-card:hover
    .shop-product-image > .quick-view-btn {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
    }


    /* PRODUCT BADGE */

    .product-badge {
        top: 9px;
        left: 9px;
        padding: 6px 8px;
        font-size: 7px;
        letter-spacing: 1px;
    }


    /* PRODUCT INFO */

    .shop-product-info {
        padding-top: 15px;
    }

    .shop-product-category {
        margin-bottom: 7px;
        font-size: 7px;
        letter-spacing: 1.2px;
    }

    .shop-product-info h3 {
        font-size: 18px;
        line-height: 1.15;
    }

    .shop-product-info p {
        margin: 8px 0 14px;
        font-size: 11px;
        line-height: 1.55;
    }


    /* PRICE + ADD */

    .shop-product-bottom {
        align-items: flex-end;
        gap: 7px;
        padding-top: 11px;
    }

    .shop-product-bottom strong {
        font-size: 12px;
    }

    .shop-add-btn {
        padding: 9px 9px;
        font-size: 7px;
        letter-spacing: 0.9px;
    }


    /* RITUAL */

    .shop-ritual-banner {
        min-height: 470px;
    }

    .shop-ritual-content {
        width: 88%;
        padding: 70px 0;
    }

    .shop-ritual-content h2 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .shop-ritual-content > p:not(.section-label) {
        font-size: 14px;
    }

    .shop-ritual-banner::before {
        width: 320px;
        height: 320px;
        right: -190px;
    }

    .shop-ritual-banner::after {
        display: none;
    }
}


/* ---------------------------------------------------------
   VERY SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 390px) {

    .shop-page-hero h1 {
        font-size: 43px;
    }

    .shop-intro h2 {
        font-size: 38px;
    }

    .shop-product-grid {
        gap: 38px 10px;
    }

    .shop-product-info h3 {
        font-size: 16px;
    }

    .shop-product-info p {
        font-size: 10px;
    }

    .shop-product-bottom strong {
        font-size: 11px;
    }

    .shop-add-btn {
        padding: 8px 7px;
        font-size: 6.5px;
    }

    .shop-product-image > .quick-view-btn {
        min-width: 82px !important;
        padding: 8px 8px !important;
        font-size: 6.5px !important;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */

.shop-filter:focus-visible,
.shop-add-btn:focus-visible,
.shop-ritual-btn:focus-visible,
.quick-view-btn:focus-visible,
.wishlist-product-btn:focus-visible {
    outline: 2px solid #8b6d59;
    outline-offset: 4px;
}


/* =========================================================
   AURELIA — QUICK VIEW MODAL
========================================================= */


/* ---------------------------------------------------------
   MODAL
--------------------------------------------------------- */

.quick-view-modal {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
    box-sizing: border-box;

    background: transparent;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 999999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.quick-view-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ---------------------------------------------------------
   BACKDROP
--------------------------------------------------------- */

.quick-view-backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(39, 29, 23, 0.68);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    pointer-events: auto;
}


/* ---------------------------------------------------------
   MODAL BOX
--------------------------------------------------------- */

.quick-view-box {
    position: relative;
    z-index: 2;

    width: min(900px, 92vw);
    max-width: 900px;
    max-height: 88vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    background: #f8f4ed;

    border: 1px solid rgba(63, 48, 39, 0.15);

    box-shadow:
        0 30px 80px rgba(31, 23, 18, 0.28);

    transform: translateY(25px) scale(0.97);

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.quick-view-modal.open .quick-view-box {
    transform: translateY(0) scale(1);
}


/* ---------------------------------------------------------
   QUICK VIEW CONTENT
--------------------------------------------------------- */

#quickViewContent {
    display: contents;
}


/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.quick-view-image {
    width: 100%;
    height: 520px;
    min-height: 520px;

    background: #ebe3d8;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: block;

    object-fit: cover;
}


/* ---------------------------------------------------------
   DETAILS
--------------------------------------------------------- */

.quick-view-details {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px 55px;

    box-sizing: border-box;

    background: #f8f4ed;
}


/* ---------------------------------------------------------
   CATEGORY
--------------------------------------------------------- */

.quick-view-details .shop-product-category {
    display: block;

    margin: 0 0 16px;

    color: #9a806f;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.quick-view-details h2 {
    margin: 0;

    color: #423229;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1px;
}


/* ---------------------------------------------------------
   PRICE
--------------------------------------------------------- */

.quick-view-price {
    margin-top: 24px;

    color: #4d3a30;

    font-family: "DM Sans", sans-serif;

    font-size: 20px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.quick-view-details p {
    margin: 25px 0 30px;

    color: #766459;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   ADD TO BAG
--------------------------------------------------------- */

.quick-view-add {
    width: 100%;
    min-height: 52px;

    padding: 16px 22px;

    border: 1px solid #49382e;

    background: #49382e;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.6px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.quick-view-add:hover {
    background: #d8c4b1;

    border-color: #d8c4b1;

    color: #3f3027;

    transform: translateY(-2px);
}

.quick-view-add:active {
    transform: scale(0.98);
}

.quick-view-add.added {
    background: #7c8a72;
    border-color: #7c8a72;
    color: #ffffff;
}


/* ---------------------------------------------------------
   CLOSE BUTTON
--------------------------------------------------------- */

.quick-view-close {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 10;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(63, 48, 39, 0.16);

    background: rgba(250, 247, 241, 0.95);

    color: #49382e;

    cursor: pointer;

    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.quick-view-close:hover {
    background: #49382e;
    color: #ffffff;
    transform: rotate(90deg);
}


/* ---------------------------------------------------------
   BODY LOCK
--------------------------------------------------------- */

body:has(#quickViewModal.open) {
    overflow: hidden;
}


/* =========================================================
   QUICK VIEW — MOBILE
========================================================= */

@media (max-width: 700px) {

    .quick-view-modal {
        padding: 15px;
    }

    .quick-view-box {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;

        display: flex;
        flex-direction: column;

        overflow-y: auto;
        overflow-x: hidden;
    }

    #quickViewContent {
        display: block;
    }

    .quick-view-image {
        width: 100%;
        height: 300px;
        min-height: 300px;

        flex-shrink: 0;
    }

    .quick-view-image img {
        width: 100%;
        height: 300px;
        min-height: 300px;

        object-fit: cover;
    }

    .quick-view-details {
        padding: 35px 28px 30px;
    }

    .quick-view-details h2 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .quick-view-price {
        margin-top: 18px;
    }

    .quick-view-details p {
        margin: 18px 0 24px;
    }

    .quick-view-close {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;
    }
}


/* =========================================================
   VERY SMALL MOBILE — QUICK VIEW
========================================================= */

@media (max-width: 420px) {

    .quick-view-modal {
        padding: 10px;
    }

    .quick-view-image {
        height: 270px;
        min-height: 270px;
    }

    .quick-view-image img {
        height: 270px;
        min-height: 270px;
    }

    .quick-view-details {
        padding: 32px 20px 25px;
    }

    .quick-view-details h2 {
        font-size: 28px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .shop-product-card,
    .shop-page-hero-inner,
    .shop-product-image img,
    .shop-product-image::after,
    .shop-add-btn,
    .shop-filter,
    .shop-ritual-btn,
    .quick-view-btn,
    .quick-view-modal,
    .quick-view-box,
    .quick-view-close,
    .quick-view-add {
        animation: none !important;
        transition: none !important;
    }
}

/* AURELIA Newsletter Subscribe Button */

.newsletter-form button[type="submit"] {
    background: #49382e !important;
    color: #ffffff !important;
    border: 1px solid #49382e !important;
    padding: 14px 28px !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.3s ease !important;
}

.newsletter-form button[type="submit"]:hover {
    background: #ffffff !important;
    color: #49382e !important;
    border-color: #49382e !important;
}

/* =========================================
   PRODUCT CARD — EQUAL HEIGHT & ALIGNMENT
   ========================================= */

.shop-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 250px;
}

/* Keep price + button at the same bottom position */
.shop-product-bottom {
    margin-top: auto !important;
    padding-top: 18px !important;
    border-top: 1px solid #ddd6cd !important;
}

/* Make ADD TO BAG buttons equal */
.shop-product-bottom .shop-add-btn {
    width: 100%;
    min-height: 43px;
}

/* Keep product descriptions visually balanced */
.shop-product-info > p {
    margin-bottom: 20px;
}

/* =====================================================
   SHOP SEARCH + SORT — AURELIA
===================================================== */

.shop-sort-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-result-count {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 1.4px;
    color: #6f5d50;
    white-space: nowrap;
}


/* SORT DROPDOWN */

#productSort {
    appearance: none;
    -webkit-appearance: none;

    width: 145px;
    min-height: 42px;

    padding: 0 38px 0 14px;

    border: 1px solid #d8cec3;
    border-radius: 0;

    background-color: #f7f4ee;
    color: #49382e;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #49382e 50%),
        linear-gradient(135deg, #49382e 50%, transparent 50%);

    background-position:
        calc(100% - 17px) 18px,
        calc(100% - 12px) 18px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    outline: none;

    transition:
        border-color .3s ease,
        background-color .3s ease;
}

#productSort:hover,
#productSort:focus {
    border-color: #49382e;
    background-color: #ffffff;
}


/* SEARCH PANEL */

.shop-search-panel {
    width: 100%;
    margin: 26px 0 30px;
}

.shop-search-input-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.shop-search-input-wrap > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);

    color: #6f5d50;
    font-size: 13px;

    pointer-events: none;
}

#shopSearchInput {
    width: 100%;
    height: 46px;

    box-sizing: border-box;

    padding: 0 48px 0 42px;

    border: 1px solid #d8cec3;
    border-radius: 0;

    background: #ffffff;

    color: #49382e;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    letter-spacing: .4px;

    outline: none;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

#shopSearchInput::placeholder {
    color: #9a8c80;
}

#shopSearchInput:focus {
    border-color: #49382e;
    box-shadow: 0 4px 15px rgba(73, 56, 46, .06);
}


/* CLEAR X */

#clearShopSearch {
    position: absolute;

    right: 0;
    top: 0;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    background: transparent;

    color: #6f5d50;

    cursor: pointer;

    font-size: 13px;

    transition:
        color .25s ease,
        background .25s ease;
}

#clearShopSearch:hover {
    color: #49382e;
    background: #f4efe8;
}


/* MOBILE */

@media (max-width: 768px) {

    .shop-sort-area {
        flex-wrap: wrap;
        gap: 12px;
    }

    #productSort {
        width: 140px;
    }

    .shop-search-input-wrap {
        max-width: 100%;
    }

}