/* =========================================
   AARIÉ — LUXURY BLOUSE STORE
   GLOBAL STYLES
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8f5f0;
    color: #211d1a;
    line-height: 1.6;
}

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

button,
input {
    font-family: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

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


/* =========================================
   VARIABLES
========================================= */

:root {
    --cream: #f8f5f0;
    --cream-dark: #eee8df;
    --brown: #211d1a;
    --brown-light: #625a53;
    --gold: #b4935a;
    --white: #ffffff;
    --border: rgba(33, 29, 26, 0.12);

    --serif: "Cormorant Garamond", Georgia, serif;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: white;
}

.nav-container {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 5px;
}

.nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: white;
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    color: white;
    font-size: 25px;
    transition: 0.3s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
    font-size: 19px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -11px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    color: var(--brown);

    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;

    overflow: hidden;

    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 16, 13, 0.80) 0%,
            rgba(20, 16, 13, 0.55) 45%,
            rgba(20, 16, 13, 0.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 90px;
}

.hero-small-text {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.hero h1 {
    max-width: 720px;

    font-family: var(--serif);
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -2px;
}

.hero-description {
    max-width: 470px;

    margin-top: 30px;

    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: var(--brown);
}

.btn-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.65);
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--brown);
}

.btn-dark {
    background: var(--brown);
    color: white;
}

.btn-dark:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0.7;
}

.hero-scroll span {
    display: block;

    width: 1px;
    height: 42px;

    background: white;
}


/* =========================================
   SECTIONS
========================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 50px;
}

.eyebrow {
    margin-bottom: 9px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--gold);
}

.section-heading h2,
.newsletter h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 65px);
    font-weight: 500;
    line-height: 1;
}

.text-link {
    padding-bottom: 5px;

    border-bottom: 1px solid var(--brown);

    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}


/* =========================================
   COLLECTIONS
========================================= */

.collections {
    background: var(--cream);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.collection-card {
    position: relative;
    height: 490px;

    overflow: hidden;

    background: #ddd;
}

.collection-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition: transform 0.7s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.06);
}

.collection-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15,12,10,0.75),
            rgba(15,12,10,0.05) 65%
        );
}

.collection-image-1 {
    background-image: url("../images/bridal-1.jpg");
}

.collection-image-2 {
    background-image: url("../images/maggam-1.png");
}

.collection-image-3 {
    background-image: url("../images/festive-1.png");
}

.collection-image-4 {
    background-image: url("../images/minimal-1.png");
}

.collection-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;

    z-index: 2;

    color: white;
}

.collection-content span {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.collection-content h3 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
}

.collection-content p {
    margin-top: 2px;

    font-size: 11px;
    font-weight: 300;

    opacity: 0.8;
}


/* =========================================
   PRODUCT GRID
========================================= */

.featured {
    background: #fffdf9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;

    aspect-ratio: 0.78;

    overflow: hidden;

    background: #e5ded5;
}
.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-placeholder {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition: transform 0.6s ease;
}

.product-card:hover .product-placeholder {
    transform: scale(1.04);
}

.product-1 {
    background-image: url("../images/bridal-1.jpg");
}

.product-2 {
    background-image: url("../images/maggam-1.png");
}

.product-3 {
    background-image: url("../images/festive-1.png");
}

.product-4 {
    background-image: url("../images/minimal-1.png");
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 7px 10px;

    background: white;

    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.wishlist-button {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 4;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.92);

    font-size: 21px;

    transition: 0.3s ease;
}

.wishlist-button:hover {
    background: var(--brown);
    color: white;
}

.quick-view {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 3;

    padding: 14px;

    text-align: center;

    background: white;

    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transform: translateY(70px);

    transition: 0.35s ease;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 17px 2px;
}

.product-category {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #91877e;
}

.product-info h3 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 8px;
}

.price {
    font-size: 13px;
    font-weight: 600;
}

.rating {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
}


/* =========================================
   BRAND SECTION
========================================= */

.brand-section {
    padding: 145px 20px;

    text-align: center;

    background: var(--cream-dark);
}

.brand-content {
    max-width: 780px;
}

.brand-content h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 500;
    line-height: 0.95;
}

.brand-content h2 em {
    color: var(--gold);
}

.brand-content > p:not(.eyebrow) {
    max-width: 570px;

    margin: 30px auto;

    font-size: 14px;
    font-weight: 300;

    color: var(--brown-light);
}


/* =========================================
   PROMO
========================================= */

.promo {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #ded5cb;
}

.promo-image {
    min-height: 600px;

    background-image: url("../images/blouse-3.jpg");
    background-size: cover;
    background-position: center;
}

.promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px;
}

.promo-content h2 {
    max-width: 500px;

    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 0.95;
}

.promo-content p:not(.eyebrow) {
    max-width: 440px;

    margin: 25px 0 35px;

    font-size: 14px;
    font-weight: 300;

    color: var(--brown-light);
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    text-align: center;
    background: #fffdf9;
}

.newsletter-content {
    max-width: 650px;
}

.newsletter h2 {
    font-size: clamp(45px, 5vw, 65px);
}

.newsletter-content > p:not(.eyebrow) {
    margin: 20px auto 30px;

    max-width: 500px;

    font-size: 14px;
    color: var(--brown-light);
}

.newsletter-form {
    display: flex;

    max-width: 500px;

    margin: auto;

    border-bottom: 1px solid var(--brown);
}

.newsletter-form input {
    flex: 1;

    padding: 17px 4px;

    outline: none;
    border: none;

    background: transparent;

    font-size: 13px;
}

.newsletter-form button {
    padding: 0 8px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--gold);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding-top: 75px;

    background: #211d1a;
    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 250px;

    margin-top: 20px;

    font-size: 13px;
    font-weight: 300;

    color: rgba(255,255,255,0.55);
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--gold);
}

.footer-column a {
    width: fit-content;

    font-size: 12px;
    font-weight: 300;

    color: rgba(255,255,255,0.65);

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.1);

    font-size: 10px;
    letter-spacing: 0.5px;

    color: rgba(255,255,255,0.4);
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 18px;
    }

    .collection-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card {
        height: 420px;
    }

    .promo-content {
        padding: 50px;
    }

}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 700px) {

    .nav-container {
        height: 75px;
    }

    .logo {
        font-size: 25px;
        letter-spacing: 4px;
    }

    .nav {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .icon-btn {
        font-size: 22px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 60px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 13px;
        max-width: 350px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 48px;
    }

    .collection-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .collection-card {
        height: 330px;
    }

    .collection-content {
        bottom: 18px;
        left: 18px;
        right: 18px;
    }

    .collection-content h3 {
        font-size: 29px;
    }

    .collection-content p {
        display: none;
    }

    .product-info h3 {
        font-size: 19px;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .quick-view {
        display: none;
    }

    .brand-section {
        padding: 100px 20px;
    }

    .brand-content h2 {
        font-size: 52px;
    }

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

    .promo-image {
        min-height: 500px;
    }

    .promo-content {
        padding: 70px 25px;
    }

    .promo-content h2 {
        font-size: 52px;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 52px;
    }

    .collection-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 450px;
    }

    .product-bottom {
        flex-direction: row;
        align-items: center;
    }

}
/* =========================================
   SHOP PAGE
========================================= */

.shop-header {
    position: absolute;
    background: transparent;
}


/* =========================================
   SHOP HERO
========================================= */

.shop-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding-top: 90px;

    background:
        linear-gradient(
            120deg,
            #30251f,
            #6c5849
        );

    color: white;
}

.shop-hero .container {
    text-align: center;
}

.shop-hero .eyebrow {
    color: #d1b477;
}

.shop-hero h1 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(70px, 9vw, 110px);
    font-weight: 500;
    line-height: 0.9;
}

.shop-hero p:not(.eyebrow) {
    max-width: 520px;

    margin: 25px auto 0;

    font-size: 14px;
    font-weight: 300;

    color: rgba(255,255,255,0.75);
}


/* =========================================
   SHOP SECTION
========================================= */

.shop-section {
    padding: 75px 0 120px;

    background: #fffdf9;
}


/* =========================================
   SHOP TOOLBAR
========================================= */

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 25px;

    margin-bottom: 45px;

    border-bottom: 1px solid var(--border);
}

.shop-results {
    font-size: 11px;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #81776f;
}

.shop-controls {
    display: flex;
    align-items: center;

    gap: 12px;
}


/* =========================================
   SEARCH
========================================= */

.search-box {
    display: flex;
    align-items: center;

    width: 210px;

    border-bottom: 1px solid #b9b0a8;
}

.search-box span {
    font-size: 20px;
    color: #756b63;
}

.search-box input {
    width: 100%;

    padding: 10px 8px;

    border: none;
    outline: none;

    background: transparent;

    font-size: 12px;

    color: var(--brown);
}

.search-box input::placeholder {
    color: #9b928a;
}


/* =========================================
   SELECT FILTERS
========================================= */

.shop-controls select {
    min-width: 145px;

    padding: 11px 32px 11px 12px;

    border: 1px solid #d5cec7;

    outline: none;

    background: #fffdf9;

    color: var(--brown);

    font-size: 10px;

    letter-spacing: 0.5px;

    cursor: pointer;
}


/* =========================================
   SHOP PRODUCT GRID
========================================= */

.shop-product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 45px 20px;
}


/* =========================================
   SHOP PRODUCT CARD
========================================= */

.shop-product-card {
    min-width: 0;

    animation: productAppear 0.5s ease both;
}

@keyframes productAppear {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   SHOP PRODUCT IMAGE
========================================= */

.shop-product-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: 0.78;

    background: #e7e0d8;
}

.shop-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.shop-product-card:hover
.shop-product-image img {
    transform: scale(1.045);
}


/* =========================================
   ADD TO CART
========================================= */

.shop-add-cart {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 5;

    width: calc(100% - 30px);

    padding: 15px;

    background: white;

    color: var(--brown);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.7px;
    text-transform: uppercase;

    transform: translateY(75px);

    transition:
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.shop-product-card:hover .shop-add-cart {
    transform: translateY(0);
}

.shop-add-cart:hover {
    background: var(--brown);
    color: white;
}


/* =========================================
   NO RESULTS
========================================= */

.no-results {
    display: none;

    padding: 100px 20px;

    text-align: center;
}

.no-results h2 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
}

.no-results p {
    margin-top: 10px;

    font-size: 13px;

    color: #81776f;
}


/* =========================================
   WISHLIST ACTIVE
========================================= */

.wishlist-button.active {
    background: var(--brown);
    color: white;
}


/* =========================================
   SHOP MOBILE
========================================= */

@media (max-width: 1000px) {

    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 750px) {

    .shop-hero {
        min-height: 350px;
    }

    .shop-hero h1 {
        font-size: 75px;
    }

    .shop-toolbar {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .shop-controls {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .search-box {
        width: 100%;

        grid-column: 1 / -1;
    }

    .shop-controls select {
        width: 100%;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 12px;
    }

}


@media (max-width: 450px) {

    .shop-section {
        padding-top: 55px;
    }

    .shop-hero {
        min-height: 320px;
    }

    .shop-hero h1 {
        font-size: 65px;
    }

    .shop-hero p:not(.eyebrow) {
        font-size: 12px;
        padding: 0 15px;
    }

    .shop-product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .shop-add-cart {
        transform: translateY(0);

        font-size: 9px;

        padding: 13px 5px;
    }

}
/* =========================================
   CART PAGE
========================================= */

.cart-page {
    background: #fffdf9;
}


/* =========================================
   CART HEADER
========================================= */



.cart-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}
/* =========================================
   CART HERO
========================================= */

.cart-hero {
    padding: 90px 0 80px;

    background:
        linear-gradient(
            120deg,
            #30251f,
            #6c5849
        );

    color: white;
}

.cart-hero .eyebrow {
    color: #d1b477;
}

.cart-hero h1 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 95px);
    font-weight: 500;
    line-height: 0.9;
}


/* =========================================
   CART SECTION
========================================= */

.cart-section {
    padding: 85px 0 120px;
}


/* =========================================
   CART LAYOUT
========================================= */

.cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        360px;

    gap: 70px;

    align-items: start;
}


/* =========================================
   CART ITEMS HEADER
========================================= */

.cart-items-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        150px
        100px;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--border);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #8c8178;
}


/* =========================================
   CART ITEM
========================================= */

.cart-item {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        150px
        100px;

    align-items: center;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}


/* =========================================
   PRODUCT
========================================= */

.cart-product {
    display: flex;

    align-items: center;

    gap: 22px;
}

.cart-product img {
    width: 110px;
    height: 140px;

    object-fit: cover;

    background: #e7e0d8;
}

.cart-product-info {
    min-width: 0;
}

.cart-product-info .product-category {
    margin-bottom: 4px;
}

.cart-product-info h3 {
    max-width: 260px;

    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;

    line-height: 1.1;
}

.remove-item {
    margin-top: 13px;

    padding-bottom: 3px;

    border-bottom: 1px solid #a9a099;

    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #81776f;

    transition: 0.3s ease;
}

.remove-item:hover {
    color: #9c3028;

    border-color: #9c3028;
}


/* =========================================
   QUANTITY
========================================= */

.quantity-control {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 105px;

    border: 1px solid #d7d0c9;
}

.quantity-control span {
    min-width: 38px;

    text-align: center;

    font-size: 12px;
}

.quantity-button {
    width: 32px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    color: #544b44;

    transition: 0.25s ease;
}

.quantity-button:hover {
    background: #211d1a;

    color: white;
}


/* =========================================
   ITEM PRICE
========================================= */

.cart-item-price {
    text-align: right;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}


/* =========================================
   CONTINUE SHOPPING
========================================= */

.continue-shopping {
    padding-top: 28px;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.cart-summary {
    position: sticky;
    top: 25px;

    padding: 35px;

    background: #f3eee7;
}

.cart-summary h2 {
    margin-bottom: 30px;

    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
}

.summary-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 10px 0;

    font-size: 12px;

    color: #665e57;
}

.summary-divider {
    height: 1px;

    margin: 20px 0;

    background: rgba(33, 29, 26, 0.15);
}

.summary-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.summary-total span {
    font-size: 12px;
    font-weight: 500;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.summary-total strong {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
}

.checkout-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 54px;

    background: #211d1a;

    color: white;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.checkout-button:hover {
    background: #b4935a;

    transform: translateY(-2px);
}

.secure-checkout {
    margin-top: 15px;

    text-align: center;

    font-size: 10px;

    color: #8a8179;
}


/* =========================================
   EMPTY CART
========================================= */

.empty-cart {
    display: none;

    padding: 70px 20px 100px;

    text-align: center;
}

.empty-cart-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d8d0c8;

    border-radius: 50%;

    font-size: 25px;
}

.empty-cart h2 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
}

.empty-cart p {
    max-width: 400px;

    margin: 10px auto 30px;

    font-size: 13px;

    color: #81776f;
}


/* =========================================
   CART RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .cart-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .cart-summary {
        position: relative;

        top: auto;
    }

}


@media (max-width: 700px) {

    .cart-hero {
        padding: 65px 0;
    }

    .cart-hero h1 {
        font-size: 65px;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 25px 0;
    }

    .cart-product {
        align-items: flex-start;
    }

    .cart-product img {
        width: 95px;
        height: 120px;
    }

    .cart-product-info h3 {
        font-size: 21px;
    }

    .quantity-control {
        width: 110px;
    }

    .cart-item-price {
        text-align: left;

        font-size: 15px;
    }

    .cart-summary {
        padding: 28px 22px;
    }

}
/* =========================================
   PRODUCT PAGE
========================================= */

.product-page {
    background: #fffdf9;
}


/* =========================================
   PRODUCT HEADER
========================================= */

.product-header {
    position: relative;
    background: #211d1a;
}


/* =========================================
   PRODUCT SECTION
========================================= */

.product-section {
    padding: 55px 0 110px;
}


/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 45px;

    font-size: 10px;
    letter-spacing: 0.8px;

    color: #91877f;
}

.breadcrumb a {
    transition: 0.25s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span:last-child {
    color: var(--brown);
}


/* =========================================
   PRODUCT LAYOUT
========================================= */

.product-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, 0.85fr);

    gap: 75px;

    align-items: start;
}


/* =========================================
   PRODUCT GALLERY
========================================= */

.product-gallery {
    min-width: 0;
}

.product-main-image {
    position: relative;

    width: 100%;

    aspect-ratio: 0.9;

    overflow: hidden;

    background: #e7e0d8;
}

.product-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: opacity 0.25s ease;
}

.product-detail-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 5;

    padding: 8px 12px;

    background: white;

    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================
   THUMBNAILS
========================================= */

.product-thumbnails {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    margin-top: 12px;
}

.thumbnail {
    position: relative;

    aspect-ratio: 1;

    overflow: hidden;

    border: 1px solid transparent;

    background: #e7e0d8;

    cursor: pointer;

    opacity: 0.65;

    transition:
        opacity 0.3s ease,
        border-color 0.3s ease;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    border-color: var(--brown);

    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================
   PRODUCT DETAILS
========================================= */

.product-details {
    padding-top: 5px;
}

.product-detail-category {
    margin-bottom: 10px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--gold);
}

.product-details h1 {
    max-width: 600px;

    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -1px;
}


/* =========================================
   RATING
========================================= */

.product-rating {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;
}

.product-rating span {
    font-size: 11px;

    letter-spacing: 2px;

    color: var(--gold);
}

.product-rating a {
    padding-bottom: 2px;

    border-bottom: 1px solid #aaa099;

    font-size: 10px;

    color: #81776f;
}


/* =========================================
   PRICE
========================================= */

.product-detail-price {
    margin-top: 25px;

    font-size: 20px;
    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.product-description {
    max-width: 550px;

    margin-top: 22px;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.85;

    color: #716860;
}


/* =========================================
   DIVIDER
========================================= */

.product-divider {
    height: 1px;

    margin: 32px 0;

    background: var(--border);
}


/* =========================================
   SIZE SECTION
========================================= */

.size-section {
    margin-bottom: 25px;
}

.size-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;
}

.size-heading span {
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.size-heading a {
    font-size: 10px;

    text-decoration: underline;

    color: #81776f;
}

.size-options {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.size-button {
    width: 52px;
    height: 48px;

    border: 1px solid #d6cec6;

    background: transparent;

    font-size: 11px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.size-button:hover {
    border-color: var(--brown);
}

.size-button.active {
    background: var(--brown);

    border-color: var(--brown);

    color: white;
}


/* =========================================
   PURCHASE ROW
========================================= */

.purchase-row {
    display: flex;

    gap: 10px;

    margin-bottom: 12px;
}

.detail-quantity {
    display: flex;

    align-items: center;

    border: 1px solid #d6cec6;
}

.detail-quantity button {
    width: 45px;
    height: 54px;

    font-size: 18px;

    color: var(--brown);

    transition: 0.25s ease;
}

.detail-quantity button:hover {
    background: var(--cream-dark);
}

.detail-quantity span {
    width: 42px;

    text-align: center;

    font-size: 12px;
}


/* =========================================
   DETAIL WISHLIST
========================================= */

.detail-wishlist {
    width: 54px;
    height: 54px;

    border: 1px solid #d6cec6;

    font-size: 24px;

    color: var(--brown);

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.detail-wishlist:hover,
.detail-wishlist.active {
    background: var(--brown);

    color: white;
}


/* =========================================
   ADD TO CART
========================================= */

.detail-add-cart {
    width: 100%;

    min-height: 58px;

    background: var(--brown);

    color: white;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.detail-add-cart:hover {
    background: var(--gold);

    transform: translateY(-2px);
}

.detail-add-cart.added {
    background: var(--gold);
}


/* =========================================
   PRODUCT BENEFITS
========================================= */

.product-benefits {
    margin-top: 35px;

    border-top: 1px solid var(--border);
}

.benefit {
    display: flex;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.benefit-icon {
    width: 28px;

    font-size: 20px;

    color: var(--gold);
}

.benefit strong {
    display: block;

    margin-bottom: 2px;

    font-size: 11px;
    font-weight: 600;
}

.benefit p {
    font-size: 10px;

    color: #81776f;
}


/* =========================================
   PRODUCT STORY
========================================= */

.product-story {
    padding: 110px 0;

    background: var(--cream-dark);
}

.product-story-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.product-story h2 {
    max-width: 600px;

    font-family: var(--serif);

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 500;

    line-height: 0.95;
}

.product-story h2 em {
    color: var(--gold);
}

.product-story-inner > p {
    max-width: 500px;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.9;

    color: #716860;
}


/* =========================================
   PRODUCT RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .product-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .product-details {
        max-width: 700px;
    }

    .product-story-inner {
        gap: 40px;
    }

}


@media (max-width: 700px) {

    .product-section {
        padding-top: 35px;
    }

    .breadcrumb {
        margin-bottom: 30px;

        font-size: 9px;
    }

    .product-layout {
        gap: 40px;
    }

    .product-main-image {
        aspect-ratio: 0.85;
    }

    .product-details h1 {
        font-size: 52px;
    }

    .product-description {
        font-size: 13px;
    }

    .product-story {
        padding: 80px 0;
    }

    .product-story-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .product-story h2 {
        font-size: 52px;
    }

}


@media (max-width: 450px) {

    .product-thumbnails {
        gap: 6px;
    }

    .product-details h1 {
        font-size: 46px;
    }

    .size-button {
        width: 47px;
        height: 45px;
    }

}
/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
    background:
        linear-gradient(
            rgba(246, 239, 228, 0.88),
            rgba(246, 239, 228, 0.96)
        );
    border-bottom: 1px solid rgba(120, 83, 48, 0.12);
}

.checkout-hero > div {
    max-width: 720px;
}

.checkout-hero .eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #9a6b3f;
    margin-bottom: 18px;
}

.checkout-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 500;
    line-height: 1;
    color: #35251b;
    margin-bottom: 20px;
}

.checkout-hero p:last-child {
    max-width: 550px;
    margin: auto;
    font-size: 15px;
    line-height: 1.8;
    color: #756457;
}


/* MAIN */

.checkout-page {
    max-width: 1250px;
    margin: 0 auto;
    padding: 75px 30px 100px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.8fr);
    gap: 70px;
    align-items: start;
}


/* SECTION HEADINGS */

.checkout-section-heading {
    margin-bottom: 32px;
}

.section-kicker {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a27448;
    font-weight: 600;
    margin-bottom: 8px;
}

.checkout-section-heading h2,
.checkout-summary-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 500;
    color: #35251b;
    margin-bottom: 8px;
}

.checkout-section-heading > p:last-child {
    color: #817267;
    font-size: 14px;
}


/* FORM */

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #594538;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #ded2c4;
    background: #fffdf9;
    padding: 15px 16px;
    border-radius: 2px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #3d2d23;
    outline: none;
    transition: 0.25s ease;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 115px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b1a59a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #a27448;
    box-shadow: 0 0 0 3px rgba(162, 116, 72, 0.08);
}


/* PAYMENT */

.payment-heading {
    margin-top: 65px;
    margin-bottom: 25px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #ded2c4;
    background: #fffdf9;
    cursor: pointer;
    transition: 0.25s ease;
}

.payment-option:hover {
    border-color: #a27448;
    transform: translateY(-1px);
}

.payment-option input {
    accent-color: #8b5e34;
    width: 17px;
    height: 17px;
}

.payment-option strong {
    display: block;
    font-size: 14px;
    color: #3d2d23;
    margin-bottom: 5px;
}

.payment-option span {
    display: block;
    font-size: 12px;
    color: #8b7c70;
}


/* PLACE ORDER */

.place-order-button {
    width: 100%;
    border: none;
    margin-top: 30px;
    padding: 18px 25px;
    background: #35251b;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.place-order-button:hover {
    background: #9a6b3f;
    transform: translateY(-2px);
}


/* =========================================
   ORDER SUMMARY
========================================= */

.checkout-summary {
    position: sticky;
    top: 25px;
    padding: 32px;
    background: #f7f1e8;
    border: 1px solid #e2d6c7;
}

.checkout-summary-header {
    padding-bottom: 24px;
    border-bottom: 1px solid #dfd2c2;
}

.checkout-summary-header h2 {
    font-size: 34px;
}


/* ITEMS */

.checkout-items {
    padding: 10px 0;
}

.checkout-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e3d8ca;
}

.checkout-item-image {
    width: 72px;
    height: 88px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #e8ded1;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-quantity {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 20px;
    background: #35251b;
    color: white;
    font-size: 10px;
}

.checkout-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.checkout-item-info h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    color: #3d2d23;
    line-height: 1.1;
    margin-bottom: 6px;
}

.checkout-item-info p {
    font-size: 11px;
    color: #8b7c70;
    margin-bottom: 7px;
}

.checkout-item-info strong {
    font-size: 13px;
    color: #5e4028;
}


/* TOTALS */

.checkout-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 13px;
    color: #75675c;
}

.checkout-summary-line strong {
    color: #493529;
    font-weight: 600;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0 8px;
    margin-top: 5px;
    border-top: 1px solid #cfc1b1;
}

.checkout-total span {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    color: #35251b;
}

.checkout-total strong {
    font-size: 22px;
    color: #35251b;
}


/* SECURITY */

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #dfd2c2;
    color: #85776b;
    font-size: 11px;
    line-height: 1.5;
}

.secure-checkout:first-letter {
    font-size: 16px;
}


/* =========================================
   EMPTY CHECKOUT
========================================= */

.checkout-empty {
    padding: 35px 0;
    text-align: center;
}

.checkout-empty p {
    color: #817267;
    font-size: 14px;
    margin-bottom: 10px;
}

.checkout-empty a {
    color: #8b5e34;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
}


/* =========================================
   SUCCESS SCREEN
========================================= */

.order-success {
    text-align: center;
    padding: 55px 25px;
    background: #f8f2e9;
    border: 1px solid #e2d6c7;
}

.success-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #35251b;
    color: white;
    font-size: 27px;
}

.order-success h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    color: #35251b;
    margin-bottom: 12px;
}

.order-success > p:not(.section-kicker) {
    color: #7c6d61;
    font-size: 14px;
    margin-bottom: 30px;
}

.order-number,
.order-payment {
    max-width: 350px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dfd2c2;
    font-size: 12px;
}

.order-number span,
.order-payment span {
    color: #8a7a6d;
}

.order-number strong,
.order-payment strong {
    color: #4c382a;
}

.continue-shopping-button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 28px;
    background: #35251b;
    color: white;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.continue-shopping-button:hover {
    background: #9a6b3f;
}


/* =========================================
   CHECKOUT RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .checkout-summary {
        position: static;
    }

}


@media (max-width: 600px) {

    .checkout-page {
        padding: 50px 18px 70px;
    }

    .checkout-hero {
        min-height: 260px;
        padding: 50px 20px;
    }

    .checkout-hero h1 {
        font-size: 48px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .checkout-summary {
        padding: 24px;
    }

    .checkout-section-heading h2,
    .checkout-summary-header h2 {
        font-size: 32px;
    }

}
/* =========================================
   CHECKOUT FOOTER FIX
========================================= */

.site-footer {
    background: #35251b;
    color: #f7efe5;
    padding: 70px 7% 25px;
    margin-top: 0;
}

.site-footer .footer-brand {
    max-width: 420px;
    margin-bottom: 45px;
}

.site-footer .footer-brand h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #f7efe5;
    margin: 0 0 12px;
}

.site-footer .footer-brand p {
    color: #cfc0b2;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

.site-footer .footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.site-footer .footer-links a {
    color: #e9ddd1;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.site-footer .footer-links a:hover {
    color: #c69a6a;
}

.site-footer .footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #aa9b8d;
    font-size: 10px;
    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 600px) {

    .site-footer {
        padding: 55px 25px 22px;
    }

    .site-footer .footer-brand h2 {
        font-size: 36px;
    }

    .site-footer .footer-links {
        gap: 18px;
        margin-bottom: 35px;
    }

}
/* =========================================
   CHECKOUT HEADER FIX
========================================= */

body:has(.checkout-page) .site-header {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 6%;
    background: #fffdf9;
    border-bottom: 1px solid #e7ddd1;
    position: relative;
    z-index: 10;
}


/* LOGO */

body:has(.checkout-page) .site-header .logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 7px;
    color: #35251b;
    white-space: nowrap;
}


/* NAVIGATION */

body:has(.checkout-page) .site-header .main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

body:has(.checkout-page) .site-header .main-nav a {
    color: #594538;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

body:has(.checkout-page) .site-header .main-nav a:hover {
    color: #a27448;
}


/* HEADER ACTIONS */

body:has(.checkout-page) .site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #493529;
    font-size: 18px;
}

body:has(.checkout-page) .site-header .header-actions > span {
    cursor: pointer;
}

body:has(.checkout-page) .site-header .cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #493529;
    text-decoration: none;
    font-size: 16px;
}

body:has(.checkout-page) .site-header #cart-count {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
}


/* MOBILE HEADER */

@media (max-width: 850px) {

    body:has(.checkout-page) .site-header {
        padding: 18px 25px;
        flex-wrap: wrap;
        gap: 18px;
    }

    body:has(.checkout-page) .site-header .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    body:has(.checkout-page) .site-header .main-nav a {
        font-size: 10px;
    }

}


@media (max-width: 500px) {

    body:has(.checkout-page) .site-header .logo {
        font-size: 25px;
        letter-spacing: 5px;
    }

    body:has(.checkout-page) .site-header .header-actions {
        gap: 10px;
    }

}
/* =========================================
   HEADER NAVIGATION POLISH
========================================= */

.header .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: nowrap;
}

.header .nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.8px;
    color: #493529;
    transition: color 0.25s ease;
}

.header .nav-link:hover {
    color: #a27448;
}


/* Keep the whole header nicely aligned */

.header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* Smaller screens */

@media (max-width: 950px) {

    .header .nav {
        gap: 16px;
    }

    .header .nav-link {
        font-size: 11px;
    }

}


@media (max-width: 750px) {

    .header .nav {
        gap: 10px;
    }

    .header .nav-link {
        font-size: 10px;
    }

}
/* =========================================
   AARIÉ ABOUT SECTION
========================================= */

.about-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 50px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

    background: #fffdf9;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-kicker,
.contact-content .section-kicker {
    margin: 0 0 15px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a27448;
}

.about-content h2 {
    margin: 0 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.05;

    color: #35251b;
}

.about-content p:not(.section-kicker) {
    margin: 0 0 18px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.9;

    color: #75675c;
}

.about-button {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 25px;

    background: #35251b;
    color: #fff;

    text-decoration: none;
    text-transform: uppercase;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 1.8px;

    transition: 0.3s ease;
}

.about-button:hover {
    background: #9a6b3f;
}

.about-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}


/* =========================================
   AARIÉ CONTACT SECTION
========================================= */

.contact-section {
    width: 100%;
    padding: 110px 30px;
    box-sizing: border-box;

    background: #f7f0e7;
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
}

.contact-content h2 {
    margin: 0 0 25px;

    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.05;

    color: #35251b;
}

.contact-content > p:not(.section-kicker) {
    max-width: 600px;
    margin: 0 auto 45px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.9;

    color: #75675c;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-item span {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #a27448;
}

.contact-item a {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;

    color: #35251b;
    text-decoration: none;

    transition: 0.25s ease;
}

.contact-item a:hover {
    color: #9a6b3f;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 750px) {

    .about-section {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 75px 25px;
    }

    .about-content h2 {
        font-size: 46px;
    }

    .about-image {
        height: 450px;
    }

    .contact-section {
        padding: 75px 25px;
    }

    .contact-content h2 {
        font-size: 46px;
    }

    .contact-details {
        gap: 35px;
    }

}
/* ================================
   HERO HEADER CONTRAST
================================ */

header {
    position: relative;
    z-index: 100;
}

header .nav-link,
header a {
    color: #ffffff;
}

header .nav-link:hover,
header a:hover {
    color: #f3d6a2;
}

/* Header icons */
header svg {
    stroke: #ffffff;
    color: #ffffff;
}

header svg path,
header svg line,
header svg polyline,
header svg circle {
    stroke: #ffffff;
}

/* If icons use font characters */
header .icon,
header .search-icon,
header .wishlist-icon,
header .cart-icon {
    color: #ffffff;
}
/* ================================
   HERO HEADER - WHITE NAVIGATION
================================ */



.header .logo {
    color: #ffffff !important;
}

.header .nav-link {
    color: #ffffff !important;
}

.header .nav-link:hover {
    color: #f3d6a2 !important;
}

.header .nav-link.active {
    color: #ffffff !important;
}
/* ================================
   HEADER ICONS
================================ */

.header .header-actions {
    color: #ffffff !important;
}

.header .header-actions a,
.header .header-actions button {
    color: #ffffff !important;
}

.header .header-actions svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

.header .header-actions svg * {
    stroke: #ffffff !important;
}

.header .cart-count {
    color: #3b2922 !important;
    background: #ffffff !important;
}
/* ================================
   TRANSPARENT HERO HEADER
================================ */

.header {
    background: transparent !important;
}

.header .logo {
    color: #ffffff !important;
}

.header .nav-link {
    color: #ffffff !important;
}

.header .nav-link:hover {
    color: #f3d6a2 !important;
}

.header .nav-link.active {
    color: #ffffff !important;
}
/* =================================
   HERO BACKGROUND
================================= */

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* =================================
   CART PAGE HEADER
   Transparent header
================================= */

body.cart-page .header {
    background: transparent !important;
}
/* PRODUCT PAGE HEADER */
.product-header {
    background: #211d1a !important;
}
/* =================================
   MOBILE HEADER FIX
================================= */

@media (max-width: 700px) {

    .header .nav {
        display: none !important;
    }

    .header .nav-container {
        height: 75px;
        padding: 0 16px;
        gap: 0;
    }

    .header .logo {
        font-size: 24px;
    }

    .header .nav-actions {
        gap: 12px;
    }

    .header .icon-btn {
        font-size: 20px;
    }
}
/* SHOP ADD TO CART FIX */

.shop-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.shop-product-card .add-cart-btn {
    position: static !important;
    width: 100%;
    margin-top: 12px;
    display: block;
    box-sizing: border-box;
}

.shop-product-card .shop-product-image {
    position: relative;
}

.shop-product-card .product-info {
    flex: 1;
}
/* FINAL SHOP ADD TO CART FIX */

.shop-product-card {
    display: flex;
    flex-direction: column;
}

.shop-product-info {
    display: flex;
    flex-direction: column;
}

.shop-product-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
}

.shop-add-cart {
    position: static !important;
    width: 100% !important;
    height: 48px;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
/* =========================================
   CUSTOMIZE PAGE
========================================= */

.customize-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding-top: 90px;

    background:
        linear-gradient(
            120deg,
            #30251f,
            #6c5849
        );

    color: white;
}

.customize-hero .container {
    text-align: center;
}

.customize-hero .eyebrow {
    color: #d1b477;
}

.customize-hero h1 {
    margin-top: 8px;

    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 95px);
    font-weight: 500;
    line-height: 0.95;
}

.customize-hero p:not(.eyebrow) {
    max-width: 560px;

    margin: 25px auto 0;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.8;

    color: rgba(255,255,255,0.78);
}


/* =========================================
   CUSTOMIZE SECTION
========================================= */

.customize-section {
    padding: 100px 0 120px;

    background: #fffdf9;
}

.customize-intro {
    max-width: 650px;

    margin-bottom: 55px;
}

.customize-intro .eyebrow {
    color: #9a6b3f;
}

.customize-intro h2 {
    margin-top: 8px;

    font-family: var(--serif);
    font-size: 52px;
    font-weight: 500;

    color: #35251b;
}

.customize-intro p:not(.eyebrow) {
    margin-top: 15px;

    max-width: 550px;

    font-size: 14px;
    line-height: 1.8;

    color: #81776f;
}


/* =========================================
   CUSTOMIZE CARD
========================================= */

.customize-card {
    max-width: 850px;

    margin: 0 auto;

    padding: 70px 60px;

    background: #f3eee7;

    border: 1px solid #e2d9d0;
}

.customize-placeholder {
    text-align: center;

    padding: 70px 30px;

    border: 1px dashed #b9aa9d;

    background: #fffdf9;
}

.customize-placeholder h3 {
    font-family: var(--serif);

    font-size: 32px;
    font-weight: 500;

    color: #35251b;
}

.customize-placeholder p {
    max-width: 480px;

    margin: 15px auto 0;

    font-size: 13px;
    line-height: 1.8;

    color: #81776f;
}


/* =========================================
   CUSTOMIZE MOBILE
========================================= */

@media (max-width: 700px) {

    .customize-hero {
        min-height: 360px;
        padding: 90px 20px 60px;
    }

    .customize-hero h1 {
        font-size: 58px;
    }

    .customize-hero p:not(.eyebrow) {
        font-size: 12px;
    }

    .customize-section {
        padding: 70px 20px 90px;
    }

    .customize-intro h2 {
        font-size: 42px;
    }

    .customize-card {
        padding: 25px;
    }

    .customize-placeholder {
        padding: 55px 20px;
    }

    .customize-placeholder h3 {
        font-size: 28px;
    }

}
/* =========================================
   CUSTOMIZE UPLOAD - AARIE STYLE
========================================= */

.customize-card {
    max-width: 850px;
    margin: 45px auto 0;
}

.customize-upload {
    border: 1px solid rgba(126, 93, 62, 0.25);
    background: #faf7f2;
    padding: 65px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.customize-upload:hover {
    border-color: #8b6a47;
    box-shadow: 0 15px 40px rgba(70, 45, 25, 0.08);
}

.upload-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    border: 1px solid #8b6a47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #6f5035;
}

.customize-upload h3 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
    color: #2b211b;
}

.customize-upload p {
    margin: 0 auto 25px;
    max-width: 500px;
    color: #766b63;
    font-size: 14px;
    line-height: 1.7;
}

.upload-button {
    display: inline-block;
    padding: 14px 32px;
    background: #6f5035;
    color: white;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-button:hover {
    background: #4f3928;
    transform: translateY(-2px);
}

.upload-note {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
    font-size: 11px !important;
    color: #9a8e84 !important;
    letter-spacing: 0.5px;
}

.image-preview {
    display: none;
    margin-top: 25px;
    padding: 15px;
    background: white;
    border: 1px solid rgba(126, 93, 62, 0.18);
}

.image-preview img {
    display: block;
    width: 100%;
    max-height: 550px;
    object-fit: contain;
}

@media (max-width: 600px) {

    .customize-upload {
        padding: 45px 20px;
    }

    .customize-upload h3 {
        font-size: 26px;
    }

    .upload-button {
        padding: 13px 25px;
    }

}
/* =========================================
   CUSTOMIZATION FORM
========================================= */

.customize-form {
    max-width: 850px;
    margin: 70px auto 0;
}

.customize-form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.customize-form-heading h2 {
    margin: 8px 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 500;
    color: #2b211b;
}

.customize-form-heading p:last-child {
    color: #766b63;
    font-size: 14px;
    line-height: 1.7;
}

.customize-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
}

.customize-field {
    display: flex;
    flex-direction: column;
}

.customize-field label {
    margin-bottom: 10px;
    color: #4f3928;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.customize-field input,
.customize-field select,
.customize-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(126, 93, 62, 0.25);
    background: #faf7f2;
    padding: 15px;
    color: #2b211b;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.customize-field input:focus,
.customize-field select:focus,
.customize-field textarea:focus {
    border-color: #8b6a47;
    box-shadow: 0 0 0 3px rgba(139, 106, 71, 0.06);
}

.customize-field textarea {
    resize: vertical;
    min-height: 130px;
}

.customize-message {
    margin-top: 25px;
}

@media (max-width: 600px) {

    .customize-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .customize-form {
        margin-top: 55px;
    }

    .customize-form-heading h2 {
        font-size: 32px;
    }

}
/* =========================================
   CUSTOM REQUEST BUTTON
========================================= */

.customize-submit-area {
    text-align: center;
    margin-top: 35px;
}

.customize-submit {
    border: none;
    padding: 16px 38px;
    background: #6f5035;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customize-submit:hover {
    background: #4f3928;
    transform: translateY(-2px);
}

.customize-submit:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
}

.customize-message-status {
    min-height: 20px;
    margin-top: 15px;
    font-size: 13px;
}

.customize-message-status.error {
    color: #a34a3a;
}

.customize-message-status.success {
    color: #55704c;
}
.contact-item a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
}

.contact-item a:hover {
    text-decoration: underline;
}
