:root {
      --store-font: "Alexandria", sans-serif;
    --store-primary: #315b2d;
    --store-primary-dark: #1f401d;
    --store-primary-soft: #e8f0e4;
    --store-gold: #c79a3b;
    --store-gold-dark: #9d7422;
    --store-sand: #f4eee4;
    --store-sand-light: #fbf8f3;
    --store-card: #ffffff;
    --store-text: #20231f;
    --store-muted: #7b7f78;
    --store-border: #ebe6de;
    --store-danger: #dc4248;
    --store-shadow: 0 12px 35px rgba(46, 56, 43, 0.08);
    --store-shadow-hover: 0 18px 45px rgba(46, 56, 43, 0.14);
    --store-radius: 22px;
}
html,
body,
button,
input,
select,
textarea {
    font-family: var(--store-font);
}
h1,
h2,
h3,
h4,
h5,
h6,
.welcome-heading h1,
.hero-copy h2,
.modern-section-heading h2 {
    font-family: var(--store-font);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.product-price,
.price,
.hero-primary-button,
.hero-whatsapp-button,
.customer-promo-card > a,
.modern-empty-state a {
    font-weight: 700;
}
body {
    background:
        radial-gradient(
            circle at top right,
            rgba(199, 154, 59, 0.08),
            transparent 260px
        ),
        #f8f7f4;
}

.modern-store-home {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 120px;
    direction: rtl;
}

/* ================================
   Welcome
================================ */

.customer-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.welcome-heading {
    display: flex;
    align-items: center;
    gap: 13px;
}

.welcome-logo {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(199, 154, 59, 0.45);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f3eadb);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(111, 86, 38, 0.12);
}

.welcome-logo span {
    font-size: 29px;
}

.welcome-label {
    color: var(--store-muted);
    font-size: 12px;
    font-weight: 700;
}

.welcome-heading h1 {
    margin: 2px 0 1px;
    color: var(--store-text);
    font-size: 24px;
    line-height: 1.2;
}

.welcome-heading p {
    margin: 0;
    color: var(--store-muted);
    font-size: 12px;
}

.welcome-cart {
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid var(--store-border);
    border-radius: 16px;
    background: var(--store-card);
    display: grid;
    place-items: center;
    color: var(--store-primary);
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(42, 47, 40, 0.06);
    transition: 0.25s ease;
}

.welcome-cart:hover {
    color: #ffffff;
    background: var(--store-primary);
    transform: translateY(-2px);
}

.welcome-cart span {
    font-size: 21px;
}

/* ================================
   Search
================================ */

.customer-search {
    height: 58px;
    margin-bottom: 22px;
    padding: 0 10px;
    border: 1px solid var(--store-border);
    border-radius: 18px;
    background: var(--store-card);
    display: flex;
    align-items: center;
    box-shadow: 0 7px 24px rgba(47, 52, 44, 0.055);
}

.customer-search input {
    width: 100%;
    height: 100%;
    padding: 0 8px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--store-text);
    font-family: inherit;
    font-size: 14px;
    text-align: right;
}

.customer-search input::placeholder {
    color: #a5a59f;
}

.customer-search button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 0;
    border-radius: 14px;
    background: var(--store-sand-light);
    color: var(--store-primary);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.customer-search button span {
    font-size: 25px;
    line-height: 1;
}

/* ================================
   Hero
================================ */

.modern-hero {
    position: relative;
    min-height: 400px;
    padding: 45px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 14% 17%,
            rgba(255, 255, 255, 0.13),
            transparent 190px
        ),
        linear-gradient(
            125deg,
            var(--store-primary-dark),
            var(--store-primary)
        );
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 30px;
    box-shadow: 0 25px 55px rgba(31, 64, 29, 0.2);
}

.modern-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -190px;
    right: -80px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.modern-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    bottom: -145px;
    left: 15%;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.hero-copy {
    position: relative;
    z-index: 4;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-copy h2 {
    max-width: 510px;
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.hero-copy h2 strong {
    display: block;
    color: #f2d492;
    font-weight: 900;
}

.hero-copy p {
    max-width: 530px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 2;
}

.hero-actions {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.hero-primary-button,
.hero-whatsapp-button {
    min-height: 50px;
    padding: 10px 21px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.hero-primary-button {
    background: #ffffff;
    color: var(--store-primary-dark);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.hero-primary-button:hover {
    color: var(--store-primary-dark);
    transform: translateY(-3px);
}

.hero-primary-button b {
    font-size: 19px;
}

.hero-whatsapp-button {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.hero-whatsapp-button:hover {
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-trust {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 12px;
    font-weight: 700;
}

.hero-media {
    position: relative;
    z-index: 3;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    z-index: 3;
    width: min(340px, 100%);
    aspect-ratio: 1 / 1;
    border: 8px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.05)
        );
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
}

.hero-image-frame img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-fallback {
    position: relative;
    z-index: 1;
    font-size: 135px;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.18));
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    right: 5px;
    bottom: 16px;
    min-width: 190px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.93);
    color: var(--store-text);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(15, 25, 13, 0.2);
}

.floating-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 13px;
    background: #f6e6b9;
    color: var(--store-gold-dark);
    display: grid;
    place-items: center;
}

.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}

.hero-floating-card strong {
    margin-bottom: 3px;
    font-size: 13px;
}

.hero-floating-card small {
    color: var(--store-muted);
    font-size: 10px;
}

.hero-circle {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero-circle-one {
    width: 68px;
    height: 68px;
    top: 12px;
    right: 18px;
}

.hero-circle-two {
    width: 35px;
    height: 35px;
    left: 12px;
    top: 86px;
}

/* ================================
   Benefits
================================ */

.modern-benefits {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--store-border);
    border-radius: 22px;
    background: var(--store-card);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    box-shadow: var(--store-shadow);
}

.benefit-card {
    min-height: 84px;
    padding: 13px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s ease;
}

.benefit-card:not(:last-child) {
    border-left: 1px solid var(--store-border);
}

.benefit-card:hover {
    background: var(--store-sand-light);
}

.benefit-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    border-radius: 15px;
    background: #f4e8ca;
    color: var(--store-gold-dark);
    display: grid;
    place-items: center;
    font-size: 19px;
    font-weight: 900;
}

.benefit-card strong,
.benefit-card small {
    display: block;
}

.benefit-card strong {
    margin-bottom: 5px;
    color: var(--store-text);
    font-size: 13px;
}

.benefit-card small {
    color: var(--store-muted);
    font-size: 10px;
    line-height: 1.6;
}

/* ================================
   Sections
================================ */

.modern-content-section {
    margin-top: 42px;
}

.modern-section-heading {
    margin-bottom: 19px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.section-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--store-gold-dark);
    font-size: 11px;
    font-weight: 900;
}

.modern-section-heading h2 {
    margin: 0;
    color: var(--store-text);
    font-size: 23px;
    line-height: 1.4;
}

.modern-section-heading > a {
    color: var(--store-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ================================
   Breeds
================================ */

.modern-breed-scroll {
    padding: 3px 1px 14px;
    overflow-x: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(138px, 1fr);
    gap: 13px;
    scrollbar-width: none;
}

.modern-breed-scroll::-webkit-scrollbar {
    display: none;
}

.modern-breed-card {
    min-height: 148px;
    padding: 17px 13px;
    border: 1px solid var(--store-border);
    border-radius: 21px;
    background: var(--store-card);
    color: var(--store-text);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 25px rgba(45, 50, 43, 0.05);
    transition: 0.25s ease;
}

.modern-breed-card:hover {
    border-color: rgba(49, 91, 45, 0.26);
    color: var(--store-primary);
    transform: translateY(-5px);
    box-shadow: var(--store-shadow-hover);
}

.modern-breed-card.is-active {
    border-color: rgba(49, 91, 45, 0.2);
    background: linear-gradient(145deg, #f3f7f1, #ffffff);
}

.breed-icon {
    width: 67px;
    height: 67px;
    margin: 0 auto 11px;
    border-radius: 50%;
    background: var(--store-sand);
    display: grid;
    place-items: center;
}

.breed-icon span {
    font-size: 31px;
}

.modern-breed-card strong,
.modern-breed-card small {
    display: block;
}

.modern-breed-card strong {
    margin-bottom: 5px;
    font-size: 13px;
}

.modern-breed-card small {
    color: var(--store-muted);
    font-size: 9px;
}

.offers-breed-card .breed-icon {
    background: #f1dfad;
    color: var(--store-gold-dark);
}

.offers-breed-card .breed-icon span {
    font-size: 25px;
    font-weight: 900;
}

/* ================================
   Products
================================ */

.modern-product-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

/*
يمكن أن تختلف أسماء العناصر داخل product_card.php.
هذه القواعد تغطي أكثر الأسماء الشائعة.
*/

.modern-product-grid .product-card,
.product-grid .product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-radius: 21px;
    background: var(--store-card);
    box-shadow: 0 9px 28px rgba(45, 51, 43, 0.065);
    transition: 0.28s ease;
}

.modern-product-grid .product-card:hover,
.product-grid .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--store-shadow-hover);
}

.modern-product-grid .product-card img,
.product-grid .product-card img {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
    display: block;
}

.modern-product-grid .product-card h3,
.modern-product-grid .product-card h4,
.product-grid .product-card h3,
.product-grid .product-card h4 {
    color: var(--store-text);
    font-size: 14px;
}

.modern-product-grid .product-card a,
.product-grid .product-card a {
    text-decoration: none;
}

.modern-product-grid .product-card button,
.modern-product-grid .product-card .btn,
.modern-product-grid .product-card .add-to-cart,
.product-grid .product-card button,
.product-grid .product-card .btn,
.product-grid .product-card .add-to-cart {
    border: 0;
    border-radius: 13px;
    background: var(--store-primary);
    color: #ffffff;
    font-family: inherit;
    font-weight: 800;
    transition: 0.22s ease;
}

.modern-product-grid .product-card button:hover,
.modern-product-grid .product-card .btn:hover,
.modern-product-grid .product-card .add-to-cart:hover,
.product-grid .product-card button:hover,
.product-grid .product-card .btn:hover,
.product-grid .product-card .add-to-cart:hover {
    background: var(--store-primary-dark);
    color: #ffffff;
}

.modern-product-grid .product-price,
.product-grid .product-price,
.modern-product-grid .price,
.product-grid .price {
    color: var(--store-primary);
    font-weight: 900;
}

/* ================================
   Empty state
================================ */

.modern-empty-state {
    padding: 52px 20px;
    border: 1px dashed #d8d1c5;
    border-radius: 23px;
    background: var(--store-card);
    text-align: center;
}

.empty-state-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--store-sand);
    display: grid;
    place-items: center;
    font-size: 38px;
}

.modern-empty-state h3 {
    margin: 0 0 7px;
    color: var(--store-text);
    font-size: 18px;
}

.modern-empty-state p {
    margin: 0 0 18px;
    color: var(--store-muted);
    font-size: 12px;
}

.modern-empty-state a {
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 13px;
    background: var(--store-primary);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

/* ================================
   Promo
================================ */

.customer-promo-card {
    position: relative;
    margin-top: 46px;
    padding: 28px 30px;
    overflow: hidden;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at left,
            rgba(255, 255, 255, 0.12),
            transparent 180px
        ),
        var(--store-primary-dark);
    color: #ffffff;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 42px rgba(31, 64, 29, 0.17);
}

.promo-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    display: grid;
    place-items: center;
    font-size: 30px;
}

.promo-content span {
    color: #ebcc82;
    font-size: 10px;
    font-weight: 900;
}

.promo-content h2 {
    margin: 4px 0 5px;
    color: #ffffff;
    font-size: 19px;
}

.promo-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.customer-promo-card > a {
    min-height: 45px;
    padding: 10px 19px;
    border-radius: 13px;
    background: #ffffff;
    color: var(--store-primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

/* ================================
   WhatsApp floating
================================ */

.floating-whatsapp {
    position: fixed;
    z-index: 100;
    left: 22px;
    bottom: 92px;
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #1faf61;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 13px 30px rgba(31, 175, 97, 0.28);
    font-size: 12px;
    font-weight: 900;
    transition: 0.25s ease;
}

.floating-whatsapp:hover {
    background: #169b53;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ================================
   Responsive
================================ */

@media (max-width: 992px) {
    .modern-hero {
        min-height: auto;
        grid-template-columns: 1fr 0.8fr;
        padding: 36px;
    }

    .hero-image-frame {
        width: 270px;
    }

    .modern-product-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .modern-store-home {
        width: min(100% - 22px, 620px);
        padding-top: 17px;
    }

    .modern-hero {
        padding: 26px 22px 24px;
        border-radius: 24px;
        grid-template-columns: 1fr;
        text-align: right;
    }

    .hero-copy h2 {
        font-size: 36px;
    }

    .hero-media {
        min-height: 245px;
        margin-top: 3px;
    }

    .hero-image-frame {
        width: 235px;
    }

    .hero-image-fallback {
        font-size: 98px;
    }

    .hero-floating-card {
        right: 3%;
        bottom: 4px;
    }

    .modern-benefits {
        padding: 10px;
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(195px, 1fr));
        scrollbar-width: none;
    }

    .modern-benefits::-webkit-scrollbar {
        display: none;
    }

    .benefit-card:not(:last-child) {
        border-left: 0;
    }

    .modern-product-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .customer-promo-card {
        grid-template-columns: auto 1fr;
        padding: 22px;
    }

    .customer-promo-card > a {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-logo {
        width: 50px;
        height: 50px;
    }

    .welcome-heading h1 {
        font-size: 20px;
    }

    .customer-search {
        height: 54px;
    }

    .modern-hero {
        padding: 23px 18px 21px;
    }

    .hero-copy h2 {
        font-size: 31px;
    }

    .hero-copy p {
        font-size: 13px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .hero-primary-button,
    .hero-whatsapp-button {
        padding-inline: 15px;
    }

    .hero-media {
        min-height: 220px;
    }

    .hero-image-frame {
        width: 205px;
    }

    .hero-floating-card {
        min-width: 165px;
        padding: 10px;
    }

    .modern-section-heading h2 {
        font-size: 19px;
    }

    .modern-product-grid,
    .product-grid {
        gap: 10px;
    }

    .customer-promo-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-icon {
        margin: auto;
    }

    .floating-whatsapp {
        left: 14px;
        bottom: 82px;
        padding-inline: 15px;
    }
}
body {
    padding-bottom: 92px;
}

/* ================================
   Bottom navigation
================================ */

.customer-bottom-nav {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    padding:
        9px
        12px
        calc(9px + env(safe-area-inset-bottom));
    pointer-events: none;
}

.customer-nav-inner {
    width: min(680px, 100%);
    min-height: 72px;
    margin: 0 auto;
    padding: 7px;
    border: 1px solid rgba(229, 225, 217, 0.9);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.94);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    box-shadow:
        0 -4px 25px rgba(37, 45, 35, 0.06),
        0 15px 45px rgba(37, 45, 35, 0.15);
    backdrop-filter: blur(16px);
    pointer-events: auto;
}

.customer-nav-item {
    position: relative;
    min-width: 0;
    min-height: 56px;
    padding: 7px 4px;
    border-radius: 17px;
    color: #8b8e88;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.customer-nav-item:hover {
    color: var(--store-primary);
    background: var(--store-primary-soft);
}

.customer-nav-item.is-active {
    color: var(--store-primary);
    background: linear-gradient(
        145deg,
        #edf4e9,
        #f8fbf6
    );
}

.customer-nav-item.is-active::before {
    content: "";
    position: absolute;
    top: -7px;
    width: 25px;
    height: 3px;
    border-radius: 999px;
    background: var(--store-primary);
}

.customer-nav-icon {
    position: relative;
    width: 25px;
    height: 25px;
    display: block;
}

.customer-nav-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.customer-nav-item.is-active .customer-nav-icon {
    transform: translateY(-1px);
}

.customer-nav-label {
    max-width: 100%;
    overflow: hidden;
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-nav-item.is-active .customer-nav-label {
    font-weight: 800;
}

.customer-cart-count {
    position: absolute;
    top: -7px;
    left: -9px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #dc4248;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
}

/* ================================
   SweetAlert customer style
================================ */

.customer-swal-popup {
    width: min(390px, calc(100% - 28px)) !important;
    padding: 25px 20px 21px !important;
    border-radius: 24px !important;
    font-family: var(--store-font) !important;
}

.customer-swal-title {
    padding: 0 !important;
    color: var(--store-text) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

.customer-swal-content {
    margin-top: 9px !important;
    color: var(--store-muted) !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
}

.customer-swal-confirm,
.customer-swal-cancel {
    min-width: 110px;
    min-height: 44px;
    padding: 9px 18px !important;
    border: 0 !important;
    border-radius: 13px !important;
    font-family: var(--store-font) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}

.customer-swal-confirm {
    background: var(--store-primary) !important;
}

.customer-swal-cancel {
    background: #f0efec !important;
    color: #4d504b !important;
}

.customer-swal-toast {
    border-radius: 15px !important;
    font-family: var(--store-font) !important;
}

.swal2-icon {
    transform: scale(0.86);
}

@media (min-width: 900px) {
    body {
        padding-bottom: 105px;
    }

    .customer-bottom-nav {
        bottom: 8px;
    }
}

@media (max-width: 480px) {
    .customer-bottom-nav {
        padding-right: 8px;
        padding-left: 8px;
    }

    .customer-nav-inner {
        min-height: 68px;
        border-radius: 21px;
    }

    .customer-nav-item {
        min-height: 53px;
    }

    .customer-nav-icon {
        width: 23px;
        height: 23px;
    }

    .customer-nav-label {
        font-size: 8px;
    }
}
/* =====================================
   Customer bottom navigation – fixed
===================================== */

html,
body {
    overflow-x: hidden;
}

body {
    padding-bottom: 105px !important;
}

body > .customer-bottom-nav,
.customer-bottom-nav {
    position: fixed !important;
    z-index: 99999 !important;

    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;

    width: 100vw !important;
    max-width: none !important;
    height: auto !important;

    margin: 0 !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;

    background: transparent !important;
    transform: none !important;
    overflow: visible !important;
    pointer-events: none;
    box-sizing: border-box !important;
}

.customer-bottom-nav .customer-nav-inner {
    position: relative !important;

    width: min(680px, calc(100vw - 24px)) !important;
    max-width: 680px !important;
    min-width: 0 !important;
    min-height: 72px !important;

    margin: 0 auto !important;
    padding: 7px !important;

    border: 1px solid rgba(222, 218, 209, 0.95) !important;
    border-radius: 23px !important;

    background: rgba(255, 255, 255, 0.97) !important;

    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 4px !important;

    box-shadow:
        0 -5px 25px rgba(31, 44, 29, 0.06),
        0 15px 45px rgba(31, 44, 29, 0.18) !important;

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

    transform: none !important;
    overflow: visible !important;
    pointer-events: auto;
    box-sizing: border-box !important;
}

.customer-bottom-nav .customer-nav-item {
    position: relative !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 56px !important;

    margin: 0 !important;
    padding: 7px 3px !important;

    border: 0 !important;
    border-radius: 17px !important;

    background: transparent !important;
    color: #888d86 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;

    text-align: center !important;
    text-decoration: none !important;

    transform: none !important;
    box-sizing: border-box !important;
    transition: 0.2s ease;
}

.customer-bottom-nav .customer-nav-item:hover {
    color: var(--store-primary, #315b2d) !important;
    background: #f0f5ed !important;
}

.customer-bottom-nav .customer-nav-item.is-active {
    color: var(--store-primary, #315b2d) !important;
    background: #edf4e9 !important;
}

.customer-bottom-nav .customer-nav-item.is-active::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 50%;
    width: 25px;
    height: 3px;
    border-radius: 999px;
    background: var(--store-primary, #315b2d);
    transform: translateX(50%);
}

.customer-bottom-nav .customer-nav-icon {
    position: relative !important;

    width: 25px !important;
    height: 25px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
    color: inherit !important;
}

.customer-bottom-nav .customer-nav-icon svg {
    width: 25px !important;
    height: 25px !important;

    display: block !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.customer-bottom-nav .customer-nav-label {
    display: block !important;

    width: 100% !important;
    margin: 0 !important;

    color: inherit !important;
    font-family: "Alexandria", sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.customer-bottom-nav .customer-nav-item.is-active .customer-nav-label {
    font-weight: 800 !important;
}

.customer-bottom-nav .customer-cart-count {
    position: absolute !important;
    top: -7px !important;
    left: -8px !important;

    min-width: 18px !important;
    height: 18px !important;
    padding: 0 4px !important;

    border: 2px solid #ffffff !important;
    border-radius: 999px !important;

    background: #dc4248 !important;
    color: #ffffff !important;

    display: grid !important;
    place-items: center !important;

    font-size: 8px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

@media (max-width: 600px) {
    body {
        padding-bottom: 92px !important;
    }

    .customer-bottom-nav {
        padding-right: 7px !important;
        padding-left: 7px !important;
    }

    .customer-bottom-nav .customer-nav-inner {
        width: calc(100vw - 14px) !important;
        min-height: 67px !important;
        padding: 5px !important;
        border-radius: 21px !important;
    }

    .customer-bottom-nav .customer-nav-item {
        min-height: 55px !important;
        padding-right: 2px !important;
        padding-left: 2px !important;
    }

    .customer-bottom-nav .customer-nav-label {
        font-size: 8px !important;
    }
}
.customer-orders-page {
    width: min(920px, calc(100% - 28px));
    margin: 0 auto;
    padding: 26px 0 120px;
    direction: rtl;
}

.orders-page-header {
    position: relative;
    padding: 28px;
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at left top,
            rgba(255, 255, 255, 0.14),
            transparent 180px
        ),
        linear-gradient(
            130deg,
            var(--store-primary-dark, #1f401d),
            var(--store-primary, #315b2d)
        );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 18px 45px rgba(31, 64, 29, 0.18);
}

.orders-page-kicker {
    display: block;
    margin-bottom: 7px;
    color: #e8cc8b;
    font-size: 11px;
    font-weight: 800;
}

.orders-page-header h1 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.orders-page-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.orders-header-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
}

.orders-header-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.orders-statistics {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.orders-statistics article {
    padding: 17px;
    border: 1px solid var(--store-border, #ebe6de);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(41, 49, 39, 0.055);
}

.orders-statistics span,
.orders-statistics strong {
    display: block;
}

.orders-statistics span {
    margin-bottom: 6px;
    color: var(--store-muted, #7b7f78);
    font-size: 10px;
}

.orders-statistics strong {
    color: var(--store-text, #20231f);
    font-size: 23px;
    font-weight: 800;
}

.orders-filter-tabs {
    margin: 24px 0 17px;
    padding: 6px;
    overflow-x: auto;
    border: 1px solid var(--store-border, #ebe6de);
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    gap: 5px;
    scrollbar-width: none;
}

.orders-filter-tabs::-webkit-scrollbar {
    display: none;
}

.orders-filter-tabs a {
    min-width: 110px;
    min-height: 44px;
    padding: 8px 13px;
    border-radius: 13px;
    color: var(--store-muted, #7b7f78);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.2s ease;
}

.orders-filter-tabs a span {
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: 999px;
    background: #f0efeb;
    display: grid;
    place-items: center;
    font-size: 8px;
}

.orders-filter-tabs a.is-active {
    background: var(--store-primary, #315b2d);
    color: #ffffff;
}

.orders-filter-tabs a.is-active span {
    background: rgba(255, 255, 255, 0.18);
}

.orders-list {
    display: grid;
    gap: 16px;
}

.customer-order-card {
    padding: 20px;
    border: 1px solid var(--store-border, #ebe6de);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(43, 49, 41, 0.065);
}

.order-card-header {
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ede7;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.order-number-label {
    display: block;
    margin-bottom: 4px;
    color: var(--store-muted, #7b7f78);
    font-size: 9px;
}

.order-card-header h2 {
    margin: 0 0 4px;
    color: var(--store-text, #20231f);
    font-size: 16px;
    font-weight: 800;
}

.order-card-header small {
    color: var(--store-muted, #7b7f78);
    font-size: 9px;
}

.order-status-badge {
    min-height: 31px;
    padding: 6px 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.status-new,
.status-pending {
    background: #fff2d8;
    color: #a36a00;
}

.status-accepted {
    background: #e6efff;
    color: #2a63ad;
}

.status-preparing {
    background: #eee8ff;
    color: #6751a6;
}

.status-ready {
    background: #e4f2ec;
    color: #227054;
}

.status-delivery {
    background: #e5f1ff;
    color: #2369a9;
}

.status-delivered {
    background: #e3f4e5;
    color: #28733b;
}

.status-cancelled {
    background: #fde9e9;
    color: #b93737;
}

.order-card-summary {
    padding: 17px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
}

.order-product-visual {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 17px;
    background: var(--store-sand, #f4eee4);
    display: grid;
    place-items: center;
    font-size: 28px;
}

.order-summary-info strong,
.order-summary-info span {
    display: block;
}

.order-summary-info strong {
    margin-bottom: 5px;
    color: var(--store-text, #20231f);
    font-size: 12px;
}

.order-summary-info span {
    margin-top: 3px;
    color: var(--store-muted, #7b7f78);
    font-size: 9px;
    line-height: 1.6;
}

.order-total {
    text-align: left;
}

.order-total small,
.order-total strong {
    display: block;
}

.order-total small {
    margin-bottom: 4px;
    color: var(--store-muted, #7b7f78);
    font-size: 9px;
}

.order-total strong {
    color: var(--store-primary, #315b2d);
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.order-total strong span {
    font-size: 9px;
}

.order-progress {
    padding: 17px 8px;
    border-radius: 17px;
    background: #faf9f6;
    display: flex;
    align-items: flex-start;
}

.progress-step {
    width: 63px;
    flex: 0 0 63px;
    text-align: center;
}

.progress-dot {
    width: 27px;
    height: 27px;
    margin: 0 auto 7px;
    border: 2px solid #dddcd6;
    border-radius: 50%;
    background: #ffffff;
    color: transparent;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.progress-step small {
    color: #9a9c97;
    font-size: 8px;
    white-space: nowrap;
}

.progress-step.is-complete .progress-dot {
    border-color: var(--store-primary, #315b2d);
    background: var(--store-primary, #315b2d);
    color: #ffffff;
}

.progress-step.is-complete small {
    color: var(--store-primary, #315b2d);
    font-weight: 800;
}

.progress-line {
    height: 2px;
    margin-top: 13px;
    flex: 1;
    background: #dfded8;
}

.progress-line.is-complete {
    background: var(--store-primary, #315b2d);
}

.cancelled-order-notice {
    padding: 14px;
    border-radius: 16px;
    background: #fff2f2;
    color: #a93636;
    display: flex;
    align-items: center;
    gap: 11px;
}

.cancelled-order-notice > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 12px;
    background: #fbdede;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.cancelled-order-notice strong,
.cancelled-order-notice small {
    display: block;
}

.cancelled-order-notice strong {
    margin-bottom: 3px;
    font-size: 11px;
}

.cancelled-order-notice small {
    color: #bb6666;
    font-size: 9px;
}

.order-payment-row {
    padding: 14px 0;
    border-bottom: 1px solid #f0ede7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--store-muted, #7b7f78);
    font-size: 9px;
}

.payment-badge {
    min-height: 27px;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 800;
}

.payment-paid {
    background: #e3f4e5;
    color: #28733b;
}

.payment-pending,
.payment-unpaid {
    background: #fff1d7;
    color: #9b6600;
}

.payment-refunded {
    background: #eee9ff;
    color: #654da3;
}

.payment-partial {
    background: #e5f0ff;
    color: #2864a7;
}

.order-items-details {
    margin-top: 5px;
}

.order-items-details summary {
    min-height: 48px;
    cursor: pointer;
    list-style: none;
    color: var(--store-primary, #315b2d);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
    font-weight: 800;
}

.order-items-details summary::-webkit-details-marker {
    display: none;
}

.order-items-details summary svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.order-items-details[open] summary svg {
    transform: rotate(180deg);
}

.order-items-list {
    padding-top: 5px;
    display: grid;
    gap: 8px;
}

.order-item-row {
    padding: 11px;
    border: 1px solid #eeece6;
    border-radius: 15px;
    background: #fbfaf7;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.order-item-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: #f2ecdf;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.order-item-name strong,
.order-item-name span,
.order-item-price strong,
.order-item-price small {
    display: block;
}

.order-item-name strong {
    margin-bottom: 4px;
    color: var(--store-text, #20231f);
    font-size: 10px;
}

.order-item-name span {
    color: var(--store-muted, #7b7f78);
    font-size: 8px;
}

.order-item-price {
    text-align: left;
}

.order-item-price strong {
    margin-bottom: 3px;
    color: var(--store-primary, #315b2d);
    font-size: 10px;
}

.order-item-price small {
    color: var(--store-muted, #7b7f78);
    font-size: 7px;
}

.order-items-empty {
    padding: 18px;
    border-radius: 14px;
    background: #faf9f6;
    color: var(--store-muted, #7b7f78);
    text-align: center;
    font-size: 10px;
}

.orders-empty-state {
    padding: 55px 20px;
    border: 1px dashed #d8d3c9;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

.orders-empty-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--store-sand, #f4eee4);
    display: grid;
    place-items: center;
    font-size: 39px;
}

.orders-empty-state h2 {
    margin: 0 0 8px;
    color: var(--store-text, #20231f);
    font-size: 17px;
}

.orders-empty-state p {
    margin: 0 0 20px;
    color: var(--store-muted, #7b7f78);
    font-size: 10px;
}

.orders-empty-state a {
    min-height: 45px;
    padding: 10px 20px;
    border-radius: 14px;
    background: var(--store-primary, #315b2d);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 600px) {
    .customer-orders-page {
        width: calc(100% - 20px);
        padding-top: 16px;
    }

    .orders-page-header {
        padding: 22px 19px;
        border-radius: 22px;
    }

    .orders-page-header h1 {
        font-size: 23px;
    }

    .orders-header-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .orders-statistics {
        gap: 7px;
    }

    .orders-statistics article {
        padding: 13px 10px;
        border-radius: 16px;
    }

    .orders-statistics span {
        font-size: 8px;
    }

    .orders-statistics strong {
        font-size: 19px;
    }

    .customer-order-card {
        padding: 15px;
        border-radius: 20px;
    }

    .order-card-summary {
        grid-template-columns: auto 1fr;
    }

    .order-total {
        grid-column: 1 / -1;
        padding-top: 11px;
        border-top: 1px solid #f0ede7;
        text-align: right;
    }

    .order-progress {
        padding-right: 2px;
        padding-left: 2px;
    }

    .progress-step {
        width: 54px;
        flex-basis: 54px;
    }

    .progress-step small {
        font-size: 7px;
    }

    .order-item-row {
        grid-template-columns: auto 1fr;
    }

    .order-item-price {
        grid-column: 1 / -1;
        padding-top: 8px;
        border-top: 1px solid #ebe8e0;
        text-align: right;
    }
}
/* ==================================
   Modern page loader
================================== */

.customer-page-loader {
    position: fixed;
    z-index: 999999;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 20px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(199, 154, 59, 0.13),
            transparent 240px
        ),
        linear-gradient(
            145deg,
            #fdfbf7,
            #f3eee5
        );

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

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.customer-page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.customer-loader-content {
    width: min(310px, 100%);
    padding: 30px 25px;

    border: 1px solid rgba(221, 211, 194, 0.8);
    border-radius: 28px;

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

    text-align: center;

    box-shadow:
        0 25px 70px rgba(46, 57, 42, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

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

    transform: translateY(10px) scale(0.97);
    transition: transform 0.35s ease;
}

.customer-page-loader.is-visible .customer-loader-content {
    transform: translateY(0) scale(1);
}

.customer-loader-logo {
    position: relative;

    width: 82px;
    height: 82px;

    margin: 0 auto 17px;

    border: 1px solid rgba(199, 154, 59, 0.32);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eee4d3
        );

    color: var(--store-primary, #315b2d);

    display: grid;
    place-items: center;

    box-shadow:
        0 15px 35px rgba(79, 69, 47, 0.13),
        inset 0 0 0 5px rgba(255, 255, 255, 0.52);

    animation: customerLoaderFloat 1.8s ease-in-out infinite;
}

.customer-loader-logo::after {
    content: "";

    position: absolute;
    inset: -8px;

    border: 2px solid rgba(49, 91, 45, 0.12);
    border-top-color: var(--store-primary, #315b2d);
    border-radius: 31px;

    animation: customerLoaderRotate 1.25s linear infinite;
}

.customer-loader-logo svg {
    width: 49px;
    height: 49px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.customer-loader-title {
    display: block;

    margin-bottom: 7px;

    color: var(--store-text, #20231f);

    font-family: var(--store-font, "Alexandria", sans-serif);
    font-size: 20px;
    font-weight: 800;
}

.customer-loader-text {
    display: block;

    margin-bottom: 20px;

    color: var(--store-muted, #7b7f78);

    font-family: var(--store-font, "Alexandria", sans-serif);
    font-size: 10px;
    font-weight: 500;
}

.customer-loader-progress {
    position: relative;

    width: 100%;
    height: 5px;

    overflow: hidden;
    border-radius: 999px;

    background: #ece9e2;
}

.customer-loader-progress span {
    position: absolute;
    top: 0;
    right: -45%;

    width: 45%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--store-gold, #c79a3b),
            var(--store-primary, #315b2d)
        );

    animation: customerLoaderProgress 1.1s ease-in-out infinite;
}

.customer-loader-dots {
    height: 16px;
    margin-top: 13px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.customer-loader-dots i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--store-primary, #315b2d);

    animation: customerLoaderDot 1.2s ease-in-out infinite;
}

.customer-loader-dots i:nth-child(2) {
    animation-delay: 0.15s;
}

.customer-loader-dots i:nth-child(3) {
    animation-delay: 0.3s;
}

/* حركة ظهور محتوى الصفحة */

body.customer-page-ready main {
    animation: customerPageReveal 0.45s ease both;
}

@keyframes customerLoaderRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes customerLoaderFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes customerLoaderProgress {
    0% {
        right: -45%;
    }

    100% {
        right: 105%;
    }
}

@keyframes customerLoaderDot {
    0%,
    100% {
        opacity: 0.35;
        transform: translateY(0) scale(0.85);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px) scale(1);
    }
}

@keyframes customerPageReveal {
    from {
        opacity: 0;
        transform: translateY(9px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .customer-loader-logo,
    .customer-loader-logo::after,
    .customer-loader-progress span,
    .customer-loader-dots i,
    body.customer-page-ready main {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .customer-loader-content {
        width: min(280px, 100%);
        padding: 27px 20px;
        border-radius: 24px;
    }

    .customer-loader-logo {
        width: 72px;
        height: 72px;
        border-radius: 23px;
    }

    .customer-loader-logo::after {
        border-radius: 27px;
    }

    .customer-loader-logo svg {
        width: 44px;
        height: 44px;
    }

    .customer-loader-title {
        font-size: 18px;
    }
}

/* ==================================
   Loader compatibility patch 1.3.0
================================== */

body.customer-loading {
    overflow: hidden !important;
}

.customer-page-loader {
    position: fixed !important;
    z-index: 2147483647 !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    transform: none !important;
    isolation: isolate;
}

.customer-page-loader .customer-loader-content {
    position: relative !important;
    margin: auto !important;
}

.customer-page-loader .customer-loader-logo {
    flex: 0 0 auto;
}

.customer-page-loader:not(.is-visible) {
    display: flex !important;
}

@supports not (height: 100dvh) {
    .customer-page-loader {
        height: 100vh !important;
    }
}
