/* =========================================
   ROOT COLOR VARIABLES - BUY IT DIRECT
========================================= */
:root {

    --body-color: #F7F9FC;
    /* PRIMARY COLORS */
    --primary-color: #13233F;
    --primary-dark: #0E1A30;
    --primary-light: #1D325A;
    --primary-soft: rgba(245,130,32,0.15);

    /* ACCENT COLOR */
    --accent-color: #F58220;
    --accent-hover: #E46F0A;

    /* HEADER COLORS */
    --top-header-bg: #13233F;

    /* FOOTER COLORS */
    --footer-bg: #0E1A30;

    /* FEATURE SECTION */
    --feature-bg: #13233F;

    /* TEXT COLORS */
    --white: #ffffff;
    --black: #000000;
    --text-dark: #13233F;
    --text-gray: #4B5563;
    --text-light-gray: #6B7280;

    /* BORDER COLORS */
    --border-light: #E5E7EB;
    --border-lighter: #DCE3EA;

    /* STAR COLOR */
    --star-color: #F58220;

    /* STATUS COLORS */
    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* SHADOWS */
    --shadow-light: 0 3px 12px rgba(0,0,0,0.05);
    --shadow-medium: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-large: 0 10px 30px rgba(0,0,0,0.1);

    /* BORDER RADIUS */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* GRADIENT */
    --hero-gradient: linear-gradient(135deg, #13233F 0%, #1D325A 55%, #F58220 100%);

    /* FONTS */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}
body{
    background: var(--body-color);
    font-family: var(--font-body);
    color: var(--text-gray);
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--font-heading);
    color: var(--text-dark);
}
/* TOP HEADER */
.top-strip {
    background: var(--top-header-bg);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-strip a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-strip a:hover {
    color: var(--accent-color);
}

/* ROTATING TRUST MESSAGE TICKER */
.top-strip-ticker {
    position: relative;
    height: 16px;
    overflow: hidden;
}

.top-strip-ticker span {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 0;
    animation: topStripTicker 12s infinite;
}

.top-strip-ticker span:nth-child(1) { animation-delay: 0s; }
.top-strip-ticker span:nth-child(2) { animation-delay: 3s; }
.top-strip-ticker span:nth-child(3) { animation-delay: 6s; }
.top-strip-ticker span:nth-child(4) { animation-delay: 9s; }

@keyframes topStripTicker {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    22%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}

/* CONTACT ITEMS */
.top-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    position: relative;
    color: var(--white);
}

.top-strip-item + .top-strip-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
}

.top-strip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    font-size: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.top-strip-item:hover .top-strip-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* MAIN NAVBAR */
.main-navbar {
    background: var(--white);
    padding: 15px 0;
    position: relative;
    z-index: 99;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

/* LOGO */
.logo-section img {
    max-height: 50px;
}

/* CATEGORY BUTTON */
.category-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:var(--radius-md);
    background:var(--primary-color);
    color:#fff;
    font-weight:600;
    font-family:var(--font-heading);
    transition:all 0.3s ease;
}
.category-btn:hover{
    background:var(--primary-dark);
}

/* SEARCH */
.search-box{
    position:relative;
}

.search-box input{
    width:100%;
    height:50px;
    border-radius:var(--radius-md);
    border:1px solid var(--border-lighter);
    background:var(--white);
    color:var(--text-dark);
    padding:0 50px 0 20px;
    font-family:var(--font-body);
    transition:border-color 0.3s ease;
}

.search-box input:focus{
    border-color:var(--accent-color);
    outline:none;
}

.search-box input::placeholder{
    color:var(--text-light-gray);
}

.search-box button{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    color:var(--accent-color);
    transition:color 0.3s ease;
}
.search-box button:hover{
    color:var(--accent-hover);
}

/* RIGHT MENU */
.menu-link{
    color:var(--primary-color);
    text-decoration:none;
    font-weight:600;
    transition:color 0.3s ease;
}
.menu-link:hover{
    color:var(--accent-color);
}

.menu-link i{
    margin-right:5px;
}

.lang-btn{
    border:1px solid var(--border-lighter);
    background:var(--white);
    color:var(--primary-color);
    border-radius:var(--radius-sm);
    padding:10px 18px;
    font-weight:600;
    transition:all 0.3s ease;
}
.lang-btn:hover{
    background:var(--primary-color);
    color:var(--white);
}

/* =========================================
MEGA MENU
========================================= */

.mega-category-menu{
    position:absolute;
    top:105%;
    left:0;
    width:1000px;
    background:var(--white);
    border-radius:0 0 var(--radius-lg) var(--radius-lg);
    box-shadow:var(--shadow-large);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:999;
}

.category-hover-btn:hover + .mega-category-menu,
.mega-category-menu:hover{
    opacity:1;
    visibility:visible;
}

.mega-wrapper{
    display:flex;
}

.mega-left{
    width:280px;
    background:var(--body-color);
    border-right:1px solid var(--border-light);
}

.mega-category-list{
    margin:0;
    padding:0;
    list-style:none;
}

.mega-category-list li{
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    font-weight:500;
    transition:all 0.3s ease;
    border-bottom:1px solid var(--border-light);
}

.mega-category-list li:hover,
.mega-category-list li.active{
    background:var(--white);
    color:var(--accent-color);
}

.mega-category-list li div i{
    margin-right:12px;
}

.mega-category-list img{
    width: 20px;
}
.mega-right{
    flex:1;
    padding:30px;
}

.mega-content{
    display:none;
}

.mega-content.active{
    display:flex;
}

.mega-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.mega-item{
    text-align:center;
    text-decoration:none;
    color:var(--text-dark);
    transition:color 0.3s ease;
}

.mega-item:hover{
    color:var(--accent-color);
}

.mega-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:10px;
    transition:transform 0.3s ease;
}

.mega-item:hover img{
    transform:scale(1.1);
}

/* =========================================
MOBILE HEADER
========================================= */

.mobile-header{
    background:var(--white);
    padding:12px;
    border-bottom:1px solid var(--border-light);
    box-shadow:var(--shadow-light);
}

.mobile-header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.mobile-menu-btn{
    background:none;
    border:none;
    color:var(--primary-color);
    font-size:22px;
    transition:color 0.3s ease;
}

.mobile-menu-btn:hover{
    color:var(--accent-color);
}

.mobile-logo img{
    height:35px;
}

.mobile-right-menu{
    display:flex;
    align-items:center;
    gap:15px;
}

.mobile-right-menu a{
    color:var(--primary-color);
    font-size:18px;
    transition:color 0.3s ease;
}

.mobile-right-menu a:hover{
    color:var(--accent-color);
}

.mobile-lang-btn{
    border:1px solid var(--border-lighter);
    background:var(--white);
    color:var(--primary-color);
    padding:5px 10px;
    border-radius:var(--radius-sm);
    font-size:12px;
    font-weight:600;
    transition:all 0.3s ease;
}

.mobile-search-box{
    margin-top:10px;
}

/* =========================================
SIDEBAR
========================================= */

.offcanvas{
    width:300px !important;
}
.mobile-category-list{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-category-list li{
    border-bottom:1px solid var(--border-light);
}

.mobile-category-list li a{
    padding:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color:var(--text-dark);
    font-weight:500;
    transition:all 0.3s ease;
}

.mobile-category-list li a:hover{
    background:var(--body-color);
    color:var(--accent-color);
}

.mobile-category-list li a div i{
    margin-right:12px;
    width:18px;
}
.mobile-category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-category-list li{
    border-bottom:1px solid var(--border-light);
}

.mobile-category-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 16px;
    text-decoration:none;
    color:var(--text-dark);
    font-size:15px;
    font-weight:500;
    transition:all 0.3s ease;
}

.mobile-category-list li a:hover{
    background:var(--body-color);
    color:var(--accent-color);
}

.mobile-category-icon{
    width:35px;
    height:35px;
    object-fit:cover;
    border-radius:var(--radius-sm);
}

.mobile-category-list li:active{
    background:var(--body-color);
}

/* HERO SLIDER */
.hero-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    position: relative;
}

.slider-image {
    height: 230px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ARROWS */
.slider-arrow {
    width: 48px;
    height: 48px;
    background: rgba(19,35,63,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent-color);
}

.slider-arrow i {
    color: var(--white);
    font-size: 18px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    opacity: 1;
}

/* CATEGORY SLIDER */
.category-slider-section{
    background:var(--white);
    border-bottom:1px solid var(--border-light);
    padding:30px 0;
}

.category-slider-section .container-fluid{
    position:relative;
}

/* CATEGORY */
.category-item{
    text-align:center;
}

.category-circle{
    margin:auto;
}

.category-circle img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* CATEGORY NAME CARD */
.category-name-card{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:64px;
    padding:14px 10px;
    border-radius:var(--radius-md);
    background:var(--white);
    border:1px solid var(--border-light);
    box-shadow:var(--shadow-light);
    text-decoration:none;
    transition:all 0.3s ease;
}

.category-name-card:hover{
    background:var(--primary-color);
    border-color:var(--primary-color);
    transform:translateY(-4px);
    box-shadow:0 12px 24px rgba(19,35,63,0.2);
}

.category-name-text{
    font-weight:600;
    font-size:14px;
    color:var(--primary-color);
    text-align:center;
    line-height:1.3;
    transition:all 0.3s ease;
}

.category-name-card:hover .category-name-text{
    color:var(--white);
}

/* OWL NAV */
.category_slider_desktop .owl-nav{
    display:block !important;
}

.category_slider_desktop .owl-nav button.owl-prev,
.category_slider_desktop .owl-nav button.owl-next,
.category_slider_mobile .owl-nav button.owl-prev,
.category_slider_mobile .owl-nav button.owl-next{
    position:absolute;
    top:38%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border-radius:50% !important;
    background:#fff !important;
    border:1px solid #e4e8f0 !important;
    box-shadow:0 4px 12px rgba(1,60,140,0.14) !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:0 !important;
    transition:0.2s;
    z-index:2;
}

.category_slider_desktop .owl-nav button.owl-prev:hover,
.category_slider_desktop .owl-nav button.owl-next:hover,
.category_slider_mobile .owl-nav button.owl-prev:hover,
.category_slider_mobile .owl-nav button.owl-next:hover{
    background:var(--primary-color) !important;
    border-color:var(--primary-color) !important;
}

.category_slider_desktop .owl-nav button.owl-prev,
.category_slider_mobile .owl-nav button.owl-prev{
    left:-14px;
}

.category_slider_desktop .owl-nav button.owl-next,
.category_slider_mobile .owl-nav button.owl-next{
    right:-14px;
}

/* FONT AWESOME ICON */
.category_slider_desktop .owl-nav button.owl-prev::after,
.category_slider_mobile .owl-nav button.owl-prev::after{
    content:"\f104";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    font-size:14px;
    color:var(--primary-color);
    transition:0.2s;
}

.category_slider_desktop .owl-nav button.owl-next::after,
.category_slider_mobile .owl-nav button.owl-next::after{
    content:"\f105";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    font-size:14px;
    color:var(--primary-color);
    transition:0.2s;
}

.category_slider_desktop .owl-nav button.owl-prev:hover::after,
.category_slider_mobile .owl-nav button.owl-prev:hover::after,
.category_slider_desktop .owl-nav button.owl-next:hover::after,
.category_slider_mobile .owl-nav button.owl-next:hover::after{
    color:#fff;
}

/* HIDE DEFAULT */
.category_slider_desktop .owl-nav button span,
.category_slider_mobile .owl-nav button span{
    display:none;
}

/* MOBILE */
.item-group{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px 5px;
}

/* TOP MARQUEE TAG */
/* MARQUEE */
.top-marquee{
    background: var(--primary-dark);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 6px 0;
}

/* TRACK */
.marquee-track{
    display: flex;
    align-items: center;
    gap: 60px;

    width: max-content;

    animation: marqueeMove 20s linear infinite;
}

/* ITEM */
.marquee-item{
    flex-shrink: 0;
}

.marquee-item img{
    height: 30px;
    object-fit: contain;
}

.marquee-text{
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    white-space: nowrap;
}

/* INFINITE LOOP */
@keyframes marqueeMove{
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-30%);
    }
}

/* PROMO BENTO SECTION */
.promo-bento-section {
    margin-top: 20px;
}

.promo-bento-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.85fr;
    grid-template-rows: 210px 210px;
    gap: 16px;
}

.promo-bento-hero   { grid-column: 1; grid-row: 1 / span 2; }
.promo-bento-slider { grid-column: 2; grid-row: 1; }
.promo-bento-square { grid-column: 3; grid-row: 1; }
.promo-bento-strip-a{ grid-column: 2; grid-row: 2; }
.promo-bento-strip-b{ grid-column: 3; grid-row: 2; }

.promo-bento-cell {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.promo-bento-cell a {
    display: block;
    width: 100%;
    height: 100%;
}

.promo-bento-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.promo-bento-cell:hover img {
    transform: scale(1.05);
}

/* CAROUSEL FILLS CELL */
.promo-bento-cell .carousel,
.promo-bento-cell .carousel-inner,
.promo-bento-cell .carousel-item {
    height: 100%;
}

.promo-bento-cell .carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* REMOVE DEFAULT BUTTONS */
.promo-bento-cell .carousel-control-prev,
.promo-bento-cell .carousel-control-next,
.promo-bento-cell .carousel-indicators {
    display: none !important;
}

.my-section {
    margin-top: 30px;
}

/* FOOTER */
.modern-footer {
    background: var(--footer-bg);
    color: var(--white);
    padding-top: 30px;
}

/* TOP BUTTON */
.footer-top-btn {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-top-btn a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-top-btn i {
    margin-left: 5px;
}

/* WIDGET */
.footer-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

/* LINKS */
.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* SOCIAL */
.social-footer-links i {
    width: 36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    transition:all 0.3s ease;
}

.social-footer-links i:hover{
    background:var(--accent-color);
    transform:translateY(-3px);
}

/* PAYMENT */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.payment-icons img {
    height: 40px;
    object-fit: contain;
    background: var(--white);
    padding: 3px 6px;
    border-radius: var(--radius-sm);
}

.payment-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

/* LOCATION */
.footer-location-box {
    margin-bottom: 20px;
}

.footer-location-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-location-box p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}

/* CONTACT */
.footer-contact-info p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-contact-info a{
    color:var(--accent-color);
    text-decoration:none;
    transition:color 0.3s ease;
}

.footer-contact-info a:hover{
    color:var(--white);
}

/* COPYRIGHT */
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 18px 0;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* FEATURE STRIP */
.feature-strip-section {
    background: var(--hero-gradient);
    padding: 40px 0;
    margin-top: 30px;
    position:relative;
    overflow:hidden;
}

.feature-strip-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* BOX */
.feature-strip-box {
    display: flex;
    align-items: center;
    gap: 15px;
    position:relative;
    z-index:1;
    transition: transform 0.3s ease;
}

.feature-strip-box:hover {
    transform: translateY(-3px);
}

/* ICON */
.feature-strip-icon {
    min-width: 50px;
    height:50px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(5px);
    transition: all 0.3s ease;
}

.feature-strip-box:hover .feature-strip-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.feature-strip-icon i {
    font-size: 20px;
    color: var(--white);
}

/* CONTENT */
.feature-strip-content h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.feature-strip-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.feature-strip-box:hover .feature-strip-content h4::after {
    width: 100%;
}

.feature-strip-content p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* SEARCH RESULTS DROPDOWN */
.ef-search-results{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    margin-top:10px;
    background:var(--white);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-large);
    border:1px solid var(--border-light);
    overflow:hidden;
    z-index:9999;
}

.ef-search-results-list{
    max-height:360px;
    overflow-y:auto;
}

.ef-search-result-item{
    border-bottom:1px solid var(--border-light);
    transition:background 0.2s ease;
}

.ef-search-result-item:last-child{
    border-bottom:none;
}

.ef-search-result-item:hover{
    background:var(--body-color);
}

.ef-search-result-link{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 16px;
    text-decoration:none;
}

.ef-search-result-img{
    flex-shrink:0;
    width:60px;
    height:60px;
    border-radius:var(--radius-sm);
    overflow:hidden;
    background:var(--body-color);
    border:1px solid var(--border-light);
}

.ef-search-result-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.ef-search-result-info{
    min-width:0;
    flex:1;
}

.ef-search-result-title{
    margin:0 0 4px;
    font-size:14px;
    font-weight:600;
    color:var(--text-dark);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ef-search-result-price{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.ef-search-result-price .price{
    font-size:14px;
    font-weight:700;
    color:var(--accent-color);
}

.ef-search-result-price del{
    font-size:12px;
    color:var(--text-light-gray);
}

.ef-search-result-discount{
    font-size:11px;
    font-weight:600;
    color:#fff;
    background:var(--accent-color);
    padding:2px 8px;
    border-radius:20px;
}

.ef-search-result-inquire{
    font-size:12.5px;
    font-weight:600;
    color:var(--text-light-gray);
}

.ef-search-result-whatsapp{
    width:calc(100% - 32px);
    margin:0 16px 12px;
    padding:8px 14px;
    font-size:12.5px;
}

.ef-search-results-footer{
    text-align:center;
    padding:12px;
    background:var(--body-color);
    border-top:1px solid var(--border-light);
}

.ef-search-results-footer a{
    color:var(--accent-color);
    font-weight:600;
    font-size:13.5px;
    text-decoration:none;
    transition:color 0.2s ease;
}

.ef-search-results-footer a:hover{
    color:var(--accent-hover);
}

.ef-search-results-empty{
    text-align:center;
    padding:30px 20px;
    color:var(--text-light-gray);
}

.ef-search-results-empty i{
    font-size:22px;
    margin-bottom:10px;
    display:block;
    opacity:0.5;
}

.ef-search-results-empty p{
    margin:0;
    font-size:13.5px;
}

@media(max-width:576px){
    .ef-search-results-list{
        max-height:300px;
    }

    .ef-search-result-img{
        width:48px;
        height:48px;
    }
}

/* BRAND CAROUSEL */
.ef-brand-section{
    background:var(--body-color);
}

.ef-brand-tile{
    display:flex;
    align-items:center;
    justify-content:center;
    height:110px;
    padding:16px 20px;
    background:var(--white);
    border:1px solid var(--border-light);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-light);
    transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ef-brand-tile:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-medium);
    border-color:var(--accent-color);
}

.ef-brand-tile img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:0.65;
    transition:filter 0.3s ease, opacity 0.3s ease;
}

.ef-brand-tile:hover img{
    filter:grayscale(0%);
    opacity:1;
}

@media(max-width:576px){
    .ef-brand-tile{
        height:80px;
        padding:12px;
    }
}

/* TESTIMONIAL */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

/* CARD */
/* ===== TESTIMONIAL V2 CARD ===== */
.testimonial-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px 22px;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
}

/* QUOTE ICON */
.tcv2-quote {
    position: absolute;
    top: -14px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--hero-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245,130,32,0.3);
}

.tcv2-quote i {
    color: #fff;
    font-size: 16px;
}

/* STARS + BADGE */
.tcv2-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 14px;
    margin-top: 6px;
}

.tcv2-stars i {
    color: var(--star-color);
    font-size: 14px;
}

.tcv2-badge {
    margin-left: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--success);
    background: rgba(34,197,94,0.1);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* REVIEW TEXT */
.tcv2-review {
    min-height: 110px;
    margin-bottom: 20px;
}

.tcv2-review p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

/* USER */
.tcv2-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.tcv2-user-info h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.tcv2-user-info span {
    font-size: 12px;
    color: var(--text-light-gray);
}

/* ===== WHATSAPP ENQUIRY BUTTON ===== */
.ef-whatsapp-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    line-height: 1.4;
}

.ef-whatsapp-enquiry-btn:hover {
    background: #1da851;
    color: #fff;
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(37,211,102,0.3);
}

.ef-whatsapp-enquiry-btn i {
    font-size: 16px;
    flex-shrink: 0;
}

/* OWL DOTS */
.testimonial_slider .owl-dots {
    margin-top: 30px !important;
    text-align: center;
}

.testimonial_slider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: var(--border-lighter) !important;
}

.testimonial_slider .owl-dot.active span {
    width: 28px;
    border-radius: 30px;
    background: var(--accent-color) !important;
}

/* REMOVE NAV */
.testimonial_slider .owl-nav {
    display: none !important;
}

/* DISCOUNT BADGE */
.discount-badge{
    position: absolute;
    top: 0px;
    left: 0px; 
    height: 10px;
    z-index: 9;
}

.discount-badge img{
    width: 65px;
    height: 75px;
    object-fit: contain;
    display: block;
}

/* =========================================
   PRODUCT INFO
========================================= */

.product_info{
    padding: 15px 12px 18px;
    text-align: center;
}

/* BRAND */
.product_brand{
    color: var(--text-light-gray);
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

/* TITLE */
.product_title{
    line-height: 1.5;
}

.product_title a{
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
    min-height: 45px;
    transition: color 0.3s ease;
}

/* UNDERLINE ON HOVER */
.product_wrap:hover .product_title a{
    color:var(--accent-color);
}

/* OLD PRICE */
.old_price del{
    color: var(--text-light-gray);
    font-size: 15px;
    font-weight: 400;
}

/* PRICE ROW */
.custom_price_row{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

/* MAIN PRICE */
.main_price{
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

/* MONTHLY */
.monthly_price{
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light-gray);
    line-height: 1.3;
}

/* OFFER BOX */
.offer_box{
    background: var(--accent-color);
    color: #fff;
    min-width: 44px;
    height: 38px;
    padding-left: 4px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
}

.product-fetch-main-title{
    font-weight: 700;
    color:var(--text-dark);
}
.product-fetch-sub-title{
    color: var(--text-light-gray);
}

/* what's app icons  */
.whatsapp-logo-contact{
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
}

/* LINK */
.whatsapp-logo-contact a{
    background: #25d366;
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
}

/* HOVER */
.whatsapp-logo-contact a:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ICON */
.whatsapp-logo-contact img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* TEXT */
.whatsapp-logo-contact span{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.container-new-shopdetail{
    max-width: 1340px;
}
.my-col-xl-2{
    width: 11.66666667%;
}
.product-detail-gallaryImg{
    border-radius: 5px;
}
.my-light-row{
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.right-side-border{
    border-right: 1px solid var(--border-light);
}
.shop_deatail_product_title{
    font-size: 22px;
    font-weight: 700;
    color:var(--text-dark);
}
.custom-sku-text{ 
    font-size: 15px;
    color:var(--text-light-gray);
}

.custom-cart-section{
    padding-top:10px;
}

.save-price-text{
    color:var(--accent-color);
    font-size:18px;
    font-weight:500;
    margin-bottom:5px;
}
.save-price-text span{
    font-weight: 600;
}
.custom-product-price{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.main-price{
    font-size:28px;
    font-weight:800;
    color:var(--primary-color);
    line-height:1;
}

.old-price{
    font-size:22px;
    color:var(--text-light-gray);
    text-decoration:line-through;
    font-weight:400;
}

.qty-label{
    font-size:13px;
    letter-spacing:2px;
    color:var(--text-light-gray);
    margin-bottom:12px;
    display:block;
    text-transform:uppercase;
}

.custom-quantity{
    width:190px;
    height:50px;
    border:1px solid var(--border-light);
    display:flex;
    overflow:hidden;
    border-radius:var(--radius-md);
}

.custom-quantity .minus,
.custom-quantity .plus{
    width:50px;
    border:none;
    background:var(--white);
    font-size:20px;
    font-weight:600;
    color:var(--primary-color);
    transition:all 0.3s ease;
}
.custom-quantity .minus:hover,
.custom-quantity .plus:hover{
    background:var(--primary-color);
    color:var(--white);
}
.custom-quantity .minus{
    border-right: 1px solid var(--border-light);
}
.custom-quantity .plus{
    border-left: 1px solid var(--border-light);
}
.custom-quantity .qty{
    width:90px;
    border:none;
    text-align:center;
    font-size:18px;
    font-weight:600;
}

.custom-cart-btn{
    width:100%;
    background:var(--accent-color);
    color:#fff;
    border:none;
    height:50px;
    border-radius:var(--radius-md);
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    transition:all 0.3s ease;
}

.custom-cart-btn:hover{
    background:var(--accent-hover);
}

.custom-buy-btn{
    width:100%;
    background:var(--primary-color);
    color:#fff;
    border:none;
    height:50px;
    border-radius:var(--radius-md);
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    transition:all 0.3s ease;
}

.custom-buy-btn:hover{
    background:var(--primary-dark);
}

.safe-checkout-section{
    margin-top:35px;
    text-align:center;
}

.product-feature-section{
    margin-top:10px;
}

.feature-list{
    padding-left:35px;
    margin:0;
}

.feature-list li{
    font-size:14px;
    line-height:1.7;
    color:var(--text-gray);
    font-weight:400;
}

.feature-list li::marker{
    color:var(--accent-color);
    font-size:16px;
}
.product_img_box {
    position: relative;
    text-align: center;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product_img_box #product_img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
}

.expand-view-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    transition:all 0.3s ease;
}

.expand-view-btn:hover {
    background: var(--accent-color);
    color: #fff !important;
}

.overview-section{
    background:var(--white);
    padding:30px 40px;
    border-radius:var(--radius-md);
    border:1px solid var(--border-light);
}

.overview-title{
    font-size:28px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:25px;
    font-family: var(--font-heading);
}

.overview-content{
    font-size:16px;
    line-height:1.9;
    color:var(--text-gray);
    font-weight:400;
}

.overview-content p{
    margin-bottom:18px;
}

.overview-content ul{
    padding-left:25px;
    margin-top:20px;
}

.overview-content li{
    margin-bottom:12px;
    color:var(--text-gray);
}

.specification-wrapper{
    margin-top:40px;
}

.specification-card{
    background:var(--white);
    border-radius:var(--radius-md);
    overflow:hidden;
    border:1px solid var(--border-light);
}

.specification-header{
    text-align:center;
    padding:14px 20px;
    border-bottom:1px solid var(--border-light);
    background:var(--body-color);
}

.specification-header h2{
    font-size:26px;
    font-weight:700;
    color:var(--text-dark);
    margin:0;
    display:inline-block;
    position:relative;
    line-height:1.2;
}

.specification-header h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:var(--accent-color);
}

.specification-table{
    width:100%;
    min-width:700px;
    border-collapse:collapse;
}

.specification-table tr td{
    border:1px solid var(--border-light);
    padding:16px 24px;
    vertical-align:top;
    font-size:15px;
    line-height:1.6;
    background:var(--white);
}

.specification-name{
    width:50%;
    color:var(--text-light-gray);
    font-weight:400;
}

.specification-value{
    width:50%;
    color:var(--text-dark);
    font-weight:600;
}

.table-responsive{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.custom-review-main-section{
    padding:60px 20px;
}

.customer-review-title{
    text-align:center;
    font-size:26px;
    font-weight:700;
    margin-bottom:50px;
    color:var(--text-dark);
}

.review-top-box{
    max-width:900px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.review-left-box{
    text-align:left;
}

.review-stars{
    margin-bottom:10px;
}

.review-stars i{
    color:var(--accent-color);
    font-size:22px;
    margin-right:4px;
}

.review-small-text{
    font-size:14px;
    color:var(--text-dark);
    margin:0;
}

.review-divider{
    width:1px;
    height:70px;
    background:var(--border-light);
}

.write-review-btn,
.cancel-review-btn{
    background:var(--accent-color);
    color:#fff;
    border:none;
    padding:14px 40px;
    font-size:16px;
    font-weight:600;
    min-width:280px;
    border-radius:var(--radius-md);
    transition:all 0.3s ease;
}

.write-review-btn:hover,
.cancel-review-btn:hover{
    background:var(--accent-hover);
}

.review-form-wrapper{
    margin-top:60px;
}

.write-review-title{
    text-align:center;
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--text-dark);
}

.review-form{
    max-width:900px;
    margin:auto;
}

.review-form-group{
    margin-bottom:30px;
}

.review-label{
    display:block;
    text-align:center;
    font-size:20px;
    color:var(--text-dark);
}

.star_rating{
    display:flex;
    justify-content:center;
    gap:12px;
}

.star_rating span{
    cursor:pointer;
    font-size:40px;
    color:var(--border-lighter);
    transition:color 0.2s ease;
}

.star_rating span:hover,
.star_rating span.active{
    color:var(--accent-color);
}

.review-input,
.review-textarea{
    width:100%;
    border:1px solid var(--border-light);
    padding:12px;
    font-size:14px;
    outline:none;
    border-radius:var(--radius-sm);
    transition:border-color 0.3s ease;
}

.review-input:focus,
.review-textarea:focus{
    border-color:var(--accent-color);
}

.review-textarea{
    resize:none;
}

.upload-review-box{
    width:90px;
    height:90px;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    cursor:pointer;
}

.upload-review-box i{
    font-size:34px;
    color:#888;
}

.review-policy-text{
    text-align:center;
    max-width:700px;
    margin:30px auto;
    font-size:18px;
    line-height:1.8;
    color:#333;
}

.review-submit-section{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.review-cancel-outline{
    background:#fff;
    border:2px solid #0f8b83;
    color:#0f8b83;
    padding:10px 35px;
    font-size:15px;
    font-weight:700;
}

.review-submit-btn{
    background:#0f8b83;
    border:none;
    color:#fff;
    padding:10px 35px;
    font-size:15px;
    font-weight:700;
}

.upload-review-box{
    width:120px;
    height:120px;
    border:2px dashed var(--border-lighter);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    cursor:pointer;
    overflow:hidden;
    background:var(--body-color);
    position:relative;
    border-radius:var(--radius-md);
    transition:all 0.3s ease;
}

.upload-review-box:hover{
    border-color:var(--accent-color);
}

.upload-placeholder{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.upload-placeholder i{
    font-size:32px;
    color:var(--text-light-gray);
    margin-bottom:8px;
}

.upload-placeholder span{
    font-size:13px;
    color:var(--text-light-gray);
}

.review-preview-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.review-policy-text{
    text-align:center;
    max-width:700px;
    margin:30px auto;
    font-size:15px;
    line-height:1.8;
    color:var(--text-gray);
}

.review-submit-section{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.review-cancel-outline{
    background:var(--white);
    border:2px solid var(--accent-color);
    color:var(--accent-color);
    padding:12px 35px;
    font-size:14px;
    font-weight:600;
    border-radius:var(--radius-md);
    transition:all 0.3s ease;
}

.review-cancel-outline:hover{
    background:var(--accent-color);
    color:var(--white);
}

.review-submit-btn{
    background:var(--accent-color);
    border:none;
    color:#fff;
    padding:12px 35px;
    font-size:14px;
    font-weight:600;
    border-radius:var(--radius-md);
    transition:all 0.3s ease;
}

.review-submit-btn:hover{
    background:var(--accent-hover);
}

/* =========================
CART SIDEBAR
========================= */

.cart-sidebar{
    width:430px !important;
    z-index:999999 !important;
    background:var(--body-color);
}

.offcanvas-backdrop{
    z-index:999998 !important;
}

/* HEADER */
.cart-header{
    height:75px;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 24px;
    border-bottom:1px solid var(--border-light);
}

.cart-header h4{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:var(--text-dark);
}

.cart-close{
    border:none;
    background:none;
    font-size:20px;
    color:var(--text-light-gray);
    transition:color 0.3s ease;
}

.cart-close:hover{
    color:var(--accent-color);
}

/* BAG */
.cart-bag{
    position:relative;
    font-size:22px;
    color:var(--text-dark);
}

.cart-bag span{
    position:absolute;
    top:-7px;
    right:-10px;
    width:18px;
    height:18px;
    background:var(--accent-color);
    color:#fff;
    border-radius:50%;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cart-item-count{
    position:absolute;
    top: -12px;
    left: 9px;
    width:18px;
    height:18px;
    background:var(--accent-color);
    color:#fff;
    border-radius:50%;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BODY */
.cart-body{
    height:calc(100vh - 310px);
    overflow-y:auto;
    padding:14px;
    scrollbar-width:thin;
}

/* ITEM */
.cart-item{
    position:relative;
    background:var(--white);
    border:1px solid var(--border-light);
    border-radius:var(--radius-md);
    padding:16px;
    display:flex;
    gap:15px;
    margin-bottom:14px;
    transition:box-shadow 0.3s ease;
}

.cart-item:hover{
    box-shadow:var(--shadow-light);
}

/* REMOVE */
.remove-cart{
    position:absolute;
    top:12px;
    right:12px;
    border:none;
    background:none;
    color:var(--text-light-gray);
    font-size:18px;
    transition:color 0.3s ease;
}

.remove-cart:hover{
    color:var(--error);
}

/* IMAGE */
.cart-image{
    width:78px;
    min-width:78px;
}

.cart-image img{
    width:100%;
    object-fit:contain;
}

/* CONTENT */
.cart-content{
    flex:1;
}

.cart-content h5{
    font-size:13px;
    line-height:1.4;
    font-weight:600;
    color:var(--text-dark);
    margin-bottom:8px;
    padding-right:20px;
}

/* TAG */
.sale-tag{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    margin-bottom:16px;
    color:var(--success);
}

.sale-tag i{
    font-size:13px;
}

/* BOTTOM */
.cart-bottom-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.cart-price{
    font-size:15px;
    font-weight:700;
    color:var(--primary-color);
}

/* QTY */
.cart-qty{
    display:flex;
    align-items:center;
    gap:12px;
}

.cart-qty button{
    width:28px;
    height:28px;
    border:none;
    border-radius:var(--radius-sm);
    font-size:14px;
    font-weight:600;
    transition:all 0.3s ease;
}

.qty-minus{
    background:var(--body-color);
    color:var(--text-dark);
}

.qty-minus:hover{
    background:var(--border-light);
}

.qty-plus{
    background:var(--primary-color);
    color:#fff;
}

.qty-plus:hover{
    background:var(--primary-dark);
}

.cart-qty span{
    font-size:16px;
    font-weight:600;
    color:var(--text-dark);
}

/* PILL */
.cart-pill{
    display:inline-block;
    margin-top:14px;
    background:var(--accent-color);
    color:#fff;
    padding:6px 14px;
    border-radius:var(--radius-sm);
    font-size:12px;
    font-weight:600;
}

/* FOOTER */
.cart-footer{
    background:var(--white);
    padding:15px 18px 25px;
    border-top:1px solid var(--border-light);
}

/* ROW */
.summary-row{
    display:flex;
    align-items:center;
    margin-bottom:14px;
}

.summary-row span{
    font-size:16px;
    color:var(--text-gray);
}

.summary-row strong{
    font-size:16px;
    font-weight:500;
    color:var(--text-dark);
}

/* DOTTED LINE */
.summary-line{
    flex:1;
    border-bottom:1px dashed var(--border-lighter);
    margin:0 14px;
}

/* TOTAL */
.total-row span{
    font-size:20px;
    font-weight:700;
    color:var(--primary-color);
}

.total-row strong{
    font-size:20px;
    font-weight:700;
    color:var(--primary-color);
}

/* SHIPPING */
.shipping-text{
    font-size:13px;
    color:var(--text-gray);
    margin:18px 0 28px;
}

.shipping-text a{
    color:var(--accent-color);
    text-decoration: underline;
}

/* FREE SHIPPING */
.shipping-box{
    display:flex;
    align-items:center;
    gap:12px;
    justify-content:center;
    margin-bottom:24px;
    padding:12px;
    background:rgba(34,197,94,0.05);
    border-radius:var(--radius-sm);
}

.shipping-box i{
    font-size:14px;
    color:var(--success);
}

.shipping-box span{
    font-size:13px;
    font-weight:600;
    color:var(--success);
}

/* BUTTON */
.checkout-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:var(--radius-md);
    background:var(--accent-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    font-size:14px;
    font-weight:600;
    transition:all 0.3s ease;
}

.checkout-btn:hover{
    background:var(--accent-hover);
}

.checkout-divider{
    width:1px;
    height:24px;
    background:rgba(255,255,255,0.4);
}

.checkout-btn strong{
    color:#fff;
    font-size:14px;
    font-weight: 600;
}

.my-breadcrumb-section {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
    padding:12px 0;
}

.my-breadcrumb-section a {
    color:var(--text-light-gray);
    text-decoration: none;
    transition:color 0.3s ease;
}

.my-breadcrumb-section a:hover{
    color:var(--accent-color);
}

.my-breadcrumb-section .separator {
    margin: 0 8px;
    color:var(--text-light-gray);
}

.my-breadcrumb-section .current-page {
    color:var(--text-dark);
    font-weight:600;
}

.shop-pg-main-header{
    text-align: center;
    color:var(--text-dark);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
}
.shop-pg-header-img-div img{
    height: 100%;
    width: auto;
}
.shop-pg-header-img-div{
    margin-bottom: 30px;
}
.filter-sidebar{
    padding:25px;
    background:var(--white);
    border-radius:var(--radius-md);
    border:1px solid var(--border-light);
}

.filter-main-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
    color:var(--text-dark);
}

.filter-group{
    border-top:1px solid var(--border-light);
}

.filter-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    cursor:pointer;
}

.filter-heading span{
    letter-spacing:1px;
    font-size:13px;
    font-weight:600;
    color:var(--text-light-gray);
    text-transform:uppercase;
}

.filter-body{
    display:none;
    padding-bottom:20px;
}

.filter-group.active .filter-body{
    display:block;
}

.filter-checkbox{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.filter-checkbox input{
    width:18px;
    height:18px;
    margin-right:12px;
    accent-color:var(--accent-color);
}

.filter-checkbox .count{
    margin-left:auto;
    color:var(--text-light-gray);
    font-size:13px;
}

.range-values{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
}

.slider{
    width:100%;
}

.custom-price-filter-wrap{
    position:relative;
    padding-top:35px;
}

.custom-price-slider-box{
    position:relative;
    height:40px;
}

.custom-price-track{
    position:absolute;
    left:0;
    right:0;
    top:10px;
    height:6px;
    background:var(--border-lighter);
    border-radius:50px;
}

.custom-price-range{
    position:absolute;
    width:100%;
    pointer-events:none;
    background:none;
    appearance:none;
    -webkit-appearance:none;
}

.custom-price-range::-webkit-slider-thumb{
    appearance:none;
    -webkit-appearance:none;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--accent-color);
    cursor:pointer;
    pointer-events:auto;
    box-shadow:0 2px 6px rgba(245,130,32,0.3);
}

.custom-price-range::-moz-range-thumb{
    width:20px;
    height:20px;
    border:none;
    border-radius:50%;
    background:var(--accent-color);
    cursor:pointer;
    pointer-events:auto;
}

.custom-price-tag{
    position:absolute;
    background:var(--white);
    border:1px solid var(--border-lighter);
    padding:4px 8px;
    font-size:12px;
    color:var(--text-gray);
    border-radius:var(--radius-sm);
    z-index:10;
    font-weight:500;
}

.custom-price-tag-left{
    top:0;
    left:0;
}

.custom-price-tag-right{
    top:60px;
    right:0;
}

.custom-price-bottom-values{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    color:var(--text-light-gray);
    font-size:13px;
}

.custom-sort-dropdown{
    position:relative;
    display:inline-block;
}

.custom-sort-trigger{
    display:flex;
    align-items:center;
    gap:5px;
    cursor:pointer;
    font-size:14px;
    color:var(--text-gray);
    user-select:none;
}

.sort-label{
    color:var(--text-light-gray);
}

.sort-value{
    color:var(--text-dark);
    font-weight:600;
}

.custom-sort-trigger i{
    margin-left:20px;
    color:var(--text-dark);
}

.custom-sort-menu{
    position:absolute;
    top:40px;
    right:0;
    width:250px;
    background:var(--white);
    border-radius:var(--radius-md);
    padding:10px 0;
    list-style:none;
    box-shadow:var(--shadow-large);
    display:none;
    z-index:9999;
    border:1px solid var(--border-light);
}

.custom-sort-menu li{
    padding:12px 18px;
    cursor:pointer;
    font-size:14px;
    color:var(--text-gray);
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:all 0.3s ease;
}

.custom-sort-menu li:hover{
    background:var(--body-color);
    color:var(--accent-color);
}

.custom-sort-menu li.active{
    color:var(--accent-color);
    font-weight:600;
}

.custom-sort-menu li i{
    color:var(--text-dark);
}

.ef-product-card{
    background:var(--white);
    border-radius:var(--radius-md);
    overflow:hidden;
    height:100%;
    transition:all 0.3s ease;
    text-align:center;
    padding:12px;
    cursor: pointer;
    border:1px solid var(--border-light);
}
.ef-product-card:hover .ef-product-title a{
    color:var(--accent-color);
}

.ef-product-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-large);
}

.ef-product-image{
    display:block;
    height:260px;
    overflow:hidden;
    border-radius:var(--radius-sm);
}

.ef-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform 0.4s ease;
}

.ef-product-card:hover .ef-product-image img{
    transform:scale(1.05);
}

.ef-product-content{
    padding:12px 8px;
}

.ef-product-brand{
    color:var(--text-light-gray);
    font-size:12px;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.ef-product-title{
    font-size:16px;
    line-height:1.4;
    margin-bottom:10px;
}

.ef-product-title a{
    color:var(--text-dark);
    text-decoration:none;
    font-weight:600;
    transition:color 0.3s ease;
}

.ef-old-price{
    color:var(--text-light-gray);
    text-decoration:line-through;
    font-size:14px;
    margin-bottom:3px;
}

.ef-price-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.ef-sale-price{
    font-size:16px;
    font-weight:700;
    color:var(--primary-color);
}

.ef-discount-badge{
    background:var(--error);
    color:#fff;
    padding:3px 8px;
    border-radius:var(--radius-sm);
    font-size:11px;
    font-weight:700;
}

.ef-cart-btn{
    margin-top:15px;
    width:100%;
    height:44px;
    border:2px solid var(--accent-color);
    border-radius:var(--radius-md);
    color:#fff;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
    background:var(--accent-color);
    font-size:13px;
}

.ef-cart-btn:hover{
    background:var(--accent-hover);
    border-color:var(--accent-hover);
    color: #fff;
}

.ef-mobile-toolbar{
    display:flex;
    background:var(--white);
    border:1px solid var(--border-light);
    margin-bottom:20px;
    border-radius:var(--radius-md);
    overflow:hidden;
}

.ef-mobile-filter-btn{
    width:100%;
    height:48px;
    border:none;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--text-gray);
    font-size:14px;
    font-weight:500;
    transition:all 0.3s ease;
}

.ef-mobile-filter-btn:hover{
    color:var(--accent-color);
    background:var(--body-color);
}

.ef-mobile-sort{
    position:relative;
}

.ef-mobile-sort select{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.ef-login-container{
    max-width:500px;
    margin:0 auto;
}

.ef-login-card{
    background:var(--white);
    border-radius:var(--radius-lg);
    padding:44px 40px;
    box-shadow:0 10px 40px rgba(19,35,63,0.08);
    border:1px solid var(--border-light);
    position:relative;
    overflow:hidden;
}

.ef-login-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.ef-login-icon-badge{
    width:64px;
    height:64px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    box-shadow:0 8px 20px rgba(245,130,32,0.3);
}

.ef-login-icon-badge i{
    color:#fff;
    font-size:26px;
}

.ef-login-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:10px;
}

.ef-login-subtitle{
    text-align:center;
    color:var(--text-light-gray);
    margin-bottom:30px;
    font-size:14px;
}

.ef-benefits-row{
    margin-bottom:30px;
}

.ef-benefit-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    font-size:13px;
    color:var(--text-gray);
}

.ef-benefit-item i{
    color:var(--accent-color);
    font-size:20px;
}

.ef-benefit-item span{
    font-size:12px;
}

.ef-form-label{
    font-weight:600;
    margin-bottom:8px;
    color:var(--text-dark);
    font-size:14px;
}

.ef-login-input{
    height:50px;
    border-radius:var(--radius-md);
    border:1px solid var(--border-lighter);
    padding:0 15px;
    font-size:14px;
    transition:border-color 0.3s ease;
}

.ef-login-input:focus{
    border-color:var(--accent-color);
    box-shadow:none;
    outline:none;
}

.ef-forgot-link{
    color:var(--accent-color);
    text-decoration:none;
    font-size:13px;
    transition:color 0.3s ease;
}

.ef-forgot-link:hover{
    color:var(--accent-hover);
}

.ef-login-btn{
    height:50px;
    border:none;
    border-radius:var(--radius-md);
    background:var(--accent-color);
    color:#fff;
    font-weight:600;
    font-size:15px;
    transition:all 0.3s ease;
}

.ef-login-btn:hover{
    background:var(--accent-hover);
}

.ef-divider-text{
    color:var(--text-light-gray);
    font-size:15px;
}

.ef-register-btn{
    height:44px;
    border-radius:var(--radius-md);
    border:2px solid var(--primary-color);
    color:var(--primary-color);
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left: 0px !important;
    transition:all 0.3s ease;
    font-size:14px;
}

.ef-register-btn:hover{
    background: var(--primary-color);
    color:#fff;
}

.ef-field-error{
    display:block;
    color:#DC2626;
    font-size:12.5px;
    margin-top:6px;
}

.ef-phone-group{
    display:flex;
    align-items:stretch;
    border:1.5px solid var(--border-lighter);
    border-radius:var(--radius-md);
    overflow:hidden;
    transition:border-color 0.25s ease, box-shadow 0.25s ease;
    background:var(--white);
}

.ef-phone-group:focus-within{
    border-color:var(--accent-color);
    box-shadow:0 0 0 4px rgba(245,130,32,0.12);
}

.ef-phone-prefix{
    display:flex;
    align-items:center;
    padding:0 14px;
    background:var(--body-color);
    color:var(--text-dark);
    font-weight:600;
    font-size:15px;
    border-right:1.5px solid var(--border-lighter);
    white-space:nowrap;
}

.ef-phone-input{
    border:none;
    flex:1;
    min-width:0;
    height:54px;
    padding:0 16px;
    font-size:17px;
    font-weight:600;
    letter-spacing:0.5px;
    color:var(--text-dark);
    background:transparent;
}

.ef-phone-input:focus{
    outline:none;
    box-shadow:none;
}

.ef-otp-boxes{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:8px;
}

.ef-otp-box{
    width:56px;
    height:60px;
    text-align:center;
    font-size:24px;
    font-weight:700;
    color:var(--text-dark);
    border:1.5px solid var(--border-lighter);
    border-radius:var(--radius-md);
    background:var(--white);
    transition:border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.ef-otp-box:focus{
    outline:none;
    border-color:var(--accent-color);
    box-shadow:0 0 0 4px rgba(245,130,32,0.12);
    transform:translateY(-2px);
}

.ef-submit-btn{
    height:54px;
    border:none;
    border-radius:var(--radius-md);
    background:linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color:#fff;
    font-weight:700;
    font-size:16px;
    letter-spacing:0.3px;
    box-shadow:0 8px 20px rgba(245,130,32,0.25);
    transition:transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ef-submit-btn:hover:not(:disabled){
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(245,130,32,0.32);
    color:#fff;
}

.ef-submit-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
}

.ef-btn-spinner{
    display:inline-block;
    width:18px;
    height:18px;
    border:2.5px solid rgba(255,255,255,0.4);
    border-top-color:#fff;
    border-radius:50%;
    animation:ef-spin 0.7s linear infinite;
}

@keyframes ef-spin{
    to{ transform:rotate(360deg); }
}

.ef-change-number-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    margin-top:18px;
    background:none;
    border:none;
    color:var(--text-light-gray);
    font-size:13.5px;
    font-weight:600;
    transition:color 0.2s ease;
}

.ef-change-number-btn:hover{
    color:var(--accent-color);
}

.ef-change-number-btn i{
    font-size:11px;
}

[x-cloak]{
    display:none !important;
}

.ef-resend-wrap{
    text-align:center;
    margin-bottom:20px;
    min-height:20px;
}

.ef-resend-hint{
    color:var(--text-light-gray);
    font-size:13.5px;
    margin:0;
}

.ef-resend-hint span{
    color:var(--text-dark);
    font-weight:600;
}

.ef-resend-btn{
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:none;
    border:none;
    color:var(--accent-color);
    font-weight:700;
    font-size:13.5px;
    transition:color 0.2s ease;
}

.ef-resend-btn:hover:not(:disabled){
    color:var(--accent-hover);
}

.ef-resend-btn:disabled{
    opacity:0.6;
    cursor:not-allowed;
}

.ef-brand-filter-box{
    background:rgba(245,130,32,0.08);
    padding:14px 18px;
    border-radius:var(--radius-md);
    margin:10px 0 30px;
    border:1px solid rgba(245,130,32,0.15);
}

.ef-brand-filter-box h5{
    font-size:15px;
    font-weight:700;
    margin-bottom:10px;
    color:var(--text-dark);
}

.ef-brand-filter-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.ef-brand-chip{
    border:none;
    background:var(--white);
    border-radius:30px;
    padding:6px 16px;
    font-size:13px;
    color:var(--text-dark);
    box-shadow:var(--shadow-light);
    transition:all 0.3s ease;
    font-weight:500;
}

.ef-brand-chip:hover{
    background:var(--primary-color);
    color:#fff;
}

.ef-brand-chip.active{
    background:var(--primary-color);
    color:#fff;
}
.offcanvas{
    z-index: 99999 !important;
}

.offcanvas-backdrop{
    z-index: 99998 !important;
}
.filter-sidebar{
    z-index: 99998 !important;
}
.check-out-product-img{
    width: 10%;
}
.product_slider .owl-stage{
    display:flex;
}

.product_slider .owl-item{
    display:flex;
}

.product_slider .item{
    display:flex;
    width:100%;
}

.product_wrap{
    width:100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product_wrap:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}
@media(max-width:768px){

    .ef-login-card{
        padding:25px;
    }

    .ef-login-title{
        font-size:28px;
    }

    .ef-benefit-item{
        font-size:12px;
    }

    .ef-benefit-item span{
        font-size:11px;
    }

    .ef-otp-boxes{
        gap:10px;
    }

    .ef-otp-box{
        width:48px;
        height:52px;
        font-size:20px;
    }

    .ef-phone-prefix{
        padding:0 10px;
        font-size:14px;
    }
}
@media(max-width:360px){
    .ef-otp-boxes{
        gap:7px;
    }

    .ef-otp-box{
        width:42px;
        height:48px;
        font-size:18px;
    }
}
/* MOBILE */
@media(max-width:576px){
    .my-light-row{
        background-color: transparent;
    }
    .cart-sidebar{
        width:100% !important;
    }
    .shipping-box i{
        font-size:15px;
    }

    .shipping-box span{
        font-size:15px;
    }

}

@media(min-width:992px){

    .ef-mobile-toolbar{
        display:none;
    }

    .product-detail-right{
        height:auto;
        overflow-y:auto;
        overflow-x:hidden;
        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .product-detail-right::-webkit-scrollbar{
        display:none;
    }
}
/* MOBILE */
@media(max-width:991px) {
    .ef-product-image{
        height:200px;
    }

    .ef-sale-price{
        font-size:16px;
    }

    .ef-product-title{
        font-size:14px;
        min-height:42px;
    }

    .main-navbar{
        padding:12px 0;
    }

    .promo-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 170px 130px 130px;
        gap: 12px;
    }

    .promo-bento-hero   { grid-column: 1 / span 2; grid-row: 1; }
    .promo-bento-slider { grid-column: 1 / span 2; grid-row: 2; }
    .promo-bento-square { grid-column: 1; grid-row: 3; }
    .promo-bento-strip-a{ grid-column: 2; grid-row: 3; }
    .promo-bento-strip-b{ grid-column: 1 / span 2; grid-row: 4; }

    .testimonial-card-v2 {
        padding: 24px 18px 18px;
    }

    .tcv2-review {
        min-height: auto;
    }

    .feature-strip-section {
        padding: 25px 0;
    }

    .feature-strip-box {
        align-items: center;
    }

    .feature-strip-content h4 {
        font-size: 14px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-copyright .text-lg-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .logo-section {
        text-align: center;
    }

    .logo-section img {
        height: 45px;
    }

    .right-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-strip .right-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }

    .top-strip .d-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media(max-width:768px) {

    .customer-review-title,
    .write-review-title{
        font-size:36px;
    }

    .review-divider{
        display:none;
    }

    .write-review-btn,
    .cancel-review-btn{
        min-width:100%;
        font-size:18px;
        padding:15px 25px;
    }

    .review-label{
        font-size:22px;
    }

    .star_rating span{
        font-size:34px;
    }

    .review-policy-text{
        font-size:15px;
    }

    .review-cancel-outline,
    .review-submit-btn{
        width:100%;
        font-size:14px;
    }

    .specification-wrapper{
        margin:20px 10px 0;
    }

    .specification-header h2{
        font-size:24px;
    }

    .specification-table{
        min-width:600px;
    }

    .specification-table tr td{
        padding:14px 16px;
        font-size:14px;
    }

    .overview-section{
        padding:25px 20px;
    }

    .overview-title{
        font-size:24px;
    }

    .overview-content{
        font-size:14px;
        line-height:1.8;
    }
    .feature-list li{
        font-size:14px;
        line-height:1.6;
    }

    .product_title a{
        font-size: 13px;
    }

    .main_price{
        font-size: 15px;
    }

    .monthly_price{
        font-size: 11px;
    }

    .offer_box{
        min-width: 36px;
        height: 36px;
        font-size: 10px;
    }

    .old_price del{
        font-size: 14px;
    }

    .slider-image {
        height: 140px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow i {
        font-size: 12px;
    }

    .category-name-card {
        min-height: 56px;
        padding: 10px 8px;
    }

    .category-name-text {
        font-size: 12px;
    }

    .category_slider .owl-nav button.owl-prev {
        left: -10px;
    }

    .category_slider .owl-nav button.owl-next {
        right: -10px;
    }
    
    .main-price{
        font-size:28px;
    }

    .old-price{
        font-size:20px;
    }

    .custom-cart-btn,
    .custom-buy-btn{
        font-size:14px;
        height:48px;
    }
    
}

@media(max-width:576px) {

    .promo-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
    }

    .promo-bento-hero,
    .promo-bento-slider,
    .promo-bento-square,
    .promo-bento-strip-a,
    .promo-bento-strip-b {
        grid-column: 1;
        grid-row: auto;
    }

    .promo-bento-hero   { height: 200px; }
    .promo-bento-slider { height: 200px; }
    .promo-bento-square,
    .promo-bento-strip-a,
    .promo-bento-strip-b { height: 150px; }

    .whatsapp-logo-contact{
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-logo-contact a{
        padding: 10px;
        border-radius: 50%;
    }

    .whatsapp-logo-contact span{
        display: none;
    }

    .whatsapp-logo-contact img{
        width: 24px;
        height: 24px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .tcv2-review p {
        font-size: 13px;
    }

    .tcv2-badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .feature-strip-box {
        gap: 12px;
    }

    .feature-strip-icon {
        min-width:40px;
        height:40px;
    }

    .feature-strip-icon i {
        font-size: 18px;
    }

    .feature-strip-content h4 {
        font-size: 12px;
    }

    .feature-strip-content p {
        font-size: 11px;
    }

    .discount-badge img{
        height: 55px;
    }
    .monthly_price{
        display: none;
    }
    .category-name-card{
        min-height:52px;
        padding:8px 6px;
        border-radius:var(--radius-sm);
    }

    .category-name-text{
        font-size:11px;
    }

    .search-box input{
        height:42px;
        font-size:14px;
    }

    .item-group{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }
}

@media(max-width:575px){

    .ef-product-card{
        padding:8px;
    }

    .ef-product-image{
        height:160px;
    }

    .ef-product-brand{
        font-size:11px;
    }

    .ef-product-title{
        font-size:13px;
        min-height:38px;
    }

    .ef-sale-price{
        font-size:15px;
    }

    .ef-old-price{
        font-size:12px;
    }

    .ef-cart-btn{
        height:40px;
        font-size:12px;
    }
}

/* Desktop hover only */
@media (hover: hover) and (pointer: fine) {
    .product_wrap:hover .product_hover_img {
        opacity: 1;
        visibility: visible;
    }

    .product_wrap:hover .product_img img:first-child {
        opacity: 0;
        visibility: hidden;
    }
}

/* Disable hover image on mobile/touch devices */
@media (hover: none), (max-width: 991px) {
    .product_hover_img {
        display: none !important;
    }

    .product_img img:first-child {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--body-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-lighter);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}