:root {
    --btn-bgcolor: rgb(28, 97, 231);
    --btn-bgcolor-onhover: rgb(32, 90, 207);
    --color-white: white;
    --border-color: #80808059;
}

.flexrow {
    display: flex;
    flex-direction: row;
}

.pointer {
    cursor: pointer;
}

.grab {
    cursor: grab;
}

.grab:active {
    cursor: grabbing;
}

.underlinehover:hover {
    text-decoration: underline !important;
}

.width100 {
    width: 100% !important;
}

.width50 {
    width: 50% !important;
}

.heigth100 {
    height: 100% !important;
}

.list-style {
    list-style: none;
}

.margin0 {
    margin: 0 !important;
}

.white-space-nowrap {
    white-space: nowrap;
}

.border-radius-10 {
    border-radius: 10px;
}

.font-color {
    color: #0b0b0bc5 !important;
}

.default-cursor {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.heigth315px {
    height: 315px;
}

.border-top {
    border-top: solid 1px #80808059;
}

.border-bottom {
    border-bottom: solid 1px #80808059;
}

.margin-left-11px {
    margin-left: 11px;
}

.background-none {
    background: none !important;
}

.text-hover-effect:hover {
    color: #dc3545 !important;
    text-decoration: underline !important;
}

.border {
    border: solid 1px var(--border-color);
}

.border-top {
    border-top: solid 1px var(--border-color);
}

.border-bottom {
    border-bottom: solid 1px var(--border-color);
}

.border-left {
    border-left: solid 1px var(--border-color);
}

.bg-light-gray {
    background: #f8f9fa;
}

.vertical-align-middle {
    vertical-align: middle;
}

.card-h-430 {
    height: 418px !important;
}

.btn-primary {
    color: #fff;
    background-color: #1c61e7;
    border-color: #1c61e7;
}

@media (max-width: 768px) {

    /* Compact mobile header */
    .company-logo {
        width: 140px;
        height: 44px;
    }

    .company-logo img {
        max-height: 44px;
    }

    .navbar-md {
        padding: 4px 8px;
    }

    .navbar-md ion-icon {
        font-size: 24px;
    }

    .menu-icon {
        font-size: 20px;
        margin-right: 8px;
    }

    .promo-nav {
        padding: 4px 0;
    }

    .promo-nav-text {
        font-size: 12px;
        line-height: 1.2;
        padding: 0 10px;
        text-align: center;
    }

    /* Home slider: prevent fixed-height blank gap on phones */
    .slider-fixed-height {
        height: auto !important;
    }

    .slider-image {
        height: auto !important;
        max-height: 300px;
    }
}

/* Floating chat button for guests (opens login offcanvas) */
#chat-login-button {
    background-color: #3cc766;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    justify-content: center;
    padding: 12px;
    text-decoration: none;
    transition: all .35s ease-in-out;
    z-index: 999;
}

#chat-login-button:hover {
    color: #fff;
}

/* Hide product prices (cards, listings, product pages, etc.) */
.card-price,
p.price,
.offer_price,
.product-discount-label {
    display: none !important;
}

.btn-primary:hover {
    color: #fff;
    background-color: rgb(32, 90, 207);
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.mb-20px {
    margin-bottom: 20px;
}

.border-radius-5 {
    border-radius: 5px !important;
}

@media (max-width:767px) {
    .fs-md-12 {
        font-size: 12px;
    }
}

/* ========================================
   FEATURED PRODUCTS ENHANCEMENT
   ======================================== */

/* Enhanced Product Card Styling */
.product-style-default .product-card {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-style-default .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-3px);
}

/* Enhanced Add to Cart Button */
.product-style-default .add-in-cart-btn {
    background: linear-gradient(135deg, #ecc45f 0%, #d4a84a 100%) !important;
    border-radius: 25px !important;
    border: none !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(236, 196, 95, 0.35);
}

.product-style-default .add-in-cart-btn:hover {
    background: linear-gradient(135deg, #d4a84a 0%, #c09740 100%) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(236, 196, 95, 0.45);
}

.product-style-default .add-in-cart-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 10px rgba(236, 196, 95, 0.3);
}

.product-style-default .add-in-cart-btn .add-in-cart {
    color: #fff !important;
}

.product-style-default .add-in-cart-btn .add-in-cart-icon {
    color: #fff !important;
}

/* Enhanced Swiper Navigation Arrows */
.product-style-default .swiper-button-next,
.product-style-default .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-style-default .swiper-button-next:hover,
.product-style-default .swiper-button-prev:hover {
    background: linear-gradient(135deg, #ecc45f 0%, #d4a84a 100%) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(236, 196, 95, 0.4);
}

.product-style-default .swiper-button-next::after,
.product-style-default .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 700;
    color: #333;
}

.product-style-default .swiper-button-next:hover::after,
.product-style-default .swiper-button-prev:hover::after {
    color: #fff;
}

.product-style-default .swiper-button-next ion-icon,
.product-style-default .swiper-button-prev ion-icon {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.product-style-default .swiper-button-next:hover ion-icon,
.product-style-default .swiper-button-prev:hover ion-icon {
    color: #fff;
}