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


html {
    scroll-behavior: smooth;
}


body {
    background: #f9eef4;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


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


button {
    font: inherit;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    height: 78px;

    padding:
        0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 100;

    background:
        rgba(0, 0, 0, 0.88);
    
    color: 
        #fff;

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}


.logo img {
    display: block;
    width: 150px;
    height: auto;
}


.nav-links {
    display: flex;

    gap: 32px;

    font-size: 12px;
}


.nav-links a {
    transition:
        opacity .2s ease;
}


.nav-links a:hover {
    opacity: .45;
}


.cart-button {
    border: 0;

    background: none;

    cursor: pointer;

    font-size: 12px;
}


#cart-count {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-width: 20px;

    height: 20px;

    margin-left: 5px;

    border-radius: 50%;

    background: #111;

    color: #fff;

    font-size: 9px;
}


/* HERO */


.hero {
    min-height: 100vh;

    padding:
        180px 7vw
        100px;

    display: flex;

    align-items: flex-end;

    background:
        linear-gradient(
            120deg,
            #f7dfec,
            #f9eef4
        );
}


.hero-content {
    max-width: 900px;
}


.eyebrow {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #77736d;
}


.hero h1 {
    margin:
        30px 0;

    font-size:
        clamp(
            90px,
            15vw,
            220px
        );

    line-height: .78;

    letter-spacing:
        -13px;
}


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

    margin-bottom: 30px;

    color: #66615a;

    font-size: 14px;

    line-height: 1.7;
}


.primary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        16px 25px;

    border-radius: 100px;

    background: #111;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .2s ease;
}


.primary-button:hover {
    transform:
        translateY(-3px);
}


/* SECTIONS */


.shop-section {
    padding:
        120px 5vw;
}


.section-heading {
    margin-bottom: 55px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;
}


.section-heading h2 {
    margin-top: 18px;

    font-size:
        clamp(
            55px,
            8vw,
            110px
        );

    letter-spacing: -6px;
}


.section-heading > p {
    max-width: 230px;

    color: #77736d;

    font-size: 12px;

    line-height: 1.7;
}


/* PRODUCTS */


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.product-card {
    cursor: pointer;
}


.product-image-wrap {
    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #ffffff;
}


.product-image {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}


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


.product-info {
    padding:
        15px 0 35px;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.product-name {
    font-size: 13px;

    font-weight: 600;
}


.product-price {
    font-size: 12px;

    white-space: nowrap;
}


.center-button {
    margin-top: 20px;

    display: flex;

    justify-content: center;
}


.secondary-button {
    display: inline-flex;

    padding:
        14px 22px;

    border:
        1px solid #111;

    border-radius: 100px;

    font-size: 12px;

    font-weight: 600;

    transition:
        background .2s ease,
        color .2s ease;
}


.secondary-button:hover {
    background: #111;

    color: #fff;
}


.secondary-button.light {
    border-color: #fff;

    color: #fff;
}


.secondary-button.light:hover {
    background: #fff;

    color: #111;
}


/* STATEMENT */


.statement-section {
    min-height: 70vh;

    padding:
        100px 7vw;

    display: flex;

    align-items: center;

    background: #111;

    color: #fff;
}


.statement-section h2 {
    margin-top: 30px;

    font-size:
        clamp(
            60px,
            9vw,
            140px
        );

    line-height: .85;

    letter-spacing: -8px;
}



/* FAQ */


.faq-section {
    padding:
        120px 7vw;
}


.faq-section h2 {
    margin:
        25px 0 70px;

    font-size:
        clamp(
            65px,
            9vw,
            130px
        );

    letter-spacing: -8px;
}


.faq-list {
    max-width: 900px;
}


.faq-list details {
    padding:
        25px 0;

    border-top:
        1px solid #c7c3bd;
}


.faq-list details:last-child {
    border-bottom:
        1px solid #c7c3bd;
}


.faq-list summary {
    cursor: pointer;

    font-size: 18px;

    font-weight: 600;

    list-style: none;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list p {
    max-width: 650px;

    padding-top: 20px;

    color: #6f6b64;

    font-size: 13px;

    line-height: 1.8;
}


/* FOOTER */


footer {
    padding:
        80px 5vw 30px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    background: #111;

    color: #fff;
}


.footer-logo {
    margin-bottom: 15px;

    font-size: 32px;

    font-weight: 900;

    letter-spacing: -2px;
}


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

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


.footer-links {
    display: grid;

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

    gap: 30px;
}


.footer-links div {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-links span {
    margin-bottom: 20px;

    color: #666;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.footer-links a {
    margin-bottom: 11px;

    color: #aaa;

    font-size: 12px;

    transition:
        color .2s ease;
}


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


.footer-bottom {
    grid-column: 1 / -1;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid #292929;

    color: #555;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* PAGE */


.page {
    padding-top: 78px;
}


.page-header {
    padding:
        150px 6vw 100px;

    background: #f9eef4;
}


.page-header h1 {
    margin-top: 25px;

    font-size:
        clamp(
            70px,
            10vw,
            150px
        );

    line-height: .82;

    letter-spacing: -8px;
}


.shop-page {
    min-height: 70vh;
}


/* PRODUCT PAGE */


.product-page {
    min-height: 100vh;

    padding:
        160px 7vw 100px;
}


.product-detail {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 70px;

    max-width: 1400px;

    margin: auto;
}


.product-detail-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    background: #ffffff;
}


.product-detail h1 {
    margin:
        25px 0 15px;

    font-size:
        clamp(
            45px,
            6vw,
            85px
        );

    line-height: .88;

    letter-spacing: -5px;
}


.product-detail-price {
    font-size: 16px;

    font-weight: 600;
}


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

    margin:
        30px 0;

    color: #6d6861;

    font-size: 14px;

    line-height: 1.8;
}


.option-label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.variant-select {
    width: 100%;

    padding: 16px;

    border:
        1px solid #bcb7af;

    background: transparent;

    font-size: 13px;
}


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

    margin-top: 15px;

    padding: 18px;

    border: 0;

    background: #111;

    color: #fff;

    cursor: pointer;

    font-size: 12px;

    font-weight: 700;
}


.loading {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;

    color: #77736d;

    font-size: 13px;
}


.store-error {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;
}


.store-error h3 {
    margin-bottom: 12px;

    font-size: 25px;
}


.store-error p {
    color: #777;

    font-size: 13px;
}


/* CART */


.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 500;

    display: flex;

    justify-content: flex-end;

    background:
        rgba(0,0,0,.35);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}


.cart-panel {
    width:
        min(450px, 100%);

    height: 100%;

    padding: 30px;

    display: flex;

    flex-direction: column;

    background: #f9eef4;

    transform:
        translateX(100%);

    transition:
        transform .35s ease;
}


.cart-overlay.active
.cart-panel {
    transform:
        translateX(0);
}


.cart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom:
        1px solid #d0cbc3;
}


.cart-header h2 {
    font-size: 25px;

    letter-spacing: -1px;
}


.cart-header button {
    border: 0;

    background: none;

    cursor: pointer;

    font-size: 30px;
}


#cart-items {
    flex: 1;

    overflow-y: auto;
}


.cart-item {
    padding:
        20px 0;

    display: flex;

    gap: 15px;

    border-bottom:
        1px solid #d0cbc3;
}


.cart-item img {
    width: 80px;

    height: 100px;

    object-fit: cover;

    background: #ddd;
}


.cart-item-info {
    flex: 1;
}


.cart-item-info h3 {
    margin-bottom: 8px;

    font-size: 13px;
}


.cart-item-info p {
    margin-bottom: 5px;

    color: #777;

    font-size: 11px;
}


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

    padding: 0;

    border: 0;

    background: none;

    cursor: pointer;

    color: #777;

    font-size: 10px;

    text-decoration: underline;
}


.cart-footer {
    padding-top: 25px;

    border-top:
        1px solid #d0cbc3;
}


.cart-total {
    margin-bottom: 20px;

    display: flex;

    justify-content: space-between;

    font-size: 14px;
}


.checkout-button {
    width: 100%;

    padding: 18px;

    border: 0;

    background: #111;

    color: #fff;

    cursor: pointer;

    font-size: 12px;

    font-weight: 700;
}


.empty-cart {
    padding:
        80px 0;

    text-align: center;

    color: #777;

    font-size: 13px;
}


/* MOBILE */


@media (max-width: 800px) {

    .navbar {
        height: 68px;

        padding:
            0 20px;
    }


    .nav-links {
        display: none;
    }


    .hero {
        min-height: 90vh;

        padding:
            150px 25px 70px;
    }


    .hero h1 {
        font-size:
            clamp(
                70px,
                22vw,
                130px
            );

        letter-spacing: -7px;
    }


    .shop-section {
        padding:
            80px 20px;
    }


    .section-heading {
        display: block;
    }


    .section-heading h2 {
        margin-bottom: 20px;

        letter-spacing: -4px;
    }


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

        gap: 10px;
    }


    .product-info {
        display: block;

        padding-bottom: 25px;
    }


    .product-price {
        margin-top: 5px;
    }


    .statement-section {
        min-height: 60vh;

        padding:
            80px 25px;
    }


    .statement-section h2 {
        font-size: 60px;

        letter-spacing: -4px;
    }


    .about-section {
        padding:
            90px 25px;
    }


    .about-text h2 {
        letter-spacing: -5px;
    }


    .faq-section {
        padding:
            80px 25px;
    }


    .faq-section h2 {
        letter-spacing: -5px;
    }


    footer {
        grid-template-columns: 1fr;

        padding:
            60px 25px 25px;

        gap: 45px;
    }


    .footer-links {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;
    }


    .footer-bottom {
        grid-column: auto;

        flex-direction: column;

        gap: 6px;
    }


    .page-header {
        padding:
            110px 25px 70px;
    }


    .page-header h1 {
        font-size: 65px;

        letter-spacing: -5px;
    }


    .product-page {
        padding:
            110px 20px 70px;
    }


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

        gap: 40px;
    }

}


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

.product-gallery {
    width: 100%;
    max-width: 520px;
}

.product-main-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: #f7f7f7;
}

.product-main-image-wrap .product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* =========================
   SLIDESHOW ARROWS
========================= */

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 5;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.product-gallery-arrow.prev {
    left: 14px;
}

.product-gallery-arrow.next {
    right: 14px;
}


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

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.product-thumbnail {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
    cursor: pointer;
}

.product-thumbnail.active {
    border-color: #111;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


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

@media (max-width: 768px) {

    .product-gallery {
        max-width: 100%;
    }

    .product-main-image-wrap {
        max-width: 100%;
    }

    .product-thumbnail {
        flex-basis: 62px;
        width: 62px;
        height: 62px;
    }

}

.product-description p {
    margin: 0 0 18px;
    line-height: 1.7;
}

.product-description p:last-child {
    margin-bottom: 0;
}

/* =========================
   DUAGO MOBILE PRODUCT PAGE
========================= */

@media (max-width: 768px) {

    .product-detail {
        display: flex;
        flex-direction: column;
        gap: 28px;
        width: 100%;
        padding: 0;
    }


    /* PRODUCT GALLERY */

    .product-gallery {
        width: 100%;
        max-width: 100%;
    }

    .product-main-image-wrap {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 14px;
    }

    .product-main-image-wrap .product-detail-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    /* GALLERY ARROWS */

    .product-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .product-gallery-arrow.prev {
        left: 10px;
    }

    .product-gallery-arrow.next {
        right: 10px;
    }


    /* THUMBNAILS */

    .product-thumbnails {
        gap: 8px;
        margin-top: 10px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .product-thumbnails::-webkit-scrollbar {
        display: none;
    }

    .product-thumbnail {
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        border-radius: 8px;
    }


    /* PRODUCT INFORMATION */

    .product-detail-info {
        width: 100%;
    }

    .product-detail-info .eyebrow {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .product-detail-info h1 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: normal;
    word-spacing: normal;
    font-weight: 600;
    white-space: normal;
    width: 100%;
    margin: 0 0 12px;
}

    .product-detail-price {
        font-size: 20px;
        margin-bottom: 24px;
    }


    /* DESCRIPTION */

    .product-description {
        width: 100%;
        margin-bottom: 26px;
    }

    .product-description p {
        margin: 0 0 16px;
        line-height: 1.65;
    }


    /* OPTIONS */

    .product-options {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        margin-bottom: 24px;
    }

    .product-option {
        width: 100%;
    }

    .option-label {
        display: block;
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 600;
    }

    .variant-option {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 10px;
    }


    /* ADD TO BAG */

    .add-to-cart {
        width: 100%;
        min-height: 52px;
        margin: 0;
    }

}

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

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

.mobile-menu-button {
    display: none;

    border: 0;
    background: none;

    cursor: pointer;

    font-size: 24px;
    line-height: 1;
}


.mobile-menu {
    position: fixed;

    top: 68px;
    left: 0;

    width: 100%;

    padding: 25px 20px 30px;

    display: none;
    flex-direction: column;
    gap: 22px;

    background: #000000;

    border-bottom:
        1px solid rgba(0,0,0,0.08);

    z-index: 99;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 600;
}


.mobile-menu.active {
    display: flex;
}


@media (max-width: 800px) {

    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 14px;
    }

}