:root {
    --pink: #d98fa5;
    --pink-dark: #b96782;
    --pink-light: #f8e4e9;
    --dusty: #e7b9c5;
    --cream: #fffaf8;
    --beige: #f4e8df;
    --black: #211b1d;
    --gray: #777174;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(115, 61, 78, .12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

.section {
    padding: 120px 7%;
}

.section-label {
    display: inline-block;
    color: var(--pink-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--pink-dark);
}

.section-heading p {
    color: var(--gray);
    font-size: 17px;
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    z-index: 1000;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1450px;
    height: 75px;
    background: rgba(255, 250, 248, .88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 10px 40px rgba(70, 34, 46, .08);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: .8;
    color: var(--pink-dark);
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
}

.nav-logo small {
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 7px;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: var(--pink-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-actions a,
.nav-actions button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: grid;
    place-items: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--black);
}

.nav-actions a:first-child {
    color: #22c55e;
}

.menu-btn {
    display: none !important;
}


/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    z-index: 999;
    top: 110px;
    right: 5%;
    width: 90%;
    padding: 20px;
    border-radius: 25px;
    background: rgba(255, 250, 248, .97);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    padding: 12px;
    border-bottom: 1px solid #eee;
}


/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.7), transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.4), transparent 30%),
        linear-gradient(135deg, #e8b4c1, #c98096);
}

.hero::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    left: -250px;
    bottom: -400px;
}

.hero::after {
    content: "YB";
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 600px;
    font-weight: 700;
    color: rgba(255,255,255,.08);
    right: -80px;
    bottom: -200px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 15%, rgba(80,30,45,.13));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 150px 20px 100px;
}

.hero-small {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 7px;
    color: white;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 1.15;
    color: white;
    font-weight: 800;
    text-shadow: 0 5px 25px rgba(60,20,30,.15);
}

.hero h1 span {
    display: block;
    color: #fff3f5;
}

.hero-content p {
    color: white;
    font-size: 21px;
    margin: 25px auto 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    min-width: 190px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    transition: .3s;
}

.btn-primary {
    background: white;
    color: var(--pink-dark);
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    color: white;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.hero-bottom div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-bottom strong {
    font-size: 15px;
}

.hero-bottom span {
    font-size: 12px;
    opacity: .8;
}
.whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 16px;

    border-radius: 12px;

    background: #25D366;
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;

    white-space: nowrap;
}

.whatsapp-order-btn i {
    font-size: 18px;
}

.whatsapp-order-btn:hover {
    background: #1ebe5d;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
/* =========================================
   YB ABOUT SECTION
========================================= */

.yb-about {
    position: relative;
    min-height: 900px;
    padding: 140px 7%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(232, 174, 188, .35),
            transparent 30%
        ),
        #fffaf8;
}


/* BACKGROUND BIG YB */

.yb-about-bg-text {
    position: absolute;

    right: -80px;
    top: 30px;

    font-family: "Playfair Display", serif;

    font-size: clamp(300px, 38vw, 650px);

    line-height: .7;

    color: rgba(214, 142, 161, .055);

    pointer-events: none;

    user-select: none;
}


/* CONTAINER */

.yb-about-container {
    position: relative;
    z-index: 3;

    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(400px, .9fr)
        minmax(400px, 1fr);

    gap: 110px;

    align-items: center;
}


/* =========================================
   IMAGE
========================================= */

.yb-about-visual {
    position: relative;

    min-height: 700px;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* IMAGE FRAME */

.yb-image-frame {
    position: relative;

    width: min(100%, 520px);

    height: 700px;

    overflow: hidden;

    border-radius:
        260px 260px 30px 30px;

    transform:
        rotate(-2deg);

    box-shadow:
        0 40px 100px
        rgba(103, 49, 65, .18);

    background: #ead0d6;
}


/* IMAGE */

.yb-about-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform:
        scale(1.08);

    transition:
        transform 1.5s
        cubic-bezier(.2,.7,.2,1);
}


/* HOVER ZOOM */

.yb-image-frame:hover
.yb-about-img {

    transform:
        scale(1.17);

}


/* IMAGE GLOW */

.yb-image-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(232, 156, 176, .5);

    filter: blur(80px);

    left: -100px;
    bottom: -80px;

    z-index: -1;
}


/* OVERLAY */

.yb-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(71, 27, 40, .2)
        );

    pointer-events: none;
}


/* =========================================
   FLOATING CARD
========================================= */

.yb-floating-card {

    position: absolute;

    right: -35px;
    top: 120px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 22px;

    background:
        rgba(255,255,255,.88);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(255,255,255,.8);

    border-radius: 18px;

    box-shadow:
        0 20px 50px
        rgba(83, 36, 51, .13);

    animation:
        ybFloat 4s ease-in-out infinite;
}


.yb-floating-icon {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        #e4a4b5;

    color: white;

    font-size: 20px;
}


.yb-floating-card strong {

    display: block;

    font-size: 14px;

}


.yb-floating-card span {

    display: block;

    margin-top: 2px;

    color: #9a7a83;

    font-size: 10px;

    letter-spacing: 1px;

}


/* FLOAT */

@keyframes ybFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-14px);
    }

}


/* =========================================
   NUMBER
========================================= */

.yb-number {

    position: absolute;

    left: 15px;
    bottom: 80px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 90px;

    color:
        rgba(184, 103, 130, .15);

    line-height: 1;

}


/* =========================================
   ORBITS
========================================= */

.yb-orbit {

    position: absolute;

    border:
        1px solid
        rgba(190, 110, 134, .25);

    border-radius: 50%;

    pointer-events: none;
}


.orbit-1 {

    width: 550px;
    height: 550px;

    right: -120px;
    bottom: -30px;

}


.orbit-2 {

    width: 420px;
    height: 420px;

    right: -55px;
    bottom: 35px;

}


/* =========================================
   CONTENT
========================================= */

.yb-about-content {

    max-width: 680px;

    transform:
        translateY(30px);

    opacity: 0;

    animation:
        ybContentReveal
        1s
        .2s
        forwards;

}


@keyframes ybContentReveal {

    to {

        transform:
            translateY(0);

        opacity: 1;

    }

}


/* LABEL */

.yb-about-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        #b96782;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 20px;

}


.yb-about-label span {

    width: 35px;
    height: 1px;

    background:
        #b96782;

}


/* TITLE */

.yb-about-title {

    margin: 0;

    font-size:
        clamp(38px, 4vw, 67px);

    line-height: 1.15;

    font-weight: 800;

    color:
        #292124;

}


.yb-about-title span {

    display: block;

    margin-top: 8px;

    color:
        #b96782;

}


/* LINE */

.yb-about-line {

    width: 70px;
    height: 3px;

    margin:
        30px 0;

    background:
        #d992a7;

    border-radius: 10px;

}


/* TEXT */

.yb-about-content p {

    color:
        #756b6e;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 18px;

}


.yb-about-intro {

    font-size: 18px !important;

    color:
        #4d4246 !important;

    font-weight: 600;

}


/* =========================================
   FEATURES
========================================= */

.yb-about-features {

    display: flex;

    gap: 20px;

    margin:
        35px 0;

    flex-wrap: wrap;

}


.yb-feature {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 18px;

    background:
        rgba(239, 214, 220, .45);

    border-radius: 15px;

}


.yb-feature-icon {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        #e3a0b2;

    color: white;

}


.yb-feature strong {

    display: block;

    font-size: 13px;

}


.yb-feature small {

    display: block;

    color:
        #8b747b;

    font-size: 10px;

    margin-top: 2px;

}


/* =========================================
   BUTTON
========================================= */

.yb-about-btn {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding:
        15px 22px;

    color: white;

    background:
        #b96782;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 15px 30px
        rgba(185, 103, 130, .25);

    transition:
        .35s ease;

}


.yb-about-btn span {

    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        rgba(255,255,255,.18);

}


.yb-about-btn:hover {

    transform:
        translateY(-5px);

    padding-left: 28px;
    padding-right: 28px;

    box-shadow:
        0 20px 40px
        rgba(185, 103, 130, .35);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .yb-about {

        padding:
            90px 6%;

    }

    .yb-about-container {

        grid-template-columns:
            1fr;

        gap: 70px;

    }

    .yb-about-visual {

        min-height:
            600px;

    }

    .yb-image-frame {

        height:
            600px;

    }

    .yb-about-content {

        max-width:
            800px;

    }

}


@media (max-width: 600px) {

    .yb-about {

        padding:
            70px 20px;

    }

    .yb-about-bg-text {

        font-size:
            250px;

        right:
            -40px;

    }

    .yb-about-visual {

        min-height:
            480px;

    }

    .yb-image-frame {

        width:
            88%;

        height:
            500px;

        border-radius:
            180px 180px 25px 25px;

    }

    .yb-floating-card {

        right:
            0;

        top:
            70px;

        padding:
            11px 14px;

    }

    .yb-floating-icon {

        width:
            38px;

        height:
            38px;

    }

    .yb-number {

        left:
            0;

        bottom:
            30px;

        font-size:
            65px;

    }

    .orbit-1 {

        width:
            380px;

        height:
            380px;

    }

    .orbit-2 {

        width:
            300px;

        height:
            300px;

    }

    .yb-about-title {

        font-size:
            38px;

    }

    .yb-about-content p {

        font-size:
            14px;

    }

    .yb-about-features {

        flex-direction:
            column;

    }

}

/* ================= PRODUCTS ================= */

.products {
    background: #fff;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter {
    border: 1px solid #e8cdd4;
    background: transparent;
    padding: 11px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
}

.filter.active,
.filter:hover {
    background: var(--pink-dark);
    color: white;
    border-color: var(--pink-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    border-radius: 25px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(80,40,50,.08);
    transition: .4s;
    border: 1px solid #f3e5e8;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(80,40,50,.15);
}

.product-image {
    height: 320px;
    background: linear-gradient(145deg, #f8dfe5, #f0c3ce);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    width: 180px;
    height: 240px;
    border-radius: 90px 90px 30px 30px;
    background: linear-gradient(145deg, #fff, #ead5d8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 40px rgba(80,30,40,.15);
}

.product-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    color: var(--pink-dark);
}

.product-placeholder small {
    letter-spacing: 3px;
    font-size: 8px;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px 13px;
    border-radius: 50px;
    background: var(--pink-dark);
    color: white;
    font-size: 11px;
    font-weight: 800;
}

.product-info {
    padding: 22px;
}

.product-category {
    color: var(--pink-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info h3 {
    font-size: 22px;
    margin: 8px 0;
}

.product-info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
    min-height: 48px;
}

.product-bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price strong {
    font-size: 20px;
}

.price strong small {
    font-size: 10px;
}

.price del {
    color: #aaa;
    font-size: 12px;
}

.add-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--pink-dark);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.add-btn:hover {
    transform: rotate(90deg);
}


/* ================= WHY ================= */

.why {
    background: var(--pink-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(255,255,255,.75);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.8);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #f1c2cf;
    color: var(--pink-dark);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 14px;
}


/* ================= QUOTE ================= */

.quote-section {
    min-height: 550px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(170,85,108,.72), rgba(170,85,108,.72)),
        radial-gradient(circle, #f5d8df, #c4788f);
    color: white;
}

.quote-inner {
    max-width: 800px;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    line-height: .5;
}

.quote-inner h2 {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.3;
}

.quote-inner p {
    margin-top: 25px;
    letter-spacing: 5px;
}


/* ================= NEWSLETTER ================= */

.newsletter {
    padding: 110px 20px;
    text-align: center;
    background:
        radial-gradient(circle at center, #fcecef, #f7dfe5);
}

.newsletter-content {
    max-width: 800px;
    margin: auto;
}

.newsletter h2 {
    font-size: clamp(40px, 5vw, 65px);
    margin-bottom: 15px;
}

.newsletter h2 span {
    color: var(--pink-dark);
}

.newsletter p {
    color: var(--gray);
    margin-bottom: 35px;
}

.newsletter form {
    max-width: 650px;
    height: 65px;
    background: white;
    border-radius: 50px;
    padding: 7px;
    display: flex;
    margin: auto;
    box-shadow: var(--shadow);
}

.newsletter input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    padding: 0 25px;
    font-size: 14px;
}

.newsletter button {
    border: none;
    border-radius: 50px;
    background: var(--pink-dark);
    color: white;
    padding: 0 30px;
    cursor: pointer;
    font-weight: 700;
}

#subscribeMessage {
    margin-top: 15px;
    color: var(--pink-dark);
}


/* ================= FOOTER ================= */

footer {
    background: #241c1f;
    color: white;
    text-align: center;
    padding: 60px 20px 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.footer-logo strong {
    font-family: 'Playfair Display', serif;
    color: #e8a6b8;
    font-size: 55px;
}

.footer-logo span {
    font-size: 9px;
    letter-spacing: 5px;
    color: #aaa;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #e8a6b8;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.social a {
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.social a:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
}

.copyright {
    color: #888;
    font-size: 12px;
}


/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;
    z-index: 2000;
    bottom: 25px;
    left: 25px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37,211,102,.35);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}


/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        gap: 50px;
    }

}

@media (max-width: 800px) {

    .navbar {
        width: 94%;
        height: 65px;
        padding: 0 18px;
    }

    .navbar nav {
        display: none;
    }

    .menu-btn {
        display: grid !important;
    }

    .nav-logo span {
        font-size: 25px;
    }

    .hero-content {
        padding-top: 130px;
    }

    .hero-bottom {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

}

@media (max-width: 600px) {

    .section {
        padding: 80px 5%;
    }

    .products-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 90%;
    }

    .newsletter form {
        height: auto;
        padding: 7px;
        flex-direction: column;
        gap: 7px;
        border-radius: 25px;
    }

    .newsletter input {
        height: 55px;
    }

    .newsletter button {
        height: 50px;
    }

    .whatsapp {
        width: 55px;
        height: 55px;
        bottom: 18px;
        left: 18px;
    }

}
/* =====================================================
   CART
===================================================== */

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;

    min-width: 20px;
    height: 20px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #bd6d86;
    color: #fff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
}

.cart-button {
    position: relative;
}


/* =====================================================
   MODAL
===================================================== */

.modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}


.modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(40, 20, 27, .55);

    backdrop-filter: blur(8px);
}


.modal-box {
    position: relative;

    width: 100%;
    max-width: 600px;

    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 28px;

    padding: 30px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.2);

    transform:
        translateY(30px)
        scale(.97);

    transition: .3s ease;

    z-index: 2;
}

.modal.show .modal-box {
    transform:
        translateY(0)
        scale(1);
}


.modal-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 25px;
}

.modal-header h2 {
    margin: 5px 0 0;
}


.modal-close {
    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: #f8e8ed;

    color: #bd6d86;

    cursor: pointer;

    font-size: 18px;
}


/* =====================================================
   CART ITEMS
===================================================== */

.cart-items {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.cart-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px;

    background: #fcf5f7;

    border-radius: 18px;
}


.cart-item-image {
    width: 75px;
    height: 75px;

    flex-shrink: 0;
}


.cart-item-image img,
.cart-placeholder {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 15px;
}


.cart-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #f4d7df;

    color: #bd6d86;

    font-family: Georgia, serif;

    font-size: 25px;
}


.cart-item-info {
    flex: 1;
}


.cart-item-info h4 {
    margin: 0 0 5px;

    font-size: 15px;
}


.cart-item-info strong {
    color: #bd6d86;

    font-size: 14px;
}


.quantity-control {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;
}


.quantity-control button {
    width: 28px;
    height: 28px;

    border: 0;

    border-radius: 50%;

    background: #bd6d86;

    color: #fff;

    cursor: pointer;
}


.quantity-control span {
    min-width: 20px;

    text-align: center;

    font-weight: 700;
}


.remove-cart-item {
    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 10px;

    background: #fff;

    color: #c0395b;

    cursor: pointer;
}


/* =====================================================
   EMPTY CART
===================================================== */

.empty-cart {
    text-align: center;

    padding: 50px 20px;

    color: #777;
}


.empty-cart i {
    font-size: 50px;

    color: #bd6d86;

    margin-bottom: 15px;
}


.empty-cart h3 {
    margin: 0 0 8px;

    color: #292124;
}


/* =====================================================
   CART FOOTER
===================================================== */

.cart-footer {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #eee;
}


.cart-total-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;

    font-size: 16px;
}


.cart-total-row strong {
    color: #bd6d86;

    font-size: 22px;
}


.checkout-btn,
.checkout-submit {
    width: 100%;

    border: 0;

    padding: 15px 20px;

    border-radius: 14px;

    background: #bd6d86;

    color: #fff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}


.checkout-btn:hover,
.checkout-submit:hover {
    background: #a95670;

    transform: translateY(-2px);
}


.checkout-btn:disabled {
    opacity: .5;

    cursor: not-allowed;

    transform: none;
}


/* =====================================================
   CHECKOUT
===================================================== */

.checkout-form {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.form-group label {
    font-weight: 700;

    font-size: 14px;
}


.form-group label small {
    color: #999;

    font-weight: 400;
}


.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid #ead6dc;

    border-radius: 13px;

    padding: 14px;

    outline: none;

    font-family: inherit;

    background: #fff;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #bd6d86;

    box-shadow:
        0 0 0 3px rgba(189,109,134,.1);
}


.form-group textarea {
    min-height: 100px;

    resize: vertical;
}


/* =====================================================
   SUCCESS
===================================================== */

.success-box {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 450px;

    background: #fff;

    border-radius: 28px;

    padding: 40px 30px;

    text-align: center;

    box-shadow:
        0 30px 100px rgba(0,0,0,.2);
}


.success-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #f6dce4;

    color: #bd6d86;

    font-size: 30px;
}


.success-box h2 {
    margin: 10px 0;
}


.success-box p {
    color: #777;

    line-height: 1.8;
}


.order-number {
    padding: 15px;

    margin: 20px 0;

    border-radius: 15px;

    background: #fcf2f5;

    color: #777;
}


.order-number strong {
    display: block;

    margin-top: 5px;

    color: #bd6d86;

    font-size: 22px;
}


/* =====================================================
   TOAST
===================================================== */

.cart-toast {
    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 10000;

    padding: 13px 20px;

    border-radius: 14px;

    background: #292124;

    color: #fff;

    font-size: 14px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .3s;
}


.cart-toast.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


body.cart-open {
    overflow: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .modal {
        padding: 10px;
    }

    .modal-box {
        padding: 22px;

        border-radius: 22px;

        max-height: 94vh;
    }

    .cart-item {
        gap: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-info h4 {
        font-size: 13px;
    }

    .cart-toast {
        left: 15px;
        right: 15px;

        bottom: 15px;

        text-align: center;
    }

}