@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Bebas+Neue&family=Manrope:wght@400;500;600;700&display=swap');


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f1ea;
    color: #111;
    font-family: 'Manrope', sans-serif;
}


/* =====================================================
   HEADER
===================================================== */

header {
    width: 100%;
    height: 90px;

    padding: 28px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0, 0, 0, 0.15);

    position: relative;
    z-index: 50;
}

header h1 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 6px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #111;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.5;
}

.cart {
    color: #111;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cart span {
    margin-left: 5px;
}


/* =====================================================
   HOME PAGE
===================================================== */

.hero {
    width: 100%;
    min-height: calc(100vh - 90px);

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* BIG ARABIC BACKGROUND */

.hero-arabic {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -55%);

    font-family: 'Amiri', serif;

    font-size: clamp(150px, 25vw, 360px);

    line-height: 1;

    direction: rtl;

    white-space: nowrap;

    opacity: 0.08;

    pointer-events: none;

    animation: homeArabic 8s ease-in-out infinite;
}


@keyframes homeArabic {

    0%,
    100% {
        transform:
            translate(-50%, -55%)
            scale(1)
            rotate(0deg);
    }

    50% {
        transform:
            translate(-50%, -55%)
            scale(1.05)
            rotate(-2deg);
    }

}


/* HOME CONTENT */

.hero-content {
    width: 100%;
    max-width: 1000px;

    padding: 40px 20px;

    position: relative;
    z-index: 5;
}


.hero-small {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 30px;

    opacity: 0;

    animation:
        homeFadeUp
        0.8s
        0.1s
        ease
        forwards;
}


.hero h2 {
    font-size: clamp(70px, 10vw, 140px);

    line-height: 0.82;

    font-weight: 800;

    letter-spacing: -4px;

    margin-bottom: 35px;

    opacity: 0;

    animation:
        homeTitle
        1s
        0.2s
        cubic-bezier(.16, 1, .3, 1)
        forwards;
}


@keyframes homeTitle {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero-text {
    max-width: 520px;

    margin: 0 auto 40px;

    font-size: 14px;

    line-height: 1.8;

    opacity: 0;

    animation:
        homeFadeUp
        0.8s
        0.45s
        ease
        forwards;
}


@keyframes homeFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* HOME BUTTON */

.shop-button {
    display: inline-block;

    padding: 18px 36px;

    background: #111;

    color: #f4f1ea;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0;

    animation:
        buttonAppear
        0.8s
        0.65s
        ease
        forwards;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


@keyframes buttonAppear {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.shop-button:hover {
    background: transparent;

    color: #111;

    outline: 1px solid #111;

    transform: translateY(-3px);
}


/* =====================================================
   STORY PAGE
   ONLY story.html USES THESE
===================================================== */

.story-page {
    width: 100%;

    min-height: calc(100vh - 90px);

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}


/* STORY ARABIC */

.story-page-arabic {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-family: 'Amiri', serif;

    font-size: clamp(180px, 30vw, 430px);

    line-height: 1;

    direction: rtl;

    white-space: nowrap;

    opacity: 0.06;

    pointer-events: none;

    animation:
        storyArabic
        9s
        ease-in-out
        infinite;
}


@keyframes storyArabic {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1)
            rotate(0deg);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.07)
            rotate(-2deg);
    }

}


/* STORY CONTENT */

.story-page-content {
    width: 100%;
    max-width: 1100px;

    position: relative;

    z-index: 5;
}


.story-page-small {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 30px;

    opacity: 0;

    animation:
        storyUp
        0.8s
        0.1s
        ease
        forwards;
}


.story-page-content h2 {
    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(80px, 11vw, 160px);

    line-height: 0.8;

    letter-spacing: 2px;

    margin-bottom: 40px;

    opacity: 0;

    animation:
        storyTitle
        1s
        0.2s
        cubic-bezier(.16, 1, .3, 1)
        forwards;
}


@keyframes storyTitle {

    from {
        opacity: 0;
        transform: translateY(55px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.story-page-content h2 span {
    display: inline-block;

    transition:
        transform 0.5s ease;
}


.story-page-content h2:hover span {
    transform: translateX(25px);
}


.story-page-text {
    max-width: 520px;

    margin: 0 auto 40px;

    font-size: 14px;

    line-height: 1.9;

    opacity: 0;

    animation:
        storyUp
        0.8s
        0.45s
        ease
        forwards;
}


@keyframes storyUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* STORY BUTTON */

.story-page-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 18px 32px;

    background: #111;

    color: #f4f1ea;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    opacity: 0;

    animation:
        storyButton
        0.8s
        0.65s
        ease
        forwards;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


@keyframes storyButton {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.story-page-button strong {
    font-size: 18px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}


.story-page-button:hover {
    background: transparent;

    color: #111;

    outline: 1px solid #111;

    transform: translateY(-3px);
}


.story-page-button:hover strong {
    transform: translateX(7px);
}


/* =====================================================
   SHOP PAGE
===================================================== */

.shop-hero {
    width: 100%;

    min-height: calc(100vh - 90px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    padding: 80px 20px;
}


.shop-arabic {
    font-family: 'Amiri', serif;

    font-size: clamp(140px, 25vw, 340px);

    line-height: 1;

    direction: rtl;

    opacity: 0.09;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    white-space: nowrap;

    pointer-events: none;
}


.small-text {
    position: relative;

    z-index: 2;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 25px;
}


.shop-hero h2 {
    position: relative;

    z-index: 2;

    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(70px, 12vw, 160px);

    line-height: 0.85;

    letter-spacing: 2px;

    margin-bottom: 30px;
}


.description {
    position: relative;

    z-index: 2;

    font-size: 14px;

    margin-bottom: 35px;
}


.shop-quote {
    position: relative;

    z-index: 2;

    font-family: 'Amiri', serif;

    font-size: clamp(22px, 3vw, 34px);

    direction: rtl;

    margin-bottom: 40px;
}


.coming-soon {
    position: relative;

    z-index: 2;

    border: 1px solid #111;

    padding: 15px 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 35px 6%;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.15);

    font-size: 10px;

    letter-spacing: 1px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    header {
        height: 75px;

        padding: 22px 5%;
    }


    header h1 {
        font-size: 19px;

        letter-spacing: 4px;
    }


    nav {
        gap: 15px;
    }


    nav a {
        font-size: 9px;

        letter-spacing: 1px;
    }


    .cart {
        font-size: 9px;
    }


    /* HOME */

    .hero {
        min-height: calc(100vh - 75px);
    }


    .hero h2 {
        font-size: clamp(55px, 16vw, 95px);

        letter-spacing: -2px;
    }


    .hero-text {
        font-size: 13px;
    }


    /* STORY */

    .story-page {
        min-height: calc(100vh - 75px);

        padding: 60px 20px;
    }


    .story-page-content h2 {
        font-size: clamp(65px, 17vw, 105px);
    }


    .story-page-text {
        font-size: 13px;
    }


    .story-page-arabic {
        font-size: 230px;
    }


    /* SHOP */

    .shop-hero {
        min-height: calc(100vh - 75px);
    }


    .shop-hero h2 {
        font-size: clamp(65px, 18vw, 110px);
    }


    .shop-quote {
        font-size: 21px;
    }

}
/* =====================================================
   FIRST DROP / SHOP
===================================================== */

.shop-content {
    position: relative;
    z-index: 5;
}


/* COLLECTION */

.collection {
    min-height: 100vh;

    padding: 120px 7% 150px;

    border-top: 1px solid rgba(0,0,0,.15);
}


.collection-heading {
    margin-bottom: 60px;
}


.collection-heading p {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}


.collection-heading h3 {
    font-family: 'Bebas Neue', sans-serif;

    font-size:
        clamp(60px, 9vw, 120px);

    line-height: .85;

    letter-spacing: 2px;
}


.collection-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 35px;
}


.collection-card {
    color: #111;

    text-decoration: none;

    display: block;
}


.collection-image {
    width: 100%;

    aspect-ratio: 1 / 1.15;

    background: #dedbd3;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.product-placeholder {
    font-family: 'Amiri', serif;

    font-size:
        clamp(100px, 15vw, 220px);

    direction: rtl;

    opacity: .15;

    transition:
        transform .7s ease;
}


.collection-card:hover
.product-placeholder {
    transform: scale(1.08);
}


.collection-info {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;
}


.collection-info h4 {
    font-size: 12px;

    letter-spacing: 1px;
}


.collection-info p {
    font-size: 9px;

    letter-spacing: 1px;

    margin-top: 7px;
}


.collection-info span {
    font-size: 12px;

    font-weight: 700;
}


/* MOBILE */

@media (max-width: 600px) {

    .collection {
        padding:
            90px 6% 110px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

}
/* FIRST DROP BUTTON FIX */

.shop-hero .coming-soon {
    display: inline-block;

    background: #111;

    color: #f4f1ea;

    border: 1px solid #111;

    padding: 15px 30px;

    font-family: 'Manrope', sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.shop-hero .coming-soon:hover {
    background: transparent;

    color: #111;

    border-color: #111;

    transform: translateY(-3px);
}
/* =====================================================
   CART PAGE
===================================================== */

.cart-page {
    min-height: calc(100vh - 90px);

    padding: 100px 7% 140px;
}


.cart-heading {
    margin-bottom: 70px;
}


.cart-heading p {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 20px;
}


.cart-heading h2 {
    font-family: 'Bebas Neue', sans-serif;

    font-size:
        clamp(70px, 10vw, 140px);

    line-height: .8;

    letter-spacing: 2px;
}


/* CART PRODUCTS */

#cart-items {
    border-top: 1px solid #111;
}


.cart-item {
    display: grid;

    grid-template-columns:
        150px
        1fr
        auto
        auto
        auto;

    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border-bottom:
        1px solid
        rgba(0,0,0,.15);
}


.cart-product-image {
    width: 150px;

    height: 170px;

    background: #dedbd3;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.cart-placeholder {
    font-family: 'Amiri', serif;

    font-size: 75px;

    direction: rtl;

    opacity: .15;
}


.cart-product-info h3 {
    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.cart-product-info p {
    font-size: 10px;

    margin-bottom: 5px;

    letter-spacing: 1px;
}


.cart-quantity {
    display: flex;

    align-items: center;

    gap: 15px;
}


.cart-quantity button {
    width: 30px;

    height: 30px;

    background: transparent;

    border:
        1px solid
        rgba(0,0,0,.3);

    cursor: pointer;

    font-size: 16px;
}


.cart-quantity span {
    font-size: 12px;

    font-weight: 700;
}


.cart-item-total {
    font-size: 12px;

    font-weight: 700;
}


.remove-item {
    background: transparent;

    border: none;

    cursor: pointer;

    font-family: 'Manrope', sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-decoration: underline;
}


/* EMPTY CART */

.empty-cart {
    padding: 80px 0;

    text-align: center;
}


.empty-cart p {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.empty-cart a {
    color: #111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-decoration: none;
}


/* TOTAL */

.cart-bottom {
    max-width: 500px;

    margin-left: auto;

    margin-top: 60px;
}


.cart-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 25px;

    border-bottom:
        1px solid #111;
}


.cart-total span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


.cart-total strong {
    font-size: 20px;
}


/* CHECKOUT */

.checkout-button {
    display: block;

    margin-top: 25px;

    padding: 18px;

    background: #111;

    color: #f4f1ea;

    text-align: center;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    transition: .3s;
}


.checkout-button:hover {
    background: transparent;

    color: #111;

    outline: 1px solid #111;
}


.continue-shopping {
    display: block;

    margin-top: 20px;

    color: #111;

    text-align: center;

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* MOBILE */

@media (max-width: 700px) {

    .cart-page {
        padding:
            70px 6% 100px;
    }


    .cart-item {
        grid-template-columns:
            90px 1fr;

        gap: 18px;
    }


    .cart-product-image {
        width: 90px;
        height: 110px;
    }


    .cart-placeholder {
        font-size: 50px;
    }


    .cart-quantity,
    .cart-item-total,
    .remove-item {
        grid-column: 2;
    }


    .cart-bottom {
        max-width: none;
    }

}
/* =====================================================
   PRODUCT PAGE
===================================================== */

.product-page {
    min-height: calc(100vh - 90px);

    padding: 50px 7% 120px;
}


.back-link {
    display: inline-block;

    color: #111;

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 50px;
}


.product-layout {
    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap: 80px;

    align-items: center;
}


/* PRODUCT IMAGE */

.product-image {
    aspect-ratio: 1 / 1.15;

    background: #dedbd3;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    position: relative;
}


.product-large-arabic {
    font-family: 'Amiri', serif;

    font-size:
        clamp(150px, 22vw, 330px);

    direction: rtl;

    opacity: .13;

    transition:
        transform .8s ease;
}


.product-image:hover
.product-large-arabic {
    transform:
        scale(1.08)
        rotate(-2deg);
}


/* INFO */

.product-info {
    max-width: 500px;
}


.product-label {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;
}


.product-info h2 {
    font-family: 'Bebas Neue', sans-serif;

    font-size:
        clamp(70px, 9vw, 130px);

    line-height: .8;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.product-price {
    font-size: 14px;

    font-weight: 700;

    margin-bottom: 30px;
}


.product-description {
    font-size: 13px;

    line-height: 1.8;

    max-width: 420px;

    margin-bottom: 40px;
}


/* SIZES */

.size-section > p {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


.sizes {
    display: flex;

    gap: 8px;

    margin-bottom: 25px;
}


.size-button {
    width: 48px;

    height: 48px;

    background: transparent;

    border:
        1px solid
        rgba(0,0,0,.3);

    color: #111;

    cursor: pointer;

    font-family: 'Manrope', sans-serif;

    font-size: 10px;

    font-weight: 700;

    transition: .25s;
}


.size-button:hover,
.size-button.selected {
    background: #111;

    color: #f4f1ea;

    border-color: #111;
}


/* ADD TO CART */

.add-to-cart {
    width: 100%;

    max-width: 420px;

    padding: 18px;

    background: #111;

    color: #f4f1ea;

    border: 1px solid #111;

    cursor: pointer;

    font-family: 'Manrope', sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    transition: .3s;
}


.add-to-cart:hover {
    background: transparent;

    color: #111;
}


.cart-message {
    min-height: 20px;

    margin-top: 15px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* MOBILE */

@media (max-width: 700px) {

    .product-page {
        padding:
            40px 6% 90px;
    }


    .product-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .product-info h2 {
        font-size:
            clamp(65px, 18vw, 100px);
    }

}
/* =========================
   SUCCESS PAGE
========================= */

.success-page {
    min-height: calc(100vh - 90px);

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}


.success-arabic {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-family: 'Amiri', serif;

    font-size: clamp(180px, 30vw, 430px);

    direction: rtl;

    white-space: nowrap;

    opacity: .06;

    pointer-events: none;

    animation:
        successArabic
        8s
        ease-in-out
        infinite;
}


@keyframes successArabic {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.06);
    }

}


.success-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}


.success-label {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 30px;
}


.success-content h2 {
    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(75px, 11vw, 155px);

    line-height: .82;

    letter-spacing: 2px;

    margin-bottom: 35px;
}


.success-text {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 10px;
}


.success-subtext {
    font-size: 12px;

    opacity: .6;

    margin-bottom: 40px;
}


.success-button {
    display: inline-block;

    padding: 18px 34px;

    background: #111;

    color: #f4f1ea;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    transition: .3s;
}


.success-button:hover {
    background: transparent;

    color: #111;

    outline: 1px solid #111;
}
.collection-product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.collection-image {
    height: auto;
    background: #f4f1ea;
    overflow: hidden;
}
/* =====================================================
   FINAL DASTAAN / 001 LOCAL CLEANUP
   PASTE THIS AT THE VERY BOTTOM OF style.css
===================================================== */

img {
    max-width: 100%;
}


/* =====================================================
   COLLECTION — ONE PRODUCT ONLY
===================================================== */

.collection {
    min-height: auto;
    padding: 100px 7% 120px;
}

.collection-heading {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.collection-grid {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    gap: 0;
}

.collection-card {
    width: 100%;
}

.collection-image {
    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    padding: 24px;

    background: #e7e3db;

    overflow: hidden;
}

.collection-product-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.45s ease;
}

.collection-card:hover .collection-product-image {
    transform: scale(1.015);
}

.collection-info {
    align-items: flex-start;

    padding: 20px 0 0;
}


/* =====================================================
   CART PRODUCT IMAGE
===================================================== */

.cart-product-image {
    background: #e7e3db;
}

.cart-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* =====================================================
   CHECKOUT BUTTON
===================================================== */

.checkout-button {
    width: 100%;

    border: 1px solid #111;

    font-family: 'Manrope', sans-serif;

    cursor: pointer;
}

.checkout-button:disabled {
    cursor: not-allowed;

    opacity: 0.45;
}

.checkout-button:disabled:hover {
    background: #111;

    color: #f4f1ea;

    outline: none;
}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 760px) {

    /* HEADER */

    header {
        height: auto;

        min-height: 90px;

        padding: 18px 5%;

        display: grid;

        grid-template-columns:
            1fr auto;

        grid-template-areas:
            "brand cart"
            "nav nav";

        column-gap: 15px;

        row-gap: 14px;
    }

    header h1 {
        grid-area: brand;

        font-size: 20px;

        letter-spacing: 4px;
    }

    header nav {
        grid-area: nav;

        width: 100%;

        justify-content: center;

        gap: 22px;
    }

    header nav a {
        font-size: 9px;

        letter-spacing: 1.2px;
    }

    header .cart {
        grid-area: cart;

        justify-self: end;

        align-self: center;

        font-size: 9px;
    }


    /* MAIN FULL-SCREEN SECTIONS */

    .hero,
    .story-page,
    .shop-hero,
    .success-page {
        min-height: calc(100vh - 90px);
    }


    /* COLLECTION */

    .collection {
        padding: 70px 5% 90px;
    }

    .collection-heading {
        margin-bottom: 35px;
    }

    .collection-heading h3 {
        font-size:
            clamp(
                54px,
                17vw,
                88px
            );
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-image {
        aspect-ratio: 4 / 3;

        padding: 10px;
    }

    .collection-info {
        flex-direction: column;

        gap: 10px;

        padding-top: 16px;
    }

    .collection-info h4 {
        font-size: 11px;
    }

    .collection-info span {
        font-size: 11px;
    }


    /* CART */

    .cart-page {
        padding: 60px 5% 90px;
    }

    .cart-heading {
        margin-bottom: 45px;
    }

    .cart-item {
        grid-template-columns:
            86px
            minmax(0, 1fr);

        gap: 16px;

        padding: 20px 0;
    }

    .cart-product-image {
        width: 86px;

        height: 105px;
    }

    .cart-product-info {
        min-width: 0;
    }

    .cart-product-info h3 {
        font-size: 11px;

        line-height: 1.35;
    }

    .cart-product-info p {
        font-size: 9px;

        line-height: 1.45;
    }

    .cart-quantity,
    .cart-item-total,
    .remove-item {
        grid-column: 2;

        justify-self: start;
    }

    .cart-bottom {
        width: 100%;

        max-width: none;

        margin-top: 45px;
    }

    .checkout-button {
        padding: 16px;
    }


    /* PRODUCT */

    .product-page {
        padding-left: 5% !important;

        padding-right: 5% !important;
    }

    .product-layout {
        gap: 35px !important;
    }

    .product-visual {
        width: 100%;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 420px) {

    header nav {
        gap: 14px;
    }

    header nav a {
        font-size: 8px;
    }

    .collection-image {
        aspect-ratio: 1 / 1;

        padding: 8px;
    }

    .cart-heading h2 {
        font-size: 64px;
    }

}