
/* ==========================================================================
   SHEKOLAZA
   ROOT + GLOBAL + HEADER + FOOTER + INDEX
   ========================================================================== */


/* ==========================================================================
   01. ROOT / DESIGN SYSTEM
   ========================================================================== */

:root {

    /* Brand */
    --brand-red: #d71920;
    --brand-red-dark: #a90f15;
    --brand-red-light: #fff1f2;

    --brand-black: #111111;
    --brand-black-soft: #1c1c1c;

    --brand-yellow: #ffc928;
    --brand-yellow-dark: #e5ad00;
    --brand-yellow-light: #fff8dc;

    /* Neutral */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e7e7e7;
    --gray-300: #d5d5d5;
    --gray-400: #a8a8a8;
    --gray-500: #777777;
    --gray-600: #555555;
    --gray-700: #333333;
    --gray-800: #202020;

    /* Semantic */
    --success: #198754;
    --danger: #dc3545;
    --warning: #f0ad00;

    /* Typography */
    --font-main: "Cairo", sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.35rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.25rem;
    --fs-4xl: 3.25rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Layout */
    --container-width: 1240px;
    --page-padding: 1.25rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm:
        0 4px 14px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 10px 30px rgba(0, 0, 0, 0.09);

    --shadow-lg:
        0 20px 50px rgba(0, 0, 0, 0.14);

    /* Motion */
    --transition-fast:
        160ms ease;

    --transition:
        240ms ease;

    --transition-slow:
        380ms ease;

    /* Borders */
    --border:
        1px solid var(--gray-200);

    /* Z Index */
    --z-header: 100;
    --z-overlay: 500;
}


/* ==========================================================================
   02. RESET / GLOBAL
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    min-height: 100vh;

    background:
        var(--white);

    color:
        var(--brand-black);

    font-family:
        var(--font-main);

    font-size:
        var(--fs-md);

    line-height:
        1.7;

    -webkit-font-smoothing:
        antialiased;
}


body,
button,
input,
textarea,
select {
    font-family:
        var(--font-main);
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font-size: inherit;
}


button {
    border: 0;

    cursor: pointer;
}


button:disabled {
    cursor: not-allowed;

    opacity: 0.55;
}


input,
textarea,
select {
    outline: none;
}


h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


.container {
    width:
        min(
            100% - (var(--page-padding) * 2),
            var(--container-width)
        );

    margin-inline:
        auto;
}


/* ==========================================================================
   03. GLOBAL BUTTON SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0.7rem 1.25rem;

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

    font-weight:
        800;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}


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


.btn.primary {
    background:
        var(--brand-red);

    color:
        var(--white);

    box-shadow:
        0 8px 20px rgba(215, 25, 32, 0.22);
}


.btn.primary:hover {
    background:
        var(--brand-red-dark);

    box-shadow:
        0 12px 28px rgba(215, 25, 32, 0.28);
}


.btn.light {
    background:
        var(--white);

    color:
        var(--brand-black);

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

    box-shadow:
        var(--shadow-sm);
}


.btn.light:hover {
    border-color:
        var(--gray-300);

    box-shadow:
        var(--shadow-md);
}


.btn.secondary {
    background:
        var(--brand-black);

    color:
        var(--white);
}


/* ==========================================================================
   04. GLOBAL EYEBROW
   ========================================================================== */

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 0.35rem;

    margin-bottom:
        var(--space-3);

    color:
        var(--brand-red);

    font-size:
        var(--fs-sm);

    font-weight:
        800;
}


.eyebrow::before {
    content: "";

    width: 22px;

    height: 3px;

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

    background:
        var(--brand-yellow);
}


/* ==========================================================================
   05. GLOBAL SECTION HEADING
   ========================================================================== */

.heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: var(--space-6);

    margin-bottom:
        var(--space-8);
}


.heading h2 {
    margin:
        0;

    color:
        var(--brand-black);

    font-size:
        clamp(
            1.7rem,
            4vw,
            2.5rem
        );

    font-weight:
        900;

    line-height:
        1.25;
}


/* ==========================================================================
   06. ANNOUNCEMENT
   ========================================================================== */

.announcement {
    position: relative;

    z-index:
        var(--z-header);

    padding:
        0.55rem 1rem;

    background:
        var(--brand-black);

    color:
        var(--white);

    text-align:
        center;

    font-size:
        var(--fs-sm);

    font-weight:
        700;
}


.announcement::after {
    content: "";

    display: block;

    position: absolute;

    inset-inline: 0;

    bottom: 0;

    height: 2px;

    background:
        var(--brand-yellow);
}


/* ==========================================================================
   07. HEADER
   ========================================================================== */

header {
    position: sticky;

    top: 0;

    z-index:
        var(--z-header);

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

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

    backdrop-filter:
        blur(12px);
}


header .container.nav {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-6);

    min-height: 76px;
}


/* Logo */

header .container.nav .logo {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;
}


header .container.nav .logo img {
    width: 145px;

    max-height: 58px;

    object-fit: contain;
}


/* Navigation */

header .container.nav nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.35rem;

    margin-inline:
        auto;
}


header .container.nav nav a {
    position: relative;

    padding:
        0.55rem 0.85rem;

    color:
        var(--gray-600);

    font-size:
        var(--fs-sm);

    font-weight:
        700;

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

    transition:
        color var(--transition),
        background var(--transition);
}


header .container.nav nav a::after {
    content: "";

    position: absolute;

    right: 50%;

    bottom: 3px;

    width: 0;

    height: 2px;

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

    background:
        var(--brand-red);

    transform:
        translateX(50%);

    transition:
        width var(--transition);
}


header .container.nav nav a:hover {
    color:
        var(--brand-red);

    background:
        var(--brand-red-light);
}


header .container.nav nav a:hover::after {
    width: 60%;
}


/* Cart */

header .container.nav .cart {
    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    padding:
        0.55rem 0.85rem;

    background:
        var(--brand-black);

    color:
        var(--white);

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

    font-size:
        var(--fs-sm);

    font-weight:
        800;

    transition:
        background var(--transition),
        transform var(--transition);
}


header .container.nav .cart:hover {
    background:
        var(--brand-red);

    transform:
        translateY(-1px);
}


header .container.nav .cart b {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 24px;

    height: 24px;

    padding-inline:
        0.35rem;

    background:
        var(--brand-yellow);

    color:
        var(--brand-black);

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

    font-size:
        var(--fs-xs);

    line-height:
        1;
}


/* ==========================================================================
   08. INDEX — HERO
   ========================================================================== */

main .hero {
    position: relative;

    overflow: hidden;

    padding:
        clamp(4rem, 8vw, 7rem) 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 201, 40, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fff 0%,
            #fff7f7 55%,
            #fff1d0 100%
        );
}


main .hero::before {
    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    top: -180px;

    right: -130px;

    background:
        var(--brand-red);

    opacity:
        0.06;

    border-radius:
        50%;
}


main .hero .container.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.9fr);

    align-items: center;

    gap:
        clamp(2rem, 6vw, 6rem);
}


main .hero .container.hero-grid .hero-content {
    position: relative;

    z-index: 1;
}


main .hero .container.hero-grid .hero-content h1 {
    max-width: 720px;

    margin:
        0 0 var(--space-5);

    color:
        var(--brand-black);

    font-size:
        clamp(
            2.25rem,
            5vw,
            4.25rem
        );

    font-weight:
        900;

    line-height:
        1.15;

    letter-spacing:
        -1px;
}


main .hero .container.hero-grid .hero-content h1::selection {
    background:
        var(--brand-yellow);

    color:
        var(--brand-black);
}


main .hero .container.hero-grid .hero-content > p {
    max-width: 650px;

    margin-bottom:
        var(--space-8);

    color:
        var(--gray-600);

    font-size:
        clamp(
            1rem,
            2vw,
            1.15rem
        );

    line-height:
        1.9;
}


main .hero .container.hero-grid .hero-content .actions {
    display: flex;

    flex-wrap: wrap;

    gap:
        var(--space-3);

    margin-bottom:
        var(--space-8);
}


main .hero .container.hero-grid .hero-content .trust {
    display: flex;

    flex-wrap: wrap;

    gap:
        0.75rem;
}


main .hero .container.hero-grid .hero-content .trust > div {
    display: flex;

    align-items: center;

    gap:
        0.5rem;

    padding:
        0.55rem 0.8rem;

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

    border:
        1px solid rgba(0, 0, 0, 0.06);

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

    box-shadow:
        var(--shadow-sm);
}

main .hero .container.hero-grid .hero-card .big-emoji{
    height: 100%;
    width: 100%;
}
main .hero .container.hero-grid .hero-content .trust > div b {
    font-size:
        1.05rem;
}


main .hero .container.hero-grid .hero-content .trust > div small {
    color:
        var(--gray-700);

    font-weight:
        700;
}


/* Hero Card */

main .hero .container.hero-grid .hero-card {
    position: relative;

    min-height:
        390px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding:
        var(--space-8);

    overflow: hidden;

    background:
        var(--brand-black);

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

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

    box-shadow:
        var(--shadow-lg);

    isolation: isolate;
}


main .hero .container.hero-grid .hero-card::before {
    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    top: -90px;

    left: -100px;

    background:
        var(--brand-red);

    border-radius:
        50%;

    opacity:
        0.85;

    z-index:
        -1;
}


main .hero .container.hero-grid .hero-card::after {
    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    right: -100px;

    bottom: -100px;

    background:
        var(--brand-yellow);

    border-radius:
        50%;

    opacity:
        0.85;

    z-index:
        -1;
}


main .hero .container.hero-grid .hero-card .badge {
    position: absolute;

    top: 20px;

    right: 20px;

    padding:
        0.45rem 0.8rem;

    background:
        var(--brand-yellow);

    color:
        var(--brand-black);

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

    font-size:
        var(--fs-sm);

    font-weight:
        900;
        z-index: 2;
}


main .hero .container.hero-grid .hero-card .big-emoji {
    display: grid;

    place-items: center;

    width: 100%;

    height: 100%;

    margin-bottom:
        var(--space-6);

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

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

    border-radius:
        50%;

    font-size:
        7rem;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3);
}


main .hero .container.hero-grid .hero-card .hero-info {
       display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 20;
    position: absolute;
    bottom: 10px;
    background: #bf2a30;
    width: 100%;
    border-radius: 30px;
}


main .hero .container.hero-grid .hero-card .hero-info strong {
    color:
        var(--brand-yellow);

    font-size:
        1.7rem;

    font-weight:
        900;
}


main .hero .container.hero-grid .hero-card .hero-info span {
    color:
        rgba(255, 255, 255, 0.8);

    font-size:
        var(--fs-sm);

    font-weight:
        600;
}


/* ==========================================================================
   09. INDEX — BENEFITS
   ========================================================================== */

main .benefits {
    position: relative;

    z-index: 2;

    margin-top:
        -30px;
}


main .benefits .container.benefits-grid {
    display: grid;

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

    gap:
        1px;

    overflow: hidden;

    background:
        var(--gray-200);

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

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

    box-shadow:
        var(--shadow-md);
}


main .benefits .container.benefits-grid > div {
    display: flex;

    align-items: center;

    gap:
        0.8rem;

    min-height:
        105px;

    padding:
        1.2rem;

    background:
        var(--white);

    transition:
        background var(--transition);
}


main .benefits .container.benefits-grid > div:hover {
    background:
        var(--brand-yellow-light);
}


main .benefits .container.benefits-grid > div:first-child {
    border-radius:
        0 var(--radius-lg) var(--radius-lg) 0;
}


main .benefits .container.benefits-grid > div:last-child {
    border-radius:
        var(--radius-lg) 0 0 var(--radius-lg);
}


main .benefits .container.benefits-grid > div > span {
    display: flex;

    flex-direction: column;

    gap:
        0.05rem;
}


main .benefits .container.benefits-grid > div > span b {
    color:
        var(--brand-black);

    font-size:
        var(--fs-sm);

    font-weight:
        900;
}


main .benefits .container.benefits-grid > div > span small {
    color:
        var(--gray-500);

    font-size:
        var(--fs-xs);
}


/* ==========================================================================
   10. INDEX — PRODUCTS SECTION
   ========================================================================== */

main .products {
    padding:
        clamp(4rem, 8vw, 7rem) 0;
}


main .products .container .heading {
    align-items:
        flex-end;
}


main .products .container .heading .search {
    position: relative;

    width:
        min(100%, 320px);
}


main .products .container .heading .search input {
    width: 100%;

    height: 48px;

    padding:
        0 1rem 0 3rem;

    background:
        var(--gray-50);

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

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

    color:
        var(--brand-black);

    transition:
        border var(--transition),
        box-shadow var(--transition);
}


main .products .container .heading .search input:focus {
    border-color:
        var(--brand-red);

    background:
        var(--white);

    box-shadow:
        0 0 0 4px rgba(215, 25, 32, 0.08);
}


main .products .container .heading .search button {
    position: absolute;

    left: 10px;

    top: 50%;

    width: 30px;

    height: 30px;

    transform:
        translateY(-50%);

    background:
        transparent;

    color:
        var(--gray-500);

    font-size:
        1.4rem;

    line-height:
        1;
}


main .products .container .heading .search button:hover {
    color:
        var(--brand-red);
}


/* Tabs */

main .products .container .tabs {
    display: flex;

    flex-wrap: wrap;

    gap:
        0.6rem;

    margin-bottom:
        var(--space-8);
}


main .products .container .tabs .tab {
    min-height: 42px;

    padding:
        0.5rem 1rem;

    background:
        var(--gray-100);

    color:
        var(--gray-600);

    border:
        1px solid transparent;

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

    font-size:
        var(--fs-sm);

    font-weight:
        800;

    transition:
        background var(--transition),
        color var(--transition),
        border var(--transition),
        transform var(--transition);
}


main .products .container .tabs .tab:hover {
    color:
        var(--brand-red);

    background:
        var(--brand-red-light);
}


main .products .container .tabs .tab.active {
    background:
        var(--brand-red);

    color:
        var(--white);

    box-shadow:
        0 7px 18px rgba(215, 25, 32, 0.2);
}


main .products .container .tabs .tab.offers-tab {
    background:
        var(--brand-yellow);

    color:
        var(--brand-black);
}


main .products .container .tabs .tab.offers-tab.active {
    background:
        var(--brand-black);

    color:
        var(--brand-yellow);
}


/* Product Grid */

main .products .container #productsGrid.grid {
    display: grid;

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

    gap:
        1.4rem;
}


/* Product Card */

main .products .container #productsGrid.grid .card.product-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background:
        var(--white);

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

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

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

    animation:
        product-card-in 0.35s ease both;
}


main .products .container #productsGrid.grid .card.product-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(215, 25, 32, 0.18);

    box-shadow:
        var(--shadow-lg);
}


/* Product Image */

main .products .container #productsGrid.grid .card.product-card .prod-img {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 245px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fff7f7,
            #fff8dc
        );
}


main .products .container #productsGrid.grid .card.product-card .prod-img::after {
    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background:
        rgba(255, 201, 40, 0.18);

    bottom: -60px;

    left: -30px;

    pointer-events: none;
}


main .products .container #productsGrid.grid .card.product-card .prod-img img {
    width: 90%;

    height: 90%;

    object-fit: cover;

    transition:
        transform var(--transition-slow);
}


main .products .container #productsGrid.grid .card.product-card:hover .prod-img img {
    transform:
        scale(1.06);
}


main .products .container #productsGrid.grid .card.product-card .prod-img > span {
    position: relative;

    z-index: 1;

    display: grid;

    place-items: center;

    width: 130px;

    height: 130px;

    background:
        var(--white);

    border-radius:
        50%;

    font-size:
        4.5rem;

    box-shadow:
        var(--shadow-md);
}


/* Product Info */

main .products .container #productsGrid.grid .card.product-card .info {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding:
        1.15rem;
}


main .products .container #productsGrid.grid .card.product-card .info .product-category {
    align-self:
        flex-start;

    margin-bottom:
        0.35rem;

    padding:
        0.2rem 0.55rem;

    background:
        var(--brand-red-light);

    color:
        var(--brand-red);

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

    font-size:
        0.7rem;

    font-weight:
        800;
}


main .products .container #productsGrid.grid .card.product-card .info h3 {
    margin:
        0 0 0.35rem;

    font-size:
        1.08rem;

    font-weight:
        900;

    line-height:
        1.45;
}


main .products .container #productsGrid.grid .card.product-card .info h3 a {
    transition:
        color var(--transition);
}


main .products .container #productsGrid.grid .card.product-card .info h3 a:hover {
    color:
        var(--brand-red);
}


main .products .container #productsGrid.grid .card.product-card .info > p {
    display:
        -webkit-box;

    overflow:
        hidden;

    margin:
        0 0 0.9rem;

    color:
        var(--gray-500);

    font-size:
        var(--fs-xs);

    line-height:
        1.7;

    -webkit-line-clamp:
        2;

    -webkit-box-orient:
        vertical;
}


main .products .container #productsGrid.grid .card.product-card .info .price {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap:
        0.75rem;

    margin-top:
        auto;

    padding-top:
        0.8rem;

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


main .products .container #productsGrid.grid .card.product-card .info .price > div {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap:
        0.45rem;
}


main .products .container #productsGrid.grid .card.product-card .info .price b {
    color:
        var(--brand-red);

    font-size:
        1.2rem;

    font-weight:
        900;
}


main .products .container #productsGrid.grid .card.product-card .info .price del {
    color:
        var(--gray-400);

    font-size:
        var(--fs-xs);
}


main .products .container #productsGrid.grid .card.product-card .info .price .add {
    display: grid;

    flex-shrink: 0;

    place-items: center;

    width: 42px;

    height: 42px;

    background:
        var(--brand-black);

    color:
        var(--white);

    border-radius:
        12px;

    font-size:
        1.6rem;

    font-weight:
        600;

    line-height:
        1;

    transition:
        background var(--transition),
        transform var(--transition);
}


main .products .container #productsGrid.grid .card.product-card .info .price .add:hover {
    background:
        var(--brand-red);

    transform:
        scale(1.06);
}


/* Hidden Product */

main .products .container #productsGrid.grid .card.product-card.is-hidden {
    display:
        none;
}


/* Empty Products */

main .products .container #productsGrid.grid .empty-products {
    grid-column:
        1 / -1;

    padding:
        4rem 1rem;

    text-align:
        center;

    background:
        var(--gray-50);

    border:
        1px dashed var(--gray-300);

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


main .products .container #productsGrid.grid .empty-products > span {
    display: block;

    margin-bottom:
        0.5rem;

    font-size:
        3rem;
}


main .products .container #productsGrid.grid .empty-products h3 {
    margin-bottom:
        0.3rem;

    font-size:
        1.2rem;

    font-weight:
        900;
}


main .products .container #productsGrid.grid .empty-products p {
    margin:
        0;

    color:
        var(--gray-500);

    font-size:
        var(--fs-sm);
}


/* ==========================================================================
   11. INDEX — OFFERS
   ========================================================================== */

main .offers-section {
    position: relative;

    overflow: hidden;

    padding:
        clamp(4rem, 8vw, 6rem) 0;

    background:
        var(--brand-black);

    color:
        var(--white);
}


main .offers-section::before {
    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    top: -240px;

    left: -150px;

    background:
        var(--brand-red);

    border-radius:
        50%;

    opacity:
        0.28;
}


main .offers-section .container {
    position: relative;

    z-index: 1;
}


main .offers-section .container .heading h2 {
    color:
        var(--white);
}


main .offers-section .container .heading .eyebrow {
    color:
        var(--brand-yellow);
}


/* Offers Grid */

main .offers-section .container .offers-grid {
    display: grid;

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

    gap:
        1.25rem;
}


/* Offer Card */

main .offers-section .container .offers-grid .offer-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height:
        350px;

    overflow: hidden;

    padding:
        1.5rem;

    background:
        linear-gradient(
            145deg,
            #242424,
            #151515
        );

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

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

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.25);

    transition:
        transform var(--transition),
        border-color var(--transition);
}


main .offers-section .container .offers-grid .offer-card::before {
    content: "";

    position: absolute;

    width: 170px;

    height: 170px;

    top: -80px;

    left: -60px;

    background:
        var(--brand-red);

    border-radius:
        50%;

    opacity:
        0.8;
}


main .offers-section .container .offers-grid .offer-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(255, 201, 40, 0.4);
}


/* Badge */

main .offers-section .container .offers-grid .offer-card .offer-badge {
    position: absolute;

    top: 16px;

    right: 16px;

    z-index: 2;

    padding:
        0.35rem 0.7rem;

    background:
        var(--brand-yellow);

    color:
        var(--brand-black);

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

    font-size:
        var(--fs-xs);

    font-weight:
        900;
}


/* Icon */

main .offers-section .container .offers-grid .offer-card .offer-icon {
    position: relative;

    z-index: 1;

    display: grid;

    place-items: center;

    width: 80px;

    height: 80px;

    margin-bottom:
        1.2rem;

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

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

    border-radius:
        20px;

    font-size:
        2.5rem;
}


/* Offer Content */

main .offers-section .container .offers-grid .offer-card .offer-content {
    position: relative;

    z-index: 1;

    display: flex;

    flex: 1;

    flex-direction: column;
}


main .offers-section .container .offers-grid .offer-card .offer-content h3 {
    margin:
        0 0 0.5rem;

    font-size:
        1.35rem;

    font-weight:
        900;
}


main .offers-section .container .offers-grid .offer-card .offer-content > p {
    margin:
        0 0 1rem;

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

    font-size:
        var(--fs-sm);
}


main .offers-section .container .offers-grid .offer-card .offer-content .offer-rule {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:
        0.45rem;

    margin-bottom:
        1rem;

    padding:
        0.75rem;

    background:
        rgba(255, 201, 40, 0.08);

    border:
        1px solid rgba(255, 201, 40, 0.18);

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


main .offers-section .container .offers-grid .offer-card .offer-content .offer-rule strong {
    color:
        var(--brand-yellow);

    font-weight:
        900;
}


main .offers-section .container .offers-grid .offer-card .offer-content .offer-rule span {
    color:
        rgba(255, 255, 255, 0.7);

    font-size:
        var(--fs-sm);
}


main .offers-section .container .offers-grid .offer-card .offer-content .offer-scope {
    margin-bottom:
        1rem;

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

    font-size:
        var(--fs-xs);
}


main .offers-section .container .offers-grid .offer-card .offer-content .offer-btn {
    width: 100%;

    margin-top:
        auto;
}


/* Empty Offers */

main .offers-section .container .empty-offers {
    padding:
        4rem 1rem;

    text-align:
        center;

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

    border:
        1px dashed rgba(255, 255, 255, 0.14);

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


main .offers-section .container .empty-offers > span {
    display: block;

    margin-bottom:
        0.5rem;

    font-size:
        3rem;
}


main .offers-section .container .empty-offers h3 {
    margin-bottom:
        0.35rem;

    font-weight:
        900;
}


main .offers-section .container .empty-offers p {
    margin:
        0;

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


/* ==========================================================================
   12. INDEX — HOW TO ORDER
   ========================================================================== */

main .how {
    padding:
        clamp(4rem, 8vw, 6rem) 0;

    background:
        var(--gray-50);
}


main .how .container .center {
    margin-bottom:
        var(--space-10);

    text-align:
        center;
}


main .how .container .center .eyebrow {
    justify-content:
        center;
}


main .how .container .center h2 {
    margin:
        0;

    font-size:
        clamp(
            1.7rem,
            4vw,
            2.5rem
        );

    font-weight:
        900;
}


main .how .container .steps {
    display: grid;

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

    gap:
        1.25rem;
}


main .how .container .steps > div {
    position: relative;

    padding:
        2rem 1.5rem;

    background:
        var(--white);

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

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

    text-align:
        center;

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


main .how .container .steps > div:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow-md);
}


main .how .container .steps > div > span {
    display: grid;

    place-items: center;

    width: 58px;

    height: 58px;

    margin:
        0 auto 1rem;

    background:
        var(--brand-red);

    color:
        var(--white);

    border:
        5px solid var(--brand-red-light);

    border-radius:
        50%;

    font-size:
        1.25rem;

    font-weight:
        900;

    box-shadow:
        0 8px 20px rgba(215, 25, 32, 0.18);
}


main .how .container .steps > div:nth-child(2) > span {
    background:
        var(--brand-yellow);

    color:
        var(--brand-black);

    border-color:
        var(--brand-yellow-light);

    box-shadow:
        0 8px 20px rgba(255, 201, 40, 0.22);
}


main .how .container .steps > div:nth-child(3) > span {
    background:
        var(--brand-black);

    border-color:
        var(--gray-200);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.14);
}


main .how .container .steps > div h3 {
    margin:
        0 0 0.4rem;

    font-size:
        1.1rem;

    font-weight:
        900;
}


main .how .container .steps > div p {
    margin:
        0;

    color:
        var(--gray-500);

    font-size:
        var(--fs-sm);

    line-height:
        1.8;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */

footer {
    padding:
        1.5rem 0;

    background:
        var(--brand-black);

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

    text-align:
        center;

    font-size:
        var(--fs-sm);

    border-top:
        3px solid var(--brand-red);
}


footer .container {
    font-weight:
        600;
}


footer .container::first-letter {
    color:
        var(--brand-yellow);
}


/* ==========================================================================
   14. ANIMATIONS
   ========================================================================== */

@keyframes product-card-in {

    from {
        opacity: 0;

        transform:
            translateY(12px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* ==========================================================================
   15. RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 1050px) {

    main .hero .container.hero-grid {
        grid-template-columns:
            1fr 0.8fr;

        gap:
            2.5rem;
    }


    main .hero .container.hero-grid .hero-card {
        min-height:
            340px;
            position: relative;
    }


    main .hero .container.hero-grid .hero-card .big-emoji {
        width: 100%;
        height: 100%;
        font-size: 5.5rem;
        position: absolute;
        z-index: 0;
    }


    main .products .container #productsGrid.grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    main .offers-section .container .offers-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


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


    main .benefits .container.benefits-grid > div:first-child,
    main .benefits .container.benefits-grid > div:last-child {
        border-radius:
            0;
    }
}


/* ==========================================================================
   16. RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 760px) {

    :root {
        --page-padding: 1rem;
    }


    header .container.nav {
        min-height:
            68px;

        gap:
            0.6rem;
    }


    header .container.nav .logo img {
        width:
            115px;
    }


    header .container.nav nav {
        display:
            none;
    }


    header .container.nav .cart {
        padding:
            0.45rem 0.7rem;

        font-size:
            var(--fs-xs);
    }


    main .hero {
        padding:
            3.5rem 0 4rem;
    }


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

        gap:
            2rem;
    }


    main .hero .container.hero-grid .hero-content {
        text-align:
            center;
    }


    main .hero .container.hero-grid .hero-content .eyebrow {
        justify-content:
            center;
    }


    main .hero .container.hero-grid .hero-content h1 {
        font-size:
            clamp(
                2rem,
                10vw,
                3rem
            );

        letter-spacing:
            -0.5px;
    }


    main .hero .container.hero-grid .hero-content > p {
        margin-inline:
            auto;
    }


    main .hero .container.hero-grid .hero-content .actions {
        justify-content:
            center;
    }


    main .hero .container.hero-grid .hero-content .trust {
        justify-content:
            center;
    }


    main .hero .container.hero-grid .hero-content .trust > div {
        flex:
            1 1 auto;

        justify-content:
            center;
    }


    main .hero .container.hero-grid .hero-card {
        min-height:
            310px;
    }


    main .hero .container.hero-grid .hero-card .big-emoji {
        width:
            50%;

        height:
            50%;

        font-size:
            5rem;
    }


    main .benefits {
        margin-top:
            -20px;
    }


    main .benefits .container.benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);

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


    main .benefits .container.benefits-grid > div {
        min-height:
            90px;

        padding:
            0.9rem;
    }


    main .products {
        padding:
            4rem 0;
    }


    main .products .container .heading {
        align-items:
            stretch;

        flex-direction:
            column;
    }


    main .products .container .heading .search {
        width:
            100%;
    }


    main .products .container #productsGrid.grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            0.8rem;
    }


    main .products .container #productsGrid.grid .card.product-card {
        border-radius:
            var(--radius-md);
    }


    main .products .container #productsGrid.grid .card.product-card .prod-img {
        height:
            175px;
    }


    main .products .container #productsGrid.grid .card.product-card .prod-img > span {
        width:
            90px;

        height:
            90px;

        font-size:
            3rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info {
        padding:
            0.85rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info h3 {
        font-size:
            0.95rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info > p {
        font-size:
            0.7rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .price b {
        font-size:
            1rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .price .add {
        width:
            36px;

        height:
            36px;

        border-radius:
            10px;
    }


    main .offers-section {
        padding:
            4rem 0;
    }


    main .offers-section .container .offers-grid {
        grid-template-columns:
            1fr;
    }


    main .how .container .steps {
        grid-template-columns:
            1fr;
    }


    main .how .container .steps > div {
        padding:
            1.5rem;
    }
}


/* ==========================================================================
   17. RESPONSIVE — SMALL PHONES
   ========================================================================== */

@media (max-width: 430px) {

    header .container.nav .logo img {
        width:
            105px;
    }


    header .container.nav .cart {
        gap:
            0.25rem;

        padding:
            0.4rem 0.55rem;
    }


    main .hero .container.hero-grid .hero-content .actions {
        flex-direction:
            column;
    }


    main .hero .container.hero-grid .hero-content .actions .btn {
        width:
            100%;
    }


    main .hero .container.hero-grid .hero-content .trust {
        display:
            grid;

        grid-template-columns:
            1fr;

        width:
            100%;
    }


    main .products .container #productsGrid.grid {
        grid-template-columns:
            1fr 1fr;
    }


    main .products .container #productsGrid.grid .card.product-card .prod-img {
        height:
            145px;
    }


    main .products .container #productsGrid.grid .card.product-card .info {
        padding:
            0.7rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .product-category {
        font-size:
            0.62rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info h3 {
        font-size:
            0.85rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .price {
        gap:
            0.3rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .price > div {
        gap:
            0.2rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .price b {
        font-size:
            0.85rem;
    }


    main .products .container #productsGrid.grid .card.product-card .info .price .add {
        width:
            34px;

        height:
            34px;

        font-size:
            1.3rem;
    }


    main .benefits .container.benefits-grid > div {
        gap:
            0.5rem;

        font-size:
            0.9rem;
    }
}

/* ============================================================
   SHEKOLAZA — PRODUCT PAGE
   Scoped / Unique Product Details Design
   يعتمد على Root Styles الموجودة في style.css
   ============================================================ */


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

.product-page {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
}

.product-page::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.06);
    pointer-events: none;
}

.product-page::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.07);
    pointer-events: none;
}


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

.product-page .container {
    position: relative;
    z-index: 1;
}


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

.product-page .container .product-details {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 70px;
    align-items: center;
}


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

.product-page .product-details .product-gallery {
    position: relative;
}

.product-page .product-details .product-gallery::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
    right: 7%;
    top: 8%;
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.07);
    filter: blur(5px);
    z-index: -1;
}


/* ============================================================
   MAIN PRODUCT IMAGE
   ============================================================ */

.product-page .product-gallery .product-main-image {
    position: relative;

    width: 100%;
    min-height: 540px;

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

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff9f2 100%
        );

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 32px;

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


/* decorative corner */

.product-page .product-gallery .product-main-image::before {
    content: "";
    position: absolute;

    top: -80px;
    left: -80px;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background: rgba(255, 193, 7, 0.13);
}


/* image */

.product-page .product-gallery .product-main-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 500px;
    height: 500px;

    object-fit: contain;

    border-radius: 24px;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.product-page .product-gallery .product-main-image:hover img {
    transform: scale(1.035);
}


/* emoji fallback */

.product-page .product-gallery .product-main-image > span {
    position: relative;
    z-index: 1;

    width: 240px;
    height: 240px;

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

    font-size: 130px;

    background: #ffffff;

    border-radius: 50%;

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


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

.product-page .product-details .product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 620px;
}


/* ============================================================
   CATEGORY
   ============================================================ */

.product-page .product-content .product-category {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;
    padding: 7px 15px;

    color: #d71920;

    background: rgba(215, 25, 32, 0.08);

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
}


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

.product-page .product-content h1 {
    margin: 0 0 18px;

    color: #171717;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    font-weight: 800;

    letter-spacing: -1px;
}


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

.product-page .product-content .product-description {
    max-width: 560px;

    margin: 0 0 28px;

    color: #666;

    font-size: 16px;
    line-height: 2;

}


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

.product-page .product-content .product-price {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 28px;

    direction: rtl;
}

.product-page .product-content .product-price strong {
    color: #d71920;

    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.product-page .product-content .product-price del {
    color: #999;

    font-size: 17px;
    font-weight: 700;
}


/* ============================================================
   OFFERS
   ============================================================ */

.product-page .product-content .product-offers {
    width: 100%;

    margin-bottom: 28px;
    padding: 22px;

    background:
        linear-gradient(
            145deg,
            #fff8e1,
            #fffdf5
        );

    border: 1px solid rgba(255, 193, 7, 0.35);

    border-radius: 22px;
}


/* offer title */

.product-page .product-offers h2 {
    margin: 0 0 16px;

    color: #171717;

    font-size: 18px;
    font-weight: 800;
}


/* individual offer */

.product-page .product-offers .product-offer {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 16px;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-page .product-offers .product-offer + .product-offer {
    margin-top: 10px;
}

.product-page .product-offers .product-offer:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08);
}


/* offer icon */

.product-page .product-offer .offer-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

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

    background: #fff4d2;

    border-radius: 14px;

    font-size: 24px;
}


/* offer information */

.product-page .product-offer .offer-info {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-page .product-offer .offer-info strong {
    color: #171717;

    font-size: 15px;
    font-weight: 800;
}

.product-page .product-offer .offer-info span {
    color: #777;

    font-size: 13px;
    line-height: 1.7;
}

.product-page .product-offer .offer-info b {
    color: #d71920;

    font-size: 13px;
    font-weight: 800;
}


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

.product-page .product-content .quantity-box {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 24px;
}

.product-page .quantity-box > label {
    color: #222;

    font-size: 15px;
    font-weight: 800;
}


/* quantity control */

.product-page .quantity-box .quantity-control {
    display: flex;
    align-items: center;

    height: 50px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dedede;

    border-radius: 14px;
}


/* quantity buttons */

.product-page .quantity-control button {
    width: 48px;
    height: 100%;

    border: 0;

    background: #f7f7f7;

    color: #171717;

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

    cursor: pointer;

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

.product-page .quantity-control button:hover {
    background: #d71920;
    color: #ffffff;
}


/* quantity input */

.product-page .quantity-control input {
    width: 60px;
    height: 100%;

    padding: 0;

    border: 0;

    outline: none;

    background: #ffffff;

    color: #171717;

    text-align: center;

    font-size: 17px;
    font-weight: 800;
}


/* remove browser arrows */

.product-page .quantity-control input::-webkit-inner-spin-button,
.product-page .quantity-control input::-webkit-outer-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

.product-page .quantity-control input {
    appearance: textfield;
}


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

.product-page .product-content .product-actions {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 12px;
}


/* primary action */

.product-page .product-actions .add-product {
    flex: 1;

    min-height: 54px;

    border: 0;

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

    cursor: pointer;
}


/* cart button */

.product-page .product-actions .btn.light {
    min-height: 54px;

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

    padding-inline: 25px;

    white-space: nowrap;
}


/* ============================================================
   RELATED PRODUCTS
   ============================================================ */

.related-products {
    position: relative;

    padding: 75px 0 100px;

    background:
        linear-gradient(
            180deg,
            #fafafa 0%,
            #ffffff 100%
        );
}


/* heading */

.related-products .container .heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}

.related-products .heading .eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #d71920;

    font-size: 13px;
    font-weight: 800;
}

.related-products .heading h2 {
    margin: 0;

    color: #171717;

    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
}


/* ============================================================
   RELATED PRODUCTS GRID
   مهم: Scoped حتى لا يأخذ Grid الـ Index
   ============================================================ */

.related-products .container .grid {
    display: grid;

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

    gap: 22px;
}


/* ============================================================
   RELATED PRODUCT CARD
   ============================================================ */

.related-products .grid .card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.related-products .grid .card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.10);
}


/* ============================================================
   RELATED PRODUCT IMAGE
   ============================================================ */

.related-products .card .prod-img {
    position: relative;

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

    height: 220px;

    padding: 15px;

    background:
        linear-gradient(
            145deg,
            #fff8f5,
            #fffdf8
        );

    overflow: hidden;

    text-decoration: none;
}

.related-products .card .prod-img img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.35s ease;
}

.related-products .card:hover .prod-img img {
    transform: scale(1.06);
}


/* emoji */

.related-products .card .prod-img > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: #ffffff;

    font-size: 65px;

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


/* ============================================================
   RELATED PRODUCT INFO
   ============================================================ */

.related-products .card .info {
    padding: 18px;
}


/* category */

.related-products .card .info .product-category {
    display: inline-block;

    margin-bottom: 8px;

    color: #d71920;

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


/* title */

.related-products .card .info h3 {
    margin: 0 0 15px;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 800;
}

.related-products .card .info h3 a {
    color: #171717;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.related-products .card .info h3 a:hover {
    color: #d71920;
}


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

.related-products .card .info .price {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
}

.related-products .card .info .price b {
    color: #d71920;

    font-size: 18px;
    font-weight: 800;
}


/* add button */

.related-products .card .info .price .add {
    width: 42px;
    height: 42px;

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

    flex-shrink: 0;

    background: #d71920;

    color: #ffffff;

    border-radius: 12px;

    text-decoration: none;

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

    box-shadow:
        0 8px 18px rgba(215, 25, 32, 0.20);

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

.related-products .card .info .price .add:hover {
    background: #b9141a;

    transform: scale(1.06);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .product-page {
        padding: 50px 0 70px;
    }

    .product-page .container .product-details {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .product-page .product-details .product-gallery {
        max-width: 700px;

        width: 100%;

        margin-inline: auto;
    }

    .product-page .product-details .product-content {
        max-width: 700px;

        width: 100%;

        margin-inline: auto;
    }

    .product-page .product-gallery .product-main-image {
        min-height: 450px;
    }

    .product-page .product-gallery .product-main-image img {
        height: 420px;
    }

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


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

@media (max-width: 650px) {

    .product-page {
        padding: 30px 0 55px;
    }

    .product-page .container .product-details {
        gap: 30px;
    }

    .product-page .product-gallery .product-main-image {
        min-height: 330px;

        padding: 20px;

        border-radius: 24px;
    }

    .product-page .product-gallery .product-main-image img {
        height: 300px;
    }

    .product-page .product-gallery .product-main-image > span {
        width: 170px;
        height: 170px;

        font-size: 85px;
    }

    .product-page .product-content h1 {
        margin-bottom: 14px;

        font-size: 32px;
    }

    .product-page .product-content .product-description {
        margin-bottom: 20px;

        font-size: 14px;
        line-height: 1.9;
    }

    .product-page .product-content .product-price {
        margin-bottom: 22px;
    }

    .product-page .product-content .product-price strong {
        font-size: 28px;
    }

    .product-page .product-content .product-offers {
        padding: 16px;

        border-radius: 18px;
    }

    .product-page .product-offers .product-offer {
        align-items: flex-start;

        padding: 12px;
    }

    .product-page .product-offer .offer-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .product-page .product-content .quantity-box {
        width: 100%;

        justify-content: space-between;
    }

    .product-page .product-content .product-actions {
        flex-direction: column;
    }

    .product-page .product-actions .add-product,
    .product-page .product-actions .btn.light {
        width: 100%;
    }

    .related-products {
        padding: 55px 0 70px;
    }

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

        gap: 12px;
    }

    .related-products .card {
        border-radius: 17px;
    }

    .related-products .card .prod-img {
        height: 155px;

        padding: 10px;
    }

    .related-products .card .prod-img > span {
        width: 90px;
        height: 90px;

        font-size: 45px;
    }

    .related-products .card .info {
        padding: 12px;
    }

    .related-products .card .info h3 {
        margin-bottom: 10px;

        font-size: 14px;
    }

    .related-products .card .info .price b {
        font-size: 15px;
    }

    .related-products .card .info .price .add {
        width: 36px;
        height: 36px;

        font-size: 21px;

        border-radius: 10px;
    }
}


/* ============================================================
   VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 400px) {

    .product-page .product-gallery .product-main-image {
        min-height: 290px;
    }

    .product-page .product-gallery .product-main-image img {
        height: 260px;
    }

    .product-page .product-content h1 {
        font-size: 28px;
    }

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

    .related-products .card .prod-img {
        height: 210px;
    }

}
/* =========================================================
   SHEKOLAZA — OFFER PAGE
========================================================= */


/* =========================================================
   OFFER PAGE ROOT
========================================================= */

main .offer-page {
    position: relative;

    padding: 70px 0 90px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(255, 196, 0, .14),
            transparent 30%
        ),
        radial-gradient(
            circle at 0% 20%,
            rgba(215, 25, 32, .06),
            transparent 30%
        ),
        var(--sk-bg);
}


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

main .offer-page .offer-header {
    max-width: 850px;

    margin: 0 auto 42px;

    text-align: center;
}

main .offer-page .offer-header .eyebrow {
    justify-content: center;

    margin-bottom: 10px;

    padding: 7px 14px;

    background: var(--sk-yellow-light);

    border-radius: 999px;
}

main .offer-page .offer-header h1 {
    margin: 0 0 14px;

    color: var(--sk-black);

    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;

    line-height: 1.2;
}

main .offer-page .offer-header p {
    max-width: 650px;

    margin: 0 auto 18px;

    color: var(--sk-muted);

    font-size: 16px;
}

main .offer-page .offer-header > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 8px 15px;

    background: var(--sk-white);

    border: 1px solid var(--sk-border);
    border-radius: 999px;

    color: var(--sk-muted);

    font-size: 14px;
}

main .offer-page .offer-header > div strong {
    color: var(--sk-red);
}


/* =========================================================
   OFFER BUILDER
========================================================= */

main .offer-page .offer-builder {
    max-width: 1080px;

    margin-inline: auto;

    padding: 28px;

    background: var(--sk-white);

    border: 1px solid var(--sk-border);
    border-radius: var(--sk-radius-xl);

    box-shadow: var(--sk-shadow-lg);
}


/* =========================================================
   OFFER PROGRESS — ANIMATED
========================================================= */

main .offer-page .offer-builder .offer-progress {
    position: relative;

    margin-bottom: 35px;
    padding: 22px;

    background:
        linear-gradient(
            135deg,
            #fff9df,
            #ffffff
        );

    border: 1px solid #f1dfa0;
    border-radius: var(--sk-radius-md);

    overflow: hidden;
}

main .offer-page .offer-builder .offer-progress-text {
    position: relative;
    z-index: 2;

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

    gap: 20px;

    margin-bottom: 14px;
}

main .offer-page .offer-builder .offer-progress-text strong {
    color: var(--sk-red);

    font-size: 21px;
    font-weight: 900;
}

main .offer-page .offer-builder .offer-progress-text span {
    color: var(--sk-muted);

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

    transition:
        color .3s ease,
        transform .3s ease;
}


/* =========================================================
   PROGRESS TRACK
========================================================= */

main .offer-page .offer-builder .offer-progress-bar {
    position: relative;

    width: 100%;
    height: 16px;

    overflow: hidden;

    background: #e9e9e9;

    border: 2px solid #dedede;
    border-radius: 999px;

    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, .08);
}


/* =========================================================
   PROGRESS FILL
========================================================= */

main .offer-page .offer-builder .offer-progress-bar div {
    position: relative;

    width: 0;
    height: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #a90f15 0%,
            #d71920 45%,
            #ff3b30 70%,
            #ffc400 100%
        );

    border-radius: inherit;

    box-shadow:
        0 0 12px rgba(215, 25, 32, .35);

    transition:
        width .55s cubic-bezier(.22, 1, .36, 1),
        background .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   MOVING SHINE
========================================================= */

main .offer-page .offer-builder .offer-progress-bar div::after {
    content: "";

    position: absolute;

    top: 0;
    right: -80px;

    width: 80px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.75),
            transparent
        );

    transform: skewX(-20deg);

    animation:
        offerProgressShine 1.4s linear infinite;
}

@keyframes offerProgressShine {

    0% {
        right: 100%;
    }

    100% {
        right: -80px;
    }

}


/* =========================================================
   COMPLETE STATE
========================================================= */

main .offer-page .offer-builder .offer-progress.is-complete {
    border-color: rgba(215, 25, 32, .35);

    background:
        linear-gradient(
            135deg,
            #fff8d9,
            #fff
        );

    box-shadow:
        0 8px 25px rgba(215, 25, 32, .08);
}

main .offer-page .offer-builder .offer-progress.is-complete
.offer-progress-text span {
    color: var(--sk-red);

    transform: scale(1.02);
}

main .offer-page .offer-builder .offer-progress.is-complete
.offer-progress-bar div {
    background:
        linear-gradient(
            90deg,
            #d71920,
            #ff3b30,
            #ffc400
        );

    box-shadow:
        0 0 18px rgba(255, 196, 0, .55);
}


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

@media (max-width: 650px) {

    main .offer-page .offer-builder .offer-progress-text {
        flex-direction: column;
        align-items: flex-start;

        gap: 3px;
    }

    main .offer-page .offer-builder .offer-progress-bar {
        height: 14px;
    }

}

/* =========================================================
   OFFER STEP
========================================================= */

main .offer-page .offer-builder .offer-step {
    margin-bottom: 30px;
}

main .offer-page .offer-builder .offer-step-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 22px;
}

main .offer-page .offer-builder .offer-step-heading > span {
    flex: 0 0 44px;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    background: var(--sk-red);
    color: var(--sk-white);

    border-radius: 50%;

    font-size: 18px;
    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(215, 25, 32, .2);
}

main .offer-page .offer-builder .offer-step-heading h2 {
    margin: 0;

    color: var(--sk-black);

    font-size: 24px;
    font-weight: 900;

    line-height: 1.35;
}

main .offer-page .offer-builder .offer-step-heading p {
    margin: 4px 0 0;

    color: var(--sk-muted);

    font-size: 14px;
}


/* =========================================================
   ELIGIBLE PRODUCTS GRID
========================================================= */

main .offer-page .offer-builder .offer-products-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   OFFER PRODUCT CARD
========================================================= */

main .offer-page .offer-builder .offer-products-grid .offer-product {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--sk-white);

    border: 1px solid var(--sk-border);
    border-radius: var(--sk-radius-md);

    transition:
        transform var(--sk-transition),
        border-color var(--sk-transition),
        box-shadow var(--sk-transition);
}

main .offer-page .offer-builder .offer-products-grid .offer-product:hover {
    transform: translateY(-4px);

    border-color: rgba(215, 25, 32, .25);

    box-shadow: var(--sk-shadow-md);
}


/* =========================================================
   OFFER PRODUCT IMAGE
========================================================= */

main .offer-page .offer-builder .offer-product .offer-product-image {
    display: grid;
    place-items: center;

    aspect-ratio: 1 / .72;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f1f1f1
        );
}

main .offer-page .offer-builder .offer-product .offer-product-image img {
    width: 70%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

main .offer-page .offer-builder .offer-product:hover .offer-product-image img {
    transform: scale(1.05);
}

main .offer-page .offer-builder .offer-product .offer-product-image span {
    font-size: 70px;
}


/* =========================================================
   OFFER PRODUCT INFO
========================================================= */

main .offer-page .offer-builder .offer-product .offer-product-info {
    padding: 18px;
}

main .offer-page .offer-builder .offer-product .offer-product-info h3 {
    margin: 0 0 5px;

    color: var(--sk-black);

    font-size: 18px;
    font-weight: 900;
}

main .offer-page .offer-builder .offer-product .offer-product-price {
    display: block;

    margin-bottom: 16px;

    color: var(--sk-red);

    font-size: 14px;
    font-weight: 800;
}


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

main .offer-page .offer-builder .offer-product .offer-quantity {
    display: grid;

    grid-template-columns: 42px 1fr 42px;

    align-items: center;

    width: 100%;
    height: 44px;

    overflow: hidden;

    background: #f7f7f7;

    border: 1px solid var(--sk-border);
    border-radius: 12px;
}

main .offer-page .offer-builder .offer-product .offer-quantity button {
    display: grid;
    place-items: center;

    width: 42px;
    height: 100%;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--sk-red);

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

    cursor: pointer;

    transition:
        background var(--sk-transition),
        color var(--sk-transition);
}

main .offer-page .offer-builder .offer-product .offer-quantity button:hover {
    background: var(--sk-red);
    color: var(--sk-white);
}

main .offer-page .offer-builder .offer-product .offer-quantity input {
    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--sk-black);

    text-align: center;

    font-size: 17px;
    font-weight: 900;
}


/* Hide number arrows */

main .offer-page .offer-builder .offer-product .offer-quantity input::-webkit-outer-spin-button,
main .offer-page .offer-builder .offer-product .offer-quantity input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

main .offer-page .offer-builder .offer-product .offer-quantity input[type="number"] {
    appearance: textfield;
}


/* =========================================================
   GIFT SECTION
========================================================= */

main .offer-page .offer-builder .offer-gift {
    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #fffdf2,
            #fff
        );

    border: 1px solid #f0dfa1;
    border-radius: var(--sk-radius-lg);

    animation: skGiftIn .35s ease;
}

@keyframes skGiftIn {

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

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

}


/* =========================================================
   GIFT PRODUCTS
========================================================= */

main .offer-page .offer-builder .gift-products {
    display: grid;

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

    gap: 15px;
}

main .offer-page .offer-builder .gift-products .gift-product {
    position: relative;

    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 100px;

    padding: 12px;

    background: var(--sk-white);

    border: 2px solid var(--sk-border);
    border-radius: 15px;

    cursor: pointer;

    transition:
        border-color var(--sk-transition),
        box-shadow var(--sk-transition),
        transform var(--sk-transition);
}

main .offer-page .offer-builder .gift-products .gift-product:hover {
    transform: translateY(-2px);

    border-color: rgba(215, 25, 32, .35);
}

main .offer-page .offer-builder .gift-products .gift-product:has(input:checked) {
    border-color: var(--sk-red);

    background: #fff8f8;

    box-shadow:
        0 8px 24px rgba(215, 25, 32, .12);
}

main .offer-page .offer-builder .gift-products .gift-product input {
    position: absolute;

    opacity: 0;
}

main .offer-page .offer-builder .gift-products .gift-product .gift-product-image {
    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    overflow: hidden;

    display: grid;
    place-items: center;

    background: #f5f5f5;

    border-radius: 12px;
}

main .offer-page .offer-builder .gift-products .gift-product .gift-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

main .offer-page .offer-builder .gift-products .gift-product .gift-product-image span {
    font-size: 38px;
}

main .offer-page .offer-builder .gift-products .gift-product .gift-product-info {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

main .offer-page .offer-builder .gift-products .gift-product .gift-product-info strong {
    color: var(--sk-black);

    font-size: 15px;
    font-weight: 900;
}

main .offer-page .offer-builder .gift-products .gift-product .gift-product-info span {
    color: var(--sk-red);

    font-size: 13px;
    font-weight: 800;
}


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

main .offer-page .offer-builder .offer-summary {
    display: grid;

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

    gap: 15px;

    margin: 30px 0;

    padding: 20px;

    background: var(--sk-black);

    border-radius: var(--sk-radius-md);

    color: var(--sk-white);
}

main .offer-page .offer-builder .offer-summary > div {
    display: flex;
    flex-direction: column;

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

    min-height: 75px;

    padding: 8px;

    text-align: center;

    border-left: 1px solid rgba(255,255,255,.12);
}

main .offer-page .offer-builder .offer-summary > div:last-child {
    border-left: 0;
}

main .offer-page .offer-builder .offer-summary span {
    color: #bdbdbd;

    font-size: 13px;
    font-weight: 700;
}

main .offer-page .offer-builder .offer-summary strong {
    margin-top: 2px;

    color: var(--sk-yellow);

    font-size: 23px;
    font-weight: 900;
}


/* =========================================================
   OFFER SUBMIT
========================================================= */

main .offer-page .offer-builder #offerForm {
    margin-top: 5px;
}

main .offer-page .offer-builder .offer-submit {
    width: 100%;

    min-height: 58px;

    border-radius: 15px;

    font-size: 17px;
}

main .offer-page .offer-builder .offer-submit:disabled {
    background: #d5d5d5;

    color: #8a8a8a;

    box-shadow: none;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   OFFER MESSAGE
========================================================= */

main .offer-page .offer-builder .offer-message {
    min-height: 25px;

    margin-top: 12px;

    color: var(--sk-red);

    text-align: center;

    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   MOBILE — OFFER PAGE
========================================================= */

@media (max-width: 900px) {

    main .offer-page .offer-builder .offer-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    main .offer-page .offer-builder .gift-products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    main .offer-page {
        padding: 42px 0 60px;
    }

    main .offer-page .offer-header {
        margin-bottom: 28px;
    }

    main .offer-page .offer-header h1 {
        font-size: 32px;
    }

    main .offer-page .offer-header p {
        font-size: 14px;
    }

    main .offer-page .offer-builder {
        padding: 16px;

        border-radius: 22px;
    }

    main .offer-page .offer-builder .offer-progress {
        padding: 16px;
    }

    main .offer-page .offer-builder .offer-progress-text {
        flex-direction: column;

        align-items: flex-start;

        gap: 2px;
    }

    main .offer-page .offer-builder .offer-step-heading h2 {
        font-size: 20px;
    }

    main .offer-page .offer-builder .offer-products-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    main .offer-page .offer-builder .offer-product {
        display: grid !important;

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

    main .offer-page .offer-builder .offer-product .offer-product-image {
        aspect-ratio: auto;

        height: 100%;
        min-height: 150px;
    }

    main .offer-page .offer-builder .offer-product .offer-product-info {
        display: flex;
        flex-direction: column;

        justify-content: center;
    }

    main .offer-page .offer-builder .offer-gift {
        padding: 16px;
    }

    main .offer-page .offer-builder .gift-products {
        grid-template-columns: 1fr;
    }

    main .offer-page .offer-builder .offer-summary {
        grid-template-columns: 1fr;

        gap: 0;

        padding: 8px 15px;
    }

    main .offer-page .offer-builder .offer-summary > div {
        min-height: 60px;

        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    main .offer-page .offer-builder .offer-summary > div:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 420px) {

    main .offer-page .offer-builder {
        padding: 12px;
    }

    main .offer-page .offer-builder .offer-product {
        grid-template-columns: 100px 1fr;
    }

    main .offer-page .offer-builder .offer-product .offer-product-image {
        min-height: 135px;
    }

    main .offer-page .offer-builder .offer-product .offer-product-info {
        padding: 13px;
    }

    main .offer-page .offer-builder .offer-product .offer-product-info h3 {
        font-size: 16px;
    }

    main .offer-page .offer-builder .offer-step-heading > span {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }

}
/* ==========================================================================
   10. CART PAGE
   ========================================================================== */

.cart-page {
    padding: var(--space-16) 0;
    background: var(--gray-50);
    min-height: calc(100vh - 80px);
}

.cart-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.cart-header h1 {
    margin-bottom: var(--space-2);
    font-size: clamp(2rem, 4vw, var(--fs-4xl));
    line-height: 1.2;
    font-weight: 900;
}

.cart-header p {
    margin: 0;
    color: var(--gray-500);
}

.cart-clear {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1rem;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--danger);
    border: 1px solid #f0d5d8;
    font-weight: 800;
    transition: var(--transition);
}

.cart-clear:hover {
    background: #fff5f5;
    border-color: var(--danger);
    transform: translateY(-2px);
}


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

.empty-cart {
    max-width: 650px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.empty-cart-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-yellow-light);
    font-size: 3rem;
}

.empty-cart h2 {
    margin-bottom: .5rem;
    font-size: 1.7rem;
    font-weight: 900;
}

.empty-cart p {
    margin-bottom: 1.5rem;
    color: var(--gray-500);
}


/* ==========================================================================
   FREE DELIVERY
   ========================================================================== */

.free-delivery-box {
    margin-bottom: var(--space-8);
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid #f0df9b;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.free-delivery-text {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}

.free-delivery-text > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-yellow-light);
    font-size: 1.4rem;
}

.free-delivery-text strong {
    display: block;
    color: var(--brand-black);
    font-weight: 900;
}

.free-delivery-text small {
    display: block;
    margin-top: .2rem;
    color: var(--gray-500);
}

.free-delivery-progress {
    height: 10px;
    overflow: hidden;
    background: var(--gray-100);
    border-radius: var(--radius-pill);
}

.free-delivery-progress-bar {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--brand-red),
        var(--brand-yellow)
    );
    border-radius: inherit;
    transition: width var(--transition-slow);
}

.free-delivery-target {
    display: flex;
    justify-content: space-between;
    margin-top: .45rem;
    color: var(--gray-400);
    font-size: var(--fs-xs);
    font-weight: 700;
}


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

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: var(--space-8);
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}


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

.cart-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.cart-item.gift-item {
    background:
        linear-gradient(
            135deg,
            #fffdf4,
            var(--white)
        );
    border-color: #f1dfa1;
}

.cart-item-image {
    width: 90px;
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gray-100);
}

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

.cart-item-image span {
    font-size: 2.5rem;
}

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

.cart-item-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.cart-item-title h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
}

.cart-item-info > p {
    margin: .35rem 0 0;
    color: var(--gray-500);
    font-size: var(--fs-sm);
}

.offer-badge,
.gift-badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .55rem;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 900;
}

.offer-badge {
    background: var(--brand-red-light);
    color: var(--brand-red);
}

.gift-badge {
    background: var(--brand-yellow-light);
    color: #9a7300;
}

.gift-price {
    display: inline-block;
    margin-top: .35rem;
    color: var(--success);
    font-size: var(--fs-sm);
}


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

.cart-item-quantity {
    white-space: nowrap;
}

.cart-item-quantity form {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.cart-item-quantity button {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--brand-black);
    font-size: 1.15rem;
    font-weight: 900;
    transition: var(--transition-fast);
}

.cart-item-quantity button:hover {
    background: var(--brand-red);
    color: var(--white);
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 900;
        margin-top: 5px;

}
.cart-quantity-control{
    display: flex;
}
.cart-item-total {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
}

.cart-item-total strong {
    white-space: nowrap;
    font-weight: 900;
}

.remove-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.remove-item:hover {
    background: var(--brand-red-light);
    color: var(--danger);
}


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

.continue-shopping {
    align-self: flex-start;
    margin-top: .5rem;
    color: var(--brand-red);
    font-weight: 900;
    transition: var(--transition-fast);
}

.continue-shopping:hover {
    transform: translateX(4px);
}


/* ==========================================================================
   SUMMARY CARD
   ========================================================================== */

.cart-summary,
.checkout-summary {
    padding: 1.5rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.cart-summary {
    position: sticky;
    top: 100px;
}

.cart-summary h2,
.checkout-summary h2 {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 0;
    color: var(--gray-600);
}

.summary-row strong {
    color: var(--brand-black);
    font-weight: 900;
}

.summary-row.gift-summary {
    color: var(--success);
}

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

.summary-row.discount-row {
    color: var(--danger);
}

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

.summary-row .free {
    color: var(--success);
}

.summary-divider {
    height: 1px;
    margin: .8rem 0;
    background: var(--gray-200);
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0 1rem;
}

.summary-total span {
    font-weight: 900;
}

.summary-total strong {
    color: var(--brand-red);
    font-size: 1.5rem;
    font-weight: 950;
}


/* ==========================================================================
   COUPON
   ========================================================================== */

.coupon-box {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.coupon-box h3 {
    margin-bottom: .75rem;
    font-size: .95rem;
    font-weight: 900;
}

.coupon-form,
.coupon-inline {
    display: flex;
    gap: .5rem;
}

.coupon-form input,
.coupon-inline input {
    min-width: 0;
    flex: 1;
}

.coupon-form input,
.coupon-inline input,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--brand-black);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.coupon-form input:focus,
.coupon-inline input:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, .08);
}

.coupon-form button {
    padding-inline: 1rem;
    border-radius: var(--radius-md);
    background: var(--brand-black);
    color: var(--white);
    font-weight: 900;
}

.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem;
    border-radius: var(--radius-md);
    background: var(--brand-yellow-light);
}

.applied-coupon strong {
    display: block;
    font-weight: 900;
}

.applied-coupon small {
    display: block;
    color: var(--gray-500);
}

.applied-coupon button {
    color: var(--danger);
    background: transparent;
    font-weight: 900;
}

.coupon-error {
    margin-top: .6rem;
    color: var(--danger);
    font-size: var(--fs-sm);
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    margin-top: 1rem;
}

.cart-security {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1rem;
    padding: .85rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.cart-security > span {
    font-size: 1.25rem;
}

.cart-security strong,
.cart-security small {
    display: block;
}

.cart-security strong {
    font-size: .9rem;
}

.cart-security small {
    color: var(--gray-500);
    font-size: .75rem;
}


/* ==========================================================================
   11. CHECKOUT PAGE
   ========================================================================== */

.checkout-page {
    padding: var(--space-16) 0;
    background: var(--gray-50);
    min-height: calc(100vh - 80px);
}

.checkout-header {
    margin-bottom: var(--space-8);
}

.checkout-header h1 {
    margin-bottom: .35rem;
    font-size: clamp(2rem, 4vw, var(--fs-4xl));
    font-weight: 950;
    line-height: 1.2;
}

.checkout-header p {
    margin: 0;
    color: var(--gray-500);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: var(--space-8);
    align-items: start;
}

.checkout-form-card {
    padding: 1.75rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label,
.checkout-coupon > label {
    display: block;
    margin-bottom: .5rem;
    color: var(--brand-black);
    font-weight: 900;
}

.form-help {
    display: block;
    margin-top: .4rem;
    color: var(--gray-500);
    font-size: .78rem;
}

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

.phone-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .6rem;
}

.phone-row .btn {
    white-space: nowrap;
}


/* ==========================================================================
   OTP
   ========================================================================== */

.otp-box {
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    background: var(--brand-yellow-light);
    border: 1px solid #f0dc91;
    border-radius: var(--radius-lg);
}

.otp-header {
    margin-bottom: .8rem;
}

.otp-header strong {
    display: block;
    font-weight: 900;
}

.otp-header span {
    color: var(--gray-600);
    font-size: .82rem;
}

.otp-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .6rem;
}

.otp-row input {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid #e8d477;
    border-radius: var(--radius-md);
    background: var(--white);
    text-align: center;
    letter-spacing: .15em;
    font-weight: 900;
}

.otp-resend {
    margin-top: .75rem;
    background: transparent;
    color: var(--brand-red);
    font-size: .85rem;
    font-weight: 900;
}

.verified-box {
    margin: 1rem 0;
    padding: .85rem 1rem;
    border-radius: var(--radius-md);
    background: #eaf8f0;
    border: 1px solid #b9e5ca;
    color: var(--success);
    font-weight: 900;
}

.checkout-coupon {
    margin-top: 1.5rem;
}

.checkout-submit {
    width: 100%;
    margin-top: 1.5rem;
    min-height: 56px;
    font-size: 1.05rem;
}

.checkout-error {
    margin-top: 1rem;
    padding: .85rem 1rem;
    border-radius: var(--radius-md);
    background: var(--brand-red-light);
    color: var(--danger);
    font-weight: 800;
}


/* ==========================================================================
   CHECKOUT SUMMARY
   ========================================================================== */

.checkout-summary {
    position: sticky;
    top: 100px;
}

.checkout-products {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--gray-200);
}

.checkout-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-product > div {
    min-width: 0;
}

.checkout-product strong {
    display: block;
    font-size: .9rem;
    font-weight: 900;
}

.checkout-product small {
    color: var(--gray-500);
}

.checkout-product > strong:last-child {
    white-space: nowrap;
}

.checkout-note {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: .82rem;
    line-height: 2;
}


/* ==========================================================================
   12. SUCCESS PAGE
   ========================================================================== */

.success-page {
    padding: var(--space-16) 0;
    background: var(--gray-50);
    min-height: calc(100vh - 80px);
}

.success-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem;
    text-align: center;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-red);
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(215, 25, 32, .25);
}

.success-card h1 {
    margin-bottom: .75rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 950;
}

.success-message {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.success-order-number {
    display: inline-flex;
    flex-direction: column;
    gap: .15rem;
    margin-bottom: 1.25rem;
    padding: .8rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--brand-yellow-light);
    border: 1px solid #f0dc91;
}

.success-order-number span {
    color: var(--gray-500);
    font-size: .8rem;
    font-weight: 700;
}

.success-order-number strong {
    color: var(--brand-red);
    font-size: 1.5rem;
    font-weight: 950;
}

.success-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    text-align: right;
}

.status-icon {
    font-size: 1.5rem;
}

.success-status strong,
.success-status span {
    display: block;
}

.success-status strong {
    font-weight: 900;
}

.success-status div span {
    color: var(--brand-red);
    font-size: .85rem;
    font-weight: 800;
}

.success-details,
.tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.success-detail,
.tracking-info {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    text-align: right;
}

.success-detail span,
.tracking-info span {
    display: block;
    margin-bottom: .2rem;
    color: var(--gray-500);
    font-size: .78rem;
}

.success-detail strong,
.tracking-info strong {
    font-weight: 900;
}

.success-products,
.tracking-products {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    text-align: right;
}

.success-products h2,
.tracking-products h2 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 900;
}

.success-product,
.tracking-product {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: .8rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.success-product:last-child,
.tracking-product:last-child {
    border-bottom: 0;
}

.success-product-image,
.tracking-product-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--white);
}

.success-product-image img,
.tracking-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-product-image span,
.tracking-product-image span {
    font-size: 1.8rem;
}

.success-product-info strong,
.success-product-info span,
.tracking-product-info strong,
.tracking-product-info span {
    display: block;
}

.success-product-info strong,
.tracking-product-info strong {
    font-size: .9rem;
    font-weight: 900;
}

.success-product-info span,
.tracking-product-info span {
    color: var(--gray-500);
    font-size: .8rem;
}

.success-product-price {
    white-space: nowrap;
}

.success-total,
.tracking-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding: 1rem 0;
    border-top: 2px solid var(--gray-200);
}

.success-total span,
.tracking-total span {
    font-weight: 900;
}

.success-total strong,
.tracking-total strong {
    color: var(--brand-red);
    font-size: 1.5rem;
    font-weight: 950;
}

.success-address,
.tracking-address {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    text-align: right;
}

.success-address strong,
.tracking-address strong {
    display: block;
    margin-bottom: .4rem;
    font-weight: 900;
}

.success-address p,
.tracking-address p {
    margin: 0;
    color: var(--gray-600);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.5rem;
}

.success-actions .btn {
    min-width: 190px;
}

.success-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .6rem;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--brand-yellow-light);
    color: var(--gray-700);
    font-size: .85rem;
    line-height: 1.8;
}


/* ==========================================================================
   13. ORDER TRACKING
   ========================================================================== */

.order-tracking-page {
    padding: var(--space-16) 0;
    background: var(--gray-50);
    min-height: calc(100vh - 80px);
}

.tracking-header {
    margin-bottom: var(--space-8);
}

.tracking-header h1 {
    margin-bottom: .35rem;
    font-size: clamp(2rem, 4vw, var(--fs-4xl));
    font-weight: 950;
}

.tracking-header p {
    margin: 0;
    color: var(--gray-500);
}

.tracking-search-card {
    max-width: 900px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.tracking-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
    gap: 1rem;
}

.tracking-form .form-group {
    margin: 0;
}

.tracking-form .btn {
    min-height: 50px;
}

.tracking-error {
    margin-top: 1rem;
    padding: .9rem 1rem;
    border-radius: var(--radius-md);
    background: var(--brand-red-light);
    color: var(--danger);
    font-weight: 800;
}

.tracking-result-card {
    padding: 1.75rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.tracking-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.tracking-order-head > div > span,
.tracking-current-status > span {
    display: block;
    color: var(--gray-500);
    font-size: .78rem;
}

.tracking-order-head h2 {
    margin: .15rem 0 0;
    color: var(--brand-red);
    font-size: 1.8rem;
    font-weight: 950;
}

.tracking-current-status {
    padding: .65rem 1rem;
    border-radius: var(--radius-md);
    background: var(--brand-yellow-light);
    text-align: center;
}

.tracking-current-status strong {
    display: block;
    color: var(--brand-black);
    font-weight: 900;
}


/* ==========================================================================
   ORDER TIMELINE
   ========================================================================== */

.order-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    margin: 2rem 0;
}

.order-timeline::before {
    content: "";
    position: absolute;
    top: 23px;
    right: 10%;
    left: 10%;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .6rem;
    border-radius: 50%;
    background: var(--gray-100);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gray-200);
    font-size: 1.1rem;
}

.timeline-step.completed .timeline-icon {
    background: var(--brand-red);
    box-shadow: 0 0 0 2px var(--brand-red);
    color: var(--white);
}

.timeline-step.active .timeline-icon {
    background: var(--brand-yellow);
    box-shadow:
        0 0 0 2px var(--brand-red),
        0 0 0 7px rgba(215, 25, 32, .08);
}

.timeline-content strong {
    display: block;
    font-size: .8rem;
    font-weight: 900;
}

.timeline-content span {
    display: block;
    margin-top: .2rem;
    color: var(--brand-red);
    font-size: .68rem;
    font-weight: 800;
}

.tracking-cancelled {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: var(--brand-red-light);
    color: var(--danger);
}

.tracking-cancelled > span {
    font-size: 2rem;
}

.tracking-cancelled strong {
    display: block;
    font-weight: 900;
}

.tracking-cancelled p {
    margin: .2rem 0 0;
    color: var(--gray-600);
    font-size: .85rem;
}


/* ==========================================================================
   TRACKING EMPTY
   ========================================================================== */

.tracking-empty {
    max-width: 650px;
    margin: 3rem auto;
    padding: 3.5rem 2rem;
    text-align: center;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.tracking-empty-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-yellow-light);
    font-size: 2.8rem;
}

.tracking-empty h2 {
    margin-bottom: .4rem;
    font-weight: 900;
}

.tracking-empty p {
    margin: 0;
    color: var(--gray-500);
}

.tracking-back {
    margin-top: 1.5rem;
    text-align: center;
}


/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {

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

    .cart-summary,
    .checkout-summary {
        position: static;
    }

    .checkout-summary {
        order: -1;
    }

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

    .tracking-form .btn {
        grid-column: 1 / -1;
    }

    .order-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-timeline::before {
        top: 24px;
        right: 24px;
        left: auto;
        width: 3px;
        height: calc(100% - 48px);
    }

    .timeline-step {
        flex-direction: row;
        align-items: center;
        gap: .75rem;
        text-align: right;
    }

    .timeline-icon {
        flex: 0 0 48px;
        margin: 0;
    }

    .timeline-content {
        flex: 1;
    }
}


@media (max-width: 700px) {

    .cart-page,
    .checkout-page,
    .success-page,
    .order-tracking-page {
        padding: 2.5rem 0;
    }

    .cart-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-header .cart-clear {
        width: 100%;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: .8rem;
        padding: .8rem;
    }

    .cart-item-image {
        width: 72px;
        height: 72px;
        grid-row: span 2;
    }

    .cart-item-info {
        grid-column: 2;
    }

    .cart-item-quantity {
        grid-column: 2;
    }

    .cart-item-total {
        grid-column: 2;
        justify-content: space-between;
        min-width: 0;
    }

    .cart-item-total strong {
        font-size: 1rem;
    }

    .free-delivery-box {
        padding: 1rem;
    }

    .cart-summary,
    .checkout-summary,
    .checkout-form-card,
    .tracking-search-card,
    .tracking-result-card,
    .success-card {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .phone-row,
    .otp-row,
    .coupon-inline {
        grid-template-columns: 1fr;
    }

    .phone-row {
        display: grid;
    }

    .phone-row .btn,
    .otp-row .btn {
        width: 100%;
    }

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

    .tracking-form .btn {
        grid-column: auto;
        width: 100%;
    }

    .tracking-order-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tracking-current-status {
        width: 100%;
    }

    .success-details,
    .tracking-info-grid {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .success-product,
    .tracking-product {
        grid-template-columns: 52px minmax(0, 1fr) auto;
    }

    .success-product-image,
    .tracking-product-image {
        width: 52px;
        height: 52px;
    }

    .success-product-price {
        font-size: .85rem;
    }

    .summary-total strong,
    .success-total strong,
    .tracking-total strong {
        font-size: 1.25rem;
    }
}


@media (max-width: 430px) {

    .cart-item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-title h3 {
        font-size: .95rem;
    }

    .cart-item-quantity form {
        justify-content: flex-start;
    }

    .cart-item-total {
        flex-wrap: wrap;
    }

    .free-delivery-text strong {
        font-size: .85rem;
    }

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

    .success-card h1,
    .tracking-header h1,
    .checkout-header h1,
    .cart-header h1 {
        font-size: 1.8rem;
    }

}
/* =========================================================
   CHECKOUT DELIVERY AREA
   ========================================================= */

.checkout-delivery-area {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
}

.checkout-delivery-area label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 800;
    color: #171717;
}

.checkout-delivery-area .form-help {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* Select */

.checkout-delivery-select {
    position: relative;
}

.checkout-delivery-select select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 13px;
    background: #fff;
    color: #171717;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.checkout-delivery-select select:hover {
    border-color: #bbb;
}

.checkout-delivery-select select:focus {
    border-color: #e3262e;
    box-shadow: 0 0 0 4px rgba(227, 38, 46, .10);
}


/* Delivery info */

.checkout-delivery-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 14px;
    padding: 13px 15px;

    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #eee;
}

.checkout-delivery-info-label {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #666;
    font-size: 13px;
    font-weight: 700;
}

.checkout-delivery-info-fee {
    color: #e3262e;
    font-size: 15px;
    font-weight: 900;
}

.checkout-delivery-info-fee.free {
    color: #168a45;
}


/* Mobile */

@media (max-width: 600px) {

    .checkout-delivery-area {
        padding: 16px;
        margin-top: 18px;
        border-radius: 15px;
    }

    .checkout-delivery-select select {
        min-height: 50px;
        font-size: 14px;
    }

    .checkout-delivery-info {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

}

/* =========================================================
   ORDERS PAGE
========================================================= */

.orders-page {
    padding: 40px 0 70px;
}


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

.orders-header {
    text-align: center;
    margin-bottom: 35px;
}

.orders-header .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
}

.orders-header h1 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
}

.orders-header p {
    margin: 0;
    color: #777;
    font-size: 15px;
}


/* =========================================================
   ORDERS LIST
========================================================= */

.orders-list {
    display: grid;
    gap: 18px;
    max-width: 850px;
    margin: 0 auto;
}


/* =========================================================
   ORDER CARD
========================================================= */

.order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
}


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

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.order-label {
    display: block;
    color: #888;
    font-size: 13px;
    margin-bottom: 4px;
}

.order-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
}


/* =========================================================
   STATUS
========================================================= */

.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* Pending */

.order-status.pending {
    background: #fff4d6;
    color: #9a6800;
}


/* Confirmed */

.order-status.confirmed {
    background: #e8f1ff;
    color: #1756a9;
}


/* Preparing */

.order-status.preparing {
    background: #fff0df;
    color: #a85500;
}


/* Out for delivery */

.order-status.out-for-delivery {
    background: #e9f8ef;
    color: #16834b;
}


/* Delivered */

.order-status.delivered {
    background: #e5f8ed;
    color: #137a45;
}


/* Cancelled */

.order-status.cancelled {
    background: #ffe8e8;
    color: #c62828;
}


/* =========================================================
   ORDER META
========================================================= */

.order-meta {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
    padding: 20px 0;
}


.order-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.order-meta-item span {
    color: #888;
    font-size: 13px;
}


.order-meta-item strong {
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   TOTAL
========================================================= */

.order-card-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 0;

    border-top: 1px solid #f0f0f0;
}


.order-card-total span {
    color: #666;
    font-size: 14px;
}


.order-card-total strong {
    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   ACTIONS
========================================================= */

.order-card-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}


.order-card-actions .btn {
    min-width: 170px;
    text-align: center;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.orders-empty {
    max-width: 600px;
    margin: 30px auto 0;

    text-align: center;

    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;

    padding: 50px 25px;

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


.orders-empty-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

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

    border-radius: 50%;

    background: #fff4d6;

    font-size: 34px;
}


.orders-empty h2 {
    margin: 0 0 10px;

    font-size: 24px;
    font-weight: 800;
}


.orders-empty p {
    margin: 0 0 25px;

    color: #777;
    line-height: 1.8;
}


/* =========================================================
   BACK TO STORE
========================================================= */

.orders-back {
    max-width: 850px;
    margin: 25px auto 0;
}


.orders-back .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


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

@media (max-width: 700px) {

    .orders-page {
        padding: 25px 0 50px;
    }


    .orders-header {
        margin-bottom: 25px;
    }


    .orders-header h1 {
        font-size: 28px;
    }


    .orders-header p {
        font-size: 14px;
        line-height: 1.7;
    }


    .order-card {
        padding: 17px;
        border-radius: 15px;
    }


    .order-card-header {
        align-items: flex-start;
    }


    .order-number {
        font-size: 20px;
    }


    .order-status {
        font-size: 12px;
        padding: 6px 10px;
    }


    .order-meta {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 17px 0;
    }


    .order-meta-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }


    .order-meta-item strong {
        text-align: left;
    }


    .order-card-total strong {
        font-size: 19px;
    }


    .order-card-actions {
        justify-content: stretch;
    }


    .order-card-actions .btn {
        width: 100%;
        min-width: 0;
    }


    .orders-empty {
        padding: 40px 20px;
        border-radius: 17px;
    }


    .orders-empty h2 {
        font-size: 21px;
    }

}
    html.loading,
    body.loading {
        overflow: hidden !important;
    }

    .site-loader {
        position: fixed;
        inset: 0;
        z-index: 999999999;

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

        background: #080808;

        opacity: 1;
        visibility: visible;
        
    }
    
#cart-toast {
    position: fixed;

    bottom: 25px;
    right: 25px;

    z-index: 999999;

    background: #171717;
    color: #fff;

    border: 1px solid #ffd400;

    padding: 13px 18px;

    border-radius: 12px;

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

    opacity: 0;

    transform: translateY(15px);

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

#cart-toast.show {
    opacity: 1;

    transform: translateY(0);
}

#cart-toast.error {
    border-color: #ff4d4d;
}

.add[data-loading="1"] {
    opacity: .6;
    pointer-events: none;
}
/* =========================================================
   SHEKOLAZA PAGE LOADER
   ========================================================= */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;

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

    background:
        radial-gradient(
            circle at center,
            rgba(215, 25, 32, 0.12) 0%,
            rgba(0, 0, 0, 0.03) 35%,
            #ffffff 75%
        );

    backdrop-filter: blur(8px);

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}


/* ---------------------------------------------------------
   Hide Loader
   --------------------------------------------------------- */

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* ---------------------------------------------------------
   Content
   --------------------------------------------------------- */

.loader-content {
    width: min(90%, 380px);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* ---------------------------------------------------------
   Logo
   --------------------------------------------------------- */

.loader-logo {
    position: relative;

    font-family:
        Arial,
        sans-serif;

    font-size: 38px;
    font-weight: 900;

    letter-spacing: 5px;

    color: #d71920;

    text-shadow:
        0 3px 0 #111,
        0 8px 20px rgba(215, 25, 32, 0.18);

    animation:
        loaderLogo 1.8s ease-in-out infinite;
}


/* Small shine */

.loader-logo::after {
    content: "";

    position: absolute;

    left: -15px;
    right: -15px;
    bottom: -10px;

    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d71920,
            #111,
            #d71920,
            transparent
        );

    opacity: 0.8;

    animation:
        loaderLine 1.8s ease-in-out infinite;
}


/* ---------------------------------------------------------
   Spinner
   --------------------------------------------------------- */

.loader-spinner {
    position: relative;

    width: 58px;
    height: 58px;

    margin-top: 38px;
    margin-bottom: 24px;

    border-radius: 50%;

    border: 4px solid rgba(215, 25, 32, 0.12);

    border-top-color: #d71920;
    border-right-color: #111;

    animation:
        loaderSpin 0.85s linear infinite;
}


/* Inner circle */

.loader-spinner::before {
    content: "";

    position: absolute;

    inset: 9px;

    border-radius: 50%;

    border: 3px solid transparent;

    border-bottom-color: #d71920;

    animation:
        loaderSpinReverse 0.65s linear infinite;
}


/* Center dot */

.loader-spinner::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #d71920;

    box-shadow:
        0 0 12px rgba(215, 25, 32, 0.5);
}


/* ---------------------------------------------------------
   Loading Text
   --------------------------------------------------------- */

.loader-text {
    min-height: 27px;

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

    font-size: 15px;

    font-weight: 700;

    color: #333;

    animation:
        loaderText 1.5s ease-in-out infinite;
}


/* ---------------------------------------------------------
   Progress
   --------------------------------------------------------- */

.loader-progress {
    position: relative;

    width: 260px;
    height: 6px;

    margin-top: 18px;

    overflow: hidden;

    border-radius: 999px;

    background: #eeeeee;

    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.08);
}


#loader-progress-bar {
    position: relative;

    width: 0%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #111 0%,
            #d71920 45%,
            #f22a31 70%,
            #111 100%
        );

    box-shadow:
        0 0 12px rgba(215, 25, 32, 0.35);

    transition:
        width 0.25s ease;

    overflow: hidden;
}


/* Moving shine */

#loader-progress-bar::after {
    content: "";

    position: absolute;

    top: 0;
    left: -80px;

    width: 80px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.8),
            transparent
        );

    animation:
        loaderShine 1.1s linear infinite;
}


/* ---------------------------------------------------------
   Animations
   --------------------------------------------------------- */

@keyframes loaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes loaderSpinReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


@keyframes loaderLogo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

}


@keyframes loaderLine {

    0%,
    100% {
        transform: scaleX(0.65);
        opacity: 0.35;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

}


@keyframes loaderText {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }

}


@keyframes loaderShine {

    from {
        left: -80px;
    }

    to {
        left: 280px;
    }

}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 480px) {

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

    .loader-spinner {
        width: 52px;
        height: 52px;

        margin-top: 32px;
    }

    .loader-progress {
        width: 220px;
    }

}
