/* =========================================================
   BADR STAR
   OpenCart 3.0.5.1 Custom Theme
   ========================================================= */


/* =========================================================
   1. COLORS
   ========================================================= */

:root {
    --badr-navy: #062846;
    --badr-navy-dark: #041d34;
    --badr-navy-light: #0b3a62;

    --badr-green: #079b78;
    --badr-green-dark: #067b61;

    --badr-orange: #f06423;

    --badr-bg: #f7f9fb;
    --badr-white: #ffffff;

    --badr-text: #14213d;
    --badr-muted: #6b7280;
    --badr-border: #e5e7eb;
}


/* =========================================================
   2. GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

html,
body,
button,
input,
select,
textarea {
    font-family: 'Tajawal', Arial, sans-serif !important;
}

body {
    background: var(--badr-bg);
    color: var(--badr-text);
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}


/* =========================================================
   3. TOP BAR
   ========================================================= */

.bs-topbar {
    width: 100%;
    min-height: 38px;

    background: var(--badr-navy-dark);
    color: #ffffff;
}

.bs-topbar .container {
    min-height: 38px;
}

.bs-topbar-inner {
    width: 100%;
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.bs-topbar-message,
.bs-topbar-contact,
.bs-topbar-local {
    display: flex;
    align-items: center;
}

.bs-topbar-message {
    gap: 7px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 13px;
}

.bs-topbar-message i {
    color: #35caa5;
}

.bs-topbar-contact {
    gap: 12px;
}

.bs-topbar-contact > a {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-size: 13px;
}

.bs-topbar-contact > a:hover {
    color: #35caa5;
}

.bs-topbar-local {
    gap: 8px;
}

.bs-topbar-local .btn,
.bs-topbar-local a {
    color: #ffffff !important;
}


/* =========================================================
   4. MAIN HEADER
   ========================================================= */

.bs-header {
    width: 100%;

    margin: 0;
    padding: 12px 0;

    background: var(--badr-navy);

    border: 0;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.bs-header .container {
    position: relative;
}

.bs-header-inner {
    width: 100%;
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================================================
   5. LOGO
   ========================================================= */

.bs-logo {
    flex: 0 0 280px;

    width: 280px;
    min-width: 280px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    overflow: visible;
}

.bs-logo > a {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bs-logo img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-width: 275px !important;
    max-height: 92px !important;

    margin: 0;

    opacity: 1 !important;
    visibility: visible !important;

    object-fit: contain;
}

.bs-logo-text {
    color: #ffffff !important;

    font-size: 30px;
    font-weight: 800;
}

.bs-logo-text:hover {
    color: #ffffff !important;
}


/* =========================================================
   6. SEARCH AREA
   ========================================================= */

.bs-header-search {
    flex: 1 1 auto;

    width: auto;
    min-width: 0;
}

.bs-header-search #search {
    width: 100%;

    margin: 0;
}

.bs-header-search #search .input-group {
    width: 100%;
}

.bs-header-search #search .form-control {
    height: 48px;

    padding: 0 17px;

    border: 0 !important;
    border-radius: 0 9px 9px 0 !important;

    background: #ffffff;

    color: var(--badr-text);

    font-family: 'Tajawal', Arial, sans-serif !important;
    font-size: 14px;

    box-shadow: none !important;
}

.bs-header-search #search .form-control::placeholder {
    color: #97a0aa;
}

.bs-header-search #search .form-control:focus {
    outline: none;

    box-shadow: none !important;
}

.bs-header-search #search .input-group-btn {
    width: 56px;
}

.bs-header-search #search .btn {
    width: 56px;
    min-width: 56px;
    height: 48px;

    padding: 0;

    border: 0 !important;
    border-radius: 9px 0 0 9px !important;

    background: var(--badr-green) !important;
    color: #ffffff !important;

    font-size: 18px;

    text-shadow: none !important;
    box-shadow: none !important;
}

.bs-header-search #search .btn:hover,
.bs-header-search #search .btn:focus {
    background: var(--badr-green-dark) !important;
    color: #ffffff !important;
}


/* =========================================================
   7. HEADER ACTIONS
   ========================================================= */

.bs-header-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 5px;

    white-space: nowrap;
}

.bs-action {
    position: relative;
}

.bs-action-link {
    min-width: 48px;
    min-height: 48px;

    padding: 6px 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    color: #ffffff !important;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.bs-action-link > i {
    font-size: 20px;
}

.bs-action-link:hover,
.bs-action-link:focus,
.bs-action.open > .bs-action-link {
    background: rgba(255, 255, 255, 0.09);

    color: #ffffff !important;
}

.bs-action-title {
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.bs-action-link .caret {
    color: #ffffff;
}


/* =========================================================
   8. ACCOUNT DROPDOWN
   ========================================================= */

.bs-action .dropdown-menu {
    min-width: 180px;

    padding: 7px;

    border: 0;
    border-radius: 9px;

    font-family: 'Tajawal', Arial, sans-serif;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.bs-action .dropdown-menu > li > a {
    padding: 9px 12px;

    border-radius: 6px;

    color: var(--badr-text);
}

.bs-action .dropdown-menu > li > a i {
    margin-left: 5px;
}

.bs-action .dropdown-menu > li > a:hover {
    background: #f3f7f8;

    color: var(--badr-green-dark);
}


/* =========================================================
   9. MINI CART
   ========================================================= */

.bs-header-cart {
    flex: 0 0 auto;

    min-width: 55px;
}

.bs-header-cart #cart {
    margin: 0;
}

.bs-header-cart #cart > .btn {
    min-height: 48px;

    padding: 6px 10px;

    border: 0 !important;
    border-radius: 8px !important;

    background: transparent !important;

    color: #ffffff !important;

    font-family: 'Tajawal', Arial, sans-serif;

    text-shadow: none !important;
    box-shadow: none !important;
}

.bs-header-cart #cart > .btn i {
    color: #ffffff;

    font-size: 20px;
}

.bs-header-cart #cart > .btn:hover,
.bs-header-cart #cart > .btn:focus,
.bs-header-cart #cart.open > .btn {
    background: rgba(255, 255, 255, 0.09) !important;

    color: #ffffff !important;
}

.bs-header-cart #cart .dropdown-menu {
    font-family: 'Tajawal', Arial, sans-serif;
}


/* =========================================================
   10. GENERAL BOOTSTRAP IMPROVEMENTS
   ========================================================= */

.dropdown-menu {
    font-family: 'Tajawal', Arial, sans-serif;
}

.btn,
.form-control {
    font-family: 'Tajawal', Arial, sans-serif;
}


/* =========================================================
   11. TABLET
   ========================================================= */

@media (max-width: 991px) {

    .bs-header-inner {
        min-height: 75px;

        gap: 15px;
    }


    /* Logo */

    .bs-logo {
        flex: 0 0 190px;

        width: 190px;
        min-width: 190px;
    }

    .bs-logo img {
        width: 100% !important;

        max-width: 185px !important;
        max-height: 70px !important;
    }


    /* Account */

    .bs-action-title {
        display: none;
    }

}


/* =========================================================
   12. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }


    /* Top bar */

    .bs-topbar {
        display: none;
    }


    /* Header */

    .bs-header {
        padding: 9px 0 11px;
    }

    .bs-header .container {
        width: 100% !important;

        padding-left: 12px;
        padding-right: 12px;
    }

    .bs-header-inner {
        width: 100%;
        min-height: auto;

        display: flex;
        flex-wrap: wrap;
        align-items: center;

        gap: 8px;
    }


    /* Logo */

    .bs-logo {
        flex: 1 1 0;

        order: 1;

        width: auto;
        min-width: 0;

        justify-content: flex-start;
    }

    .bs-logo > a {
        width: auto;
    }

    .bs-logo img {
        width: auto !important;
        height: auto !important;

        max-width: 175px !important;
        max-height: 62px !important;
    }


    /* Header Actions */

    .bs-header-actions {
        flex: 0 0 auto;

        order: 2;

        gap: 2px;
    }

    .bs-action-link {
        min-width: 40px;
        min-height: 40px;

        padding: 5px;
    }

    .bs-action-link > i {
        font-size: 19px;
    }

    .bs-action-title {
        display: none;
    }

    .bs-wishlist {
        display: none;
    }

    .bs-header-cart {
        min-width: 40px;
    }

    .bs-header-cart #cart > .btn {
        min-width: 40px;
        min-height: 40px;

        padding: 4px;
    }


    /* Search */

    .bs-header-search {
        flex: 0 0 100%;

        order: 3;

        width: 100%;
        min-width: 0;
    }

    .bs-header-search #search {
        width: 100%;
    }

    .bs-header-search #search .input-group {
        width: 100%;
    }

    .bs-header-search #search .form-control {
        width: 100%;

        height: 44px;

        font-size: 13px;
    }

    .bs-header-search #search .input-group-btn {
        width: 50px;
    }

    .bs-header-search #search .btn {
        width: 50px;
        min-width: 50px;
        height: 44px;
    }

}


/* =========================================================
   13. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .bs-header .container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .bs-logo img {
        max-width: 150px !important;
        max-height: 55px !important;
    }

    .bs-action-link {
        min-width: 37px;

        padding: 4px;
    }

    .bs-header-cart #cart > .btn {
        min-width: 37px;

        padding: 3px;
    }

}


/* =========================================================
   14. BADR STAR SEARCH
   ========================================================= */

.bs-search-box {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: stretch;

    margin: 0;

    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.bs-search-box .form-control {
    flex: 1 1 auto;

    width: 1%;
    height: 48px;

    padding: 0 18px;

    border: 0 !important;
    border-radius: 0 !important;

    background: #ffffff;

    color: var(--badr-text);

    font-family: 'Tajawal', Arial, sans-serif !important;
    font-size: 14px;

    box-shadow: none !important;
}

.bs-search-box .form-control::placeholder {
    color: #9ba4ae;
}

.bs-search-box .form-control:focus {
    outline: none;

    box-shadow: none !important;
}

.bs-search-button {
    flex: 0 0 58px;

    width: 58px;
    height: 48px;

    padding: 0;

    border: 0;

    background: var(--badr-green);
    color: #ffffff;

    font-size: 19px;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .1s ease;
}

.bs-search-button:hover,
.bs-search-button:focus {
    background: var(--badr-green-dark);

    color: #ffffff;

    outline: none;
}

.bs-search-button:active {
    transform: scale(.96);
}


/* =========================================================
   15. BADR STAR MINI CART BUTTON
   ========================================================= */

.bs-mini-cart {
    position: relative;

    margin: 0;
}

.bs-cart-button {
    min-height: 48px;

    padding: 5px 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #ffffff;

    font-family: 'Tajawal', Arial, sans-serif;

    cursor: pointer;

    transition: background .2s ease;
}

.bs-cart-button:hover,
.bs-cart-button:focus,
.bs-mini-cart.open .bs-cart-button {
    background: rgba(255, 255, 255, .09);

    color: #ffffff;

    outline: none;
}

.bs-cart-icon {
    position: relative;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.bs-cart-badge {
    position: absolute;

    top: -6px;
    right: -7px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--badr-navy);
    border-radius: 20px;

    background: var(--badr-green);
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    line-height: 1;
}

.bs-cart-label {
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}


/* Keep original OpenCart Ajax target */

.bs-cart-original-total {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* =========================================================
   16. MINI CART DROPDOWN
   ========================================================= */

.bs-cart-dropdown {
    width: 390px !important;
    max-width: calc(100vw - 30px);

    margin-top: 8px !important;

    padding: 0 !important;

    overflow: hidden;

    border: 0 !important;
    border-radius: 12px !important;

    background: #ffffff;

    box-shadow: 0 18px 50px rgba(0, 0, 0, .18) !important;
}


/* Products
--------------------------------------------------------- */

.bs-cart-products {
    max-height: 330px;

    padding: 10px;

    overflow-y: auto;
}

.bs-cart-product {
    display: grid;

    grid-template-columns:
        62px
        minmax(0, 1fr)
        30px;

    gap: 10px;

    align-items: center;

    padding: 10px 4px;

    border-bottom: 1px solid var(--badr-border);
}

.bs-cart-product:last-child {
    border-bottom: 0;
}

.bs-cart-product-image img {
    width: 60px;
    height: 60px;

    display: block;

    object-fit: contain;

    border: 1px solid var(--badr-border);
    border-radius: 8px;

    background: #ffffff;
}

.bs-cart-product-info {
    min-width: 0;
}

.bs-cart-product-name {
    display: block;

    color: var(--badr-text);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;
}

.bs-cart-product-name:hover {
    color: var(--badr-green-dark);
}

.bs-cart-product-options {
    margin-top: 4px;

    color: var(--badr-muted);
}

.bs-cart-product-options small {
    display: block;

    font-size: 11px;
}

.bs-cart-product-recurring {
    display: block;

    margin-top: 4px;

    color: var(--badr-muted);
}

.bs-cart-product-meta {
    margin-top: 5px;

    color: var(--badr-green-dark);

    font-size: 12px;
    font-weight: 700;
}


/* Remove Button
--------------------------------------------------------- */

.bs-cart-remove {
    width: 28px;
    height: 28px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #fff0f0;
    color: #dc3545;

    transition:
        background .2s ease,
        color .2s ease;
}

.bs-cart-remove:hover {
    background: #dc3545;
    color: #ffffff;
}


/* =========================================================
   17. CART TOTALS
   ========================================================= */

.bs-cart-totals {
    padding: 12px 15px;

    border-top: 1px solid var(--badr-border);

    background: #f8fafb;
}

.bs-cart-total-row {
    padding: 4px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--badr-text);

    font-size: 13px;
}

.bs-cart-total-row:last-child {
    color: var(--badr-green-dark);

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   18. CART ACTIONS
   ========================================================= */

.bs-cart-actions {
    padding: 12px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}

.bs-cart-view,
.bs-cart-checkout {
    min-height: 42px;

    padding: 8px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease;
}

.bs-cart-view {
    border: 1px solid var(--badr-green);

    background: #ffffff;
    color: var(--badr-green-dark);
}

.bs-cart-view:hover {
    background: #f2fbf8;

    color: var(--badr-green-dark);
}

.bs-cart-checkout {
    border: 1px solid var(--badr-green);

    background: var(--badr-green);
    color: #ffffff;
}

.bs-cart-checkout:hover {
    background: var(--badr-green-dark);
    border-color: var(--badr-green-dark);

    color: #ffffff;
}


/* =========================================================
   19. EMPTY CART
   ========================================================= */

.bs-cart-empty {
    min-height: 135px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--badr-muted);

    text-align: center;
}

.bs-cart-empty > i {
    color: #cbd3da;

    font-size: 32px;
}


/* =========================================================
   20. MOBILE SEARCH AND CART
   ========================================================= */

@media (max-width: 767px) {

    .bs-search-box {
        height: 44px;
    }

    .bs-search-box .form-control {
        height: 44px;

        font-size: 13px;
    }

    .bs-search-button {
        flex-basis: 50px;

        width: 50px;
        height: 44px;
    }


    .bs-cart-label {
        display: none;
    }


    .bs-cart-dropdown {
        position: fixed !important;

        top: 65px !important;
        right: 10px !important;
        left: 10px !important;

        width: auto !important;
        max-width: none !important;

        transform: none !important;

        margin: 0 !important;
    }

}


/* =========================================================
   21. BADR STAR MAIN MENU
   ========================================================= */

.bs-menu-wrap {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid var(--badr-border);

    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.bs-main-menu {
    min-height: 50px;

    margin: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
}

.bs-navbar-collapse {
    padding: 0;
}


/* Menu List
--------------------------------------------------------- */

.bs-menu-list {
    width: 100%;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-menu-list > li {
    position: relative;

    float: none;
}

.bs-menu-list > li > a {
    min-height: 50px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    color: var(--badr-text);

    background: transparent !important;

    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color .2s ease,
        background .2s ease;
}

.bs-menu-list > li > a:hover,
.bs-menu-list > li.open > a {
    background: #f5faf8 !important;

    color: var(--badr-green-dark);
}


/* Green underline
--------------------------------------------------------- */

.bs-menu-list > li:not(.bs-offers-item)::after {
    content: '';

    position: absolute;

    right: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--badr-green);

    transition:
        width .2s ease,
        right .2s ease;
}

.bs-menu-list > li:not(.bs-offers-item):hover::after {
    width: 70%;
    right: 15%;
}


/* Home
--------------------------------------------------------- */

.bs-home-item > a {
    color: var(--badr-green-dark) !important;
    font-weight: 700 !important;
}

.bs-home-item > a i {
    font-size: 14px;
}


/* Offers
--------------------------------------------------------- */

.bs-offers-item > a {
    color: var(--badr-orange) !important;

    font-weight: 700 !important;
}

.bs-offers-item > a:hover {
    background: #fff7f2 !important;
}

.bs-offers-item > a i {
    font-size: 14px;
}


/* =========================================================
   22. CATEGORY DROPDOWN
   ========================================================= */

.bs-category-dropdown {
    min-width: 250px;

    padding: 0 !important;

    overflow: hidden;

    border: 0 !important;
    border-radius: 10px !important;

    background: #ffffff;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .14) !important;
}

.bs-dropdown-inner {
    padding: 10px;
}

.bs-dropdown-inner > ul {
    margin: 0;
}

.bs-dropdown-link {
    min-height: 38px;

    padding: 7px 10px;

    display: flex;
    align-items: center;

    border-radius: 6px;

    color: var(--badr-text) !important;

    font-size: 13px;
    font-weight: 500;

    transition:
        padding .2s ease,
        background .2s ease,
        color .2s ease;
}

.bs-dropdown-link:hover {
    padding-right: 15px;

    background: #f3f9f7;

    color: var(--badr-green-dark) !important;
}


/* See All
--------------------------------------------------------- */

.bs-see-all {
    min-height: 43px;

    padding: 8px 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--badr-border);

    background: #f8fafb;

    color: var(--badr-green-dark) !important;

    font-size: 13px;
    font-weight: 700;
}

.bs-see-all:hover {
    background: #eef8f5;

    color: var(--badr-green-dark) !important;
}


/* =========================================================
   23. DESKTOP DROPDOWN HOVER
   ========================================================= */

@media (min-width: 768px) {

    .bs-menu-item.dropdown:hover > .dropdown-menu {
        display: block;

        margin-top: 0;
    }

}


/* =========================================================
   24. MOBILE MENU
   ========================================================= */

.bs-mobile-menu-title {
    width: 100%;
    min-height: 50px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--badr-navy);

    font-size: 15px;
    font-weight: 700;
}

.bs-mobile-menu-title > span {
    display: flex;
    align-items: center;

    gap: 8px;
}

.bs-mobile-menu-title > span i {
    color: var(--badr-green);
}

.bs-menu-toggler {
    width: 42px;
    height: 38px;

    margin: 5px 0;

    padding: 0;

    border: 1px solid var(--badr-border) !important;
    border-radius: 7px;

    background: #ffffff !important;

    color: var(--badr-navy) !important;
}

.bs-menu-toggler i {
    font-size: 17px;
}


/* =========================================================
   25. MOBILE MENU LAYOUT
   ========================================================= */

@media (max-width: 767px) {

    .bs-menu-wrap {
        padding: 0 10px;
    }

    .bs-main-menu {
        width: 100%;
    }

    .bs-navbar-collapse {
        width: 100%;

        padding: 0;

        border: 0;

        box-shadow: none;
    }

    .bs-menu-list {
        width: 100%;

        margin: 0;

        display: block;
    }

    .bs-menu-list > li {
        width: 100%;

        border-bottom: 1px solid #eef1f3;
    }

    .bs-menu-list > li:last-child {
        border-bottom: 0;
    }

    .bs-menu-list > li > a {
        min-height: 44px;

        padding: 8px 6px;

        justify-content: flex-start;

        font-size: 14px;
    }

    .bs-menu-list > li::after {
        display: none;
    }


    /* Dropdown */

    .bs-category-dropdown {
        position: static;

        width: 100%;
        min-width: 0;

        float: none;

        margin: 0 0 8px !important;

        border-radius: 7px !important;

        background: #f7f9fa;

        box-shadow: none !important;
    }

    .bs-dropdown-link {
        padding-right: 18px;
    }

}



/* =========================================================
   26. HOME CATEGORIES
   ========================================================= */

.bs-home-categories {
    margin: 28px 0 32px;
}

.bs-section-heading {
    margin-bottom: 18px;

    display: flex;
    align-items: flex-end;

    gap: 18px;
}

.bs-section-heading > div {
    flex: 0 0 auto;
}

.bs-section-kicker {
    display: block;

    margin-bottom: 3px;

    color: var(--badr-green-dark);

    font-size: 12px;
    font-weight: 700;
}

.bs-section-heading h2 {
    margin: 0;

    color: var(--badr-navy);

    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.bs-section-line {
    flex: 1 1 auto;

    height: 1px;

    margin-bottom: 7px;

    background: var(--badr-border);
}


/* Grid
--------------------------------------------------------- */

.bs-category-grid {
    display: grid;

    grid-template-columns: repeat(8, minmax(0, 1fr));

    gap: 10px;
}


/* Card
--------------------------------------------------------- */

.bs-category-card {
    min-width: 0;
    min-height: 122px;

    padding: 14px 7px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid var(--badr-border);
    border-radius: 12px;

    background: #ffffff;

    color: var(--badr-text);

    text-align: center;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .035);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.bs-category-card:hover {
    transform: translateY(-4px);

    border-color: rgba(7, 155, 120, .35);

    color: var(--badr-green-dark);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .09);
}


/* Icon
--------------------------------------------------------- */

.bs-category-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef9f6;

    color: var(--badr-green);

    font-size: 25px;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.bs-category-card:hover .bs-category-icon {
    background: var(--badr-green);
    color: #ffffff;

    transform: scale(1.05);
}

.bs-category-name {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: inherit;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}


/* Offers
--------------------------------------------------------- */

.bs-category-offers .bs-category-icon {
    background: #fff3ec;

    color: var(--badr-orange);
}

.bs-category-offers:hover {
    border-color: rgba(240, 100, 35, .35);

    color: var(--badr-orange);
}

.bs-category-offers:hover .bs-category-icon {
    background: var(--badr-orange);

    color: #ffffff;
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 991px) {

    .bs-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));

        gap: 12px;
    }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 767px) {

    .bs-home-categories {
        margin: 20px 0 24px;
    }

    .bs-section-heading {
        margin-bottom: 14px;
    }

    .bs-section-heading h2 {
        font-size: 21px;
    }

    .bs-section-kicker {
        font-size: 11px;
    }

    .bs-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .bs-category-card {
        min-height: 108px;

        padding: 12px 6px;
    }

    .bs-category-icon {
        width: 52px;
        height: 52px;

        font-size: 22px;
    }

    .bs-category-name {
        min-height: 32px;

        font-size: 12px;
    }

}


/* =========================================================
   27. HOME FEATURES
   ========================================================= */

.bs-home-features {
    margin: 8px 0 34px;
}

.bs-features-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.bs-feature-item {
    min-width: 0;
    min-height: 92px;

    padding: 16px 15px;

    display: flex;
    align-items: center;

    gap: 13px;

    border: 1px solid var(--badr-border);
    border-radius: 12px;

    background: #ffffff;

    color: var(--badr-text);

    box-shadow: 0 3px 12px rgba(0, 0, 0, .035);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.bs-feature-item:hover {
    transform: translateY(-3px);

    border-color: rgba(7, 155, 120, .30);

    color: var(--badr-text);

    box-shadow: 0 9px 24px rgba(0, 0, 0, .08);
}

.bs-feature-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef9f6;

    color: var(--badr-green);

    font-size: 22px;
}

.bs-feature-content {
    min-width: 0;
}

.bs-feature-content h3 {
    margin: 0 0 4px;

    color: var(--badr-navy);

    font-size: 14px;
    font-weight: 800;
}

.bs-feature-content p {
    margin: 0;

    color: var(--badr-muted);

    font-size: 12px;
    line-height: 1.6;
}


/* WhatsApp
--------------------------------------------------------- */

.bs-feature-whatsapp .bs-feature-icon {
    background: #e9fbf2;

    color: #25d366;
}

.bs-feature-whatsapp:hover {
    border-color: rgba(37, 211, 102, .35);
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 991px) {

    .bs-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 767px) {

    .bs-home-features {
        margin: 6px 0 26px;
    }

    .bs-features-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .bs-feature-item {
        min-height: 78px;

        padding: 12px 13px;
    }

    .bs-feature-icon {
        flex-basis: 46px;

        width: 46px;
        height: 46px;

        font-size: 20px;
    }

    .bs-feature-content h3 {
        font-size: 13px;
    }

    .bs-feature-content p {
        font-size: 11px;
    }

}


/* =========================================================
   BADR STAR - FEATURED PRODUCT CARDS
   ========================================================= */

.bs-products-section {
    margin: 8px 0 36px;
}

.bs-section-kicker {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--badr-green);
    font-size: 12px;
    font-weight: 800;
}

.bs-products-section .bs-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.bs-products-section .bs-section-heading h2 {
    margin: 0;
    color: var(--badr-navy);
    font-size: 24px;
    font-weight: 800;
}

.bs-products-row {
    display: flex;
    flex-wrap: wrap;
}

.bs-products-row > .product-layout {
    display: flex;
    margin-bottom: 24px;
}

.bs-product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--badr-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bs-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 155, 120, .25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
}

.bs-product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #f1f3f5;
}

.bs-product-image-link {
    display: block;
    padding: 14px;
}

.bs-product-image {
    width: 100%;
    margin: 0 auto;
    transition: transform .3s ease;
}

.bs-product-card:hover .bs-product-image {
    transform: scale(1.035);
}

.bs-product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 7px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .2s ease, transform .2s ease;
}

.bs-product-card:hover .bs-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.bs-circle-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #e5e9ed;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--badr-navy);
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .07);
}

.bs-circle-btn:hover,
.bs-circle-btn:focus {
    border-color: var(--badr-green);
    background: var(--badr-green);
    color: #fff;
}

.bs-sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background: var(--badr-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.bs-product-content {
    flex: 1;
    padding: 15px 16px 10px !important;
    min-height: auto !important;
}

.bs-product-title {
    margin: 0 0 10px;
    min-height: 42px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 800;
}

.bs-product-title a {
    color: var(--badr-navy);
}

.bs-product-title a:hover {
    color: var(--badr-green);
}

.bs-product-rating {
    margin: 0 0 8px;
}

.bs-product-rating .fa-stack {
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 6px;
}

.bs-product-rating .fa-star {
    color: #f6b51b;
}

.bs-product-rating .fa-star-o {
    color: #d8dde2;
}

.bs-product-price {
    min-height: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    margin-top: 4px;
}

.bs-product-price .price-current,
.bs-product-price .price-new {
    color: var(--badr-green);
    font-size: 19px;
    font-weight: 900;
}

.bs-product-price .price-old {
    color: #9aa3aa;
    font-size: 13px;
    text-decoration: line-through;
}

.bs-product-price .price-tax {
    width: 100%;
    color: var(--badr-muted);
    font-size: 10px;
}

.bs-product-footer {
    padding: 0 16px 16px;
}

.bs-add-cart-btn {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 9px;
    background: var(--badr-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

.bs-add-cart-btn i {
    margin-left: 7px;
}

.bs-add-cart-btn:hover,
.bs-add-cart-btn:focus {
    background: var(--badr-green);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .bs-products-section {
        margin-bottom: 26px;
    }

    .bs-products-section .bs-section-heading h2 {
        font-size: 20px;
    }

    .bs-products-row > .product-layout {
        margin-bottom: 14px;
    }

    .bs-product-actions {
        opacity: 1;
        transform: none;
    }

    .bs-product-image-link {
        padding: 10px;
    }

    .bs-product-content {
        padding: 12px 13px 8px !important;
    }

    .bs-product-title {
        min-height: 38px;
        font-size: 14px;
    }

    .bs-product-price .price-current,
    .bs-product-price .price-new {
        font-size: 17px;
    }

    .bs-product-footer {
        padding: 0 13px 13px;
    }
}


/* =========================================================
   BADR STAR - PREMIUM FOOTER
   ========================================================= */

.bs-footer {
    position: relative;
    margin-top: 86px;
    padding: 0 0 22px;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 20%, rgba(7, 155, 120, .18), transparent 28%),
        radial-gradient(circle at 88% 70%, rgba(240, 100, 35, .10), transparent 24%),
        linear-gradient(145deg, #041d34 0%, #062846 48%, #041d34 100%);

    color: rgba(255, 255, 255, .82);
}

.bs-footer::before {
    content: "";
    position: absolute;
    top: -44px;
    left: -5%;
    width: 110%;
    height: 88px;
    background: #ffffff;
    border-radius: 0 0 50% 50%;
}

.bs-footer::after {
    content: "";
    position: absolute;
    top: 70px;
    left: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(255, 255, 255, .018),
        0 0 0 84px rgba(255, 255, 255, .012);
    pointer-events: none;
}

.bs-footer > .container {
    position: relative;
    z-index: 2;
}


/* CTA
--------------------------------------------------------- */

.bs-footer-cta {
    position: relative;
    margin-top: -44px;
    margin-bottom: 52px;
    padding: 27px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;

    background:
        linear-gradient(135deg, rgba(7, 155, 120, .96), rgba(5, 120, 94, .96));

    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.bs-footer-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -40px;
    width: 230px;
    height: 230px;

    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;

    box-shadow:
        0 0 0 34px rgba(255, 255, 255, .06),
        0 0 0 68px rgba(255, 255, 255, .035);
}

.bs-footer-cta-content,
.bs-footer-cta-actions {
    position: relative;
    z-index: 2;
}

.bs-footer-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    color: #dffbf4;
    font-size: 12px;
    font-weight: 800;
}

.bs-footer-cta-kicker i {
    color: #ffd36b;
}

.bs-footer-cta h2 {
    margin: 0 0 6px;

    color: #ffffff;
    font-size: 23px;
    line-height: 1.45;
    font-weight: 900;
}

.bs-footer-cta p {
    margin: 0;

    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.bs-footer-cta-actions {
    flex: 0 0 auto;

    display: flex;
    gap: 10px;
}

.bs-footer-btn {
    min-width: 122px;
    min-height: 44px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 900;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.bs-footer-btn:hover,
.bs-footer-btn:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.bs-footer-btn-whatsapp {
    background: #ffffff;
    color: #067b61;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .13);
}

.bs-footer-btn-whatsapp:hover,
.bs-footer-btn-whatsapp:focus {
    background: #f6fffc;
    color: #067b61;
}

.bs-footer-btn-call {
    border: 1px solid rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
}

.bs-footer-btn-call:hover,
.bs-footer-btn-call:focus {
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
}


/* Main footer
--------------------------------------------------------- */

.bs-footer-main {
    display: grid;
    grid-template-columns: 1.45fr .75fr .9fr .95fr;
    gap: 44px;

    padding-bottom: 42px;
}

.bs-footer-brand {
    padding-left: 15px;
}

.bs-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: #ffffff;
}

.bs-footer-logo:hover,
.bs-footer-logo:focus {
    color: #ffffff;
    text-decoration: none;
}

.bs-footer-logo-mark {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;

    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));

    color: #ffd36b;
    font-size: 21px;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.bs-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.bs-footer-logo-text strong {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 900;
}

.bs-footer-logo-text small {
    margin-top: 5px;

    color: rgba(255, 255, 255, .60);
    font-size: 11px;
}

.bs-footer-about {
    max-width: 390px;
    margin: 0 0 22px;

    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    line-height: 2;
}

.bs-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bs-footer-trust span {
    padding: 7px 10px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;

    background: rgba(255, 255, 255, .045);

    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 700;
}

.bs-footer-trust i {
    color: #54d8b8;
}


.bs-footer-column h3 {
    position: relative;

    margin: 5px 0 19px;
    padding-bottom: 11px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.bs-footer-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;

    width: 28px;
    height: 3px;

    border-radius: 10px;

    background: linear-gradient(90deg, #079b78, #54d8b8);
}

.bs-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.bs-footer-column li {
    margin-bottom: 11px;
}

.bs-footer-column li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, .65);
    font-size: 12px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.bs-footer-column li a:hover,
.bs-footer-column li a:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(-3px);
}

.bs-footer-column li a i {
    color: #54d8b8;
    font-size: 11px;
}

.bs-footer-offers-link {
    color: #ffad79 !important;
    font-weight: 800;
}

.bs-footer-contact-card {
    margin-top: 20px;
    padding: 13px 14px;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;

    background: rgba(255, 255, 255, .04);
}

.bs-footer-contact-card span {
    display: block;
    margin-bottom: 7px;

    color: rgba(255, 255, 255, .46);
    font-size: 10px;
}

.bs-footer-contact-card a {
    display: block;
    margin-top: 4px;

    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.bs-footer-contact-card a:hover {
    color: #54d8b8;
    text-decoration: none;
}


/* Bottom
--------------------------------------------------------- */

.bs-footer-bottom {
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, .09);
}

.bs-footer-copyright,
.bs-footer-payment {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    color: rgba(255, 255, 255, .46);
    font-size: 11px;
}

.bs-footer-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #079b78;
}

.bs-footer-payment span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bs-footer-payment i {
    color: #54d8b8;
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 991px) {

    .bs-footer-main {
        grid-template-columns: 1.25fr 1fr 1fr;
        gap: 34px;
    }

    .bs-footer-brand {
        grid-column: 1 / -1;
        padding-left: 0;
    }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 767px) {

    .bs-footer {
        margin-top: 70px;
    }

    .bs-footer::before {
        top: -28px;
        height: 56px;
    }

    .bs-footer-cta {
        margin-top: -28px;
        margin-bottom: 38px;
        padding: 21px 18px;

        flex-direction: column;
        align-items: stretch;

        border-radius: 15px;
    }

    .bs-footer-cta h2 {
        font-size: 19px;
    }

    .bs-footer-cta p {
        font-size: 12px;
        line-height: 1.8;
    }

    .bs-footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bs-footer-btn {
        min-width: 0;
        padding: 0 12px;
    }

    .bs-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;

        padding-bottom: 34px;
    }

    .bs-footer-brand {
        grid-column: auto;
    }

    .bs-footer-logo-text strong {
        font-size: 21px;
    }

    .bs-footer-column h3 {
        margin-bottom: 15px;
    }

    .bs-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* Very small screens
--------------------------------------------------------- */

@media (max-width: 420px) {

    .bs-footer-cta-actions {
        grid-template-columns: 1fr;
    }

    .bs-footer-trust {
        display: grid;
        grid-template-columns: 1fr;
    }

}



.bs-footer-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 10px;
    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;

    background: rgba(4, 29, 52, .28);

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;

    text-shadow: 0 1px 2px rgba(0, 0, 0, .18);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 4px 12px rgba(0, 0, 0, .08);
}

.bs-footer-cta-kicker i {
    color: #ffd36b;
    font-size: 12px;
}

@media (max-width: 767px) {

    .bs-footer-cta-kicker {
        width: fit-content;
        max-width: 100%;

        margin-bottom: 9px;
        padding: 6px 10px;

        font-size: 12px;
    }

}


.bs-footer {
    padding-top: 44px;
}

.bs-footer-cta {
    margin-top: -44px;
}

.bs-footer-cta-kicker {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .bs-footer {
        padding-top: 28px;
    }

    .bs-footer-cta {
        margin-top: -28px;
    }
}


/* =========================================================
   BADR STAR - MOBILE SLIDESHOW
   ========================================================= */

@media (max-width: 767px) {

    #common-home .swiper-container[id^="slideshow"] {
        height: 190px !important;
        border-radius: 10px;
        overflow: hidden;
    }

    #common-home .swiper-container[id^="slideshow"] .swiper-wrapper,
    #common-home .swiper-container[id^="slideshow"] .swiper-slide,
    #common-home .swiper-container[id^="slideshow"] .swiper-slide > a {
        height: 100% !important;
    }

    #common-home .swiper-container[id^="slideshow"] .swiper-slide > a {
        display: block;
    }

    #common-home .swiper-container[id^="slideshow"] .swiper-slide img {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 !important;

        object-fit: cover;
        object-position: center center;
    }

    #common-home .swiper-viewport {
        margin-bottom: 26px;
        border-radius: 10px;
    }

    #common-home .swiper-pagination {
        bottom: 6px !important;
    }

    #common-home .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

}

@media (max-width: 420px) {

    #common-home .swiper-container[id^="slideshow"] {
        height: 178px !important;
    }

}

@media (max-width: 360px) {

    #common-home .swiper-container[id^="slideshow"] {
        height: 168px !important;
    }

}

/* =========================================================
   BADR STAR - MOBILE FOOTER ACCORDION
   ========================================================= */

@media (max-width: 767px) {

    .bs-footer-column {
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, .09);
    }

    .bs-footer-column:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .bs-footer-column h3 {
        position: relative;

        margin: 0;
        padding: 15px 0 15px 34px;

        cursor: pointer;
        user-select: none;
    }

    .bs-footer-column h3::after {
        display: none;
    }

    .bs-footer-column h3::before {
        content: "+";

        position: absolute;
        left: 2px;
        top: 50%;

        width: 24px;
        height: 24px;

        display: flex;
        align-items: center;
        justify-content: center;

        transform: translateY(-50%);

        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 50%;

        background: rgba(255, 255, 255, .045);

        color: #54d8b8;

        font-size: 17px;
        font-weight: 400;
        line-height: 1;
    }

    .bs-footer-column > ul,
    .bs-footer-column > .bs-footer-contact-card {
        display: none;
    }

    .bs-footer-column.is-open > ul {
        display: block;
        padding: 3px 0 12px;
    }

    .bs-footer-column.is-open > .bs-footer-contact-card {
        display: block;
        margin: 2px 0 15px;
    }

    .bs-footer-column.is-open h3::before {
        content: "−";
    }

}


/* =========================================================
   BADR STAR - PREMIUM PRODUCT PAGE
   ========================================================= */

.bs-product-page {
    padding-top: 8px;
}

.bs-product-breadcrumb {
    margin: 8px 0 22px;
    padding: 0;
    background: transparent;
}

.bs-product-breadcrumb > li + li::before {
    color: #aab4bb;
}

.bs-product-breadcrumb a {
    color: #66757f;
    font-size: 12px;
}

.bs-product-breadcrumb a:hover {
    color: var(--badr-green);
}


/* HERO
--------------------------------------------------------- */

.bs-product-hero {
    margin-bottom: 42px;
}


/* Gallery
--------------------------------------------------------- */

.bs-product-gallery {
    position: relative;
}

.bs-product-main-image {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid var(--badr-border);
    border-radius: 18px;

    background:
        radial-gradient(circle at 50% 44%, #ffffff 0%, #ffffff 55%, #f7f9fb 100%);

    box-shadow: 0 8px 26px rgba(0, 0, 0, .045);
}

.bs-product-main-image img {
    max-width: 100%;
    max-height: 500px;

    margin: 0 auto;

    object-fit: contain;

    transition: transform .3s ease;
}

.bs-product-main-image:hover img {
    transform: scale(1.018);
}

.bs-product-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    margin-top: 13px;
}

.bs-gallery-thumb {
    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 5px;

    border: 1px solid var(--badr-border);
    border-radius: 10px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.bs-gallery-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bs-gallery-thumb:hover,
.bs-gallery-thumb.active {
    border-color: var(--badr-green);
    box-shadow: 0 5px 14px rgba(7, 155, 120, .12);
    transform: translateY(-2px);
}


/* Product info
--------------------------------------------------------- */

.bs-product-info-card {
    position: sticky;
    top: 18px;

    padding: 26px;

    border: 1px solid var(--badr-border);
    border-radius: 18px;

    background: #ffffff;

    box-shadow: 0 10px 32px rgba(0, 0, 0, .055);
}

.bs-product-top-actions {
    position: absolute;
    top: 18px;
    left: 18px;

    display: flex;
    gap: 7px;
}

.bs-product-icon-btn {
    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid #e7ebee;
    border-radius: 50%;

    background: #ffffff;
    color: var(--badr-navy);

    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.bs-product-icon-btn:hover,
.bs-product-icon-btn:focus {
    border-color: var(--badr-green);
    background: var(--badr-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.bs-product-eyebrow {
    margin-bottom: 8px;
    padding-left: 90px;

    color: var(--badr-green);

    font-size: 12px;
    font-weight: 800;
}

.bs-product-eyebrow a {
    color: inherit;
}

.bs-product-title-main {
    margin: 0 0 14px;

    color: var(--badr-navy);

    font-size: 27px;
    line-height: 1.5;
    font-weight: 900;
}

.bs-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 9px 16px;

    margin-bottom: 13px;

    color: #697982;
    font-size: 11px;
}

.bs-product-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bs-product-meta i {
    color: var(--badr-green);
}

.bs-stock-pill {
    padding: 5px 9px;

    border-radius: 20px;

    background: #edf9f6;

    color: #067b61 !important;

    font-weight: 800;
}

.bs-product-rating-line {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 15px;

    border-bottom: 1px solid #edf0f2;
}

.bs-product-rating-line .rating {
    margin: 0;
}

.bs-product-rating-line .fa-stack {
    width: 15px;
    height: 15px;

    line-height: 15px;
    font-size: 7px;
}

.bs-product-rating-line .fa-star {
    color: #f6b51b;
}

.bs-review-link {
    color: #75838b;
    font-size: 11px;
}


/* Price
--------------------------------------------------------- */

.bs-product-price-box {
    padding: 19px 0 18px;

    border-bottom: 1px solid #edf0f2;
}

.bs-price-current {
    color: var(--badr-green);

    font-size: 29px;
    line-height: 1.2;
    font-weight: 900;
}

.bs-price-special-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 9px;
}

.bs-price-old {
    color: #9aa5ac;

    font-size: 15px;
    text-decoration: line-through;
}

.bs-price-sale-badge {
    padding: 4px 9px;

    border-radius: 20px;

    background: #fff0e9;
    color: var(--badr-orange);

    font-size: 10px;
    font-weight: 900;
}

.bs-product-tax,
.bs-product-points {
    margin-top: 6px;

    color: #8a969d;
    font-size: 10px;
}

.bs-product-discounts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 8px;
}

.bs-product-discounts span {
    padding: 5px 8px;

    border-radius: 6px;

    background: #f6f8f9;

    color: #64727a;

    font-size: 10px;
}


/* Options
--------------------------------------------------------- */

.bs-product-purchase {
    padding-top: 18px;
}

.bs-product-options h3,
.bs-recurring-wrap h3 {
    margin: 0 0 14px;

    color: var(--badr-navy);

    font-size: 15px;
    font-weight: 900;
}

.bs-product-purchase .control-label {
    margin-bottom: 7px;

    color: #33454f;

    font-size: 12px;
    font-weight: 800;
}

.bs-product-purchase .form-control {
    min-height: 42px;

    border-color: #dfe5e9;
    border-radius: 8px;

    box-shadow: none;
}

.bs-product-purchase .form-control:focus {
    border-color: var(--badr-green);

    box-shadow: 0 0 0 3px rgba(7, 155, 120, .08);
}

.bs-option-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.bs-option-choice {
    min-height: 42px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin: 0;
    padding: 7px 10px;

    border: 1px solid #dfe5e9;
    border-radius: 8px;

    background: #ffffff;

    color: #34464f;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.bs-option-choice:hover {
    border-color: var(--badr-green);
}

.bs-option-choice input {
    margin: 0;
}

.bs-option-choice .img-thumbnail {
    width: 34px;
    height: 34px;

    object-fit: contain;
}

.bs-option-choice small {
    color: #7b8990;
}


/* Quantity
--------------------------------------------------------- */

.bs-purchase-row {
    margin-top: 4px;
}

.bs-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}

.bs-qty-label {
    color: #34464f;

    font-size: 12px;
    font-weight: 800;
}

.bs-qty-control {
    display: grid;
    grid-template-columns: 38px 56px 38px;

    overflow: hidden;

    border: 1px solid #dfe5e9;
    border-radius: 9px;

    background: #ffffff;
}

.bs-qty-control .form-control {
    height: 38px;
    min-height: 38px;

    padding: 0;

    border: 0;
    border-radius: 0;

    text-align: center;

    box-shadow: none;
}

.bs-qty-btn {
    border: 0;

    background: #f5f8f9;
    color: var(--badr-navy);

    font-size: 10px;
}

.bs-qty-btn:hover {
    background: #edf7f4;
    color: var(--badr-green);
}


/* Main actions
--------------------------------------------------------- */

.bs-product-main-actions {
    display: grid;
    grid-template-columns: 1.35fr 1fr;

    gap: 9px;

    margin-top: 17px;
}

.bs-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 0;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 900;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.bs-btn:hover,
.bs-btn:focus {
    transform: translateY(-2px);
}

.bs-btn-cart {
    background: var(--badr-navy);
    color: #ffffff;

    box-shadow: 0 7px 18px rgba(4, 29, 52, .14);
}

.bs-btn-cart:hover,
.bs-btn-cart:focus {
    background: #0a385f;
    color: #ffffff;
}

.bs-btn-buy {
    background: var(--badr-green);
    color: #ffffff;

    box-shadow: 0 7px 18px rgba(7, 155, 120, .16);
}

.bs-btn-buy:hover,
.bs-btn-buy:focus {
    background: var(--badr-green-dark);
    color: #ffffff;
}

.bs-inline-success {
    margin: 12px 0 0;
    padding: 10px 12px;

    border: 1px solid #ccecdf;
    border-radius: 8px;

    background: #f0fbf7;
    color: #087357;

    font-size: 11px;
}


/* WhatsApp inquiry
--------------------------------------------------------- */

.bs-whatsapp-product {
    margin-top: 10px;
    padding: 12px 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    border: 1px solid #cbeedc;
    border-radius: 10px;

    background:
        linear-gradient(135deg, #f1fff8, #e9fbf2);

    color: #116b50;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.bs-whatsapp-product:hover,
.bs-whatsapp-product:focus {
    border-color: #25d366;

    color: #116b50;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(37, 211, 102, .10);

    transform: translateY(-2px);
}

.bs-whatsapp-product > i {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    font-size: 20px;
}

.bs-whatsapp-product span {
    display: flex;
    flex-direction: column;
}

.bs-whatsapp-product strong {
    font-size: 12px;
    font-weight: 900;
}

.bs-whatsapp-product small {
    margin-top: 2px;

    color: #6b877c;

    font-size: 9px;
}


/* Share
--------------------------------------------------------- */

.bs-product-share {
    margin-top: 13px;
    padding-top: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    border-top: 1px solid #edf0f2;
}

.bs-share-label {
    color: #65747c;

    font-size: 11px;
    font-weight: 800;
}

.bs-share-buttons {
    display: flex;

    gap: 6px;
}

.bs-share-btn {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #e2e7ea;
    border-radius: 50%;

    background: #ffffff;
    color: #566871;

    font-size: 13px;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.bs-share-btn:hover,
.bs-share-btn:focus {
    border-color: var(--badr-green);

    background: var(--badr-green);
    color: #ffffff;

    text-decoration: none;

    transform: translateY(-2px);
}

.bs-share-main {
    background: #f4f7f8;
}


/* Trust
--------------------------------------------------------- */

.bs-product-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 7px;

    margin-top: 17px;
}

.bs-product-trust-grid > div {
    min-width: 0;

    padding: 9px 8px;

    display: flex;
    align-items: center;

    gap: 7px;

    border: 1px solid #edf0f2;
    border-radius: 9px;

    background: #fafcfc;
}

.bs-product-trust-grid i {
    color: var(--badr-green);
}

.bs-product-trust-grid span {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.bs-product-trust-grid strong {
    overflow: hidden;

    color: #34464f;

    font-size: 9px;
    font-weight: 900;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.bs-product-trust-grid small {
    margin-top: 1px;

    color: #98a2a8;

    font-size: 8px;
}


/* Tabs
--------------------------------------------------------- */

.bs-product-details {
    margin: 18px 0 42px;

    overflow: hidden;

    border: 1px solid var(--badr-border);
    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 7px 24px rgba(0, 0, 0, .035);
}

.bs-product-tabs {
    margin: 0;
    padding: 0 18px;

    border-bottom: 1px solid #e9edef;

    background: #fafcfc;
}

.bs-product-tabs > li {
    margin: 0;
}

.bs-product-tabs > li > a {
    margin: 0;
    padding: 15px 16px;

    border: 0 !important;
    border-radius: 0;

    background: transparent !important;

    color: #62727b;

    font-size: 12px;
    font-weight: 800;
}

.bs-product-tabs > li > a i {
    margin-left: 5px;

    color: var(--badr-green);
}

.bs-product-tabs > li.active > a {
    position: relative;

    color: var(--badr-navy);
}

.bs-product-tabs > li.active > a::after {
    content: "";

    position: absolute;
    right: 16px;
    bottom: -1px;
    left: 16px;

    height: 3px;

    border-radius: 10px 10px 0 0;

    background: var(--badr-green);
}

.bs-product-tab-content {
    padding: 24px;

    color: #4f6069;

    font-size: 13px;
    line-height: 2;
}

.bs-product-tab-content img {
    max-width: 100%;
    height: auto;
}

.bs-spec-table {
    margin: 0;
}

.bs-spec-table thead td {
    background: #f7faf9;
    color: var(--badr-navy);
}

.bs-spec-table td {
    border-color: #edf0f2 !important;

    font-size: 12px;
}

.bs-spec-table tbody td:first-child {
    width: 34%;

    color: #34464f;
    font-weight: 800;
}


/* Reviews
--------------------------------------------------------- */

.bs-review-form h2 {
    margin: 20px 0;

    color: var(--badr-navy);

    font-size: 18px;
    font-weight: 900;
}

.bs-rating-input {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;
}


/* Tags
--------------------------------------------------------- */

.bs-product-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin: 8px 0 30px;
}

.bs-product-tags > span {
    color: #62727b;

    font-size: 11px;
    font-weight: 800;
}

.bs-product-tags a {
    padding: 5px 9px;

    border-radius: 20px;

    background: #f0f5f4;
    color: #39705f;

    font-size: 10px;
}


/* Validation
--------------------------------------------------------- */

.bs-product-purchase .text-danger {
    margin-top: 5px;

    color: #d9534f;

    font-size: 10px;
}

.bs-product-purchase .has-error .form-control {
    border-color: #d9534f;
}

.bs-minimum-alert {
    margin-top: 12px;

    font-size: 11px;
}


/* Related
--------------------------------------------------------- */

.bs-related-products {
    margin-top: 16px;
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 991px) {

    .bs-product-main-image {
        min-height: 430px;
    }

    .bs-product-main-image img {
        max-height: 410px;
    }

    .bs-product-info-card {
        position: static;
        padding: 21px;
    }

    .bs-product-title-main {
        font-size: 23px;
    }

    .bs-product-trust-grid {
        grid-template-columns: 1fr;
    }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 767px) {

    .bs-product-page {
        padding-top: 0;
    }

    .bs-product-breadcrumb {
        margin-bottom: 14px;

        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;
    }

    .bs-product-hero {
        margin-bottom: 26px;
    }

    .bs-product-main-image {
        min-height: 330px;

        border-radius: 13px;
    }

    .bs-product-main-image img {
        max-height: 315px;
    }

    .bs-product-thumbs {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 4px;

        -webkit-overflow-scrolling: touch;
    }

    .bs-gallery-thumb {
        flex: 0 0 65px;

        width: 65px;
        height: 65px;
    }

    .bs-product-info-card {
        margin-top: 15px;
        padding: 18px 15px;

        border-radius: 13px;
    }

    .bs-product-top-actions {
        top: 14px;
        left: 14px;
    }

    .bs-product-icon-btn {
        width: 34px;
        height: 34px;
    }

    .bs-product-eyebrow {
        padding-left: 82px;
    }

    .bs-product-title-main {
        font-size: 21px;
    }

    .bs-price-current {
        font-size: 25px;
    }

    .bs-product-main-actions {
        grid-template-columns: 1fr 1fr;
    }

    .bs-btn {
        min-height: 46px;
        padding: 0 9px;

        font-size: 12px;
    }

    .bs-whatsapp-product small {
        font-size: 8px;
    }

    .bs-product-share {
        align-items: flex-start;
        flex-direction: column;
    }

    .bs-share-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .bs-share-btn {
        width: 38px;
        height: 38px;
    }

    .bs-product-trust-grid {
        grid-template-columns: 1fr;
    }

    .bs-product-trust-grid > div {
        padding: 10px;
    }

    .bs-product-trust-grid strong {
        font-size: 10px;
    }

    .bs-product-trust-grid small {
        font-size: 9px;
    }

    .bs-product-details {
        margin-bottom: 30px;

        border-radius: 12px;
    }

    .bs-product-tabs {
        display: flex;

        padding: 0;

        overflow-x: auto;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;
    }

    .bs-product-tabs > li {
        float: none;
        flex: 0 0 auto;
    }

    .bs-product-tabs > li > a {
        padding: 13px 14px;
    }

    .bs-product-tab-content {
        padding: 18px 15px;

        font-size: 12px;
    }

}


/* Small mobile
--------------------------------------------------------- */

@media (max-width: 420px) {

    .bs-product-main-image {
        min-height: 285px;
    }

    .bs-product-main-image img {
        max-height: 270px;
    }

    .bs-product-main-actions {
        grid-template-columns: 1fr;
    }

    .bs-qty-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .bs-qty-control {
        width: 100%;
        grid-template-columns: 42px 1fr 42px;
    }

}

/* =========================================================
   BADR STAR - MOBILE PRODUCT BUY BAR
   ========================================================= */

.bs-mobile-buybar {
    display: none;
}

@media (max-width: 767px) {

    .bs-mobile-buybar {
        position: fixed;

        right: 0;
        bottom: 0;
        left: 0;

        z-index: 1050;

        min-height: 72px;

        display: flex;
        align-items: center;

        gap: 10px;

        padding:
            9px 12px
            calc(9px + env(safe-area-inset-bottom));

        border-top: 1px solid rgba(4, 29, 52, .10);

        background: rgba(255, 255, 255, .96);

        box-shadow:
            0 -10px 28px rgba(4, 29, 52, .12);

        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);

        transform: translateY(115%);

        visibility: hidden;
        opacity: 0;

        transition:
            transform .25s ease,
            opacity .25s ease,
            visibility .25s ease;
    }

    .bs-mobile-buybar.is-visible {
        transform: translateY(0);

        visibility: visible;
        opacity: 1;
    }

    .bs-mobile-buybar-price {
        flex: 0 0 auto;

        min-width: 78px;

        display: flex;
        flex-direction: column;
    }

    .bs-mobile-buybar-price small {
        margin-bottom: 1px;

        color: #8a969d;

        font-size: 9px;
        font-weight: 700;
    }

    .bs-mobile-buybar-price strong {
        color: var(--badr-green);

        font-size: 16px;
        line-height: 1.25;
        font-weight: 900;

        white-space: nowrap;
    }

    .bs-mobile-buybar-actions {
        flex: 1;

        display: grid;
        grid-template-columns: 1.15fr 1fr;

        gap: 7px;
    }

    .bs-mobile-buybar-actions button {
        min-width: 0;
        min-height: 45px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 6px;

        padding: 0 9px;

        border: 0;
        border-radius: 9px;

        color: #ffffff;

        font-size: 11px;
        font-weight: 900;
    }

    .bs-mobile-buybar-cart {
        background: var(--badr-navy);
    }

    .bs-mobile-buybar-buy {
        background: var(--badr-green);
    }

    .bs-mobile-buybar-actions button:active {
        transform: scale(.98);
    }

    body {
        padding-bottom:
            calc(72px + env(safe-area-inset-bottom));
    }

    .bs-footer {
        margin-bottom:
            calc(-72px - env(safe-area-inset-bottom));
    }

}

@media (max-width: 390px) {

    .bs-mobile-buybar {
        gap: 7px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .bs-mobile-buybar-price {
        min-width: 68px;
    }

    .bs-mobile-buybar-price strong {
        font-size: 14px;
    }

    .bs-mobile-buybar-actions button {
        padding: 0 6px;

        font-size: 10px;
    }

}


/* =========================================================
   BADR STAR - TOP SOCIAL ICONS
   ========================================================= */

.bs-top-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bs-top-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: rgba(255, 255, 255, .88);

    font-size: 12px;
    font-weight: 700;

    direction: ltr;
}

.bs-top-phone:hover,
.bs-top-phone:focus {
    color: #ffffff;
    text-decoration: none;
}

.bs-top-phone i {
    color: #54d8b8;
}

.bs-top-social {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding-right: 10px;

    border-right: 1px solid rgba(255, 255, 255, .14);
}

.bs-top-social-link {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;

    background: rgba(255, 255, 255, .055);

    color: rgba(255, 255, 255, .82);

    font-size: 12px;

    transition:
        transform .18s ease,
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.bs-top-social-link:hover,
.bs-top-social-link:focus {
    transform: translateY(-2px);

    border-color: rgba(255, 255, 255, .26);

    background: rgba(255, 255, 255, .13);

    color: #ffffff;

    text-decoration: none;
}

.bs-top-social-whatsapp:hover,
.bs-top-social-whatsapp:focus {
    border-color: rgba(37, 211, 102, .50);
    background: #25d366;
    color: #ffffff;
}

@media (max-width: 767px) {

    .bs-top-contact {
        gap: 7px;
    }

    .bs-top-phone span {
        display: none;
    }

    .bs-top-phone {
        width: 28px;
        height: 28px;

        justify-content: center;

        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 50%;

        background: rgba(255, 255, 255, .055);
    }

    .bs-top-social {
        gap: 4px;
        padding-right: 7px;
    }

    .bs-top-social-link {
        width: 27px;
        height: 27px;
        font-size: 11px;
    }

}

@media (max-width: 420px) {

    .bs-top-contact {
        width: 100%;
        justify-content: center;
    }

    .bs-top-social {
        padding-right: 6px;
    }

}

/* =========================================================
   BADR STAR - CATEGORY PAGE
   ========================================================= */

.bs-category-page {
    padding-bottom: 45px;
}

.bs-category-breadcrumb {
    margin-top: 14px;
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
}

.bs-category-breadcrumb > li + li:before {
    color: #9ba6b2;
}

.bs-category-breadcrumb a {
    color: #667788;
    font-size: 13px;
}

.bs-category-breadcrumb a:hover {
    color: #079b78;
    text-decoration: none;
}


/* Hero */
.bs-category-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 210px;
    margin-bottom: 34px;
    padding: 34px 38px;
    overflow: hidden;
    border: 1px solid #e7edf2;
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 20%, rgba(7, 155, 120, .12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%);
    box-shadow: 0 12px 35px rgba(6, 40, 70, .06);
}

.bs-category-hero:after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(6, 40, 70, .035);
}

.bs-category-hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-width: 0;
}

.bs-category-kicker,
.bs-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #079b78;
    font-size: 12px;
    font-weight: 800;
}

.bs-category-kicker i {
    color: #f06423;
}

.bs-category-hero h1 {
    margin: 0 0 12px;
    color: #062846;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.35;
}

.bs-category-description {
    max-width: 760px;
    color: #657281;
    font-size: 14px;
    line-height: 1.9;
}

.bs-category-description p:last-child {
    margin-bottom: 0;
}

.bs-category-hero-image {
    position: relative;
    z-index: 2;
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-category-hero-image img {
    max-height: 165px;
    width: auto;
    border-radius: 16px;
    object-fit: contain;
}


/* Section Heading */
.bs-category-section-heading,
.bs-category-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.bs-category-section-heading h2,
.bs-category-products-heading h2 {
    margin: 0;
    color: #062846;
    font-size: 22px;
    font-weight: 800;
}


/* Sub Categories */
.bs-subcategories {
    margin-bottom: 35px;
}

.bs-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.bs-subcategory-card {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid #e5ebf0;
    border-radius: 14px;
    background: #ffffff;
    color: #14213d;
    font-weight: 700;
    box-shadow: 0 7px 20px rgba(6, 40, 70, .04);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.bs-subcategory-card:hover,
.bs-subcategory-card:focus {
    transform: translateY(-2px);
    border-color: rgba(7, 155, 120, .35);
    box-shadow: 0 12px 25px rgba(6, 40, 70, .08);
    color: #079b78;
    text-decoration: none;
}

.bs-subcategory-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef9f6;
    color: #079b78;
}

.bs-subcategory-name {
    min-width: 0;
}


/* Product heading */
.bs-category-products {
    margin-top: 10px;
}

.bs-category-compare {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 10px;
    background: #f5f8fa;
    color: #536474;
    font-size: 13px;
    font-weight: 700;
}

.bs-category-compare:hover,
.bs-category-compare:focus {
    background: #eaf6f3;
    color: #079b78;
    text-decoration: none;
}


/* Toolbar */
.bs-category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 13px 15px;
    border: 1px solid #e7edf2;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 40, 70, .04);
}

.bs-category-view-switch {
    display: flex;
    gap: 6px;
}

.bs-view-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #e0e7ed;
    border-radius: 10px;
    background: #ffffff;
    color: #657281;
    transition: .18s ease;
}

.bs-view-btn:hover,
.bs-view-btn:focus,
.bs-view-btn.active {
    border-color: #079b78;
    background: #079b78;
    color: #ffffff;
}

.bs-category-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.bs-category-select-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-category-select-wrap label {
    margin: 0;
    white-space: nowrap;
    color: #667788;
    font-size: 12px;
    font-weight: 700;
}

.bs-category-select-wrap label i {
    margin-left: 4px;
    color: #079b78;
}

.bs-category-select-wrap .form-control {
    min-width: 150px;
    height: 38px;
    border-color: #dfe7ed;
    border-radius: 9px;
    box-shadow: none;
    font-size: 12px;
}


/* Products */
.bs-category-products-row {
    display: flex;
    flex-wrap: wrap;
}

.bs-category-products-row .product-layout {
    margin-bottom: 24px;
}

.bs-category-products-row .product-grid {
    display: flex;
}

.bs-category-products-row .product-grid .bs-product-card {
    width: 100%;
}

.bs-category-product-description {
    display: none;
}


/* Grid columns */
@media (min-width: 1200px) {
    .bs-category-products-row .product-grid {
        width: 25%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .bs-category-products-row .product-grid {
        width: 33.333333%;
    }
}


/* List View */
.bs-category-products-row .product-list {
    width: 100%;
}

.bs-category-products-row .product-list .bs-product-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 175px;
    align-items: stretch;
    min-height: 230px;
}

.bs-category-products-row .product-list .bs-product-image-wrap {
    min-height: 230px;
    border-radius: 16px 0 0 16px;
}

.bs-category-products-row .product-list .bs-product-image {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.bs-category-products-row .product-list .bs-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.bs-category-products-row .product-list .bs-category-product-description {
    display: block;
    margin: 10px 0 13px;
    color: #697787;
    font-size: 13px;
    line-height: 1.8;
}

.bs-category-products-row .product-list .bs-product-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-top: 0;
    border-right: 1px solid #eef2f5;
}

.bs-category-products-row .product-list .bs-add-cart-btn {
    width: 100%;
}


/* Pagination */
.bs-category-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #edf1f4;
}

.bs-category-pagination .pagination {
    margin: 0;
}

.bs-category-pagination .pagination > li > a,
.bs-category-pagination .pagination > li > span {
    margin: 0 2px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    color: #536474;
}

.bs-category-pagination .pagination > .active > span,
.bs-category-pagination .pagination > .active > a {
    border-color: #079b78;
    background: #079b78;
    color: #ffffff;
}

.bs-category-results {
    color: #7b8793;
    font-size: 12px;
}


/* Empty State */
.bs-category-empty {
    padding: 65px 20px;
    text-align: center;
    border: 1px solid #e6edf2;
    border-radius: 20px;
    background: #fbfcfd;
}

.bs-category-empty-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #eef9f6;
    color: #079b78;
    font-size: 28px;
}

.bs-category-empty h2 {
    margin: 0 0 10px;
    color: #062846;
    font-weight: 800;
}

.bs-category-empty p {
    margin-bottom: 20px;
    color: #71808e;
}

.bs-category-empty-btn {
    min-width: 145px;
    border-color: #079b78;
    background: #079b78;
}


/* Tablet */
@media (max-width: 991px) {

    .bs-category-hero {
        padding: 28px;
    }

    .bs-category-hero h1 {
        font-size: 27px;
    }

    .bs-category-hero-image {
        flex-basis: 150px;
    }

    .bs-subcategory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bs-category-toolbar {
        align-items: flex-start;
    }

    .bs-category-toolbar-controls {
        flex-wrap: wrap;
    }

    .bs-category-products-row .product-list .bs-product-card {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .bs-category-products-row .product-list .bs-product-footer {
        grid-column: 1 / -1;
        border-right: 0;
        border-top: 1px solid #eef2f5;
        padding: 14px 20px;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .bs-category-page {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 30px;
    }

    .bs-category-breadcrumb {
        margin-top: 10px;
        margin-bottom: 12px;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bs-category-hero {
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 25px;
        padding: 22px 20px;
        border-radius: 17px;
    }

    .bs-category-hero h1 {
        font-size: 25px;
    }

    .bs-category-description {
        font-size: 13px;
        line-height: 1.8;
    }

    .bs-category-hero-image {
        flex: none;
    }

    .bs-category-hero-image img {
        max-height: 145px;
        margin: 0 auto;
    }

    .bs-subcategory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .bs-subcategory-card {
        min-height: 58px;
        padding: 10px 11px;
        font-size: 12px;
    }

    .bs-subcategory-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .bs-category-products-heading {
        align-items: center;
    }

    .bs-category-products-heading h2,
    .bs-category-section-heading h2 {
        font-size: 19px;
    }

    .bs-category-compare {
        padding: 8px 10px;
        font-size: 11px;
    }

    .bs-category-toolbar {
        display: block;
        padding: 12px;
    }

    .bs-category-toolbar-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin: 0;
    }

    .bs-category-select-wrap {
        display: block;
    }

    .bs-category-select-wrap label {
        display: block;
        margin-bottom: 5px;
    }

    .bs-category-select-wrap .form-control {
        min-width: 0;
        width: 100%;
        height: 40px;
    }

    .bs-category-products-row .product-layout,
    .bs-category-products-row .product-grid,
    .bs-category-products-row .product-list {
        width: 50% !important;
        padding-left: 6px;
        padding-right: 6px;
    }

    .bs-category-products-row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .bs-category-products-row .product-list .bs-product-card,
    .bs-category-products-row .product-grid .bs-product-card {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .bs-category-products-row .product-list .bs-product-image-wrap {
        min-height: 0;
        border-radius: inherit;
    }

    .bs-category-products-row .product-list .bs-product-image {
        height: auto;
    }

    .bs-category-products-row .product-list .bs-product-content {
        display: block;
        padding: inherit;
    }

    .bs-category-products-row .product-list .bs-category-product-description {
        display: none;
    }

    .bs-category-products-row .product-list .bs-product-footer {
        display: block;
        padding: inherit;
        border-right: 0;
        border-top: inherit;
    }

    .bs-category-pagination {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .bs-category-results {
        text-align: center;
    }

}


/* Small phones */
@media (max-width: 430px) {

    .bs-category-products-row .product-layout,
    .bs-category-products-row .product-grid,
    .bs-category-products-row .product-list {
        width: 50% !important;
    }

    .bs-subcategory-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bs-category-toolbar-controls {
        grid-template-columns: 1fr;
    }

}



/* =========================================================
   BADR STAR - SEARCH PAGE
   Requires the shared product/category styles already used
   across Badr Star pages.
   ========================================================= */

.bs-search-page {
    padding-bottom: 45px;
}


/* Search Hero */
.bs-search-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    padding: 25px 28px;
    border: 1px solid #e7edf2;
    border-radius: 20px;
    background:
        radial-gradient(circle at 12% 25%, rgba(7, 155, 120, .11), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%);
    box-shadow: 0 10px 30px rgba(6, 40, 70, .05);
}

.bs-search-hero-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #062846;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 9px 20px rgba(6, 40, 70, .15);
}

.bs-search-hero-content {
    min-width: 0;
}

.bs-search-hero h1 {
    margin: 0 0 7px;
    color: #062846;
    font-size: 29px;
    line-height: 1.35;
    font-weight: 800;
}

.bs-search-hero p {
    margin: 0;
    color: #71808e;
    font-size: 13px;
    line-height: 1.8;
}


/* Search Panel */
.bs-search-panel {
    margin-bottom: 34px;
    padding: 20px;
    border: 1px solid #e5ecf1;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 40, 70, .045);
}

.bs-search-panel-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) minmax(210px, .9fr) auto;
    align-items: end;
    gap: 13px;
}

.bs-search-field label {
    display: block;
    margin-bottom: 7px;
    color: #425466;
    font-size: 12px;
    font-weight: 800;
}

.bs-search-field label i {
    margin-left: 5px;
    color: #079b78;
}

.bs-search-field .form-control {
    height: 45px;
    border: 1px solid #dfe7ed;
    border-radius: 11px;
    box-shadow: none;
    color: #263747;
    font-size: 13px;
}

.bs-search-field .form-control:focus {
    border-color: #079b78;
    box-shadow: 0 0 0 3px rgba(7, 155, 120, .08);
}

.bs-search-submit {
    min-width: 126px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: 11px;
    background: #079b78;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 9px 18px rgba(7, 155, 120, .18);
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bs-search-submit:hover,
.bs-search-submit:focus {
    transform: translateY(-1px);
    background: #067b61;
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(7, 155, 120, .23);
    outline: 0;
}

.bs-search-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #edf1f4;
}

.bs-search-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    color: #5d6d7c;
    font-size: 12px;
    font-weight: 700;
}

.bs-search-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bs-search-check-box {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccd7df;
    border-radius: 6px;
    background: #ffffff;
    color: transparent;
    transition: .18s ease;
}

.bs-search-check input:checked + .bs-search-check-box {
    border-color: #079b78;
    background: #079b78;
    color: #ffffff;
}

.bs-search-check input:disabled + .bs-search-check-box {
    opacity: .45;
    cursor: not-allowed;
}

.bs-search-check input:disabled ~ span:last-child {
    opacity: .55;
}


/* Results */
.bs-search-results {
    margin-top: 8px;
}

.bs-search-results-heading {
    margin-bottom: 18px;
}


/* Empty Search */
.bs-search-empty {
    padding: 64px 20px;
    text-align: center;
    border: 1px solid #e5ecf1;
    border-radius: 20px;
    background:
        radial-gradient(circle at center top, rgba(7, 155, 120, .08), transparent 36%),
        #fbfcfd;
}

.bs-search-empty-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #eef9f6;
    color: #079b78;
    font-size: 28px;
}

.bs-search-empty h2 {
    margin: 0 0 10px;
    color: #062846;
    font-size: 23px;
    font-weight: 800;
}

.bs-search-empty p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: #71808e;
    line-height: 1.8;
}

.bs-search-empty-focus {
    min-width: 135px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: #062846;
    color: #ffffff;
    font-weight: 800;
}

.bs-search-empty-focus:hover,
.bs-search-empty-focus:focus {
    background: #041d34;
    color: #ffffff;
    outline: 0;
}


/* Tablet */
@media (max-width: 991px) {

    .bs-search-panel-main {
        grid-template-columns: 1fr 1fr;
    }

    .bs-search-submit-wrap {
        grid-column: 1 / -1;
    }

    .bs-search-submit {
        width: 100%;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .bs-search-page {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 30px;
    }

    .bs-search-hero {
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
        border-radius: 17px;
    }

    .bs-search-hero-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
        font-size: 19px;
    }

    .bs-search-hero h1 {
        font-size: 23px;
    }

    .bs-search-hero p {
        font-size: 12px;
    }

    .bs-search-panel {
        padding: 15px;
        border-radius: 15px;
    }

    .bs-search-panel-main {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .bs-search-submit-wrap {
        grid-column: auto;
    }

    .bs-search-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bs-search-results-heading {
        align-items: center;
    }

}


/* Very small phones */
@media (max-width: 430px) {

    .bs-search-hero {
        display: block;
    }

    .bs-search-hero-icon {
        margin-bottom: 13px;
    }

    .bs-search-results-heading .bs-category-compare {
        padding: 7px 9px;
        font-size: 10px;
    }

}


/* =========================================================
   BADR STAR - SPECIALS PAGE
   Builds on the shared Badr Star category/product styles.
   ========================================================= */

.bs-special-page {
    padding-bottom: 45px;
}


/* Hero */
.bs-special-hero {
    position: relative;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
    padding: 38px 42px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 20%, rgba(240, 100, 35, .22), transparent 31%),
        linear-gradient(135deg, #062846 0%, #041d34 72%, #06385d 100%);
    box-shadow: 0 16px 42px rgba(6, 40, 70, .16);
}

.bs-special-hero:before,
.bs-special-hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bs-special-hero:before {
    width: 240px;
    height: 240px;
    left: -90px;
    bottom: -135px;
    background: rgba(255, 255, 255, .05);
}

.bs-special-hero:after {
    width: 180px;
    height: 180px;
    right: 25%;
    top: -105px;
    background: rgba(7, 155, 120, .12);
}

.bs-special-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.bs-special-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #ffb48f;
    font-size: 12px;
    font-weight: 800;
}

.bs-special-kicker i {
    color: #f06423;
}

.bs-special-hero h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
}

.bs-special-hero p {
    max-width: 610px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.9;
}

.bs-special-hero-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border-radius: 11px;
    background: #f06423;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 9px 20px rgba(240, 100, 35, .22);
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bs-special-hero-btn:hover,
.bs-special-hero-btn:focus {
    transform: translateY(-2px);
    background: #d95316;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(240, 100, 35, .28);
}

.bs-special-hero-art {
    position: relative;
    z-index: 2;
    width: 205px;
    height: 155px;
    flex: 0 0 205px;
}

.bs-special-percent {
    position: absolute;
    left: 10px;
    top: -15px;
    color: rgba(255, 255, 255, .12);
    font-size: 150px;
    line-height: 1;
    font-weight: 800;
}

.bs-special-ticket {
    position: absolute;
    right: 5px;
    bottom: 18px;
    min-width: 115px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 15px;
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    transform: rotate(-6deg);
    backdrop-filter: blur(5px);
}

.bs-special-ticket i {
    color: #f06423;
}


/* Products */
.bs-special-products {
    scroll-margin-top: 20px;
}

.bs-special-products-heading {
    margin-bottom: 18px;
}

.bs-special-product-card {
    position: relative;
}

.bs-special-sale-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f06423;
}

.bs-special-product-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff3ed;
    color: #d95316;
    font-size: 10px;
    font-weight: 800;
}

.bs-special-price .price-new {
    color: #f06423;
    font-weight: 800;
}

.bs-special-add-cart {
    background: #062846;
}

.bs-special-add-cart:hover,
.bs-special-add-cart:focus {
    background: #079b78;
}


/* Empty State */
.bs-special-empty {
    padding: 70px 20px;
    text-align: center;
    border: 1px solid #e5ecf1;
    border-radius: 22px;
    background:
        radial-gradient(circle at center top, rgba(240, 100, 35, .08), transparent 34%),
        #fbfcfd;
}

.bs-special-empty-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 50%;
    background: #fff3ed;
    color: #f06423;
    font-size: 28px;
}

.bs-special-empty h2 {
    margin: 0 0 10px;
    color: #062846;
    font-size: 24px;
    font-weight: 800;
}

.bs-special-empty p {
    max-width: 580px;
    margin: 0 auto 21px;
    color: #71808e;
    line-height: 1.8;
}

.bs-special-empty-btn {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 10px;
    background: #079b78;
    color: #ffffff;
    font-weight: 800;
}

.bs-special-empty-btn:hover,
.bs-special-empty-btn:focus {
    background: #067b61;
    color: #ffffff;
    text-decoration: none;
}


/* Tablet */
@media (max-width: 991px) {

    .bs-special-hero {
        min-height: 220px;
        padding: 32px;
    }

    .bs-special-hero h1 {
        font-size: 29px;
    }

    .bs-special-hero-art {
        width: 165px;
        flex-basis: 165px;
    }

    .bs-special-percent {
        font-size: 125px;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .bs-special-page {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 30px;
    }

    .bs-special-hero {
        min-height: 0;
        display: block;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .bs-special-hero-content {
        max-width: none;
    }

    .bs-special-hero h1 {
        font-size: 26px;
    }

    .bs-special-hero p {
        font-size: 13px;
        line-height: 1.8;
    }

    .bs-special-hero-art {
        width: 100%;
        height: 82px;
        margin-top: 10px;
    }

    .bs-special-percent {
        left: 4px;
        top: -28px;
        font-size: 105px;
    }

    .bs-special-ticket {
        right: auto;
        left: 82px;
        bottom: 8px;
        min-width: 100px;
        height: 44px;
        font-size: 14px;
    }

    .bs-special-products-heading {
        align-items: center;
    }

}


/* Very small phones */
@media (max-width: 430px) {

    .bs-special-hero {
        padding: 23px 19px;
    }

    .bs-special-hero-btn {
        width: 100%;
    }

}

/* =========================================================
   BADR STAR - CONTACT PAGE
   ========================================================= */

.bs-contact-page {
    padding-bottom: 50px;
}

.bs-contact-breadcrumb {
    margin-top: 14px;
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
}

.bs-contact-breadcrumb > li + li:before {
    color: #9ba6b2;
}

.bs-contact-breadcrumb a {
    color: #667788;
    font-size: 13px;
}

.bs-contact-breadcrumb a:hover {
    color: #079b78;
    text-decoration: none;
}


/* =========================================================
   Hero
   ========================================================= */

.bs-contact-hero {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 20px;
    padding: 42px 46px;
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 20%, rgba(7, 155, 120, .20), transparent 34%),
        linear-gradient(135deg, #062846 0%, #041d34 72%, #06395f 100%);
    box-shadow: 0 18px 45px rgba(6, 40, 70, .17);
}

.bs-contact-hero:before,
.bs-contact-hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bs-contact-hero:before {
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -155px;
    background: rgba(255, 255, 255, .05);
}

.bs-contact-hero:after {
    width: 170px;
    height: 170px;
    right: 29%;
    top: -105px;
    background: rgba(240, 100, 35, .08);
}

.bs-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.bs-contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #8ee4cf;
    font-size: 12px;
    font-weight: 800;
}

.bs-contact-kicker i {
    color: #f06423;
}

.bs-contact-hero h1 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 35px;
    line-height: 1.35;
    font-weight: 800;
}

.bs-contact-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.95;
}

.bs-contact-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 23px;
}

.bs-contact-hero-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bs-contact-hero-btn:hover,
.bs-contact-hero-btn:focus {
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.bs-contact-whatsapp {
    background: #079b78;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(7, 155, 120, .22);
}

.bs-contact-whatsapp:hover,
.bs-contact-whatsapp:focus {
    background: #067b61;
}

.bs-contact-call {
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .09);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.bs-contact-call:hover,
.bs-contact-call:focus {
    background: rgba(255, 255, 255, .15);
}


/* Hero Visual */
.bs-contact-hero-visual {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 190px;
    flex: 0 0 220px;
}

.bs-contact-hero-ring {
    position: absolute;
    width: 154px;
    height: 154px;
    right: 24px;
    top: 18px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 23px rgba(255, 255, 255, .03),
        0 0 0 46px rgba(255, 255, 255, .018);
}

.bs-contact-hero-icon-main {
    position: absolute;
    right: 62px;
    top: 55px;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font-size: 34px;
    backdrop-filter: blur(6px);
    transform: rotate(4deg);
}

.bs-contact-floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.bs-contact-floating-icon-1 {
    width: 45px;
    height: 45px;
    right: 1px;
    top: 16px;
    background: #079b78;
    font-size: 21px;
}

.bs-contact-floating-icon-2 {
    width: 40px;
    height: 40px;
    left: 12px;
    bottom: 23px;
    background: #f06423;
    font-size: 17px;
}

.bs-contact-floating-icon-3 {
    width: 35px;
    height: 35px;
    right: 16px;
    bottom: 11px;
    background: #ffffff;
    color: #062846;
    font-size: 15px;
}


/* =========================================================
   Quick Cards
   ========================================================= */

.bs-contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.bs-contact-quick-card {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e5ecf1;
    border-radius: 16px;
    background: #ffffff;
    color: #14213d;
    box-shadow: 0 8px 24px rgba(6, 40, 70, .045);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.bs-contact-quick-card:hover,
.bs-contact-quick-card:focus {
    transform: translateY(-3px);
    border-color: rgba(7, 155, 120, .30);
    color: #14213d;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(6, 40, 70, .085);
}

.bs-contact-quick-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eef9f6;
    color: #079b78;
    font-size: 19px;
}

.bs-contact-quick-whatsapp .bs-contact-quick-icon {
    background: #079b78;
    color: #ffffff;
}

.bs-contact-quick-content {
    min-width: 0;
    flex: 1 1 auto;
}

.bs-contact-quick-content small {
    display: block;
    margin-bottom: 2px;
    color: #84909b;
    font-size: 10px;
    font-weight: 700;
}

.bs-contact-quick-content strong {
    display: block;
    overflow: hidden;
    color: #062846;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bs-contact-quick-arrow {
    color: #b0bac3;
}


/* =========================================================
   Main Layout
   ========================================================= */

.bs-contact-main {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 34px;
}

.bs-contact-info-column,
.bs-contact-form-column {
    min-width: 0;
}

.bs-contact-card {
    border: 1px solid #e5ecf1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 11px 30px rgba(6, 40, 70, .05);
}

.bs-contact-store-card {
    padding: 22px;
}

.bs-contact-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bs-contact-card-heading-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eef9f6;
    color: #079b78;
    font-size: 19px;
}

.bs-contact-card-kicker {
    display: block;
    margin-bottom: 3px;
    color: #079b78;
    font-size: 10px;
    font-weight: 800;
}

.bs-contact-card-heading h2,
.bs-contact-form-heading h2 {
    margin: 0;
    color: #062846;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
}

.bs-contact-store-image {
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 15px;
    background: #f7f9fb;
}

.bs-contact-store-image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}


/* Contact Info */
.bs-contact-info-list {
    display: grid;
    gap: 4px;
}

.bs-contact-info-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f5;
}

.bs-contact-info-row:last-child {
    border-bottom: 0;
}

.bs-contact-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f6f9fb;
    color: #079b78;
}

.bs-contact-info-row small {
    display: block;
    margin-bottom: 3px;
    color: #8a96a1;
    font-size: 10px;
    font-weight: 700;
}

.bs-contact-info-row address,
.bs-contact-info-row a,
.bs-contact-open-text,
.bs-contact-comment-text {
    margin: 0;
    color: #344657;
    font-size: 13px;
    line-height: 1.75;
}

.bs-contact-info-row a {
    color: #062846;
    font-weight: 800;
}

.bs-contact-info-row a:hover,
.bs-contact-info-row a:focus {
    color: #079b78;
    text-decoration: none;
}


/* Social */
.bs-contact-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid #edf1f4;
}

.bs-contact-social > span {
    color: #657281;
    font-size: 12px;
    font-weight: 800;
}

.bs-contact-social-links {
    display: flex;
    gap: 7px;
}

.bs-contact-social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f4f7f9;
    color: #536474;
    transition: .18s ease;
}

.bs-contact-social-links a:hover,
.bs-contact-social-links a:focus {
    transform: translateY(-2px);
    background: #062846;
    color: #ffffff;
    text-decoration: none;
}


/* =========================================================
   Map
   ========================================================= */

.bs-contact-map-card {
    margin-top: 18px;
    overflow: hidden;
}

.bs-contact-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
}

.bs-contact-map-head h3 {
    margin: 0;
    color: #062846;
    font-size: 17px;
    font-weight: 800;
}

.bs-contact-map-head a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 9px;
    background: #eef9f6;
    color: #079b78;
    font-size: 11px;
    font-weight: 800;
}

.bs-contact-map-head a:hover,
.bs-contact-map-head a:focus {
    background: #079b78;
    color: #ffffff;
    text-decoration: none;
}

.bs-contact-map-frame {
    height: 310px;
    border-top: 1px solid #e8eef2;
    background: #eef2f4;
}

.bs-contact-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================================================
   Form
   ========================================================= */

.bs-contact-form {
    padding: 25px;
}

.bs-contact-form-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 24px;
    padding-bottom: 19px;
    border-bottom: 1px solid #edf1f4;
}

.bs-contact-form-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #062846;
    color: #ffffff;
    font-size: 18px;
}

.bs-contact-form-heading p {
    margin: 4px 0 0;
    color: #7a8793;
    font-size: 12px;
    line-height: 1.7;
}

.bs-contact-form-group {
    margin-bottom: 18px;
}

.bs-contact-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #425466;
    font-size: 12px;
    font-weight: 800;
}

.bs-contact-form-group label i {
    width: 17px;
    margin-left: 4px;
    color: #079b78;
    text-align: center;
}

.bs-contact-form-group.required label:after {
    content: " *";
    color: #e55353;
}

.bs-contact-form-group .form-control {
    min-height: 46px;
    border: 1px solid #dfe7ed;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: none;
    color: #263747;
    font-size: 13px;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.bs-contact-form-group textarea.form-control {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

.bs-contact-form-group .form-control:focus {
    border-color: #079b78;
    box-shadow: 0 0 0 3px rgba(7, 155, 120, .08);
}

.bs-contact-error {
    margin-top: 6px;
    font-size: 11px;
}

.bs-contact-captcha {
    margin-bottom: 18px;
}

.bs-contact-submit {
    width: 100%;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    background: #079b78;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(7, 155, 120, .18);
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bs-contact-submit:hover,
.bs-contact-submit:focus {
    transform: translateY(-1px);
    background: #067b61;
    color: #ffffff;
    outline: 0;
    box-shadow: 0 13px 26px rgba(7, 155, 120, .24);
}

.bs-contact-form-note {
    margin-top: 12px;
    color: #8a96a1;
    font-size: 10px;
    text-align: center;
}

.bs-contact-form-note i {
    margin-left: 4px;
    color: #079b78;
}


/* =========================================================
   Locations
   ========================================================= */

.bs-contact-locations {
    margin-top: 36px;
}

.bs-contact-section-heading {
    margin-bottom: 16px;
}

.bs-contact-section-heading h2 {
    margin: 0;
    color: #062846;
    font-size: 23px;
    font-weight: 800;
}

.bs-contact-accordion {
    margin-bottom: 0;
}

.bs-contact-location-panel {
    overflow: hidden;
    margin-bottom: 10px !important;
    border: 1px solid #e5ecf1 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.bs-contact-location-panel > .panel-heading {
    padding: 0;
    border: 0;
    background: #ffffff;
}

.bs-contact-location-panel .panel-title > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 18px;
    color: #062846;
    font-size: 13px;
    font-weight: 800;
}

.bs-contact-location-panel .panel-title > a:hover,
.bs-contact-location-panel .panel-title > a:focus {
    color: #079b78;
    text-decoration: none;
}

.bs-contact-location-panel .panel-title > a span i {
    margin-left: 6px;
    color: #079b78;
}

.bs-contact-accordion-arrow {
    color: #95a1ab;
    transition: transform .2s ease;
}

.bs-contact-location-panel .panel-title > a:not(.collapsed) .bs-contact-accordion-arrow {
    transform: rotate(180deg);
}

.bs-contact-location-panel .panel-body {
    padding: 18px;
    border-top: 1px solid #edf1f4 !important;
    background: #fbfcfd;
}

.bs-contact-location-image {
    overflow: hidden;
    border-radius: 12px;
    background: #f3f6f8;
}

.bs-contact-location-image img {
    width: 100%;
}

.bs-contact-location-block {
    color: #657281;
    font-size: 12px;
    line-height: 1.75;
}

.bs-contact-location-block strong {
    display: block;
    margin-bottom: 5px;
    color: #344657;
    font-size: 12px;
}

.bs-contact-location-block strong i {
    margin-left: 5px;
    color: #079b78;
}

.bs-contact-location-block address {
    margin-bottom: 10px;
}

.bs-contact-location-spacer {
    height: 13px;
}

.bs-contact-location-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #eef9f6;
    color: #079b78;
    font-size: 10px;
    font-weight: 800;
}

.bs-contact-location-map-btn:hover,
.bs-contact-location-map-btn:focus {
    background: #079b78;
    color: #ffffff;
    text-decoration: none;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .bs-contact-hero {
        min-height: 245px;
        padding: 34px;
    }

    .bs-contact-hero h1 {
        font-size: 30px;
    }

    .bs-contact-hero-visual {
        width: 170px;
        flex-basis: 170px;
        transform: scale(.86);
        transform-origin: center;
    }

    .bs-contact-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bs-contact-main {
        grid-template-columns: 1fr;
    }

    .bs-contact-form-column {
        order: 1;
    }

    .bs-contact-info-column {
        order: 2;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .bs-contact-page {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 32px;
    }

    .bs-contact-breadcrumb {
        margin-top: 10px;
        margin-bottom: 12px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .bs-contact-hero {
        min-height: 0;
        display: block;
        padding: 26px 22px;
        border-radius: 19px;
    }

    .bs-contact-hero h1 {
        font-size: 27px;
    }

    .bs-contact-hero p {
        font-size: 13px;
        line-height: 1.8;
    }

    .bs-contact-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bs-contact-hero-btn {
        padding: 0 12px;
    }

    .bs-contact-hero-visual {
        display: none;
    }

    .bs-contact-quick-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .bs-contact-quick-card {
        min-height: 73px;
        gap: 9px;
        padding: 11px;
        border-radius: 13px;
    }

    .bs-contact-quick-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 10px;
        font-size: 16px;
    }

    .bs-contact-quick-content strong {
        font-size: 11px;
    }

    .bs-contact-quick-arrow {
        display: none;
    }

    .bs-contact-main {
        gap: 17px;
    }

    .bs-contact-store-card,
    .bs-contact-form {
        padding: 18px;
        border-radius: 16px;
    }

    .bs-contact-card-heading h2,
    .bs-contact-form-heading h2 {
        font-size: 19px;
    }

    .bs-contact-map-head {
        display: block;
    }

    .bs-contact-map-head a {
        margin-top: 10px;
    }

    .bs-contact-map-frame {
        height: 260px;
    }

    .bs-contact-location-panel .panel-body .col-sm-3 {
        margin-bottom: 16px;
    }

    .bs-contact-location-panel .panel-body .col-sm-3:last-child {
        margin-bottom: 0;
    }

}


/* =========================================================
   Small Phones
   ========================================================= */

@media (max-width: 430px) {

    .bs-contact-hero-actions {
        grid-template-columns: 1fr;
    }

    .bs-contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .bs-contact-social {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   BADR STAR - CART / EASY ORDER STYLE
   Goal: simple, reassuring and mobile-first.
   ========================================================= */

.bs-cart-page {
    padding-bottom: 55px;
}

.bs-cart-breadcrumb {
    margin-top: 14px;
    margin-bottom: 16px;
    padding: 0;
    background: transparent;
}

.bs-cart-breadcrumb > li + li:before {
    color: #9ba6b2;
}

.bs-cart-breadcrumb a {
    color: #6d7c89;
    font-size: 12px;
}

.bs-cart-breadcrumb a:hover,
.bs-cart-breadcrumb a:focus {
    color: #079b78;
    text-decoration: none;
}


/* Alerts */
.bs-cart-alert {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 12px;
}

.bs-cart-alert .close {
    margin-right: auto;
}


/* =========================================================
   Progress
   ========================================================= */

.bs-cart-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 760px;
    margin: 5px auto 20px;
    padding: 0 12px;
}

.bs-cart-progress-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9aa5ae;
}

.bs-cart-progress-number {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce4e9;
    border-radius: 50%;
    background: #ffffff;
    color: #87939e;
    font-size: 12px;
    font-weight: 800;
}

.bs-cart-progress-item.active .bs-cart-progress-number {
    border-color: #079b78;
    background: #079b78;
    color: #ffffff;
    box-shadow: 0 8px 17px rgba(7, 155, 120, .17);
}

.bs-cart-progress-text small {
    display: block;
    margin-bottom: 1px;
    color: #9aa5ae;
    font-size: 9px;
}

.bs-cart-progress-text strong {
    color: #7b8793;
    font-size: 11px;
    font-weight: 800;
}

.bs-cart-progress-item.active .bs-cart-progress-text strong {
    color: #062846;
}

.bs-cart-progress-line {
    width: 65px;
    height: 1px;
    margin: 0 14px;
    background: #dce4e9;
}


/* =========================================================
   Hero
   ========================================================= */

.bs-cart-hero {
    position: relative;
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
    padding: 34px 40px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 15% 18%, rgba(7, 155, 120, .22), transparent 34%),
        linear-gradient(135deg, #062846 0%, #041d34 73%, #06395f 100%);
    box-shadow: 0 16px 40px rgba(6, 40, 70, .15);
}

.bs-cart-hero:before,
.bs-cart-hero:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bs-cart-hero:before {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -140px;
    background: rgba(255, 255, 255, .05);
}

.bs-cart-hero:after {
    width: 150px;
    height: 150px;
    right: 30%;
    top: -92px;
    background: rgba(240, 100, 35, .07);
}

.bs-cart-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.bs-cart-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #8ee4cf;
    font-size: 11px;
    font-weight: 800;
}

.bs-cart-kicker i {
    color: #f06423;
}

.bs-cart-hero h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 800;
}

.bs-cart-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.9;
}

.bs-cart-hero p strong {
    color: #ffffff;
}

.bs-cart-hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.bs-cart-hero-badges span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.bs-cart-hero-badges i {
    color: #8ee4cf;
}


/* Hero illustration */
.bs-cart-hero-icon {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 155px;
    flex: 0 0 190px;
}

.bs-cart-hero-icon-ring {
    position: absolute;
    width: 135px;
    height: 135px;
    right: 24px;
    top: 9px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 22px rgba(255, 255, 255, .03),
        0 0 0 44px rgba(255, 255, 255, .015);
}

.bs-cart-hero-icon-basket {
    position: absolute;
    right: 52px;
    top: 42px;
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font-size: 31px;
    backdrop-filter: blur(5px);
    transform: rotate(3deg);
}

.bs-cart-hero-check {
    position: absolute;
    right: 16px;
    top: 18px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #062846;
    border-radius: 50%;
    background: #079b78;
    color: #ffffff;
    font-size: 15px;
}


/* =========================================================
   Main Layout
   ========================================================= */

.bs-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(305px, .75fr);
    gap: 24px;
    align-items: start;
}

.bs-cart-products-column,
.bs-cart-summary-column {
    min-width: 0;
}


/* Section heading */
.bs-cart-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.bs-cart-section-kicker {
    display: block;
    margin-bottom: 3px;
    color: #079b78;
    font-size: 10px;
    font-weight: 800;
}

.bs-cart-section-head h2,
.bs-cart-summary-head h2 {
    margin: 0;
    color: #062846;
    font-size: 21px;
    font-weight: 800;
}

.bs-cart-items-count {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    padding: 0 7px;
    border-radius: 999px;
    background: #eef9f6;
    color: #079b78;
    font-size: 11px;
    vertical-align: 2px;
}

.bs-cart-weight {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #87939e;
    font-size: 10px;
}


/* =========================================================
   Product Cards
   ========================================================= */

.bs-cart-items {
    display: grid;
    gap: 12px;
}

.bs-cart-item {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 17px;
    padding: 15px;
    border: 1px solid #e5ecf1;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 7px 24px rgba(6, 40, 70, .04);
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.bs-cart-item-changed {
    border-color: rgba(7, 155, 120, .38);
    box-shadow: 0 10px 26px rgba(7, 155, 120, .08);
}

.bs-cart-item-warning {
    border-color: rgba(240, 100, 35, .32);
}

.bs-cart-item-image {
    width: 122px;
    height: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 13px;
    background: #f7f9fb;
}

.bs-cart-item-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bs-cart-no-image,
.bs-cart-voucher-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3bdc5;
    font-size: 26px;
}

.bs-cart-voucher-icon {
    background: #eef9f6;
    color: #079b78;
}

.bs-cart-item-info {
    min-width: 0;
}

.bs-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.bs-cart-item-title-wrap {
    min-width: 0;
}

.bs-cart-item-title-wrap h3 {
    margin: 2px 0 0;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 800;
}

.bs-cart-item-title-wrap h3 a {
    color: #062846;
}

.bs-cart-item-title-wrap h3 a:hover,
.bs-cart-item-title-wrap h3 a:focus {
    color: #079b78;
    text-decoration: none;
}

.bs-cart-stock-warning {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: #d9652d;
    font-size: 10px;
    font-weight: 700;
}

.bs-cart-remove {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    border: 0;
    border-radius: 8px;
    background: #fff3f1;
    color: #d45c51;
    font-size: 10px;
    font-weight: 800;
    transition: .18s ease;
}

.bs-cart-remove:hover,
.bs-cart-remove:focus {
    background: #d45c51;
    color: #ffffff;
    outline: 0;
}

.bs-cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.bs-cart-item-meta span,
.bs-cart-voucher-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 8px;
    background: #f5f8fa;
    color: #647482;
    font-size: 9px;
}

.bs-cart-item-meta i {
    color: #079b78;
}

.bs-cart-item-bottom {
    display: grid;
    grid-template-columns: minmax(100px, .8fr) minmax(150px, 1fr) minmax(110px, .8fr);
    gap: 14px;
    align-items: end;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #edf1f4;
}

.bs-cart-price-label {
    display: block;
    margin-bottom: 5px;
    color: #8a96a1;
    font-size: 9px;
    font-weight: 700;
}

.bs-cart-unit-price {
    color: #344657;
    font-size: 13px;
    font-weight: 800;
}

.bs-cart-line-total {
    text-align: left;
}

.bs-cart-line-total strong {
    color: #079b78;
    font-size: 15px;
    font-weight: 800;
}


/* Quantity */
.bs-cart-qty-control {
    width: 132px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    overflow: hidden;
    border: 1px solid #dfe7ed;
    border-radius: 10px;
    background: #ffffff;
}

.bs-cart-qty-btn {
    width: 34px;
    height: 36px;
    border: 0;
    background: #f5f8fa;
    color: #536474;
    font-size: 10px;
    transition: .18s ease;
}

.bs-cart-qty-btn:hover,
.bs-cart-qty-btn:focus {
    background: #079b78;
    color: #ffffff;
    outline: 0;
}

.bs-cart-qty-input {
    width: 100%;
    height: 36px;
    border: 0;
    border-right: 1px solid #e5ebef;
    border-left: 1px solid #e5ebef;
    background: #ffffff;
    color: #062846;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    outline: 0;
}

.bs-cart-update-item {
    display: none;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 7px 10px;
    border: 0;
    border-radius: 8px;
    background: #eef9f6;
    color: #079b78;
    font-size: 10px;
    font-weight: 800;
}

.bs-cart-update-item.is-visible {
    display: inline-flex;
}

.bs-cart-update-item:hover,
.bs-cart-update-item:focus {
    background: #079b78;
    color: #ffffff;
    outline: 0;
}


/* =========================================================
   Optional Modules
   ========================================================= */

.bs-cart-options {
    margin-top: 15px;
    overflow: hidden;
    border: 1px solid #e5ecf1;
    border-radius: 13px;
    background: #ffffff;
}

.bs-cart-options-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 15px;
    border: 0;
    background: #ffffff;
    color: #536474;
    font-size: 11px;
    font-weight: 800;
    text-align: right;
}

.bs-cart-options-toggle span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bs-cart-options-toggle span i {
    color: #079b78;
}

.bs-cart-options-arrow {
    transition: transform .18s ease;
}

.bs-cart-options-toggle:not(.collapsed) .bs-cart-options-arrow {
    transform: rotate(180deg);
}

.bs-cart-options-content {
    padding: 14px;
    border-top: 1px solid #edf1f4;
    background: #fbfcfd;
}

.bs-cart-options-content .panel {
    margin-bottom: 8px;
    box-shadow: none;
}

.bs-cart-options-content .panel:last-child {
    margin-bottom: 0;
}


/* Continue shopping */
.bs-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #647482;
    font-size: 11px;
    font-weight: 800;
}

.bs-cart-continue:hover,
.bs-cart-continue:focus {
    color: #079b78;
    text-decoration: none;
}


/* =========================================================
   Summary
   ========================================================= */

.bs-cart-summary-card {
    position: sticky;
    top: 18px;
    overflow: hidden;
    border: 1px solid #dfe8ed;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(6, 40, 70, .08);
}

.bs-cart-summary-head {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 20px 20px 17px;
    border-bottom: 1px solid #edf1f4;
}

.bs-cart-summary-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eef9f6;
    color: #079b78;
    font-size: 17px;
}

.bs-cart-summary-lines {
    padding: 8px 20px;
}

.bs-cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed #e4eaee;
    color: #657281;
    font-size: 11px;
}

.bs-cart-summary-line:last-child {
    border-bottom: 0;
}

.bs-cart-summary-line strong {
    color: #344657;
    font-size: 12px;
    font-weight: 800;
}

.bs-cart-summary-grand {
    margin-top: 2px;
    padding-top: 14px;
    color: #062846;
    font-size: 13px;
    font-weight: 800;
}

.bs-cart-summary-grand strong {
    color: #079b78;
    font-size: 20px;
}


/* Shipping / payment info */
.bs-cart-simple-info {
    margin: 0 20px 18px;
    padding: 12px;
    border-radius: 13px;
    background: #f7fafb;
}

.bs-cart-simple-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
}

.bs-cart-simple-icon {
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #ffffff;
    color: #079b78;
    box-shadow: 0 3px 10px rgba(6, 40, 70, .05);
}

.bs-cart-simple-info-row strong {
    display: block;
    margin-bottom: 1px;
    color: #344657;
    font-size: 10px;
    font-weight: 800;
}

.bs-cart-simple-info-row small {
    display: block;
    color: #84909b;
    font-size: 9px;
}


/* Checkout button */
.bs-cart-checkout {
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 0 20px;
    padding: 10px 13px 10px 10px;
    border-radius: 13px;
    background: #079b78;
    color: #ffffff;
    box-shadow: 0 11px 24px rgba(7, 155, 120, .20);
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bs-cart-checkout:hover,
.bs-cart-checkout:focus {
    transform: translateY(-2px);
    background: #067b61;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(7, 155, 120, .26);
}

.bs-cart-checkout-text strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 800;
}

.bs-cart-checkout-text small {
    display: block;
    color: rgba(255, 255, 255, .75);
    font-size: 9px;
}

.bs-cart-checkout-arrow {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
}


/* Safe note */
.bs-cart-safe-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 13px 20px 0;
    color: #8a96a1;
    font-size: 9px;
    line-height: 1.6;
}

.bs-cart-safe-note i {
    margin-top: 2px;
    color: #079b78;
}


/* Help */
.bs-cart-help {
    margin-top: 17px;
    padding: 15px 20px;
    border-top: 1px solid #edf1f4;
    background: #fbfcfd;
}

.bs-cart-help > span {
    display: block;
    margin-bottom: 7px;
    color: #667788;
    font-size: 9px;
    font-weight: 700;
}

.bs-cart-help > span i {
    margin-left: 4px;
    color: #079b78;
}

.bs-cart-help a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #079b78;
    font-size: 10px;
    font-weight: 800;
}

.bs-cart-help a:hover,
.bs-cart-help a:focus {
    color: #067b61;
    text-decoration: none;
}


/* =========================================================
   Mobile Sticky Checkout
   ========================================================= */

.bs-cart-mobile-bar {
    display: none;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .bs-cart-hero {
        min-height: 205px;
        padding: 30px;
    }

    .bs-cart-hero h1 {
        font-size: 28px;
    }

    .bs-cart-hero-icon {
        width: 150px;
        flex-basis: 150px;
        transform: scale(.84);
        transform-origin: center;
    }

    .bs-cart-layout {
        grid-template-columns: 1fr;
    }

    .bs-cart-summary-card {
        position: static;
    }

    .bs-cart-item-bottom {
        grid-template-columns: 1fr 1fr 1fr;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    body {
        padding-bottom: 78px;
    }

    .bs-cart-page {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 30px;
    }

    .bs-cart-breadcrumb {
        margin-top: 9px;
        margin-bottom: 11px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .bs-cart-progress {
        justify-content: space-between;
        margin-bottom: 14px;
        padding: 0;
    }

    .bs-cart-progress-text {
        display: none;
    }

    .bs-cart-progress-line {
        flex: 1 1 auto;
        width: auto;
        margin: 0 7px;
    }

    .bs-cart-progress-number {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .bs-cart-hero {
        min-height: 0;
        display: block;
        margin-bottom: 22px;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .bs-cart-hero h1 {
        font-size: 25px;
    }

    .bs-cart-hero p {
        font-size: 12px;
        line-height: 1.8;
    }

    .bs-cart-hero-badges {
        gap: 6px;
    }

    .bs-cart-hero-badges span {
        min-height: 31px;
        padding: 0 9px;
        font-size: 9px;
    }

    .bs-cart-hero-icon {
        display: none;
    }

    .bs-cart-section-head {
        align-items: center;
    }

    .bs-cart-section-head h2 {
        font-size: 18px;
    }

    .bs-cart-item {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 11px;
        padding: 11px;
        border-radius: 14px;
    }

    .bs-cart-item-image {
        width: 88px;
        height: 88px;
        border-radius: 11px;
    }

    .bs-cart-item-title-wrap h3 {
        font-size: 12px;
        line-height: 1.5;
    }

    .bs-cart-remove {
        padding: 6px 7px;
    }

    .bs-cart-remove span {
        display: none;
    }

    .bs-cart-item-meta {
        grid-column: 1 / -1;
    }

    .bs-cart-item-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
    }

    .bs-cart-line-total {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 7px;
        border-top: 1px dashed #e3e9ed;
        text-align: right;
    }

    .bs-cart-line-total .bs-cart-price-label {
        margin: 0;
    }

    .bs-cart-qty-control {
        width: 118px;
        grid-template-columns: 31px 1fr 31px;
    }

    .bs-cart-qty-btn {
        width: 31px;
    }

    .bs-cart-summary-column {
        margin-top: 4px;
    }

    .bs-cart-summary-card {
        border-radius: 16px;
    }

    .bs-cart-summary-head {
        padding: 17px;
    }

    .bs-cart-summary-lines {
        padding-right: 17px;
        padding-left: 17px;
    }

    .bs-cart-simple-info {
        margin-right: 17px;
        margin-left: 17px;
    }

    .bs-cart-checkout {
        margin-right: 17px;
        margin-left: 17px;
    }

    .bs-cart-safe-note {
        margin-right: 17px;
        margin-left: 17px;
    }

    .bs-cart-help {
        padding-right: 17px;
        padding-left: 17px;
    }

    .bs-cart-mobile-bar {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 13px;
        min-height: 68px;
        padding: 9px 12px;
        border-top: 1px solid #dfe7ed;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -8px 24px rgba(6, 40, 70, .10);
        backdrop-filter: blur(8px);
    }

    .bs-cart-mobile-total {
        min-width: 0;
    }

    .bs-cart-mobile-total small {
        display: block;
        margin-bottom: 1px;
        color: #85919c;
        font-size: 9px;
    }

    .bs-cart-mobile-total strong {
        display: block;
        color: #062846;
        font-size: 14px;
        font-weight: 800;
        white-space: nowrap;
    }

    .bs-cart-mobile-checkout {
        min-height: 47px;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 14px;
        border-radius: 11px;
        background: #079b78;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        box-shadow: 0 8px 18px rgba(7, 155, 120, .18);
    }

    .bs-cart-mobile-checkout:hover,
    .bs-cart-mobile-checkout:focus {
        background: #067b61;
        color: #ffffff;
        text-decoration: none;
    }

}


/* =========================================================
   Small Phones
   ========================================================= */

@media (max-width: 430px) {

    .bs-cart-hero-badges {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bs-cart-hero-badges span {
        justify-content: center;
    }

    .bs-cart-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .bs-cart-item-image {
        width: 76px;
        height: 76px;
    }

    .bs-cart-qty-control {
        width: 108px;
    }

}


/* =========================================================
   BADR STAR - MINI CART
   Fully namespaced to avoid collisions with checkout/cart.
   ========================================================= */

.bs-mini-cart {
    position: relative;
}

.bs-mini-cart-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    box-shadow: none;
    outline: 0;
    transition:
        background .18s ease,
        border-color .18s ease;
}

.bs-mini-cart-button:hover,
.bs-mini-cart-button:focus,
.bs-mini-cart.open .bs-mini-cart-button {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    outline: 0;
}

.bs-mini-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bs-mini-cart-badge {
    position: absolute;
    top: -11px;
    right: -11px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #062846;
    border-radius: 999px;
    background: #08b98b;
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
}

.bs-mini-cart-label {
    white-space: nowrap;
}

.bs-mini-cart-original-total {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}


/* =========================================================
   Dropdown
   ========================================================= */

.bs-mini-cart-menu {
    right: 0 !important;
    left: auto !important;
    width: 390px;
    max-width: calc(100vw - 24px);
    margin-top: 10px !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #dfe7ed;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(6, 40, 70, .18);
    direction: rtl;
}

.bs-mini-cart-menu:before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    border-top: 1px solid #dfe7ed;
    border-right: 1px solid #dfe7ed;
    background: #ffffff;
    transform: rotate(-45deg);
}

.bs-mini-cart-menu-inner {
    display: block;
    padding: 0;
    background: #ffffff;
}


/* =========================================================
   Head
   ========================================================= */

.bs-mini-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 17px 13px;
    border-bottom: 1px solid #edf1f4;
}

.bs-mini-cart-kicker {
    display: block;
    margin-bottom: 2px;
    color: #079b78;
    font-size: 9px;
    font-weight: 800;
}

.bs-mini-cart-head strong {
    display: block;
    color: #062846;
    font-size: 15px;
    font-weight: 800;
}

.bs-mini-cart-head-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 0 9px;
    border-radius: 999px;
    background: #eef9f6;
    color: #079b78;
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   Products
   ========================================================= */

.bs-mini-cart-products {
    max-height: 310px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.bs-mini-cart-product {
    position: relative;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 30px;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #eef2f5;
}

.bs-mini-cart-product:last-child {
    border-bottom: 0;
}

.bs-mini-cart-product-image {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e8edf1;
    border-radius: 11px;
    background: #f8fafb;
}

.bs-mini-cart-product-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-mini-cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bs-mini-cart-no-image,
.bs-mini-cart-voucher-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aab5be;
    font-size: 20px;
}

.bs-mini-cart-voucher-icon {
    background: #eef9f6;
    color: #079b78;
}

.bs-mini-cart-product-info {
    min-width: 0;
}

.bs-mini-cart-product-name {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 5px;
    color: #062846;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 800;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

a.bs-mini-cart-product-name:hover,
a.bs-mini-cart-product-name:focus {
    color: #079b78;
    text-decoration: none;
}

.bs-mini-cart-product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 5px;
}

.bs-mini-cart-product-options small,
.bs-mini-cart-product-recurring {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 6px;
    background: #f4f7f9;
    color: #73808c;
    font-size: 8px;
}

.bs-mini-cart-product-options strong {
    margin-right: 2px;
    color: #536474;
}

.bs-mini-cart-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bs-mini-cart-product-qty {
    color: #7c8994;
    font-size: 9px;
}

.bs-mini-cart-product-qty strong {
    color: #425466;
}

.bs-mini-cart-product-total {
    color: #079b78;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.bs-mini-cart-remove {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    margin-top: 2px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #fff3f1;
    color: #d65e54;
    font-size: 11px;
    outline: 0;
    transition:
        background .18s ease,
        color .18s ease;
}

.bs-mini-cart-remove:hover,
.bs-mini-cart-remove:focus {
    background: #d65e54;
    color: #ffffff;
    outline: 0;
}


/* =========================================================
   Totals
   ========================================================= */

.bs-mini-cart-totals {
    padding: 9px 16px;
    border-top: 1px solid #e8eef2;
    background: #fbfcfd;
}

.bs-mini-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 6px 0;
    color: #667788;
    font-size: 10px;
}

.bs-mini-cart-total-row strong {
    color: #425466;
    font-size: 11px;
    font-weight: 800;
}

.bs-mini-cart-grand-total {
    margin-top: 2px;
    padding-top: 8px;
    border-top: 1px dashed #dde5ea;
    color: #062846;
    font-size: 12px;
    font-weight: 800;
}

.bs-mini-cart-grand-total strong {
    color: #079b78;
    font-size: 17px;
}


/* =========================================================
   Note
   ========================================================= */

.bs-mini-cart-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 8px 14px;
    border-top: 1px solid #eef2f5;
    background: #ffffff;
    color: #7b8793;
    font-size: 8px;
    font-weight: 700;
}

.bs-mini-cart-note span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bs-mini-cart-note i {
    color: #079b78;
}


/* =========================================================
   Actions
   ========================================================= */

.bs-mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 12px 14px 14px;
    border-top: 1px solid #edf1f4;
    background: #ffffff;
}

.bs-mini-cart-view,
.bs-mini-cart-checkout {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.bs-mini-cart-view {
    border: 1px solid #079b78;
    background: #ffffff;
    color: #079b78;
}

.bs-mini-cart-view:hover,
.bs-mini-cart-view:focus {
    transform: translateY(-1px);
    background: #eef9f6;
    color: #067b61;
    text-decoration: none;
}

.bs-mini-cart-checkout {
    border: 1px solid #079b78;
    background: #079b78;
    color: #ffffff;
    box-shadow: 0 8px 17px rgba(7, 155, 120, .17);
}

.bs-mini-cart-checkout:hover,
.bs-mini-cart-checkout:focus {
    transform: translateY(-1px);
    border-color: #067b61;
    background: #067b61;
    color: #ffffff;
    text-decoration: none;
}


/* =========================================================
   Empty
   ========================================================= */

.bs-mini-cart-empty {
    padding: 35px 18px;
    text-align: center;
}

.bs-mini-cart-empty-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #eef9f6;
    color: #079b78;
    font-size: 22px;
}

.bs-mini-cart-empty strong {
    display: block;
    margin-bottom: 5px;
    color: #062846;
    font-size: 14px;
    font-weight: 800;
}

.bs-mini-cart-empty p {
    margin: 0;
    color: #87939e;
    font-size: 10px;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .bs-mini-cart-menu {
        max-height: calc(100vh - 85px);
        margin: 0 !important;
        overflow-y: auto;
        border-radius: 17px;
        box-shadow: 0 18px 45px rgba(6, 40, 70, .22);
    }

    .bs-mini-cart-menu:before {
        display: none;
    }

    .bs-mini-cart-products {
        max-height: min(285px, 38vh);
    }

    .bs-mini-cart-head {
        padding: 14px 14px 11px;
    }

    .bs-mini-cart-product {
        grid-template-columns: 60px minmax(0, 1fr) 28px;
        gap: 9px;
        padding: 10px 12px;
    }

    .bs-mini-cart-product-image {
        width: 60px;
        height: 60px;
    }

    .bs-mini-cart-product-name {
        margin-bottom: 4px;
        font-size: 11px;
    }

    .bs-mini-cart-totals {
        padding-right: 13px;
        padding-left: 13px;
    }

    .bs-mini-cart-actions {
        padding: 10px 12px 12px;
    }

    .bs-mini-cart-view,
    .bs-mini-cart-checkout {
        min-height: 44px;
        font-size: 10px;
    }

}


/* Small Phones */
@media (max-width: 430px) {

    .bs-mini-cart-button {
        gap: 7px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .bs-mini-cart-label {
        font-size: 11px;
    }

    .bs-mini-cart-actions {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .bs-mini-cart-note {
        gap: 9px;
        font-size: 7px;
    }

}


/* =========================================================
   Badr Star - Modern Breadcrumb
   ========================================================= */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 18px 0 28px;
    padding: 0;
    list-style: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.breadcrumb > li {
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.breadcrumb > li:before,
.breadcrumb > li:after,
.breadcrumb > li > a:before,
.breadcrumb > li > a:after,
.breadcrumb > li > span:before,
.breadcrumb > li > span:after {
    display: none !important;
    content: none !important;
}

.breadcrumb > li + li:before {
    display: none !important;
    content: none !important;
}

.breadcrumb > li > a,
.breadcrumb > li > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d9e7ee;
    color: #0b3152;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(8, 38, 64, 0.08);
    transition: all 0.25s ease;
}

.breadcrumb > li > a:hover {
    background: linear-gradient(135deg, #14b88f, #0f8b72);
    border-color: #14b88f;
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

.breadcrumb > li:last-child > a,
.breadcrumb > li:last-child > span {
    background: linear-gradient(135deg, #eaf7f3, #f7fcfa);
    border-color: #bfe7da;
    color: #0b3152;
    font-weight: 800;
}

.breadcrumb i {
    font-size: 14px;
}

.breadcrumb > li:first-child > a {
    padding-inline: 14px;
}

.breadcrumb > li:first-child > a i {
    font-size: 15px;
    color: #14b88f;
}

.breadcrumb > li:last-child > a i,
.breadcrumb > li:last-child > span i {
    color: #0b3152;
}

/* لو فيه صفحات لسه حاطة البريدمب داخل صندوق قديم */
#information-information .breadcrumb,
#information-contact .breadcrumb,
#product-category .breadcrumb,
#product-product .breadcrumb,
#product-search .breadcrumb,
#checkout-cart .breadcrumb,
#common-success .breadcrumb {
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* موبايل */
@media (max-width: 767px) {
    .breadcrumb {
        gap: 8px;
        margin: 14px 0 20px;
    }

    .breadcrumb > li > a,
    .breadcrumb > li > span {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 12px;
    }
}

/* =========================================================
   Badr Star - Premium Information Breadcrumb
   Scoped ONLY to information pages
   ========================================================= */

#information-information .breadcrumb {
    direction: rtl;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    margin: 16px 0 24px;
    padding: 0;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    list-style: none;
}


/* إزالة شكل OpenCart القديم بالكامل */
#information-information .breadcrumb > li {
    position: relative;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#information-information .breadcrumb > li:before,
#information-information .breadcrumb > li:after,
#information-information .breadcrumb > li > a:before,
#information-information .breadcrumb > li > a:after {
    display: none !important;
    content: none !important;
}


/* =========================================================
   Home Button
   ========================================================= */

#information-information .breadcrumb > li:first-child > a {
    position: relative;

    width: 44px;
    height: 44px;
    min-width: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 !important;

    border: 1px solid rgba(7, 155, 120, 0.18);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f1faf7 100%
        );

    color: #079b78 !important;

    box-shadow:
        0 8px 24px rgba(6, 40, 70, 0.08),
        inset 0 0 0 1px rgba(255,255,255,.7);

    text-decoration: none !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}


/* لمسة صغيرة فوق زر الرئيسية */
#information-information .breadcrumb > li:first-child > a::after {
    content: "" !important;
    display: block !important;

    position: absolute;
    top: -3px;
    right: -3px;

    width: 10px;
    height: 10px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: #f06423;
}


/* أيقونة الرئيسية */
#information-information .breadcrumb > li:first-child > a i {
    margin: 0 !important;

    color: #079b78 !important;
    font-size: 15px;

    transition: color .22s ease;
}


/* Hover */
#information-information .breadcrumb > li:first-child > a:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            145deg,
            #079b78 0%,
            #067b61 100%
        );

    box-shadow:
        0 12px 26px rgba(7, 155, 120, 0.20);
}

#information-information .breadcrumb > li:first-child > a:hover i {
    color: #ffffff !important;
}


/* =========================================================
   Separator
   ========================================================= */

#information-information .breadcrumb > li + li {
    display: flex;
    align-items: center;
    gap: 9px;
}

#information-information .breadcrumb > li + li::before {
    content: "\f104" !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: #9eabb4;

    font-family: FontAwesome;
    font-size: 11px;
    font-weight: normal;

    background: transparent !important;
}


/* =========================================================
   Current Page
   ========================================================= */

#information-information .breadcrumb > li:not(:first-child) > a {
    min-height: 44px;

    display: inline-flex;
    align-items: center;

    padding: 0 18px !important;

    border: 1px solid #dde7ec;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafb 100%
        );

    color: #173b58 !important;

    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;

    line-height: 1;

    box-shadow:
        0 8px 24px rgba(6, 40, 70, 0.055);

    text-decoration: none !important;

    transition:
        border-color .22s ease,
        color .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}


/* الصفحة الحالية */
#information-information .breadcrumb > li:last-child > a {
    position: relative;

    padding-right: 22px !important;

    border-color: rgba(7,155,120,.23);

    background:
        linear-gradient(
            135deg,
            #f4fbf9 0%,
            #ffffff 100%
        );

    color: #062846 !important;
}


/* العلامة الخضراء بجوار اسم الصفحة */
#information-information .breadcrumb > li:last-child > a::before {
    content: "" !important;

    display: block !important;

    width: 6px;
    height: 6px;

    margin-left: 8px;

    border-radius: 50%;

    background: #079b78;

    box-shadow:
        0 0 0 4px rgba(7,155,120,.10);
}


/* Hover */
#information-information .breadcrumb > li:not(:first-child) > a:hover {
    color: #079b78 !important;

    border-color: rgba(7,155,120,.32);

    transform: translateY(-1px);

    box-shadow:
        0 11px 26px rgba(6,40,70,.08);
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    #information-information .breadcrumb {
        gap: 7px;

        margin: 12px 0 18px;
    }


    #information-information .breadcrumb > li:first-child > a {
        width: 40px;
        height: 40px;
        min-width: 40px;

        border-radius: 12px;
    }


    #information-information .breadcrumb > li:not(:first-child) > a {
        min-height: 40px;

        padding: 0 13px !important;

        border-radius: 12px;

        font-size: 11px;
    }


    #information-information .breadcrumb > li:last-child > a {
        padding-right: 15px !important;
    }


    #information-information .breadcrumb > li + li {
        gap: 7px;
    }


    #information-information .breadcrumb > li + li::before {
        width: 14px;

        font-size: 9px;
    }

}