﻿:root {
    --primary: #155eef;
    --primary-dark: #004eeb;
    --primary-light: #eff4ff;
    --dark: #101828;
    --dark-soft: #1d2939;
    --text: #344054;
    --muted: #667085;
    --muted-light: #98a2b3;
    --background: #ffffff;
    --background-soft: #f8fafc;
    --background-blue: #f5f8ff;
    --border: #eaecf0;
    --white: #ffffff;
    --success: #12b76a;
    --danger: #f04438;
    --warning: #f79009;
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 8px 25px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 20px 50px rgba(16, 24, 40, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
}


/* =========================================================
   BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

    body.mobile-menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--primary);
    color: white;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--dark);
    color: #d0d5dd;
    font-size: 12px;
}

.top-bar-content {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .top-bar-content > span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top-bar-content i {
        color: #84adff;
    }

.top-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .top-links a {
        transition: color 0.2s ease;
    }

        .top-links a:hover {
            color: white;
        }


/* =========================================================
   HEADER
========================================================= */

.main-header {
    background: white;
    border-bottom: 1px solid var(--border);
}

.header-content {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 38px;
}


/* Logo */

.monoka-logo {
    display: inline-flex;
    align-items: baseline;
    flex-shrink: 0;
    color: var(--dark);
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .monoka-logo span {
        color: var(--primary);
    }


/* Search */

.search-box {
    height: 48px;
    flex: 1;
    display: flex;
    border: 1px solid #d0d5dd;
    border-radius: var(--radius-sm);
    background: white;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .search-box:focus-within {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
    }

    .search-box input {
        min-width: 0;
        flex: 1;
        border: 0;
        outline: none;
        padding: 0 18px;
        color: var(--dark);
        background: transparent;
        font-size: 14px;
    }

        .search-box input::placeholder {
            color: var(--muted-light);
        }

    .search-box button {
        width: 55px;
        flex-shrink: 0;
        border: 0;
        background: var(--primary);
        color: white;
        font-size: 16px;
        transition: background 0.2s ease;
    }

        .search-box button:hover {
            background: var(--primary-dark);
        }


/* Header Actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.header-action {
    min-width: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--dark);
    font-size: 11px;
    transition: color 0.2s ease;
}

    .header-action:hover {
        color: var(--primary);
    }

    .header-action > i,
    .cart-icon > i {
        font-size: 19px;
    }

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -13px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid white;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--dark);
    font-size: 19px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-nav {
    background: white;
    border-bottom: 1px solid var(--border);
}

    .main-nav ul {
        min-height: 52px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        list-style: none;
    }

    .main-nav li a {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 17px 14px;
        color: var(--dark-soft);
        font-size: 13px;
        font-weight: 600;
        transition: color 0.2s ease;
    }

        .main-nav li a:hover {
            color: var(--primary);
        }

    .main-nav .shop-all a {
        padding-left: 0;
        color: var(--primary);
    }

.nav-deals {
    margin-left: auto;
}

    .nav-deals a {
        color: var(--danger) !important;
    }


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    z-index: 1001;
    width: 300px;
    padding: 20px;
    background: white;
    box-shadow: -20px 0 50px rgba(16, 24, 40, 0.15);
    transition: right 0.3s ease;
}

    .mobile-navigation.active {
        right: 0;
    }

.mobile-navigation-header {
    padding-bottom: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    font-weight: 700;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--background-soft);
    color: var(--dark);
}

.mobile-navigation > a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid #f2f4f7;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.mobile-navigation .mobile-deals {
    color: var(--danger);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    background: rgba(16, 24, 40, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mobile-overlay.active {
        visibility: visible;
        opacity: 1;
    }


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: radial-gradient( circle at 80% 30%, rgba(21, 94, 239, 0.10), transparent 28% ), linear-gradient( 135deg, #fbfcff 0%, #f4f7ff 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 600px;
    margin: 15px 0 22px;
    color: var(--dark);
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -3px;
}

    .hero h1 span {
        display: block;
        color: var(--primary);
    }

.hero-description {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}


/* Buttons */

.hero-buttons {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    background: var(--primary);
    color: white;
}

    .button-primary:hover {
        background: var(--primary-dark);
        color: white;
    }

.button-secondary {
    border: 1px solid #d0d5dd;
    background: white;
    color: var(--dark);
}

    .button-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
    }


/* Hero Benefits */

.hero-benefits {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

    .hero-benefits > div {
        display: flex;
        align-items: center;
        gap: 7px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 600;
    }

    .hero-benefits i {
        color: var(--primary);
    }


/* Hero Visual */

.hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background: linear-gradient( 145deg, white, #e9efff );
    box-shadow: 0 30px 70px rgba(21, 94, 239, 0.10);
}

.hero-device {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 250px;
    display: grid;
    place-items: center;
}

    .hero-device i {
        color: #344054;
        font-size: 160px;
        filter: drop-shadow( 0 20px 20px rgba(16, 24, 40, 0.15) );
    }

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 190px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(234, 236, 240, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.floating-card-top {
    top: 40px;
    left: 5px;
}

.floating-card-bottom {
    right: 0;
    bottom: 45px;
}

.floating-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
}

.floating-card small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 9px;
}

.floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 11px;
}


/* =========================================================
   SERVICE STRIP
========================================================= */

.service-strip {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-item {
    min-height: 105px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid var(--border);
}

    .service-item:first-child {
        padding-left: 0;
    }

    .service-item:last-child {
        border-right: 0;
    }

    .service-item > i {
        color: var(--primary);
        font-size: 22px;
    }

    .service-item strong {
        display: block;
        margin-bottom: 3px;
        color: var(--dark);
        font-size: 13px;
    }

    .service-item span {
        display: block;
        color: var(--muted);
        font-size: 11px;
    }


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section {
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

    .section-heading h2 {
        margin: 7px 0 5px;
        color: var(--dark);
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .section-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }

.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

    .section-link i {
        transition: transform 0.2s ease;
    }

    .section-link:hover i {
        transform: translateX(4px);
    }


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-card {
    min-height: 220px;
    padding: 28px 18px 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
        border-color: #b2ccff;
        box-shadow: var(--shadow-md);
    }

.category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 27px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.05);
    background: var(--primary);
    color: white;
}

.category-card h3 {
    margin: 0 0 7px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.category-card p {
    min-height: 35px;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.category-card > span {
    margin-top: auto;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

    .category-card > span i {
        margin-left: 4px;
        font-size: 9px;
    }


/* =========================================================
   PROMOTIONAL BANNER
========================================================= */

.promo-section {
    padding-bottom: 20px;
}

.promo-banner {
    min-height: 340px;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient( 120deg, #101828, #1d2939 );
    color: white;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #84adff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.promo-content h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.promo-content p {
    margin-bottom: 25px;
    color: #d0d5dd;
    font-size: 14px;
}

.promo-button {
    background: white;
    color: var(--dark);
}

    .promo-button:hover {
        color: var(--primary);
    }

.promo-visual {
    min-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #84adff;
}

    .promo-visual i:nth-child(1) {
        transform: rotate(-12deg);
        font-size: 85px;
        opacity: 0.7;
    }

    .promo-visual i:nth-child(2) {
        font-size: 145px;
    }

    .promo-visual i:nth-child(3) {
        transform: rotate(15deg);
        font-size: 70px;
        opacity: 0.7;
    }


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--background-soft);
}

.product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        border-color: #d0d5dd;
        box-shadow: var(--shadow-md);
    }

.product-image {
    position: relative;
    height: 235px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient( 145deg, #fbfcfd, #f2f4f7 );
}

.product-placeholder {
    color: #98a2b3;
    font-size: 88px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-card:hover .product-placeholder {
    transform: scale(1.06);
    color: #667085;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 5px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.product-badge-new {
    background: var(--success);
}

.product-badge-sale {
    background: var(--danger);
}

.wishlist-button {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 2;
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--dark);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .wishlist-button:hover {
        transform: scale(1.05);
        border-color: #fda29b;
        color: var(--danger);
    }

.product-content {
    padding: 21px;
}

.product-brand {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.product-content h3 {
    min-height: 43px;
    margin: 7px 0 5px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

    .product-content h3 a:hover {
        color: var(--primary);
    }

.product-specification {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.stock-status {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-size: 10px;
    font-weight: 600;
}

.stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

.product-price-row {
    padding-top: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .product-price strong {
        color: var(--dark);
        font-size: 19px;
        font-weight: 800;
    }

.price-label {
    color: var(--muted);
    font-size: 9px;
}

.old-price {
    color: var(--muted-light);
    font-size: 10px;
    text-decoration: line-through;
}

.add-cart-button {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .add-cart-button:hover {
        transform: translateY(-2px);
        background: var(--primary-dark);
    }


/* =========================================================
   BUSINESS SECTION
========================================================= */

.business-section {
    padding: 70px 0;
    background: white;
}

.business-card {
    padding: 42px 48px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #d1e0ff;
    border-radius: var(--radius-lg);
    background: linear-gradient( 120deg, #f5f8ff, #ffffff );
}

.business-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--primary);
    color: white;
    font-size: 26px;
}

.business-content {
    flex: 1;
}

    .business-content > span {
        color: var(--primary);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.7px;
    }

    .business-content h2 {
        margin: 6px 0 8px;
        color: var(--dark);
        font-size: 25px;
        font-weight: 800;
        letter-spacing: -0.6px;
    }

    .business-content p {
        max-width: 690px;
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.6;
    }

.business-button {
    min-height: 47px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

    .business-button:hover {
        background: var(--primary-dark);
        color: white;
    }


/* =========================================================
   BRANDS
========================================================= */

.brands-section {
    padding: 45px 0 55px;
    border-top: 1px solid var(--border);
    background: white;
}

.brands-title {
    margin-bottom: 30px;
    color: var(--muted-light);
    text-align: center;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 25px;
    text-align: center;
}

    .brands-grid span {
        color: #98a2b3;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.5px;
        transition: color 0.2s ease;
    }

        .brands-grid span:hover {
            color: var(--dark);
        }


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 65px 0 25px;
    background: var(--dark);
    color: #98a2b3;
}

    .site-footer .monoka-logo {
        margin-bottom: 20px;
        color: white;
    }

.footer-description {
    max-width: 330px;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.7;
}

.social-links {
    margin-top: 22px;
    display: flex;
    gap: 9px;
}

    .social-links a {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border: 1px solid #344054;
        border-radius: 50%;
        color: #d0d5dd;
        font-size: 13px;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

        .social-links a:hover {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

.site-footer h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.site-footer .col-lg-2 > a {
    display: block;
    margin-bottom: 11px;
    color: #98a2b3;
    font-size: 12px;
    transition: color 0.2s ease;
}

    .site-footer .col-lg-2 > a:hover {
        color: white;
    }

.site-footer .col-lg-4 > p {
    font-size: 12px;
    line-height: 1.7;
}

.newsletter {
    max-width: 390px;
    height: 45px;
    display: flex;
    overflow: hidden;
    border: 1px solid #344054;
    border-radius: var(--radius-sm);
    background: #1d2939;
}

    .newsletter input {
        min-width: 0;
        flex: 1;
        border: 0;
        outline: none;
        padding: 0 14px;
        background: transparent;
        color: white;
        font-size: 12px;
    }

        .newsletter input::placeholder {
            color: #667085;
        }

    .newsletter button {
        width: 48px;
        border: 0;
        background: var(--primary);
        color: white;
    }

.footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #344054;
    color: #667085;
    font-size: 10px;
}

    .footer-bottom div {
        display: flex;
        gap: 20px;
    }

    .footer-bottom a:hover {
        color: white;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .main-nav li a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .top-bar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .header-content {
        min-height: auto;
        padding: 18px 0;
        flex-wrap: wrap;
        gap: 18px;
    }

    .search-box {
        order: 3;
        flex-basis: 100%;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-action:nth-child(2) {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
    }


    /* Hero */

    .hero {
        padding: 65px 0 45px;
    }

        .hero h1 {
            max-width: 650px;
            font-size: 54px;
        }

    .hero-visual {
        min-height: 360px;
        margin-top: 30px;
    }

    .hero-circle {
        width: 320px;
        height: 320px;
    }

    .hero-device i {
        font-size: 135px;
    }


    /* Services */

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        border-bottom: 1px solid var(--border);
    }

        .service-item:nth-child(2) {
            border-right: 0;
        }

        .service-item:nth-child(3),
        .service-item:nth-child(4) {
            border-bottom: 0;
        }

        .service-item:first-child {
            padding-left: 25px;
        }


    /* Promo */

    .promo-banner {
        padding: 45px;
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-visual {
        min-width: 0;
        width: 100%;
    }


    /* Business */

    .business-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .business-content {
        flex: 1 1 70%;
    }

    .business-button {
        margin-left: 100px;
    }


    /* Brands */

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Header */

    .monoka-logo {
        font-size: 23px;
    }

    .header-actions {
        gap: 15px;
    }

    .header-action > span {
        display: none;
    }

    .header-action {
        min-width: auto;
    }

    .search-box {
        height: 45px;
    }


    /* Hero */

    .hero {
        padding-top: 50px;
    }

        .hero h1 {
            font-size: 43px;
            letter-spacing: -2px;
        }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

        .hero-buttons .button {
            width: 100%;
        }

    .hero-benefits {
        gap: 15px;
    }

        .hero-benefits > div {
            font-size: 10px;
        }

    .hero-visual {
        min-height: 300px;
    }

    .hero-circle {
        width: 240px;
        height: 240px;
    }

    .hero-device i {
        font-size: 105px;
    }

    .floating-card {
        min-width: 155px;
        padding: 10px 12px;
    }

    .floating-card-top {
        top: 25px;
        left: 0;
    }

    .floating-card-bottom {
        right: 0;
        bottom: 25px;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
    }

    .floating-card strong {
        font-size: 9px;
    }


    /* Services */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        min-height: 85px;
        padding: 18px 5px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

        .service-item:first-child {
            padding-left: 5px;
        }

        .service-item:nth-child(3) {
            border-bottom: 1px solid var(--border);
        }

        .service-item:last-child {
            border-bottom: 0;
        }


    /* Sections */

    .section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 28px;
        align-items: flex-start;
    }

        .section-heading h2 {
            font-size: 27px;
        }

    .section-link {
        display: none;
    }


    /* Categories */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        min-height: 190px;
        padding: 22px 12px;
    }

    .category-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .category-card h3 {
        font-size: 14px;
    }

    .category-card p {
        font-size: 10px;
    }


    /* Promo */

    .promo-section {
        padding: 0;
    }

    .promo-banner {
        min-height: 0;
        padding: 38px 28px;
        border-radius: 0;
    }

    .promo-content h2 {
        font-size: 34px;
    }

    .promo-visual {
        padding-top: 10px;
    }

        .promo-visual i:nth-child(1) {
            font-size: 48px;
        }

        .promo-visual i:nth-child(2) {
            font-size: 85px;
        }

        .promo-visual i:nth-child(3) {
            font-size: 40px;
        }


    /* Products */

    .product-image {
        height: 220px;
    }


    /* Business */

    .business-section {
        padding: 50px 0;
    }

    .business-card {
        padding: 30px 25px;
        flex-direction: column;
    }

    .business-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .business-content h2 {
        font-size: 22px;
    }

    .business-button {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }


    /* Brands */

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Footer */

    .site-footer {
        padding-top: 50px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

        .footer-bottom div {
            flex-wrap: wrap;
        }
}

/* =========================================================
   SHOP PAGE
========================================================= */

.shop-breadcrumb {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    background: white;
}

    .shop-breadcrumb .container {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--muted);
        font-size: 11px;
    }

    .shop-breadcrumb a:hover {
        color: var(--primary);
    }

    .shop-breadcrumb i {
        color: var(--muted-light);
        font-size: 8px;
    }

    .shop-breadcrumb span {
        color: var(--dark);
    }


/* Shop Heading */

.shop-header {
    padding: 45px 0;
    border-bottom: 1px solid var(--border);
    background: linear-gradient( 135deg, #fbfcff, #f4f7ff );
}

    .shop-header h1 {
        margin: 7px 0 7px;
        color: var(--dark);
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -1.5px;
    }

    .shop-header p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }


/* Main Shop */

.shop-section {
    padding: 45px 0 80px;
    background: var(--background-soft);
}

.shop-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 35px;
}


/* =========================================================
   SHOP SIDEBAR
========================================================= */

.shop-sidebar {
    align-self: start;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

.filter-heading {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

    .filter-heading strong {
        color: var(--dark);
        font-size: 14px;
    }

    .filter-heading button {
        padding: 0;
        border: 0;
        background: none;
        color: var(--primary);
        font-size: 10px;
        font-weight: 700;
    }

.filter-group {
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
}

    .filter-group:last-child {
        border-bottom: 0;
    }

.filter-title {
    width: 100%;
    padding: 19px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: none;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

    .filter-title i {
        color: var(--muted);
        font-size: 9px;
    }

.filter-content {
    padding-bottom: 19px;
}

.filter-checkbox {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: var(--text);
    font-size: 11px;
}

    .filter-checkbox input {
        width: 15px;
        height: 15px;
        accent-color: var(--primary);
    }

    .filter-checkbox span {
        flex: 1;
    }

    .filter-checkbox small {
        color: var(--muted-light);
        font-size: 9px;
    }


/* Filter Search */

.filter-search {
    height: 36px;
    margin-bottom: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

    .filter-search i {
        color: var(--muted-light);
        font-size: 10px;
    }

    .filter-search input {
        min-width: 0;
        width: 100%;
        border: 0;
        outline: none;
        font-size: 10px;
    }


/* Price */

.price-filter {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .price-filter input {
        min-width: 0;
        width: 50%;
        height: 36px;
        padding: 0 9px;
        border: 1px solid var(--border);
        border-radius: 6px;
        outline: none;
        font-size: 10px;
    }

        .price-filter input:focus {
            border-color: var(--primary);
        }

    .price-filter span {
        color: var(--muted);
    }

.apply-filter-button {
    width: 100%;
    height: 35px;
    margin-top: 10px;
    border: 0;
    border-radius: 6px;
    background: var(--dark);
    color: white;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   SHOP PRODUCTS
========================================================= */

.shop-products {
    min-width: 0;
}


/* Toolbar */

.shop-toolbar {
    min-height: 60px;
    margin-bottom: 22px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
}

.shop-results {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
}

    .shop-results strong {
        color: var(--dark);
    }

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.view-buttons {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

    .view-buttons button {
        width: 35px;
        height: 34px;
        border: 0;
        border-right: 1px solid var(--border);
        background: white;
        color: var(--muted);
    }

        .view-buttons button:last-child {
            border-right: 0;
        }

        .view-buttons button.active {
            background: var(--primary-light);
            color: var(--primary);
        }

.sort-select {
    height: 36px;
    min-width: 165px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    color: var(--dark);
    outline: none;
    font-size: 10px;
}

.mobile-filter-button {
    display: none;
    height: 36px;
    padding: 0 12px;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
}


/* Product Grid */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

    .shop-product-grid .product-image {
        height: 210px;
    }


/* Pagination */

.shop-pagination {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

    .shop-pagination button {
        min-width: 37px;
        height: 37px;
        padding: 0 10px;
        border: 1px solid var(--border);
        border-radius: 6px;
        background: white;
        color: var(--dark);
        font-size: 10px;
        font-weight: 600;
        transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

        .shop-pagination button:hover:not(:disabled),
        .shop-pagination button.active {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

        .shop-pagination button:disabled {
            cursor: default;
            color: var(--muted-light);
        }

    .shop-pagination span {
        color: var(--muted);
        font-size: 11px;
    }


/* =========================================================
   SHOP RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .shop-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 25px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 991px) {

    .shop-layout {
        display: block;
    }

    .shop-sidebar {
        display: none;
    }

    .mobile-filter-button {
        display: inline-flex;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 576px) {

    .shop-header {
        padding: 35px 0;
    }

        .shop-header h1 {
            font-size: 31px;
        }

    .shop-section {
        padding-top: 25px;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-results {
        justify-content: space-between;
    }

    .shop-toolbar-right {
        justify-content: space-between;
    }

    .view-buttons {
        display: none;
    }

    .sort-select {
        width: 100%;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
    }

        .shop-product-grid .product-image {
            height: 230px;
        }
}

/* =========================================================
   PRODUCT DETAILS PAGE
========================================================= */

.product-page {
    padding: 55px 0 70px;
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    gap: 70px;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.product-main-image {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient( 145deg, #fbfcfd, #f2f4f7 );
}

.product-detail-placeholder {
    color: #667085;
    font-size: 200px;
    filter: drop-shadow( 0 25px 30px rgba(16, 24, 40, 0.12) );
}

.product-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 7px 11px;
    border-radius: 5px;
    background: var(--danger);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.product-detail-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--dark);
    font-size: 17px;
}

    .product-detail-wishlist:hover {
        border-color: #fda29b;
        color: var(--danger);
    }


/* Thumbnails */

.product-thumbnails {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-thumbnail {
    height: 90px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--background-soft);
    color: #98a2b3;
    font-size: 30px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

    .product-thumbnail:hover,
    .product-thumbnail.active {
        border-color: var(--primary);
        color: var(--primary);
    }


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-detail-info {
    padding-top: 5px;
}

.product-detail-brand {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-detail-info h1 {
    margin: 8px 0 7px;
    color: var(--dark);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.product-model {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

    .product-model strong {
        color: var(--text);
    }


/* Rating */

.product-rating {
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
}

.product-rating > span {
    color: var(--dark);
    font-weight: 700;
}

.product-rating > a {
    padding-left: 8px;
    border-left: 1px solid var(--border);
    color: var(--primary);
}

.product-detail-divider {
    height: 1px;
    margin: 23px 0;
    background: var(--border);
}


/* Price */

.product-detail-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

    .product-detail-price strong {
        color: var(--dark);
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -1px;
    }

.product-detail-old-price {
    color: var(--muted-light);
    font-size: 14px;
    text-decoration: line-through;
}

.vat-label {
    color: var(--muted);
    font-size: 9px;
}

.saving-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 5px 8px;
    border-radius: 5px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 9px;
    font-weight: 700;
}


/* Stock */

.product-detail-stock {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
}

    .product-detail-stock strong {
        color: var(--success);
    }

    .product-detail-stock > span:last-child {
        padding-left: 8px;
        border-left: 1px solid var(--border);
        color: var(--muted);
    }


/* Highlights */

.product-highlights {
    margin-top: 28px;
}

    .product-highlights h3 {
        margin-bottom: 13px;
        color: var(--dark);
        font-size: 13px;
        font-weight: 700;
    }

    .product-highlights ul {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
        list-style: none;
    }

    .product-highlights li {
        color: var(--text);
        font-size: 11px;
    }

        .product-highlights li i {
            margin-right: 7px;
            color: var(--success);
            font-size: 9px;
        }


/* =========================================================
   PURCHASE
========================================================= */

.purchase-section {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 10px;
}

.quantity-selector {
    height: 50px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

    .quantity-selector button {
        border: 0;
        background: var(--background-soft);
        color: var(--dark);
        font-size: 9px;
    }

.quantity-input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: none;
    text-align: center;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    -moz-appearance: textfield;
}

    .quantity-input::-webkit-inner-spin-button,
    .quantity-input::-webkit-outer-spin-button {
        margin: 0;
        -webkit-appearance: none;
    }

.product-add-cart {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .product-add-cart:hover {
        transform: translateY(-1px);
        background: var(--primary-dark);
    }

.buy-now-button {
    width: 100%;
    height: 48px;
    margin-top: 10px;
    border: 1px solid var(--dark);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

    .buy-now-button:hover {
        background: var(--dark);
        color: white;
    }


/* =========================================================
   QUOTE
========================================================= */

.product-quote-box {
    margin-top: 22px;
    padding: 16px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid #d1e0ff;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
}

    .product-quote-box > div:first-child {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 8px;
        background: white;
        color: var(--primary);
    }

    .product-quote-box strong {
        display: block;
        margin-bottom: 2px;
        color: var(--dark);
        font-size: 10px;
    }

    .product-quote-box span {
        display: block;
        color: var(--muted);
        font-size: 9px;
    }

    .product-quote-box > a {
        color: var(--primary);
        font-size: 9px;
        font-weight: 700;
    }


/* =========================================================
   PURCHASE BENEFITS
========================================================= */

.product-purchase-benefits {
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

    .product-purchase-benefits > div {
        padding: 14px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid var(--border);
    }

        .product-purchase-benefits > div > i {
            width: 22px;
            color: var(--primary);
            text-align: center;
            font-size: 15px;
        }

    .product-purchase-benefits span {
        color: var(--muted);
        font-size: 9px;
    }

    .product-purchase-benefits strong {
        display: block;
        margin-bottom: 2px;
        color: var(--dark);
        font-size: 10px;
    }


/* =========================================================
   PRODUCT INFORMATION / TABS
========================================================= */

.product-information {
    padding: 0 0 70px;
    background: white;
}

.product-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.product-tab {
    position: relative;
    padding: 17px 25px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

    .product-tab.active {
        color: var(--primary);
    }

        .product-tab.active::after {
            position: absolute;
            right: 0;
            bottom: -1px;
            left: 0;
            height: 2px;
            background: var(--primary);
            content: "";
        }

.product-tab-content {
    display: none;
    max-width: 950px;
    padding: 35px 5px;
}

    .product-tab-content.active {
        display: block;
    }

    .product-tab-content h2 {
        margin-bottom: 15px;
        color: var(--dark);
        font-size: 20px;
        font-weight: 800;
    }

    .product-tab-content p {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.8;
    }


/* Specifications */

.specification-table {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

    .specification-table > div {
        min-height: 48px;
        display: grid;
        grid-template-columns: 220px 1fr;
        align-items: center;
        border-bottom: 1px solid var(--border);
    }

        .specification-table > div:last-child {
            border-bottom: 0;
        }

    .specification-table span,
    .specification-table strong {
        padding: 12px 18px;
        font-size: 10px;
    }

    .specification-table span {
        height: 100%;
        display: flex;
        align-items: center;
        background: var(--background-soft);
        color: var(--muted);
    }

    .specification-table strong {
        color: var(--dark);
        font-weight: 600;
    }


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.related-products {
    border-top: 1px solid var(--border);
    background: var(--background-soft);
}


/* =========================================================
   PRODUCT RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .product-main-image {
        min-height: 440px;
    }
}


@media (max-width: 576px) {

    .product-page {
        padding-top: 30px;
    }

    .product-main-image {
        min-height: 330px;
    }

    .product-detail-placeholder {
        font-size: 130px;
    }

    .product-thumbnails {
        gap: 7px;
    }

    .product-thumbnail {
        height: 70px;
        font-size: 23px;
    }

    .product-detail-info h1 {
        font-size: 27px;
    }

    .product-detail-price strong {
        font-size: 27px;
    }

    .product-highlights ul {
        grid-template-columns: 1fr;
    }

    .purchase-section {
        grid-template-columns: 105px 1fr;
    }

    .product-quote-box {
        grid-template-columns: 40px 1fr;
    }

        .product-quote-box > a {
            grid-column: 2;
            margin-top: 2px;
        }

    .product-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .product-tab {
        padding: 15px 17px;
    }

    .specification-table > div {
        grid-template-columns: 120px 1fr;
    }
}

/* =========================================================
   CART PAGE
========================================================= */

.cart-page {
    padding: 55px 0 80px;
    background: var(--background-soft);
}

.cart-page-heading {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

    .cart-page-heading h1 {
        margin: 7px 0 5px;
        color: var(--dark);
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -1.3px;
    }

    .cart-page-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 11px;
    }

.continue-shopping {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   CART LAYOUT
========================================================= */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 30px;
}


/* =========================================================
   CART ITEMS
========================================================= */

.cart-items {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

.cart-item {
    padding: 24px;
    display: grid;
    grid-template-columns: 110px minmax(200px, 1fr) 120px 105px 105px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-product-image {
    width: 110px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--background-soft);
    color: #98a2b3;
    font-size: 43px;
    transition: color 0.2s ease, background 0.2s ease;
}

    .cart-product-image:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

.cart-product-brand {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.cart-product-details h2 {
    margin: 0 0 5px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

    .cart-product-details h2 a:hover {
        color: var(--primary);
    }

.cart-product-details > p {
    margin: 0;
    color: var(--muted);
    font-size: 9px;
}

.cart-stock {
    margin-top: 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-size: 9px;
    font-weight: 600;
}

.cart-remove {
    margin-top: 10px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: none;
    color: var(--muted);
    font-size: 9px;
    transition: color 0.2s ease;
}

    .cart-remove:hover {
        color: var(--danger);
    }


/* =========================================================
   QUANTITY
========================================================= */

.cart-column-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-light);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cart-quantity {
    width: 105px;
    height: 38px;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 6px;
}

    .cart-quantity button {
        border: 0;
        background: var(--background-soft);
        color: var(--dark);
        font-size: 8px;
    }

.cart-quantity-input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: none;
    text-align: center;
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    -moz-appearance: textfield;
}

    .cart-quantity-input::-webkit-inner-spin-button,
    .cart-quantity-input::-webkit-outer-spin-button {
        margin: 0;
        -webkit-appearance: none;
    }

.cart-unit-price {
    color: var(--text);
    font-size: 11px;
    font-weight: 600;
}

.cart-line-total {
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   CART ACTIONS
========================================================= */

.cart-actions {
    padding: 22px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    background: #fcfcfd;
}

.promo-code label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
}

.promo-code > div {
    height: 38px;
    display: flex;
}

.promo-code input {
    width: 170px;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-right: 0;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 9px;
}

    .promo-code input:focus {
        border-color: var(--primary);
    }

.promo-code button {
    padding: 0 15px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: var(--dark);
    color: white;
    font-size: 9px;
    font-weight: 700;
}

.clear-cart {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: none;
    color: var(--muted);
    font-size: 9px;
}

    .clear-cart:hover {
        color: var(--danger);
    }


/* =========================================================
   CART SUMMARY
========================================================= */

.cart-summary {
    position: sticky;
    top: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

    .cart-summary h2 {
        margin: 0 0 25px;
        color: var(--dark);
        font-size: 17px;
        font-weight: 800;
    }

.summary-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: 10px;
}

    .summary-row strong {
        color: var(--dark);
        font-size: 10px;
        font-weight: 600;
    }

    .summary-row .delivery-calculated {
        color: var(--muted);
        font-size: 9px;
        font-weight: 500;
    }

.summary-divider {
    height: 1px;
    margin: 22px 0;
    background: var(--border);
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

    .summary-total span {
        color: var(--dark);
        font-size: 13px;
        font-weight: 700;
    }

    .summary-total strong {
        color: var(--dark);
        font-size: 22px;
        font-weight: 800;
    }

.summary-vat {
    margin: 5px 0 22px;
    color: var(--muted-light);
    text-align: right;
    font-size: 8px;
}

.checkout-button {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .checkout-button:hover {
        transform: translateY(-1px);
        background: var(--primary-dark);
        color: white;
    }

.secure-checkout {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted);
    font-size: 8px;
}

    .secure-checkout i {
        color: var(--success);
    }


/* =========================================================
   PAYMENT METHODS
========================================================= */

.payment-methods {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
}

    .payment-methods > span {
        display: block;
        margin-bottom: 10px;
        color: var(--muted-light);
        font-size: 8px;
    }

    .payment-methods > div {
        display: flex;
        justify-content: center;
        gap: 7px;
    }

        .payment-methods > div span {
            min-width: 40px;
            padding: 5px 7px;
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--muted);
            font-size: 8px;
            font-weight: 800;
        }


/* =========================================================
   CART BUSINESS
========================================================= */

.cart-business-box {
    margin-top: 30px;
    padding: 27px 30px;
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 20px;
    border: 1px solid #d1e0ff;
    border-radius: var(--radius-md);
    background: linear-gradient( 120deg, #f5f8ff, white );
}

.cart-business-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-size: 20px;
}

.cart-business-box > div:nth-child(2) > span {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.cart-business-box h3 {
    margin: 4px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
}

.cart-business-box p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.cart-business-box > a {
    min-height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
}

    .cart-business-box > a:hover {
        background: var(--primary);
        color: white;
    }


/* =========================================================
   CART TABLET
========================================================= */

@media (max-width: 1199px) {

    .cart-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .cart-item {
        grid-template-columns: 90px minmax(170px, 1fr) 105px 90px;
    }

    .cart-product-image {
        width: 90px;
        height: 90px;
    }

    .cart-price-area {
        display: none;
    }
}


/* =========================================================
   CART MOBILE/TABLET
========================================================= */

@media (max-width: 991px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}


/* =========================================================
   CART MOBILE
========================================================= */

@media (max-width: 700px) {

    .cart-page {
        padding-top: 35px;
    }

    .cart-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

        .cart-page-heading h1 {
            font-size: 30px;
        }

    .cart-item {
        padding: 18px;
        grid-template-columns: 85px 1fr;
        align-items: start;
        gap: 15px;
    }

    .cart-product-image {
        width: 85px;
        height: 85px;
        font-size: 34px;
    }

    .cart-quantity-area {
        grid-column: 2;
    }

    .cart-total-area {
        grid-column: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .cart-total-area .cart-column-label {
            margin: 0;
        }

    .cart-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .promo-code > div {
        width: 100%;
    }

    .promo-code input {
        flex: 1;
        width: auto;
    }

    .clear-cart {
        align-self: flex-start;
    }

    .cart-business-box {
        grid-template-columns: 50px 1fr;
    }

        .cart-business-box > a {
            grid-column: 1 / -1;
            justify-content: center;
        }
}

/* =========================================================
   CHECKOUT
========================================================= */

.checkout-body {
    background: #f8fafc;
}


/* Header */

.checkout-header {
    border-bottom: 1px solid var(--border);
    background: white;
}

.checkout-header-content {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-secure {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}

    .checkout-secure i {
        color: var(--success);
    }


/* =========================================================
   PROGRESS
========================================================= */

.checkout-progress {
    border-bottom: 1px solid var(--border);
    background: white;
}

.checkout-progress-inner {
    max-width: 470px;
    min-height: 65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
}

    .checkout-step > span {
        width: 25px;
        height: 25px;
        display: grid;
        place-items: center;
        border: 1px solid #d0d5dd;
        border-radius: 50%;
        background: white;
        font-size: 8px;
        font-weight: 800;
    }

    .checkout-step strong {
        font-size: 9px;
    }

    .checkout-step.active {
        color: var(--primary);
    }

        .checkout-step.active > span {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

.checkout-progress-line {
    width: 65px;
    height: 1px;
    margin: 0 12px;
    background: #d0d5dd;
}

    .checkout-progress-line.active {
        background: var(--primary);
    }


/* =========================================================
   PAGE
========================================================= */

.checkout-page {
    padding: 45px 0 75px;
}

.checkout-title {
    margin-bottom: 30px;
}

    .checkout-title > a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 16px;
        color: var(--primary);
        font-size: 9px;
        font-weight: 700;
    }

    .checkout-title h1 {
        margin: 0 0 6px;
        color: var(--dark);
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .checkout-title p {
        margin: 0;
        color: var(--muted);
        font-size: 11px;
    }


/* =========================================================
   LAYOUT
========================================================= */

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    align-items: start;
    gap: 30px;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   CHECKOUT CARD
========================================================= */

.checkout-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

.checkout-card-heading {
    min-height: 72px;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--border);
}

.checkout-heading-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
}

.checkout-card-heading span {
    display: block;
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.checkout-card-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.checkout-card-body {
    padding: 25px;
}


/* =========================================================
   FORM
========================================================= */

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.checkout-field.full-width {
    grid-column: 1 / -1;
}

.checkout-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
}

    .checkout-field label > span {
        color: var(--danger);
    }

    .checkout-field label small {
        margin-left: 4px;
        color: var(--muted-light);
        font-size: 8px;
        font-weight: 400;
    }

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 7px;
    outline: none;
    background: white;
    color: var(--dark);
    font-size: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-field input,
.checkout-field select {
    height: 43px;
    padding: 0 12px;
}

.checkout-field textarea {
    padding: 12px;
    resize: vertical;
}

    .checkout-field input:focus,
    .checkout-field select:focus,
    .checkout-field textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.07);
    }

    .checkout-field input::placeholder,
    .checkout-field textarea::placeholder {
        color: var(--muted-light);
    }


/* Account checkbox */

.checkout-checkbox {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

    .checkout-checkbox input {
        margin-top: 2px;
        accent-color: var(--primary);
    }

    .checkout-checkbox strong {
        display: block;
        color: var(--dark);
        font-size: 9px;
    }

    .checkout-checkbox small {
        display: block;
        margin-top: 2px;
        color: var(--muted);
        font-size: 8px;
    }


/* =========================================================
   DELIVERY
========================================================= */

.delivery-option {
    min-height: 75px;
    margin-bottom: 10px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .delivery-option.selected {
        border-color: var(--primary);
        background: var(--primary-light);
    }

    .delivery-option > input {
        accent-color: var(--primary);
    }

.delivery-option-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: white;
    color: var(--primary);
}

.delivery-option-content {
    flex: 1;
}

    .delivery-option-content strong {
        display: block;
        margin-bottom: 3px;
        color: var(--dark);
        font-size: 10px;
    }

    .delivery-option-content small {
        display: block;
        color: var(--muted);
        font-size: 8px;
    }

.delivery-option-price {
    color: var(--dark);
    font-size: 10px;
}

.delivery-note {
    margin-top: 15px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-radius: 7px;
    background: #f9fafb;
    color: var(--muted);
}

    .delivery-note i {
        margin-top: 2px;
        color: var(--primary);
        font-size: 10px;
    }

    .delivery-note p {
        margin: 0;
        font-size: 8px;
        line-height: 1.6;
    }


/* =========================================================
   PAYMENT
========================================================= */

.payment-intro {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 9px;
}

.payment-option {
    min-height: 70px;
    margin-bottom: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .payment-option.selected {
        border-color: var(--primary);
        background: var(--primary-light);
    }

    .payment-option > input {
        display: none;
    }

.payment-radio-visual {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid #98a2b3;
    border-radius: 50%;
    background: white;
    box-shadow: inset 0 0 0 4px white;
}

.payment-option.selected .payment-radio-visual {
    border-color: var(--primary);
    background: var(--primary);
}

.payment-option-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: white;
    color: var(--primary);
    font-size: 14px;
}

.payment-option-content {
    flex: 1;
}

    .payment-option-content strong {
        display: block;
        margin-bottom: 2px;
        color: var(--dark);
        font-size: 10px;
    }

    .payment-option-content small {
        color: var(--muted);
        font-size: 8px;
    }

.payment-brand-list {
    display: flex;
    gap: 5px;
}

    .payment-brand-list span {
        padding: 4px 6px;
        border: 1px solid var(--border);
        border-radius: 3px;
        background: white;
        color: var(--muted);
        font-size: 7px;
        font-weight: 800;
    }

.payment-security-message {
    margin-top: 18px;
    padding: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 7px;
    background: #ecfdf3;
}

    .payment-security-message > i {
        margin-top: 2px;
        color: var(--success);
    }

    .payment-security-message strong {
        display: block;
        margin-bottom: 2px;
        color: #027a48;
        font-size: 9px;
    }

    .payment-security-message span {
        display: block;
        color: #475467;
        font-size: 8px;
        line-height: 1.5;
    }


/* =========================================================
   SUMMARY
========================================================= */

.checkout-summary {
    position: sticky;
    top: 20px;
}

.checkout-summary-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

    .checkout-summary-card > h2 {
        margin: 0 0 23px;
        color: var(--dark);
        font-size: 16px;
        font-weight: 800;
    }


/* Products */

.checkout-product {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 10px;
}

.checkout-product-image {
    position: relative;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: var(--background-soft);
    color: #98a2b3;
    font-size: 22px;
}

    .checkout-product-image > span {
        position: absolute;
        top: -7px;
        right: -7px;
        width: 18px;
        height: 18px;
        display: grid;
        place-items: center;
        border: 2px solid white;
        border-radius: 50%;
        background: var(--dark);
        color: white;
        font-size: 7px;
        font-weight: 700;
    }

.checkout-product-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 9px;
    line-height: 1.4;
}

.checkout-product-info small {
    display: block;
    color: var(--muted);
    font-size: 7px;
}

.checkout-product-price {
    color: var(--dark);
    font-size: 9px;
}

.checkout-summary-divider {
    height: 1px;
    margin: 21px 0;
    background: var(--border);
}

.checkout-summary-row {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: 9px;
}

    .checkout-summary-row strong {
        color: var(--dark);
        font-size: 9px;
    }

.checkout-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

    .checkout-summary-total span {
        color: var(--dark);
        font-size: 12px;
        font-weight: 700;
    }

    .checkout-summary-total strong {
        color: var(--dark);
        font-size: 21px;
        font-weight: 800;
    }

.checkout-tax-note {
    margin: 4px 0 20px;
    color: var(--muted-light);
    text-align: right;
    font-size: 7px;
}


/* Terms */

.checkout-terms {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

    .checkout-terms input {
        margin-top: 2px;
        accent-color: var(--primary);
    }

    .checkout-terms span {
        color: var(--muted);
        font-size: 8px;
        line-height: 1.5;
    }

    .checkout-terms a {
        color: var(--primary);
        font-weight: 600;
    }


/* Place Order */

.place-order-button {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .place-order-button:hover {
        transform: translateY(-1px);
        background: var(--primary-dark);
    }

.checkout-security {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .checkout-security > div {
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--muted-light);
        font-size: 7px;
    }

    .checkout-security i {
        color: var(--success);
    }


/* Help */

.checkout-help {
    margin-top: 15px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
}

    .checkout-help > i {
        color: var(--primary);
        font-size: 18px;
    }

    .checkout-help strong {
        display: block;
        margin-bottom: 3px;
        color: var(--dark);
        font-size: 9px;
    }

    .checkout-help span {
        display: block;
        margin-bottom: 5px;
        color: var(--muted);
        font-size: 8px;
    }

    .checkout-help a {
        color: var(--primary);
        font-size: 8px;
        font-weight: 700;
    }


/* =========================================================
   FOOTER
========================================================= */

.checkout-footer {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    background: white;
    color: var(--muted);
    font-size: 8px;
}

    .checkout-footer .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

        .checkout-footer .container > div {
            display: flex;
            gap: 18px;
        }

    .checkout-footer a:hover {
        color: var(--primary);
    }


/* =========================================================
   CHECKOUT RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}


@media (max-width: 576px) {

    .checkout-header-content {
        min-height: 65px;
    }

    .checkout-secure {
        font-size: 8px;
    }

    .checkout-progress-inner {
        max-width: 100%;
    }

    .checkout-step strong {
        display: none;
    }

    .checkout-progress-line {
        width: 70px;
    }

    .checkout-page {
        padding-top: 30px;
    }

    .checkout-title h1 {
        font-size: 28px;
    }

    .checkout-card-body {
        padding: 20px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-field.full-width {
        grid-column: auto;
    }

    .delivery-option {
        align-items: flex-start;
    }

    .delivery-option-price {
        margin-left: auto;
    }

    .payment-brand-list {
        display: none;
    }

    .checkout-footer .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   ORDER SUCCESS PAGE
========================================================= */

.order-success-body {
    background: #f8fafc;
}

.order-success-page {
    padding: 55px 0 75px;
}


/* =========================================================
   SUCCESS HERO
========================================================= */

.order-success-hero {
    max-width: 680px;
    margin: 0 auto 45px;
    text-align: center;
}

.success-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ecfdf3;
    color: #039855;
    font-size: 25px;
}

.success-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--success);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.order-success-hero h1 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 35px;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.order-success-hero > p {
    max-width: 570px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

.order-reference {
    margin-top: 23px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: white;
}

    .order-reference span {
        color: var(--muted);
        font-size: 8px;
    }

    .order-reference strong {
        color: var(--dark);
        font-size: 10px;
        letter-spacing: 0.4px;
    }


/* =========================================================
   LAYOUT
========================================================= */

.order-success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 25px;
}

.order-success-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   SUCCESS CARDS
========================================================= */

.success-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

.success-card-heading {
    min-height: 67px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

    .success-card-heading > div > span {
        display: block;
        margin-bottom: 2px;
        color: var(--primary);
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }

    .success-card-heading h2 {
        margin: 0;
        color: var(--dark);
        font-size: 14px;
        font-weight: 800;
    }

.order-status-badge {
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 8px;
    font-weight: 700;
}

.success-card-body {
    padding: 22px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.success-product {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

    .success-product:first-child {
        padding-top: 0;
    }

.success-product-image {
    width: 70px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--background-soft);
    color: #98a2b3;
    font-size: 28px;
}

.success-product-details > span {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.success-product-details > strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 10px;
}

.success-product-details small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 8px;
}

.success-product-price {
    color: var(--dark);
    font-size: 11px;
}


/* =========================================================
   TOTALS
========================================================= */

.success-order-totals {
    width: 290px;
    margin: 20px 0 0 auto;
}

    .success-order-totals > div {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: var(--muted);
        font-size: 9px;
    }

        .success-order-totals > div strong {
            color: var(--dark);
            font-size: 9px;
        }

    .success-order-totals .success-grand-total {
        margin-top: 15px;
        margin-bottom: 0;
        padding-top: 15px;
        border-top: 1px solid var(--border);
        color: var(--dark);
        font-size: 11px;
        font-weight: 700;
    }

        .success-order-totals .success-grand-total strong {
            font-size: 17px;
            font-weight: 800;
        }


/* =========================================================
   DELIVERY INFO
========================================================= */

.success-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.success-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.success-info-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
}

.success-info > div:last-child > span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted-light);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.success-info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 9px;
}

.success-info p {
    margin: 0;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.7;
}


/* =========================================================
   ORDER TIMELINE
========================================================= */

.order-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
    position: relative;
    padding-right: 15px;
    text-align: center;
}

    .timeline-item::after {
        position: absolute;
        top: 17px;
        left: calc(50% + 22px);
        width: calc(100% - 44px);
        height: 1px;
        background: var(--border);
        content: "";
    }

    .timeline-item:last-child::after {
        display: none;
    }

.timeline-marker {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--muted-light);
    font-size: 10px;
}

.timeline-item.active .timeline-marker {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.timeline-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 8px;
}

.timeline-item span {
    display: block;
    max-width: 130px;
    margin: auto;
    color: var(--muted);
    font-size: 7px;
    line-height: 1.5;
}


/* =========================================================
   SIDEBAR
========================================================= */

.order-success-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.success-side-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
}

.success-side-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
}

.success-payment-icon {
    background: #ecfdf3;
    color: var(--success);
}

.success-side-card > span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.success-side-card h3 {
    margin: 0 0 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.success-side-card p {
    margin: 0;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.6;
}

    .success-side-card p strong {
        color: var(--dark);
    }

.payment-reference {
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
}

    .payment-reference span {
        display: block;
        margin-bottom: 3px;
        color: var(--muted-light);
        font-size: 7px;
    }

    .payment-reference strong {
        color: var(--dark);
        font-size: 9px;
    }

.confirmation-email {
    display: block;
    margin-top: 10px;
    color: var(--dark);
    font-size: 9px;
}

.success-support-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   ACTIONS
========================================================= */

.order-success-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-shop-button,
.success-print-button {
    min-height: 43px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 700;
}

.success-shop-button {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: white;
}

    .success-shop-button:hover {
        background: var(--primary-dark);
        color: white;
    }

.success-print-button {
    border: 1px solid var(--border);
    background: white;
    color: var(--dark);
}

    .success-print-button:hover {
        border-color: var(--dark);
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .order-success-layout {
        grid-template-columns: 1fr;
    }

    .order-success-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 700px) {

    .order-success-page {
        padding-top: 40px;
    }

    .order-success-hero h1 {
        font-size: 29px;
    }

    .order-success-sidebar {
        grid-template-columns: 1fr;
    }

    .success-info-grid {
        grid-template-columns: 1fr;
    }

    .order-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        align-items: center;
        gap: 10px;
        padding: 0;
        text-align: left;
    }

        .timeline-item::after {
            top: 36px;
            left: 17px;
            width: 1px;
            height: 20px;
        }

    .timeline-marker {
        margin: 0;
    }

    .timeline-item strong,
    .timeline-item span {
        margin-left: 0;
        text-align: left;
    }

    .timeline-item span {
        max-width: none;
    }
}


@media (max-width: 576px) {

    .success-product {
        grid-template-columns: 60px 1fr;
    }

    .success-product-image {
        width: 60px;
        height: 60px;
    }

    .success-product-price {
        grid-column: 2;
    }

    .success-order-totals {
        width: 100%;
    }

    .order-success-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .success-shop-button,
    .success-print-button {
        width: 100%;
    }
}


/* =========================================================
   PRINT ORDER
========================================================= */

@media print {

    .checkout-header,
    .checkout-footer,
    .order-success-actions,
    .success-support-link {
        display: none !important;
    }

    .order-success-body,
    .order-success-page {
        background: white;
    }

    .order-success-page {
        padding: 0;
    }

    .order-success-layout {
        display: block;
    }

    .order-success-sidebar {
        margin-top: 20px;
    }

    .success-card,
    .success-side-card {
        break-inside: avoid;
        box-shadow: none;
    }
}
