/* =========================================================
   1. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f4f2ed;
    color: #161616;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

input,
select {
    outline: none;
}

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

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



/* =========================================================
   2. VARIABLES
========================================================= */

:root {

    --black: #151515;

    --dark: #20201f;

    --white: #ffffff;

    --cream: #f4f2ed;

    --cream-dark: #e8e6e1;

    --gray: #747474;

    --light-gray: #a4a4a4;

    --border: rgba(20, 20, 20, 0.12);

    --glass: rgba(255, 255, 255, 0.72);

    --radius-sm: 14px;

    --radius: 24px;

    --radius-lg: 32px;

    --transition:
        0.35s cubic-bezier(.2, .8, .2, 1);

}



/* =========================================================
   3. GLOBAL
========================================================= */

.section {
    max-width: 1400px;
    margin: auto;

    padding: 110px 5%;
}

.eyebrow {
    display: inline-block;

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

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.logo {
    font-family: "Manrope", sans-serif;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -1px;
}

.logo span {
    color: #777;
}



/* =========================================================
   4. BUTTONS
========================================================= */

.primary-btn {
    width: fit-content;

    min-height: 50px;

    display: inline-flex;

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

    gap: 20px;

    padding: 14px 22px;

    border-radius: 50px;

    background: var(--black);

    color: white;

    font-size: 14px;

    transition: var(--transition);
}

.primary-btn i {
    transition: var(--transition);
}

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

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover i {
    transform: translateX(5px);
}


.secondary-btn {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 15px;

    background: transparent;

    border-bottom: 1px solid #333;

    padding: 10px 0;
}



/* =========================================================
   5. NAVBAR
========================================================= */

.navbar {
    width: calc(100% - 50px);

    max-width: 1400px;

    height: 72px;

    position: fixed;

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 25px;

    border:
        1px solid rgba(255, 255, 255, 0.45);

    border-radius: 18px;

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

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06);
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 35px;
}


.nav-links a {
    position: relative;

    font-size: 14px;

    font-weight: 500;
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 1px;

    background: var(--black);

    transition: var(--transition);
}


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


.nav-actions {
    display: flex;

    align-items: center;

    gap: 8px;
}


.icon-btn,
.menu-btn {
    width: 42px;

    height: 42px;

    position: relative;

    border-radius: 50%;

    background: transparent;

    display: grid;

    place-items: center;

    transition: var(--transition);
}


.icon-btn:hover,
.menu-btn:hover,
.active-icon {
    background: #eceae5;
}


.cart-count,
.wishlist-count {
    position: absolute;

    right: 0;

    top: 0;

    min-width: 18px;

    height: 18px;

    padding: 0 5px;

    display: grid;

    place-items: center;

    border-radius: 50px;

    background: var(--black);

    color: white;

    font-size: 10px;
}


.menu-btn {
    display: none;
}



/* =========================================================
   6. MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 100px;

    left: 25px;

    right: 25px;

    z-index: 999;

    display: flex;

    flex-direction: column;

    padding: 25px;

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

    backdrop-filter: blur(20px);

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);

    transform: translateY(-20px);

    opacity: 0;

    pointer-events: none;

    transition: var(--transition);
}


.mobile-menu.active {
    transform: translateY(0);

    opacity: 1;

    pointer-events: auto;
}


.mobile-menu a {
    padding: 15px 5px;

    font-size: 18px;

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



/* =========================================================
   7. HOME HERO
========================================================= */

.hero {
    padding-top: 130px;
}


.hero-grid {
    display: grid;

    grid-template-columns: 2fr 1fr;

    grid-template-rows: 280px 280px;

    gap: 18px;
}


.hero-main {
    grid-row: 1 / 3;

    display: grid;

    grid-template-columns:
        1.05fr 1fr;

    overflow: hidden;

    background: #dedbd3;

    border-radius: var(--radius-lg);
}


.hero-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px;
}


.hero-content h1 {
    max-width: 600px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(45px, 5vw, 78px);

    font-weight: 600;

    letter-spacing: -4px;

    line-height: 0.95;

    margin-bottom: 25px;
}


.hero-content h1 span {
    color: #75736d;
}


.hero-content p {
    max-width: 480px;

    color: #555;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 35px;
}


.hero-image {
    overflow: hidden;
}


.hero-image img {
    transition:
        transform 1.2s
        cubic-bezier(.2, .8, .2, 1);
}


.hero-main:hover .hero-image img {
    transform: scale(1.04);
}



/* =========================================================
   8. HERO SMALL CARDS
========================================================= */

.small-card {
    position: relative;

    border-radius: var(--radius);

    overflow: hidden;
}


.category-card {
    padding: 35px;

    background: #20201f;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.category-card span {
    font-size: 11px;

    letter-spacing: 2px;

    color: #aaa;
}


.category-card h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 31px;

    line-height: 1.05;

    letter-spacing: -1px;
}


.category-card a {
    width: fit-content;

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 13px;

    color: #ccc;
}


.category-card a i {
    transition: var(--transition);
}


.category-card a:hover i {
    transform:
        translate(3px, -3px);
}


.image-card img {
    transition:
        transform 0.8s ease;
}


.image-card:hover img {
    transform: scale(1.07);
}


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

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.65)
        );
}


.image-overlay {
    position: absolute;

    left: 30px;

    bottom: 30px;

    z-index: 2;

    color: white;
}


.image-overlay span {
    font-size: 10px;

    letter-spacing: 2px;
}


.image-overlay h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 30px;

    margin-top: 5px;
}



/* =========================================================
   9. MARQUEE
========================================================= */

.marquee {
    width: 100%;

    overflow: hidden;

    padding: 20px 0;

    background: var(--black);

    color: white;
}


.marquee-track {
    width: max-content;

    display: flex;

    align-items: center;

    gap: 45px;

    animation:
        marquee 18s linear infinite;
}


.marquee span {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 14px;

    letter-spacing: 2px;
}


.marquee i {
    font-size: 8px;
}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}



/* =========================================================
   10. SECTION HEADINGS
========================================================= */

.section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.section-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(36px, 4vw, 58px);

    font-weight: 600;

    letter-spacing: -3px;
}


.text-link {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;
}


.text-link i {
    transition: var(--transition);
}


.text-link:hover i {
    transform: translateX(5px);
}



/* =========================================================
   11. HOME CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    grid-template-rows:
        300px 300px;

    gap: 18px;
}


.category-item {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius);
}


.category-large {
    grid-row: span 2;
}


.category-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0, 0, 0, 0.75)
        );
}


.category-item img {
    transition:
        transform 0.8s
        cubic-bezier(.2, .8, .2, 1);
}


.category-item:hover img {
    transform: scale(1.05);
}


.category-info {
    position: absolute;

    z-index: 3;

    left: 30px;

    right: 30px;

    bottom: 30px;

    color: white;
}


.category-info span {
    font-size: 11px;

    opacity: 0.7;
}


.category-info h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 32px;

    margin: 5px 0 15px;
}


.category-info button {
    padding: 10px 15px;

    border-radius: 30px;

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

    backdrop-filter: blur(10px);

    color: white;

    transition: var(--transition);
}


.category-info button:hover {
    background: white;

    color: black;
}



/* =========================================================
   12. PRODUCT GRID
========================================================= */

.products-grid {
    display: grid;

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

    gap: 20px;
}


.product-card {
    min-width: 0;

    cursor: pointer;
}


.product-image {
    height: 420px;

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: #e8e6e1;
}


.product-image img {
    object-fit: contain;

    padding: 35px;

    mix-blend-mode: multiply;

    transition:
        transform 0.7s
        cubic-bezier(.2, .8, .2, 1);
}


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



/* PRODUCT ACTIONS */

.product-actions {
    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 4;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.product-action-btn,
.wishlist-btn,
.quick-view-btn {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

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

    backdrop-filter: blur(12px);

    transition: var(--transition);
}


.product-action-btn:hover,
.wishlist-btn:hover,
.quick-view-btn:hover {
    transform: scale(1.08);

    background: var(--black);

    color: white;
}


.wishlist-btn.active {
    background: var(--black);

    color: white;
}



/* ADD CART */

.add-cart {
    position: absolute;

    left: 15px;

    right: 15px;

    bottom: 15px;

    height: 48px;

    border-radius: 50px;

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

    backdrop-filter: blur(12px);

    transform:
        translateY(70px);

    opacity: 0;

    transition: var(--transition);
}


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

    opacity: 1;
}


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

    color: white;
}



/* PRODUCT INFO */

.product-info {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    padding: 16px 5px;
}


.product-info h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 5px;
}


.product-info p {
    color: var(--gray);

    font-size: 13px;
}


.product-price {
    white-space: nowrap;

    font-weight: 600;
}


.product-rating {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 7px;

    color: #777;

    font-size: 12px;
}


.product-rating i {
    color: #222;

    font-size: 11px;
}



/* =========================================================
   13. LOADING
========================================================= */

.products-loading,
.product-detail-loading {
    grid-column: 1 / -1;

    min-height: 300px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 15px;

    color: var(--gray);
}


.products-loading i,
.product-detail-loading i {
    font-size: 25px;

    color: var(--black);
}



/* =========================================================
   14. FEATURE SECTION
========================================================= */

.feature-card {
    min-height: 500px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-radius:
        var(--radius-lg);

    overflow: hidden;

    background: #dcd8cf;
}


.feature-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;
}


.feature-content h2 {
    max-width: 600px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(40px, 4vw, 62px);

    font-weight: 600;

    letter-spacing: -3px;

    line-height: 1;

    margin-bottom: 25px;
}


.feature-content p {
    max-width: 480px;

    line-height: 1.7;

    color: #555;

    margin-bottom: 30px;
}


.feature-image {
    overflow: hidden;
}


.feature-image img {
    transition:
        transform 1s ease;
}


.feature-card:hover
.feature-image img {
    transform: scale(1.04);
}



/* =========================================================
   15. BENEFITS
========================================================= */

.benefits {
    display: grid;

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

    gap: 15px;
}


.benefit-card {
    min-height: 150px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 30px;

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

    border-radius: var(--radius);

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

    transition: var(--transition);
}


.benefit-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.6);
}


.benefit-card > i {
    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--black);

    color: white;
}


.benefit-card h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 16px;

    margin-bottom: 6px;
}


.benefit-card p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.5;
}



/* =========================================================
   16. PAGE HERO
========================================================= */

.shop-hero,
.category-page-hero,
.wishlist-hero,
.cart-page-hero {
    max-width: 1400px;

    margin: auto;

    padding:
        180px 5% 70px;
}


.shop-hero > div,
.category-hero-content,
.wishlist-hero > div,
.cart-page-hero > div {
    max-width: 800px;
}


.shop-hero h1,
.category-page-hero h1,
.wishlist-hero h1,
.cart-page-hero h1 {
    font-family:
        "Manrope",
        sans-serif;

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

    font-weight: 600;

    line-height: 0.95;

    letter-spacing: -6px;

    margin-bottom: 25px;
}


.shop-hero p,
.category-page-hero p,
.wishlist-hero p,
.cart-page-hero p {
    max-width: 560px;

    color: #666;

    font-size: 16px;

    line-height: 1.7;
}



/* =========================================================
   17. SHOP TOOLBAR
========================================================= */

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


.shop-toolbar {
    display: grid;

    grid-template-columns:
        1fr 260px;

    gap: 15px;

    margin-bottom: 25px;
}


.search-box,
.sort-box {
    height: 58px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 20px;

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

    border-radius: 50px;

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

    backdrop-filter: blur(10px);

    transition: var(--transition);
}


.search-box:focus-within,
.sort-box:focus-within {
    background: white;

    border-color:
        rgba(0, 0, 0, 0.3);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.05);
}


.search-box input {
    width: 100%;

    border: none;

    background: transparent;
}


.clear-search {
    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: transparent;

    color: #777;

    transition: var(--transition);
}


.clear-search:hover {
    background: #e8e6e1;

    color: black;
}


.sort-box select {
    width: 100%;

    border: none;

    background: transparent;

    cursor: pointer;
}



/* =========================================================
   18. SHOP FILTERS
========================================================= */

.shop-filter-area {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 40px;
}


.category-filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.shop-filter {
    padding: 11px 18px;

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

    border-radius: 50px;

    background: transparent;

    transition: var(--transition);
}


.shop-filter:hover,
.shop-filter.active {
    background: var(--black);

    color: white;
}


.result-count {
    color: var(--gray);

    font-size: 13px;

    white-space: nowrap;
}


.active-search {
    display: none;

    margin-bottom: 25px;

    color: var(--gray);

    font-size: 14px;
}


.active-search.show {
    display: block;
}


.active-search strong {
    color: var(--black);
}



/* =========================================================
   19. EMPTY PRODUCTS
========================================================= */

.empty-products {
    min-height: 400px;

    display: none;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.empty-products.show {
    display: flex;
}


.empty-products > i {
    width: 60px;

    height: 60px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border-radius: 50%;

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


.empty-products h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 30px;

    margin-bottom: 10px;
}


.empty-products p {
    color: var(--gray);

    margin-bottom: 25px;
}


.empty-products button {
    padding: 13px 20px;

    border-radius: 50px;

    background: var(--black);

    color: white;
}



/* =========================================================
   20. SHOP PROMO
========================================================= */

.shop-promo-card {
    min-height: 320px;

    padding: 60px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    border-radius:
        var(--radius-lg);

    background: var(--black);

    color: white;
}


.shop-promo-card h2 {
    font-family:
        "Manrope",
        sans-serif;

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

    line-height: 1;

    letter-spacing: -3px;
}


.shop-promo-card p {
    max-width: 350px;

    color: #aaa;

    line-height: 1.7;
}



/* =========================================================
   21. CATEGORY PAGE BENTO
========================================================= */

.category-page-section {
    padding-top: 20px;
}


.category-page-grid {
    display: grid;

    grid-template-columns:
        1.2fr 1fr;

    grid-template-rows:
        360px 360px 360px;

    gap: 18px;
}


.category-page-card {
    position: relative;

    overflow: hidden;

    border-radius:
        var(--radius-lg);

    color: white;
}


.category-page-large {
    grid-row: span 2;
}


.category-page-wide {
    grid-column: span 2;
}


.category-page-card img {
    transition:
        transform 1s
        cubic-bezier(.2, .8, .2, 1);
}


.category-page-card:hover img {
    transform: scale(1.05);
}


.category-page-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.05)
        );
}


.category-page-number {
    position: absolute;

    top: 30px;

    right: 30px;

    z-index: 3;

    font-size: 12px;

    opacity: 0.7;
}


.category-page-content {
    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 35px;

    z-index: 3;
}


.category-page-content > span {
    font-size: 10px;

    letter-spacing: 2px;

    opacity: 0.7;
}


.category-page-content h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(35px, 4vw, 60px);

    letter-spacing: -3px;

    margin: 8px 0 20px;
}


.category-page-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 13px;
}


.category-arrow {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

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

    backdrop-filter: blur(10px);

    transition: var(--transition);
}


.category-page-card:hover
.category-arrow {
    transform: rotate(-45deg);

    background: white;

    color: black;
}



/* =========================================================
   22. CATEGORY STATEMENT
========================================================= */

.category-statement-card {
    padding: 70px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    border-radius:
        var(--radius-lg);

    background: #dedbd3;
}


.category-statement-card h2 {
    font-family:
        "Manrope",
        sans-serif;

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

    letter-spacing: -4px;

    line-height: 1;
}


.category-statement-text {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}


.category-statement-text p {
    max-width: 500px;

    color: #555;

    line-height: 1.8;

    margin-bottom: 30px;
}



/* =========================================================
   23. PRODUCT BREADCRUMB
========================================================= */

.product-breadcrumb {
    max-width: 1400px;

    margin: auto;

    padding:
        150px 5% 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gray);

    font-size: 13px;
}


.product-breadcrumb i {
    font-size: 8px;
}



/* =========================================================
   24. PRODUCT DETAILS
========================================================= */

.product-page {
    padding-top: 30px;
}


.product-detail-container {
    min-height: 650px;
}


.product-detail {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}


.product-detail-image {
    min-height: 650px;

    padding: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius:
        var(--radius-lg);

    background: #e8e6e1;

    overflow: hidden;
}


.product-detail-image img {
    max-width: 480px;

    max-height: 500px;

    object-fit: contain;

    mix-blend-mode: multiply;

    transition: transform 0.8s ease;
}


.product-detail-image:hover img {
    transform: scale(1.05);
}


.product-detail-content {
    max-width: 600px;
}


.product-category {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gray);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.product-detail-content h1 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(38px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 20px;
}


.detail-rating {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--gray);

    font-size: 13px;
}


.detail-stars {
    color: var(--black);
}


.detail-price {
    display: block;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 32px;

    font-weight: 600;

    margin-bottom: 25px;
}


.detail-description {
    color: #626262;

    line-height: 1.8;

    margin-bottom: 35px;
}


.product-detail-actions {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}


.detail-add-cart {
    flex: 1;

    min-height: 55px;

    border-radius: 50px;

    background: var(--black);

    color: white;

    transition: var(--transition);
}


.detail-add-cart:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.15);
}


.detail-wishlist {
    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

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

    background: transparent;

    transition: var(--transition);
}


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

    color: white;
}



/* =========================================================
   25. DETAIL QUANTITY
========================================================= */

.detail-quantity {
    display: flex;

    align-items: center;

    gap: 15px;
}


.detail-quantity > span {
    font-size: 13px;

    color: var(--gray);
}


.quantity-control {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 7px;

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

    border-radius: 50px;
}


.quantity-control button {
    width: 34px;

    height: 34px;

    border-radius: 50%;

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



/* =========================================================
   26. PRODUCT EXTRA
========================================================= */

.product-extra-grid {
    display: grid;

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

    gap: 15px;
}


.product-extra-card {
    min-height: 220px;

    padding: 35px;

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

    border-radius: var(--radius);

    background:
        rgba(255, 255, 255, 0.35);
}


.product-extra-card > i {
    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--black);

    color: white;
}


.product-extra-card h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 20px;

    margin-bottom: 15px;
}


.product-extra-card p {
    color: var(--gray);

    line-height: 1.7;
}



/* =========================================================
   27. QUICK VIEW MODAL
========================================================= */

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.35s;
}


.product-modal.active {
    opacity: 1;

    visibility: visible;
}


.modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(8px);
}


.modal-content {
    width: min(950px, 100%);

    max-height: 90vh;

    position: relative;

    z-index: 2;

    overflow-y: auto;

    padding: 20px;

    border-radius:
        var(--radius-lg);

    background: #f4f2ed;

    transform:
        translateY(30px)
        scale(0.96);

    transition: var(--transition);
}


.product-modal.active
.modal-content {
    transform:
        translateY(0)
        scale(1);
}


.modal-close {
    width: 44px;

    height: 44px;

    position: absolute;

    top: 20px;

    right: 20px;

    z-index: 5;

    border-radius: 50%;

    background: white;

    transition: var(--transition);
}


.modal-close:hover {
    transform: rotate(90deg);
}


.modal-product {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;
}


.modal-product-image {
    min-height: 500px;

    padding: 60px;

    border-radius: var(--radius);

    background: #e8e6e1;
}


.modal-product-image img {
    object-fit: contain;

    mix-blend-mode: multiply;
}


.modal-product-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px 30px 40px 0;
}


.modal-product-info h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(30px, 4vw, 45px);

    letter-spacing: -2px;

    line-height: 1.05;

    margin-bottom: 15px;
}



/* =========================================================
   28. WISHLIST
========================================================= */

.wishlist-section {
    padding-top: 20px;
}


.wishlist-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.wishlist-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(35px, 4vw, 55px);

    letter-spacing: -3px;
}


.wishlist-heading-right {
    display: flex;

    align-items: center;

    gap: 20px;

    color: var(--gray);

    font-size: 13px;
}


.clear-wishlist-btn {
    padding: 10px 16px;

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

    border-radius: 50px;

    background: transparent;

    transition: var(--transition);
}


.clear-wishlist-btn:hover {
    background: var(--black);

    color: white;
}


.wishlist-empty {
    min-height: 500px;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.wishlist-empty.show {
    display: flex;
}


.empty-icon {
    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--cream-dark);

    font-size: 22px;
}


.wishlist-empty h2,
.cart-page-empty h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(32px, 4vw, 48px);

    letter-spacing: -2px;

    margin-bottom: 12px;
}


.wishlist-empty p,
.cart-page-empty p {
    max-width: 450px;

    color: var(--gray);

    line-height: 1.7;

    margin-bottom: 25px;
}



/* =========================================================
   29. WISHLIST DISCOVER
========================================================= */

.wishlist-discover-card {
    min-height: 500px;

    display: grid;

    grid-template-columns:
        1.2fr 1fr;

    overflow: hidden;

    border-radius:
        var(--radius-lg);

    background: #dedbd3;
}


.wishlist-discover-image {
    overflow: hidden;
}


.wishlist-discover-image img {
    transition:
        transform 1s ease;
}


.wishlist-discover-card:hover
.wishlist-discover-image img {
    transform: scale(1.04);
}


.wishlist-discover-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 60px;
}


.wishlist-discover-content h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(38px, 4vw, 58px);

    letter-spacing: -3px;

    line-height: 1;

    margin-bottom: 25px;
}


.wishlist-discover-content p {
    color: #555;

    line-height: 1.7;

    margin-bottom: 30px;
}



/* =========================================================
   30. CART DRAWER
========================================================= */

.cart-drawer {
    position: fixed;

    top: 0;

    right: 0;

    width: min(450px, 100%);

    height: 100vh;

    z-index: 2000;

    background: #f7f6f2;

    padding: 30px;

    display: flex;

    flex-direction: column;

    transform: translateX(100%);

    transition:
        transform 0.5s
        cubic-bezier(.2, .8, .2, 1);
}


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


.cart-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding-bottom: 25px;

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


.cart-header h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 28px;
}


.close-cart {
    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #e8e6e1;

    transition: var(--transition);
}


.close-cart:hover {
    transform: rotate(90deg);
}



/* =========================================================
   31. CART DRAWER ITEMS
========================================================= */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 0;
}


.cart-item {
    display: grid;

    grid-template-columns:
        80px 1fr auto;

    gap: 15px;

    padding: 15px 0;

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


.cart-item img {
    width: 80px;

    height: 95px;

    padding: 8px;

    object-fit: contain;

    border-radius: 12px;

    background: #e8e6e1;
}


.cart-item h4 {
    font-size: 14px;

    margin-bottom: 7px;
}


.cart-item p {
    color: var(--gray);

    font-size: 13px;
}


.quantity {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;
}


.quantity button {
    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: #e8e6e1;
}


.remove-item {
    background: transparent;

    color: #888;

    align-self: start;

    transition: var(--transition);
}


.remove-item:hover {
    color: black;

    transform: scale(1.1);
}



/* =========================================================
   32. CART DRAWER FOOTER
========================================================= */

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

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


.cart-total {
    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;

    font-size: 18px;
}


.view-cart-btn {
    width: 100%;

    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 10px;

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

    border-radius: 50px;

    transition: var(--transition);
}


.view-cart-btn:hover {
    background: #e8e6e1;
}


.checkout-btn {
    width: 100%;

    height: 55px;

    border-radius: 50px;

    background: var(--black);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    transition: var(--transition);
}


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



/* =========================================================
   33. CART PAGE
========================================================= */

.cart-page {
    padding-top: 20px;
}


.cart-page-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(320px, 0.7fr);

    gap: 60px;

    align-items: start;
}


.cart-page-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 20px;

    padding-bottom: 25px;

    margin-bottom: 10px;

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


.cart-page-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(30px, 4vw, 45px);

    letter-spacing: -2px;
}


.cart-page-heading p {
    color: var(--gray);

    font-size: 13px;
}



/* CART PAGE PRODUCT */

.cart-page-item {
    display: grid;

    grid-template-columns:
        140px 1fr auto;

    gap: 25px;

    padding: 25px 0;

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


.cart-page-item-image {
    width: 140px;

    height: 160px;

    padding: 20px;

    border-radius: 18px;

    background: #e8e6e1;
}


.cart-page-item-image img {
    object-fit: contain;

    mix-blend-mode: multiply;
}


.cart-page-item-info h3 {
    max-width: 400px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 18px;

    margin-bottom: 7px;
}


.cart-page-item-category {
    color: var(--gray);

    font-size: 12px;

    margin-bottom: 20px;
}


.cart-page-item-price {
    font-weight: 600;
}


.cart-page-remove {
    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: transparent;

    color: #888;

    transition: var(--transition);
}


.cart-page-remove:hover {
    background: #e8e6e1;

    color: black;
}



/* EMPTY CART */

.cart-page-empty {
    min-height: 500px;

    display: none;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.cart-page-empty.show {
    display: flex;
}



/* =========================================================
   34. ORDER SUMMARY
========================================================= */

.order-summary {
    position: sticky;

    top: 120px;

    padding: 35px;

    border-radius:
        var(--radius-lg);

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

    backdrop-filter: blur(15px);

    border:
        1px solid
        rgba(255, 255, 255, 0.8);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.05);
}


.order-summary h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 30px;

    margin-bottom: 30px;
}


.summary-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 0;

    color: #555;

    font-size: 14px;
}


.summary-row strong {
    color: var(--black);
}


.summary-divider {
    height: 1px;

    margin: 15px 0;

    background: var(--border);
}


.summary-total {
    font-size: 18px;
}


.summary-total strong {
    font-size: 22px;
}


.shipping-message {
    display: flex;

    gap: 12px;

    margin: 25px 0;

    padding: 15px;

    border-radius: 15px;

    background: #e8e6e1;

    color: #555;

    font-size: 12px;

    line-height: 1.5;
}


.checkout-page-btn {
    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-radius: 50px;

    background: var(--black);

    color: white;

    transition: var(--transition);
}


.checkout-page-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.15);
}


.continue-shopping {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    font-size: 13px;
}


.payment-info {
    margin-top: 30px;

    padding-top: 25px;

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


.payment-info > div {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 600;
}


.payment-info p {
    color: var(--gray);

    font-size: 11px;

    line-height: 1.5;
}



/* =========================================================
   35. CHECKOUT MODAL
========================================================= */

.checkout-modal {
    position: fixed;

    inset: 0;

    z-index: 4000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.35s;
}


.checkout-modal.active {
    opacity: 1;

    visibility: visible;
}


.checkout-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(8px);
}


.checkout-modal-content {
    width: min(500px, 100%);

    position: relative;

    z-index: 2;

    padding: 55px 40px;

    text-align: center;

    border-radius:
        var(--radius-lg);

    background: #f4f2ed;

    transform:
        translateY(30px)
        scale(0.95);

    transition: var(--transition);
}


.checkout-modal.active
.checkout-modal-content {
    transform:
        translateY(0)
        scale(1);
}


.checkout-modal-close {
    width: 42px;

    height: 42px;

    position: absolute;

    top: 18px;

    right: 18px;

    border-radius: 50%;

    background: #e8e6e1;
}


.checkout-success-icon {
    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    margin:
        0 auto 25px;

    border-radius: 50%;

    background: var(--black);

    color: white;

    font-size: 22px;
}


.checkout-modal-content h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 35px;

    letter-spacing: -2px;

    margin-bottom: 15px;
}


.checkout-modal-content p {
    color: var(--gray);

    line-height: 1.7;

    margin-bottom: 30px;
}


.checkout-modal-content
.primary-btn {
    margin: auto;
}



/* =========================================================
   36. OVERLAY
========================================================= */

.overlay {
    position: fixed;

    inset: 0;

    z-index: 1500;

    background:
        rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: 0.4s;
}


.overlay.active {
    opacity: 1;

    visibility: visible;
}



/* =========================================================
   37. FOOTER
========================================================= */

footer {
    background: #171716;

    color: white;

    padding:
        80px 5% 30px;
}


.footer-top {
    max-width: 1400px;

    margin: auto;

    display: grid;

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

    gap: 60px;

    padding-bottom: 70px;
}


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

    color: #999;

    line-height: 1.6;

    margin-top: 20px;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-column h4 {
    margin-bottom: 10px;
}


.footer-column a {
    color: #999;

    font-size: 14px;

    transition: var(--transition);
}


.footer-column a:hover {
    color: white;

    transform: translateX(3px);
}


.newsletter p {
    color: #999;

    font-size: 14px;

    line-height: 1.5;
}


.newsletter-input {
    display: flex;

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

    margin-top: 15px;
}


.newsletter-input input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    padding: 12px 0;
}


.newsletter-input button {
    width: 40px;

    background: transparent;

    color: white;
}


.footer-bottom {
    max-width: 1400px;

    margin: auto;

    padding-top: 25px;

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

    display: flex;

    justify-content: space-between;

    color: #777;

    font-size: 13px;
}


.footer-bottom div {
    display: flex;

    gap: 25px;
}



/* =========================================================
   38. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}



/* =========================================================
   39. TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero-grid {
        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            auto 260px;
    }


    .hero-main {
        grid-column: 1 / 3;

        grid-row: auto;

        min-height: 550px;
    }


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


    .footer-top {
        grid-template-columns:
            1fr 1fr;
    }


    .product-detail {
        gap: 35px;
    }


    .product-detail-image {
        min-height: 550px;

        padding: 50px;
    }


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


    .product-extra-card:first-child {
        grid-column: span 2;
    }


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

        gap: 40px;
    }


    .order-summary {
        position: static;
    }

}



/* =========================================================
   40. MOBILE
========================================================= */

@media (max-width: 750px) {

    .section {
        padding:
            75px 20px;
    }


    /* NAVBAR */

    .navbar {
        width:
            calc(100% - 30px);

        top: 12px;

        height: 64px;

        padding:
            0 15px 0 20px;
    }


    .nav-links {
        display: none;
    }


    .menu-btn {
        display: grid;
    }



    /* HOME HERO */

    .hero {
        padding-top: 100px;
    }


    .hero-grid {
        display: flex;

        flex-direction: column;
    }


    .hero-main {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    .hero-content {
        padding: 45px 25px;
    }


    .hero-content h1 {
        font-size: 48px;

        letter-spacing: -3px;
    }


    .hero-image {
        height: 400px;
    }


    .small-card {
        min-height: 250px;
    }



    /* HEADINGS */

    .section-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .section-heading h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }



    /* HOME CATEGORY */

    .category-grid {
        display: flex;

        flex-direction: column;
    }


    .category-item {
        height: 400px;
    }



    /* PRODUCTS */

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

        gap: 12px;
    }


    .product-image {
        height: 280px;
    }


    .product-image img {
        padding: 20px;
    }


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

        opacity: 1;

        height: 42px;

        left: 10px;

        right: 10px;

        bottom: 10px;
    }


    .product-actions {
        top: 10px;

        right: 10px;
    }


    .product-action-btn,
    .wishlist-btn,
    .quick-view-btn {
        width: 38px;

        height: 38px;
    }


    .product-info {
        gap: 10px;
    }


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



    /* FEATURE */

    .feature-card {
        display: flex;

        flex-direction: column;
    }


    .feature-content {
        padding: 45px 25px;
    }


    .feature-content h2 {
        font-size: 42px;
    }


    .feature-image {
        height: 400px;
    }



    /* BENEFITS */

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



    /* PAGE HERO */

    .shop-hero,
    .category-page-hero,
    .wishlist-hero,
    .cart-page-hero {
        padding:
            130px 20px 50px;
    }


    .shop-hero h1,
    .category-page-hero h1,
    .wishlist-hero h1,
    .cart-page-hero h1 {
        font-size: 55px;

        letter-spacing: -4px;
    }



    /* SHOP */

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


    .shop-filter-area {
        align-items: flex-start;

        flex-direction: column;
    }


    .shop-promo-card {
        padding: 35px;

        align-items: flex-start;

        flex-direction: column;
    }



    /* CATEGORY PAGE */

    .category-page-grid {
        display: flex;

        flex-direction: column;
    }


    .category-page-card {
        height: 420px;
    }


    .category-page-large,
    .category-page-wide {
        grid-row: auto;

        grid-column: auto;
    }


    .category-statement-card {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 40px 25px;
    }



    /* PRODUCT */

    .product-breadcrumb {
        padding:
            120px 20px 10px;
    }


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

        gap: 40px;
    }


    .product-detail-image {
        min-height: 450px;

        padding: 50px;
    }


    .product-detail-content h1 {
        font-size: 42px;
    }


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


    .product-extra-card:first-child {
        grid-column: auto;
    }



    /* MODAL */

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


    .modal-product-image {
        min-height: 350px;
    }


    .modal-product-info {
        padding: 20px;
    }



    /* WISHLIST */

    .wishlist-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .wishlist-heading-right {
        width: 100%;

        justify-content: space-between;
    }


    .wishlist-discover-card {
        grid-template-columns: 1fr;
    }


    .wishlist-discover-image {
        height: 350px;
    }


    .wishlist-discover-content {
        padding: 40px 25px;
    }



    /* CART PAGE */

    .cart-page-item {
        grid-template-columns:
            100px 1fr auto;

        gap: 15px;
    }


    .cart-page-item-image {
        width: 100px;

        height: 125px;

        padding: 12px;
    }


    .order-summary {
        padding: 25px;
    }



    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 15px;
    }

}



/* =========================================================
   41. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .logo {
        font-size: 22px;
    }


    .nav-actions {
        gap: 2px;
    }


    .icon-btn,
    .menu-btn {
        width: 38px;

        height: 38px;
    }


    .navbar
    .nav-actions
    .icon-btn:first-child {
        display: none;
    }



    /* HERO */

    .hero-content h1 {
        font-size: 42px;
    }



    /* PRODUCTS */

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


    .product-image {
        height: 430px;
    }


    .product-image img {
        padding: 40px;
    }



    /* SHOP */

    .category-filters {
        width: 100%;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;
    }


    .shop-filter {
        white-space: nowrap;
    }



    /* CATEGORY */

    .category-page-card {
        height: 380px;
    }


    .category-page-content {
        left: 25px;

        right: 25px;

        bottom: 25px;
    }



    /* PRODUCT */

    .product-detail-image {
        min-height: 400px;

        padding: 40px;
    }


    .product-detail-actions {
        flex-wrap: wrap;
    }


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

        flex-basis: calc(100% - 70px);
    }



    /* CART */

    .cart-drawer {
        padding: 22px;
    }


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

        position: relative;
    }


    .cart-page-item-image {
        width: 85px;

        height: 110px;
    }


    .cart-page-remove {
        position: absolute;

        top: 20px;

        right: 0;
    }


    .cart-page-item-info {
        padding-right: 35px;
    }


    .cart-page-heading {
        align-items: flex-start;

        flex-direction: column;
    }



    /* CHECKOUT MODAL */

    .checkout-modal-content {
        padding:
            50px 25px 35px;
    }

}



/* =========================================================
   42. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}