/* ============================================================
   NAWET — Enhanced Frontend Theme
   Color palette extracted from app screenshots & logo:
     Primary:   #00B4A6  (teal/cyan)
     Accent:    #E91E8C  (hot pink/magenta)
     Dark:      #1A1A2E  (deep navy)
     Light:     #F7F9FC  (off-white bg)
     Text:      #2D2D3A  (near-black)
     Muted:     #8C8FA8  (grey)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --teal:        #00B4A6;
    --teal-dark:   #008F83;
    --teal-light:  #E0F7F5;
    --pink:        #E91E8C;
    --pink-dark:   #C0167A;
    --pink-light:  #FCE4F3;
    --dark:        #1A1A2E;
    --text:        #2D2D3A;
    --muted:       #8C8FA8;
    --border:      #E8EAF0;
    --bg:          #F7F9FC;
    --white:       #FFFFFF;
    --blue:        #35abe2;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.13);
    --radius:      12px;
    --radius-sm:   8px;
    --radius-lg:   20px;
}

/* ── Base Reset & Typography ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

a { transition: all 0.25s ease; }
a:hover { text-decoration: none; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */

/* Top bar */
.header_top {
    background: var(--dark) !important;
    padding: 6px 0;
}

.contactinfo ul li a {
    color: rgba(255,255,255,0.75) !important;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}
.contactinfo ul li a:hover { color: var(--teal) !important; }

.social-icons ul li a { color: rgba(255,255,255,0.7) !important; }
.social-icons ul li a i:hover { background: var(--teal) !important; color: #fff !important; }

/* Middle — Logo area */
.header-middle {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border);
}
.header-middle .container .row {
    border-bottom: none !important;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Bottom nav */
.header-bottom {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: var(--shadow-sm);
}

.mainmenu ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text) !important;
    padding: 18px 4px !important;
    padding-bottom: 18px !important;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.mainmenu ul li a:hover,
.mainmenu ul li a.active {
    color: var(--teal) !important;
    background: none !important;
    border-bottom-color: var(--teal);
}

/* Shop menu (login/cart links) */
.shop-menu ul li a {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text) !important;
    padding: 6px 14px !important;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}
.shop-menu ul li a:hover {
    color: var(--white) !important;
    background: var(--teal) !important;
    border-color: var(--teal) !important;
}
.shop-menu ul li:last-child a {
    background: var(--teal);
    color: var(--white) !important;
    border-color: var(--teal) !important;
}
.shop-menu ul li:last-child a:hover {
    background: var(--teal-dark) !important;
}

/* Cart badge */
.cart-basket {
    background: var(--pink) !important;
    color: #fff;
    font-size: 10px !important;
    width: 18px !important;
    height: 18px !important;
    top: -7px !important;
    right: -10px !important;
}

/* Search input */
.search_box input {
    background: var(--bg) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 24px !important;
    color: var(--text) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px !important;
    padding: 8px 18px !important;
    height: 38px !important;
    width: 260px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search_box input:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 3px rgba(0,180,166,0.15) !important;
    outline: none;
}

/* Dropdown sub-menu */
ul.sub-menu {
    background: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border);
    top: 36px;
}
.navbar-nav li ul.sub-menu li a { color: var(--text) !important; }
.navbar-nav li ul.sub-menu li a:hover { color: var(--teal) !important; }

/* ══════════════════════════════════════════════════════════
   HERO / CAROUSEL
   ══════════════════════════════════════════════════════════ */

.carousel-indicators li { background: rgba(255,255,255,0.5); border-radius: 4px; width: 24px; height: 4px; border: none; }
.carousel-indicators li.active { background: var(--teal); width: 36px; }

.item h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 42px;
}
.item h1 span { color: var(--pink) !important; }
.item h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--white);
}
.item p { color: rgba(255,255,255,0.85); }

.get, .item button {
    background: var(--pink) !important;
    color: var(--white) !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    padding: 10px 28px !important;
    font-size: 15px !important;
    box-shadow: 0 4px 15px rgba(233,30,140,0.35);
    transition: all 0.2s;
}
.get:hover, .item button:hover {
    background: var(--pink-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,30,140,0.45);
}

/* ══════════════════════════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════════════════════════ */

h2.title,
.left-sidebar h2,
.brands_products h2 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--dark) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: -0.3px;
    position: relative;
}

h2.title::after,
.left-sidebar h2::after { border-color: var(--border) !important; }

/* Teal accent dot before section titles */
h2.title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 3px;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════════════════════ */

.product-image-wrapper {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 24px !important;
}
.product-image-wrapper:hover {
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-4px);
}

.productinfo h2 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--teal) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.productinfo p {
    font-size: 13px !important;
    color: var(--muted) !important;
    font-family: 'DM Sans', sans-serif;
}

/* Add to cart button */
.add-to-cart {
    background: var(--teal) !important;
    color: var(--white) !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 8px 20px !important;
    border: none !important;
    transition: all 0.2s;
    box-shadow: 0 3px 12px rgba(0,180,166,0.25);
}
.add-to-cart:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(0,180,166,0.35);
}

/* Product overlay */
.product-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(0,180,166,0.92) 100%) !important;
}
.product-overlay h2 { color: var(--white) !important; }
.product-overlay p { color: rgba(255,255,255,0.9) !important; }
.product-overlay .add-to-cart {
    background: var(--white) !important;
    color: var(--teal) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.product-overlay .add-to-cart:hover {
    background: var(--pink) !important;
    color: var(--white) !important;
}

/* Price elements */
.price, .productinfo h2, #total-result, #delivery-price,
#total-result-dashboard, #delivery-price-dashboard {
    color: var(--teal) !important;
}

.produit-details-desc {
    color: var(--teal) !important;
    font-family: 'Outfit', sans-serif !important;
}

/* In/out of stock */
.in-stock { color: #10B981 !important; font-weight: 600 !important; }
.out-stock { color: var(--pink) !important; font-weight: 600 !important; }

/* New/sale badges */
.new, .sale {
    border-radius: 0 0 0 var(--radius-sm);
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════ */

.category-products,
.brands-name {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--white);
    overflow: hidden;
}

.category-products .panel-default .panel-heading .panel-title a {
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}
.panel-body ul li a {
    color: var(--muted) !important;
    font-size: 13px !important;
    transition: color 0.2s;
}
.panel-body ul li a:hover { color: var(--teal) !important; }

.brands-name .nav-stacked li a {
    color: var(--text) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    padding: 8px 20px !important;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.brands-name .nav-stacked li a:hover {
    color: var(--teal) !important;
    background: var(--teal-light) !important;
    border-left-color: var(--teal) !important;
}

/* Price range */
.well {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
}

/* Tooltip */
.tooltip-inner { background-color: var(--teal) !important; }
.tooltip.top .tooltip-arrow { border-top-color: var(--teal) !important; }

/* ══════════════════════════════════════════════════════════
   BUTTONS — Global
   ══════════════════════════════════════════════════════════ */

.btn.btn-primary,
.btn-auth.btn-primary,
#reviews button,
.searchform button,
.update, .check_out,
.shopper-info .btn-primary,
.login-form form button,
.signup-form form button,
.blog-post-area .single-blog-post .btn-primary,
.response-area .media .btn-primary,
.commnets .btn-primary {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    transition: all 0.2s;
}
.btn.btn-primary:hover,
.update:hover, .check_out:hover {
    background: var(--teal-dark) !important;
    border-color: var(--teal-dark) !important;
    transform: translateY(-1px);
}

/* Default orange→teal override for .url */
.url {
    background: var(--teal) !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
}
.url:hover { background: var(--teal-dark) !important; }

/* Scroll to top */
a#scrollUp {
    background: var(--teal) !important;
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════ */

.pagination li a {
    background: var(--white) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-right: 4px;
    transition: all 0.2s;
}
.pagination li a:hover,
.pagination .active a,
.pagination .active span {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    color: var(--white) !important;
}

/* ══════════════════════════════════════════════════════════
   CATEGORY TABS
   ══════════════════════════════════════════════════════════ */

.category-tab ul {
    background: var(--white) !important;
    border-bottom: 2px solid var(--border) !important;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}
.category-tab ul li a {
    color: var(--muted) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 12px 20px !important;
    text-transform: none !important;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.category-tab ul li a:hover { background: var(--teal-light) !important; color: var(--teal) !important; }
.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
    background: transparent !important;
    color: var(--teal) !important;
    border-bottom: 2px solid var(--teal) !important;
}

/* ══════════════════════════════════════════════════════════
   CART
   ══════════════════════════════════════════════════════════ */

#cart_items .cart_info {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

#cart_items .cart_info .cart_menu {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%) !important;
    font-family: 'Outfit', sans-serif !important;
}

#cart_items .cart_info .cart_total_price {
    color: var(--teal) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
}

#cart_items .cart_info .cart_description h4 a {
    color: var(--dark) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
}

.cart_quantity_button a,
.cart_quantity_button button {
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 6px !important;
    color: var(--text) !important;
}
.cart_quantity_button a:hover,
.cart_quantity_button button:hover {
    background: var(--teal-light) !important;
    color: var(--teal) !important;
}

.cart_delete a, .cart_delete button {
    background: var(--pink-light) !important;
    color: var(--pink) !important;
    border-radius: var(--radius-sm) !important;
}
.cart_delete a:hover, .cart_delete button:hover {
    background: var(--pink) !important;
    color: var(--white) !important;
}

.total_area ul li {
    background: var(--bg) !important;
    border-radius: var(--radius-sm) !important;
    border-left: 3px solid var(--teal);
}

.breadcrumbs .breadcrumb li a,
.breadcrumbs .breadcrumb li a::after {
    background: var(--teal) !important;
    border-color: var(--teal) transparent transparent var(--teal) !important;
}

/* ══════════════════════════════════════════════════════════
   FORMS & INPUTS
   ══════════════════════════════════════════════════════════ */

.login-form form input,
.signup-form form input,
.shopper-info > form > input,
.form-two > form > input,
.form-one > form > input,
#contact-page .form-control {
    background: var(--bg) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text) !important;
    font-family: 'DM Sans', sans-serif !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.login-form form input:focus,
.signup-form form input:focus,
#contact-page .form-control:focus,
#contact-page .form-control:hover {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 3px rgba(0,180,166,0.15) !important;
    outline: none;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAILS
   ══════════════════════════════════════════════════════════ */

.product-information {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
}

.product-information h2 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--dark) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

.product-information span span {
    color: var(--teal) !important;
}

.view-product h3 {
    background: var(--teal) !important;
    border-radius: 0 0 0 var(--radius-sm) !important;
}

.cart {
    background: var(--pink) !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(233,30,140,0.3);
    transition: all 0.2s;
}
.cart:hover {
    background: var(--pink-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,30,140,0.4);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */

#footer {
    background: var(--dark) !important;
    border-top: 3px solid var(--teal);
}

.footer-widget .container {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.companyinfo h2 {
    font-family: 'Outfit', sans-serif !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 700 !important;
}
.companyinfo h2 span { color: var(--teal) !important; }
.companyinfo p { color: rgba(255,255,255,0.55) !important; }

.single-widget h2 {
    font-family: 'Outfit', sans-serif !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px;
    margin-bottom: 16px !important;
}

.single-widget ul li a {
    color: rgba(255,255,255,0.55) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    padding: 4px 0 !important;
}
.single-widget ul li a:hover {
    background: none !important;
    color: var(--teal) !important;
}

.single-widget address p {
    color: rgba(255,255,255,0.55) !important;
    font-size: 13px;
}

.footer-top .container { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }

.footer-bottom {
    background: rgba(0,0,0,0.35) !important;
}
.footer-bottom p {
    color: rgba(255,255,255,0.45) !important;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
}
.footer-bottom p span a { color: var(--teal) !important; }

/* ══════════════════════════════════════════════════════════
   SMALL BOXES (Dashboard)
   ══════════════════════════════════════════════════════════ */

.small-box {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-md) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.small-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) !important; }

.small-box h3 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
}

.bg-success { background: linear-gradient(135deg, #10B981, #059669) !important; }
.bg-info    { background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important; }
.bg-primary { background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important; }
.bg-danger  { background: linear-gradient(135deg, var(--pink), var(--pink-dark)) !important; }
.bg-warning { background: linear-gradient(135deg, #F59E0B, #D97706) !important; }

.small-box > .small-box-footer {
    background-color: rgba(0,0,0,0.12) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════════════
   REWARD POINTS (override gold → teal palette)
   ══════════════════════════════════════════════════════════ */

:root {
    --reward-gold:  var(--teal) !important;
    --reward-dark:  var(--teal-dark) !important;
    --reward-light: var(--teal-light) !important;
    --reward-mid:   #B2EBE8 !important;
}

.reward-balance-panel { border-color: var(--teal) !important; }
.reward-balance-body  { background: linear-gradient(135deg, var(--teal-light), #B2EBE8) !important; }
.reward-coin-icon, .reward-balance-label,
.reward-balance-amount, .reward-balance-sub,
.reward-subtitle, .reward-calc-title,
.reward-calc-table { color: var(--teal-dark) !important; }

.reward-price-tag { color: var(--teal) !important; }
.reward-detail-price { color: var(--teal) !important; }
.reward-points-info {
    background-color: var(--teal-light) !important;
    border-left-color: var(--teal) !important;
}
.reward-modal-header { background: linear-gradient(135deg, var(--teal-light), #B2EBE8) !important; border-bottom-color: var(--teal) !important; }
.reward-modal-header .modal-title { color: var(--teal-dark) !important; }
.reward-modal-price { color: var(--teal) !important; }
.reward-calc-result-row { border-top-color: var(--teal) !important; }

/* ══════════════════════════════════════════════════════════
   SOCIAL LOGIN BUTTONS
   ══════════════════════════════════════════════════════════ */

.btn-social {
    border-radius: var(--radius-sm) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    border: 1.5px solid var(--border) !important;
}
.btn-google:hover {
    border-color: var(--teal) !important;
    background: var(--teal-light) !important;
}

/* ══════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════ */

.blog-post-area .single-blog-post h3 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    text-transform: none !important;
    font-size: 15px !important;
}
.blog-post-area .post-meta ul li i { background: var(--teal) !important; }
.sinlge-post-meta li i,
.blog-post-area .post-meta ul li i::after,
.sinlge-post-meta li i::after {
    background: var(--teal) !important;
    border-left-color: var(--teal) !important;
}

/* ══════════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════════ */

.content-404 h2 a {
    background: var(--teal) !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Outfit', sans-serif !important;
}

/* ══════════════════════════════════════════════════════════
   FLASH MESSAGES
   ══════════════════════════════════════════════════════════ */

.alert-success {
    background: var(--teal-light) !important;
    border-color: var(--teal) !important;
    color: var(--teal-dark) !important;
    border-radius: var(--radius-sm) !important;
}

/* ══════════════════════════════════════════════════════════
   COOKIE BAR
   ══════════════════════════════════════════════════════════ */

#cookie-bar { background: var(--dark) !important; }
#cookie-bar .cb-enable { background: var(--teal) !important; }
#cookie-bar .cb-enable:hover { background: var(--teal-dark) !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .search_box input {
        width: 160px !important;
        font-size: 13px !important;
    }

    .mainmenu ul li a {
        color: var(--white) !important;
        padding: 10px 0 !important;
        border-bottom: none !important;
    }

    .header-bottom {
        background: var(--dark) !important;
    }

    .product-image-wrapper:hover {
        transform: none;
    }
}

/* ══════════════════════════════════════════════════════════
   MISC OVERRIDES (replace all #FE980F / orange remnants)
   ══════════════════════════════════════════════════════════ */

/* Any remaining orange → teal */
.fa-linkedin:hover  { background: var(--teal) !important; }
.fa-facebook:hover  { background: var(--teal-dark) !important; }

#total-result       { color: var(--teal) !important; }
#delivery-price     { color: var(--teal) !important; }
#status-payee-dashboard { color: var(--teal) !important; }
#status-impayee-dashboard { color: var(--pink) !important; }

.choose ul li a:hover,
.single-widget ul li a:hover,
.panel-body ul li a:hover { color: var(--teal) !important; }

.searchform button { background: var(--teal) !important; }
.searchform button:hover, .searchform button:focus { background-color: var(--teal-dark) !important; }

.usa:hover, .usa:active, .usa.active { background: var(--teal) !important; border-color: var(--teal) !important; }

.dropdown-menu li a:hover,
.dropdown-menu li a:focus { background-color: var(--teal) !important; }

.replay-box label { background: var(--teal) !important; }
.replay-box span  { color: var(--teal) !important; }
.blank-arrow label::after { border-top-color: var(--teal) !important; }

#reviews ul li a i { color: var(--teal) !important; }
#reviews button { background: var(--teal) !important; }

.blog-socials ul li a:hover { background: var(--teal) !important; }
.media-list .btn-primary, .commnets .btn-primary { background: var(--teal) !important; }

.our_partners ul { background: var(--bg) !important; }

.recommended-item-control i { background: var(--teal) !important; }
.item-control i { background: var(--teal) !important; }

.control-carousel:hover { color: var(--teal) !important; }

.pagination-area .pagination li a:hover,
.pagination-area .pagination li .active { background: var(--teal) !important; color: var(--white) !important; }

.pager-area .pager li a:hover { background: var(--teal) !important; color: var(--white) !important; }

.rating-area .color,
.rating-area .ratings .color { color: var(--teal) !important; }
.rating-area .tag li span { color: var(--dark) !important; }

.post-meta span i { color: var(--teal) !important; }
.blog-post-area .post-meta ul span { color: var(--teal) !important; }

/* Color selector circles — teal highlight */
.color-radio:checked + .color-circle {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 2px var(--teal) !important;
}

/* Discount preview box */
#discount-price-preview { border-left-color: var(--teal) !important; }

/* logo size forcing */
.logo img { width: 180px !important;height: auto !important;max-height: 44px;object-fit: contain; }

.search_box {
    display: flex;
    align-items: center;
    height: 100%;
}

.search_box input {
    margin-top: 0 !important;
    vertical-align: middle;
}

.shop-menu ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.shop-menu ul li {
    display: flex;
    align-items: center;
}

.shop-menu ul li a {
    display: flex !important;
    align-items: center;
    margin-top: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    line-height: 1 !important;
}

/* Fix logout SVG vertical alignment */
.shop-menu ul li a svg {
    vertical-align: middle;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Fix product grid — equal card heights */
.features_items .col-sm-4,
.features_items .col-md-4,
.features_items .col-lg-3 {
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-products {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.productinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 10px;
}

/* Product name takes available space, pushing price+button down */
.productinfo p {
    flex: 1;
    width: 100%;
    text-align: center;
}

/* Lock image size so tall images don't break layout */
.productinfo img,
.product-image-container {
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    flex-shrink: 0;
}

/* Price and button always at bottom */
.productinfo h2 {
    flex-shrink: 0;
    margin-top: auto;
}

.add-to-cart {
    flex-shrink: 0;
    margin-top: 8px !important;
    width: 100%;
}

/* Make the row itself stretch children equally */
.features_items .row,
.features_items > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
h2.title::before {
    display: none;
}
/* Panier not clickable when empty — no href means no pointer/hover */
#panier:not([href]),
#panier-mobile:not([href]),
#panier-user:not([href]) {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

#panier:not([href]):hover,
#panier-mobile:not([href]):hover,
#panier-user:not([href]):hover {
    color: inherit !important;
    background: none !important;
    border-color: var(--border) !important;
    transform: none !important;
}
.reward-card-btn,
.reward-detail-btn {
    background: var(--teal) !important;
    color: var(--white) !important;
    border-radius: 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border: none !important;
    transition: all 0.2s;
    box-shadow: 0 3px 12px rgba(0,180,166,0.25);
}

.reward-card-btn:hover,
    .reward-detail-btn:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.reward-card-btn[disabled],
.reward-detail-btn[disabled] {
    background: var(--muted) !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: not-allowed !important;
    opacity: 0.65 !important;
}
#search-web,
#search-web .search_box,
.header-bottom .col-sm-3,
.header-bottom .search_box {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.header-bottom .search_box input {
    margin-top: 0 !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    vertical-align: middle !important;
}

.header-bottom .row {
    display: flex !important;
    align-items: center !important;
    min-height: 52px;
}
/* Price range slider */
.slider-selection,
.slider-track-high,
.in-range {
    background: var(--teal) !important;
}

.slider .slider-handle {
    background: var(--white) !important;
    background-image: none !important;
    border: 2px solid var(--teal) !important;
    box-shadow: 0 2px 6px rgba(0,180,166,0.3) !important;
}

.slider-track .slider-selection {
    background: var(--teal) !important;
}

/* The actual range input thumb (if using native input) */
input[type="range"]::-webkit-slider-thumb {
    background: var(--teal) !important;
}

input[type="range"]::-moz-range-thumb {
    background: var(--teal) !important;
}
/* ── Protect list-style product rows ─────────────────────── */
.blog-post-area .row.margin-bottom-prod {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    height: auto !important;
    min-height: unset !important;
}

.blog-post-area .row.margin-bottom-prod .col-md-4 {
    display: block !important;
    flex-direction: unset !important;
    height: auto !important;
}

.blog-post-area .row.margin-bottom-prod .single-blog-post {
    display: block !important;
    height: auto !important;
}

.blog-post-area .row.margin-bottom-prod .productinfo {
    display: block !important;
    flex-direction: unset !important;
    min-height: unset !important;
    height: auto !important;
    padding: 10px !important;
}

.blog-post-area .row.margin-bottom-prod .product-image-wrapper {
    height: auto !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 0 !important;
    transform: none !important;
}

.blog-post-area .row.margin-bottom-prod .add-to-cart {
    width: auto !important;
    display: inline-block !important;
    margin-top: 10px !important;
}

/*====================== 404 page =======================*/

.page_404 {
    padding: 40px 0;
    background: #fff;
    font-family: "Arvo", serif;
}

.four_zero_four_bg {
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
}

.four_zero_four_bg h1 {
    font-size: 80px;
    /*padding-top: 150px;*/
}

.link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
}

.contant_box_404 {
    margin-top: -50px;
}

/* Ensure modal container takes full viewport */
/*.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex !important;
    align-items: center;
    justify-content: center;
}*/

.modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Fix for modal dialog positioning */
.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem auto;
    transform: translateY(0) !important;
}

/* Ensure modal content is properly styled */
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    margin: 0 auto;
}

/* Remove any conflicting styles */
.modal-backdrop {
    display: none !important; /* Hide the default backdrop since we're using custom background */
}

/* Hover effect for buttons */
#acceptPushBtn:hover {
    background-color: #0056b3 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

#declinePushBtn:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}
/* ══════════════════════════════════════════════════════════
   REWARD SHOP — compact card overrides
   ══════════════════════════════════════════════════════════ */

/* Prevent the flex-grow stretch that bloats reward cards */
.features_items .col-sm-3 .productinfo {
    flex: unset !important;
    height: auto !important;
    min-height: unset !important;
}

.features_items .col-sm-3 .productinfo p {
    flex: unset !important;
    margin-bottom: 4px !important;
}

.features_items .col-sm-3 .productinfo h2 {
    margin-top: 8px !important; /* normal top margin, not auto */
}

.features_items .col-sm-3 .product-image-wrapper {
    height: auto !important;
}

.features_items .col-sm-3 .single-products {
    height: auto !important;
}