/* ============================================================
   NAVBAR - Submenu Colors + Footer Border + Mobile Responsive
   ============================================================ */

/* =============================================
   1. NAVBAR CONTAINER
   ============================================= */
   .customnavbar {
    padding: 10px !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.customnavbar .gx-0 {
    padding: 0 !important;
}

.customnavbar .px-5 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.customnavbar .navbar {
    padding: 6px 0 !important;
    min-height: 60px;
}

/* =============================================
   2. NAV MENU - BOLD & GAP
   ============================================= */
.nav-menu-custom {
    display: flex;
    align-items: center;
    gap: 12px !important;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.nav-menu-custom .nav-item {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu-custom .nav-link {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0.9;
    margin: 0 4px !important;
    line-height: 1.4;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-menu-custom .nav-link:hover,
.nav-menu-custom .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

/* Dropdown Icon - Single Arrow */
.nav-menu-custom .dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.nav-menu-custom .dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

/* =============================================
   3. WHATSAPP BUTTON
   ============================================= */
.whatsapp-btn {
    padding: 8px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
    margin: 4px 0 !important;
    border: none !important;
    line-height: 1.4;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

/* =============================================
   4. DROPDOWN / SUBMENU - DESKTOP
   ============================================= */
@media (min-width: 993px) {
    .nav-menu-custom .dropdown-menu {
        background: #ffffff !important;
        border: none !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
        padding: 8px 0 !important;
        min-width: 220px !important;
        margin-top: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        animation: dropdownFade 0.25s ease;
    }
    
    @keyframes dropdownFade {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Submenu Items */
    .nav-menu-custom .dropdown-item {
        padding: 8px 20px !important;
        font-size: 14px !important;
        color: #333333 !important;  /* Dark Text */
        background: transparent !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        border-bottom: 1px solid #f0f0f0 !important;  /* Footer Border */
    }
    
    /* Submenu Items - Last child no border */
    .nav-menu-custom .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu-custom .dropdown-item:hover {
        background: #f8f9fa !important;
        color: #e63946 !important;
        padding-left: 26px !important;
    }
    
    .nav-menu-custom .dropdown-item i {
        width: 18px !important;
        color: #999 !important;
        font-size: 14px !important;
    }
    
    .nav-menu-custom .dropdown-item:hover i {
        color: #e63946 !important;
    }
    
    .nav-menu-custom .dropdown-divider {
        margin: 4px 0 !important;
        border-color: #eee !important;
    }
    
    /* Active Indicator */
    .nav-menu-custom .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 2.5px;
        background: #fff;
        border-radius: 2px;
    }
}

/* =============================================
   5. DROPDOWN / SUBMENU - MOBILE
   ============================================= */
@media (max-width: 992px) {
    .nav-menu-custom .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        width: 100%;
    }
    
    .nav-menu-custom .dropdown-item {
        color: #ffffff !important;
        padding: 8px 16px 8px 30px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: transparent !important;
    }
    
    .nav-menu-custom .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu-custom .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }
    
    .nav-menu-custom .dropdown-item i {
        color: rgba(255, 255, 255, 0.5) !important;
        width: 18px !important;
    }
    
    .nav-menu-custom .dropdown-divider {
        display: none !important;
    }
}

/* =============================================
   6. MOBILE RESPONSIVE - FIX
   ============================================= */
@media (max-width: 768px) {
    .customnavbar {
        padding: 6px !important;
    }
    
    .customnavbar .px-5 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .customnavbar .navbar {
        padding: 8px 0 !important;
        min-height: 50px;
    }
    
    .nav-menu-custom {
        flex-direction: column;
        width: 100%;
        gap: 0 !important;
        margin: 8px 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu-custom .nav-item {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu-custom .nav-link {
        padding: 10px 16px !important;
        width: 100%;
        border-radius: 8px !important;
        margin: 2px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    
    .nav-menu-custom .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu-custom .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .whatsapp-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        border-radius: 50px !important;
        padding: 10px 16px !important;
        margin: 4px 0 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    
    .customnavbar .navbar-toggler {
        font-size: 20px !important;
        padding: 6px 10px !important;
    }
    
    .customnavbar .navbar-brand {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
}

/* =============================================
   7. SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .customnavbar {
        padding: 4px !important;
    }
    
    .customnavbar .px-5 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .customnavbar .navbar {
        padding: 6px 0 !important;
        min-height: 44px;
    }
    
    .nav-menu-custom .nav-link {
        font-size: 14px !important;
        padding: 8px 14px !important;
    }
    
    .whatsapp-btn {
        font-size: 13px !important;
        padding: 8px 14px !important;
    }
    
    .customnavbar .navbar-brand {
        font-size: 14px !important;
    }
    
    .customnavbar .navbar-toggler {
        font-size: 18px !important;
        padding: 4px 8px !important;
    }
}

/* ============================================================
   DROPDOWN / SUBMENU - Simple Hover (Border Bottom + Red Text)
   ============================================================ */

/* =============================================
   1. DROPDOWN CONTAINER
   ============================================= */
   .nav-menu-custom .dropdown-menu {
    background: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10) !important;
    padding: 6px 0 !important;
    min-width: 210px !important;
    margin-top: 6px !important;
    border: 1px solid rgba(230, 57, 70, 0.15) !important;
    overflow: hidden !important;
}

/* =============================================
   2. DROPDOWN ITEMS
   ============================================= */
.nav-menu-custom .dropdown-item {
    padding: 8px 20px !important;
    font-size: 14px !important;
    color: #222222 !important;
    background: #ffffff !important;
    transition: all 0.25s ease !important;
    margin: 0 !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border-bottom: 1px solid #f5f5f5 !important;
    position: relative !important;
}

/* ✅ Last item - No border */
.nav-menu-custom .dropdown-item:last-child {
    border-bottom: none !important;
}

/* =============================================
   3. HOVER EFFECT - Only Bottom Border + Red Text
   ============================================= */
.nav-menu-custom .dropdown-item:hover {
    background: #ffffff !important;  /* ✅ Background Same - No Change */
    color: #e63946 !important;  /* ✅ Red Text on Hover */
    padding-left: 20px !important;  /* ✅ No Extra Padding */
}

/* ✅ Bottom Border on Hover */
.nav-menu-custom .dropdown-item:hover::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #e63946 !important;  /* ✅ Red Bottom Border */
    border-radius: 2px !important;
}

/* =============================================
   4. ICONS - Red on Hover
   ============================================= */
.nav-menu-custom .dropdown-item i {
    width: 18px !important;
    color: #999 !important;
    font-size: 14px !important;
    transition: color 0.25s ease !important;
}

.nav-menu-custom .dropdown-item:hover i {
    color: #e63946 !important;  /* ✅ Red Icon on Hover */
}

/* =============================================
   5. ACTIVE / FOCUS
   ============================================= */
.nav-menu-custom .dropdown-item:active,
.nav-menu-custom .dropdown-item:focus {
    color: #c62828 !important;
    outline: none !important;
}

.nav-menu-custom .dropdown-item:active i,
.nav-menu-custom .dropdown-item:focus i {
    color: #c62828 !important;
}

/* =============================================
   6. DROPDIVIDER
   ============================================= */
.nav-menu-custom .dropdown-divider {
    margin: 4px 12px !important;
    border-color: #f0f0f0 !important;
}

/* =============================================
   7. DROPDOWN ARROW
   ============================================= */
.nav-menu-custom .dropdown-toggle::after {
    display: none !important;
}

.nav-menu-custom .dropdown-icon {
    font-size: 10px !important;
    transition: transform 0.3s ease !important;
    margin-left: 4px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.nav-menu-custom .dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg) !important;
}

/* =============================================
   8. ANIMATION
   ============================================= */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu-custom .dropdown-menu {
    animation: dropdownSlide 0.2s ease;
}

/* =============================================
   9. MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .nav-menu-custom .dropdown-menu {
        background: rgba(255, 255, 255, 0.06) !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        min-width: unset !important;
        animation: none !important;
    }
    
    .nav-menu-custom .dropdown-item {
        color: #ffffff !important;
        background: transparent !important;
        padding: 8px 16px 8px 30px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        font-size: 14px !important;
    }
    
    .nav-menu-custom .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu-custom .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #ffffff !important;
        padding-left: 30px !important;
    }
    
    /* ✅ Mobile - Bottom Border on Hover */
    .nav-menu-custom .dropdown-item:hover::after {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .nav-menu-custom .dropdown-item i {
        color: rgba(255, 255, 255, 0.4) !important;
    }
    
    .nav-menu-custom .dropdown-item:hover i {
        color: #ffffff !important;
    }
    
    .nav-menu-custom .dropdown-divider {
        display: none !important;
    }
}

/* =============================================
   10. SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .nav-menu-custom .dropdown-item {
        font-size: 13px !important;
        padding: 6px 14px 6px 26px !important;
    }
}

.dropdown .dropdown-menu a:hover {
    background: transparent;
    color: var(--bs-red);
}

/* ============================================================
   SUBMENU - Complete Fix (Based on Your HTML)
   ============================================================ */

/* =============================================
   1. SUBMENU BACKGROUND
   ============================================= */
   .submenu-secondary {
    background: #2a9d8f !important;  /* Secondary Color */
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    padding: 8px 0 !important;
    min-width: 220px !important;
    margin-top: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden !important;
    animation: submenuSlide 0.25s ease !important;
}

/* =============================================
   2. SUBMENU ANIMATION
   ============================================= */
@keyframes submenuSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   3. SUBMENU ITEMS
   ============================================= */
   .submenu-secondary .nav-item {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #ffffff !important;
    background: #e63a46;
}
.submenu-secondary .nav-item:last-child {
    border-bottom: none !important;
}

.submenu-secondary .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 20px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: transparent !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    border-left: 3px solid transparent !important;
}

/* =============================================
   4. SUBMENU HOVER
   ============================================= */
.submenu-secondary .nav-link:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    padding-left: 26px !important;
    border-left-color: #ffffff !important;
}

/* =============================================
   5. SUBMENU ICONS
   ============================================= */
.submenu-secondary .nav-link i {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    width: 20px !important;
    text-align: center !important;
    transition: color 0.25s ease !important;
}

.submenu-secondary .nav-link:hover i {
    color: #ffffff !important;
}

/* =============================================
   6. SUBMENU - Parent Indicator
   ============================================= */
.submenu-secondary .nav-link .dropdown-icon {
    font-size: 10px !important;
    margin-left: auto !important;
    color: rgba(255, 255, 255, 0.4) !important;
    transition: transform 0.3s ease !important;
}

.submenu-secondary .nav-link[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg) !important;
}

/* =============================================
   7. SUBMENU - Active State
   ============================================= */
.submenu-secondary .nav-link:active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

/* =============================================
   8. SUBMENU - Focus State
   ============================================= */
.submenu-secondary .nav-link:focus {
    outline: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* =============================================
   9. SUBMENU - Arrow Dropdown (Parent)
   ============================================= */
.nav-menu-custom .dropdown-toggle::after {
    display: none !important;
}

.nav-menu-custom .dropdown-icon {
    font-size: 10px !important;
    transition: transform 0.3s ease !important;
    margin-left: 6px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.nav-menu-custom .dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg) !important;
}

/* =============================================
   10. SUBMENU - SECOND LEVEL (Nested)
   ============================================= */
.submenu-secondary .submenu-secondary {
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    margin: 4px 8px !important;
    padding: 4px 0 !important;
    min-width: 180px !important;
}

.submenu-secondary .submenu-secondary .nav-link {
    padding: 8px 16px 8px 32px !important;
    font-size: 13px !important;
}

.submenu-secondary .submenu-secondary .nav-link:hover {
    padding-left: 38px !important;
}

/* =============================================
   11. MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .submenu-secondary {
        background: rgba(255, 255, 255, 0.06) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: unset !important;
        animation: none !important;
    }
    
    .submenu-secondary .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .submenu-secondary .nav-link {
        padding: 10px 16px 10px 30px !important;
        font-size: 14px !important;
        border-left: none !important;
    }
    
    .submenu-secondary .nav-link:hover {
        padding-left: 30px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-left: none !important;
    }
    
    .submenu-secondary .nav-link i {
        color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .submenu-secondary .submenu-secondary {
        background: rgba(0, 0, 0, 0.08) !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .submenu-secondary .submenu-secondary .nav-link {
        padding: 8px 16px 8px 40px !important;
    }
}

/* =============================================
   12. SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .submenu-secondary .nav-link {
        font-size: 13px !important;
        padding: 8px 14px 8px 26px !important;
    }
    
    .submenu-secondary .submenu-secondary .nav-link {
        padding: 6px 14px 6px 36px !important;
    }
}

/* ============================================================
   LOGO - RESPONSIVE (Alternative)
   ============================================================ */
   .logocompany .navbar-brand img {
    width: 100% !important;
    max-width: 100px !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .logocompany .navbar-brand img {
        max-width: 150px !important;
    }
}

@media (max-width: 480px) {
    .logocompany .navbar-brand img {
        max-width: 120px !important;
    }


    /* ============================================================
   HEADER - PERFECT MARGINS & ALIGNMENT
   ============================================================ */

/* =============================================
   1. TOP BAR
   ============================================= */
.lb-topbar {
    padding: 6px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.lb-topbar .row {
    margin: 0 !important;
    padding: 0 20px !important;
}

.lb-topbar .col-lg-4 {
    padding: 0 !important;
}

.lb-topbar .d-inline-flex {
    gap: 8px !important;
}

.lb-topbar span,
.lb-topbar a {
    font-size: 13px !important;
}

/* =============================================
   2. MAIN HEADER
   ============================================= */
.lb-header-main {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.lb-header-main .row {
    margin: 0 !important;
    padding: 0 20px !important;
    align-items: center !important;
}

/* =============================================
   3. LOGO - Perfect Margin
   ============================================= */
.logocompany {
    padding: 0 !important;
    margin: 0 !important;
}

.logocompany .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

.logocompany .navbar-brand img {
    max-height: 50px !important;
    width: auto !important;
}

.logocompany .navbar-brand .display-5 {
    font-size: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

/* =============================================
   4. SEARCH - Center
   ============================================= */
.lb-search {
    padding: 0 15px !important;
}

.lb-search .d-flex {
    max-width: 500px !important;
    margin: 0 auto !important;
}

.lb-search input {
    height: 44px !important;
    font-size: 14px !important;
    padding: 0 16px !important;
    border-radius: 50px !important;
    border: 1px solid #ddd !important;
}

.lb-search .btn-search {
    height: 44px !important;
    padding: 0 24px !important;
    border-radius: 50px !important;
    background: #e63946 !important;
    color: #fff !important;
    border: none !important;
}

/* =============================================
   5. ACTIONS - Right
   ============================================= */
.lb-actions {
    padding: 0 !important;
    margin: 0 !important;
    gap: 12px !important;
}

.lb-actions .btn-booking {
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: #2a9d8f !important;
    color: #fff !important;
    border: none !important;
}

.lb-actions .btn-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #666 !important;
    background: transparent !important;
}

.lb-actions .btn-icon i {
    font-size: 16px !important;
}

.lb-actions .cart-price {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

/* =============================================
   6. NAVBAR
   ============================================= */
.lb-navbar {
    padding: 0 !important;
    background: #e63946 !important;
}

.lb-navbar .row {
    margin: 0 !important;
    padding: 0 20px !important;
}

.lb-navbar .navbar {
    padding: 0 !important;
    min-height: 50px !important;
}

.lb-navbar .nav-menu-custom {
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lb-navbar .nav-menu-custom .nav-link {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
}

.lb-navbar .nav-menu-custom .nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* =============================================
   7. WHATSAPP BUTTON
   ============================================= */
.lb-navbar .btn-whatsapp {
    padding: 6px 20px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: #25D366 !important;
    color: #fff !important;
    border: none !important;
}

.lb-navbar .btn-whatsapp i {
    font-size: 16px !important;
    margin-right: 6px !important;
}

/* =============================================
   8. SPACING - All Sections
   ============================================= */
.lb-topbar,
.lb-header-main,
.lb-navbar {
    width: 100% !important;
}

.lb-topbar .container-fluid,
.lb-header-main .container-fluid,
.lb-navbar .container-fluid {
    padding: 0 !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
}

/* =============================================
   9. RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .lb-topbar .row {
        padding: 0 12px !important;
    }
    
    .lb-header-main .row {
        padding: 0 12px !important;
    }
    
    .lb-navbar .row {
        padding: 0 12px !important;
    }
    
    .logocompany .navbar-brand img {
        max-height: 40px !important;
    }
    
    .lb-search .d-flex {
        max-width: 100% !important;
    }
    
    .lb-actions .btn-booking {
        font-size: 12px !important;
        padding: 4px 14px !important;
    }
}

/* =============================================
   10. RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .lb-topbar .row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 4px !important;
        padding: 0 10px !important;
    }
    
    .lb-topbar .col-lg-4 {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .lb-header-main .row {
        padding: 0 10px !important;
    }
    
    .logocompany .navbar-brand img {
        max-height: 35px !important;
    }
    
    .logocompany .navbar-brand .display-5 {
        font-size: 20px !important;
    }
    
    .lb-actions .btn-booking {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
    
    .lb-actions .btn-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .lb-actions .cart-price {
        font-size: 12px !important;
    }
    
    .lb-navbar .row {
        padding: 0 10px !important;
    }
    
    .lb-navbar .nav-menu-custom .nav-link {
        font-size: 13px !important;
        padding: 6px 12px !important;
    }
    
    .lb-navbar .btn-whatsapp {
        font-size: 12px !important;
        padding: 4px 14px !important;
    }
}

/* =============================================
   11. RESPONSIVE - SMALL MOBILE
   ============================================= */
@media (max-width: 480px) {
    .lb-topbar span,
    .lb-topbar a {
        font-size: 11px !important;
    }
    
    .logocompany .navbar-brand img {
        max-height: 28px !important;
    }
    
    .logocompany .navbar-brand .display-5 {
        font-size: 17px !important;
    }
    
    .logocompany .navbar-brand .display-5 i {
        font-size: 14px !important;
    }
    
    .lb-actions .btn-booking {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
    
    .lb-actions .btn-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .lb-actions .btn-icon i {
        font-size: 12px !important;
    }
    
    .lb-actions .cart-price {
        font-size: 11px !important;
    }
    
    .lb-navbar .nav-menu-custom .nav-link {
        font-size: 12px !important;
        padding: 4px 10px !important;
    }
    
    .lb-navbar .btn-whatsapp {
        font-size: 11px !important;
        padding: 3px 10px !important;
    }
}
}

.customlogo{
    padding-top: 0.2rem !important;
    padding-bottom:  0.2rem !important;
}

/*slider*/
/* ============================================================
   HERO SECTION - P U R A N A I  C S S (Height Only Reduced)
   ============================================================ */

/* =============================================
   1. HERO CONTAINER - ONLY HEIGHT CHANGED
   ============================================= */
   .hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh !important;  /* ✅ पहिले: 100vh, अब: 70vh */
    max-height: 700px !important;  /* ✅ Maximum Height Limit */
    background: linear-gradient(135deg, #56000d 0%, #3e1616 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
}

/* =============================================
   2. REST ALL - P U R A N A I  J A S T A I
   ============================================= */

/* Background Pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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%C%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.hero-row {
    align-items: center !important;
    min-height: auto !important;
}

/* =============================================
   3. HERO CONTENT - P U R A N A I
   ============================================= */
.hero-content-col {
    padding: 0 40px !important;
}

.hero-content-inner {
    max-width: 600px;
    margin: 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 18px;
    backdrop-filter: blur(10px);
}

.hero-badge-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Title */
.hero-title {
    margin-bottom: 20px;
}

.hero-title-line1 {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-title-line2 {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Description */
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 500px;
}

/* Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 30px;
}

.hero-feature {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature i {
    font-size: 16px;
}

.hero-feature .text-success {
    color: #4caf50 !important;
}

.hero-feature .text-warning {
    color: #ffc107 !important;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-btn-primary {
    background: #e63946 !important;
    border: 2px solid #e63946 !important;
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.hero-btn-primary:hover {
    background: transparent !important;
    color: #e63946 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.hero-btn-secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
    transform: translateY(-3px);
}

/* =============================================
   4. HERO IMAGE - P U R A N A I
   ============================================= */
.hero-image-col {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 550px;
    padding: 20px;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* =============================================
   5. RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto !important;
        max-height: none !important;
        padding: 50px 0;
    }
    
    .hero-content-col {
        padding: 0 30px !important;
    }
    
    .hero-content-inner {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title-line2 {
        font-size: 34px;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto 20px;
        font-size: 16px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image {
        max-height: 350px;
    }
}

/* =============================================
   6. RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .hero-section {
        padding: 35px 0;
    }
    
    .hero-content-col {
        padding: 0 20px !important;
        order: 2 !important;
    }
    
    .hero-image-col {
        order: 1 !important;
        padding: 0 20px !important;
    }
    
    .hero-content-inner {
        text-align: center;
    }
    
    .hero-badge {
        margin-bottom: 15px;
    }
    
    .hero-badge-text {
        font-size: 12px;
    }
    
    .hero-title-line1 {
        font-size: 15px;
    }
    
    .hero-title-line2 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .hero-feature {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .hero-image-wrapper {
        max-width: 300px;
        padding: 10px;
    }
    
    .hero-image {
        max-height: 250px;
    }
    
    .hero-image-wrapper::before {
        display: none;
    }
}

/* =============================================
   7. RESPONSIVE - SMALL MOBILE
   ============================================= */
@media (max-width: 480px) {
    .hero-section {
        padding: 25px 0;
    }
    
    .hero-content-col {
        padding: 0 15px !important;
    }
    
    .hero-title-line2 {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
    
    .hero-image-wrapper {
        max-width: 220px;
    }
    
    .hero-image {
        max-height: 180px;
    }
}


/* ============================================================
   HERO IMAGE - REMOVE BORDER
   ============================================================ */

/* ✅ Remove the decorative border box */
.hero-image-wrapper::before {
    display: none !important;  /* Box Border हटाउने */
}

/* ✅ OR if you want to keep but make it invisible */
.hero-image-wrapper::before {
    border: none !important;
    background: transparent !important;
}

/* ✅ Remove any border from the image itself */
.hero-image {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ✅ Remove padding from wrapper */
.hero-image-wrapper {
    padding: 0 !important;
}

/* ✅ If there's a border on the image container */
.hero-image-col {
    border: none !important;
}

/* ✅ If you want a minimal shadow instead of border */
.hero-image-wrapper {
    position: relative;
    padding: 0 !important;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
    /* No border, no box-shadow */
}

/* popular categoyr */
/* ============================================================
   POPULAR CATEGORIES - COMPLETE CSS
   ============================================================ */

/* =============================================
   1. CONTAINER
   ============================================= */
   .popular-categories-section {
    padding: 40px 0;
}

.popular-categories-section .row.g-0 {
    margin: 0 !important;
}

.popular-categories-section .col-6,
.popular-categories-section .col-md-4,
.popular-categories-section .col-lg-2 {
    padding: 0 !important;
}

/* =============================================
   2. BORDERS
   ============================================= */
.popular-categories-section .border-start,
.popular-categories-section .border-end {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.popular-categories-section .col-lg-2:first-child .border-start {
    border-left: none !important;
}

.popular-categories-section .col-lg-2:last-child .border-end {
    border-right: none !important;
}

/* =============================================
   3. CATEGORY CARD LINK
   ============================================= */
.category-card-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.category-card-link:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* =============================================
   4. PADDING - FIXED
   ============================================= */
.category-card-link .p-4 {
    padding: 30px 15px !important;
}

/* =============================================
   5. ICON WRAPPER
   ============================================= */
.category-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card-link:hover .category-icon-wrapper {
    background: rgba(230, 57, 70, 0.15);
    transform: scale(1.05);
}

/* =============================================
   6. CATEGORY IMAGE
   ============================================= */
.category-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

/* =============================================
   7. DEFAULT IMAGE (No Category Image)
   ============================================= */
.category-icon-wrapper .no-image {
    font-size: 28px;
    color: #e63946;
}

/* =============================================
   8. TEXT STYLES
   ============================================= */
.category-card-link h6 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #333;
    transition: color 0.3s ease;
}

.category-card-link p {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
}

.category-card-link:hover h6 {
    color: #e63946;
}

/* =============================================
   9. RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .popular-categories-section .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    
    .category-card-link .p-4 {
        padding: 25px 15px !important;
    }
    
    .category-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-img {
        width: 35px;
        height: 35px;
    }
}

/* =============================================
   10. RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .popular-categories-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .popular-categories-section {
        padding: 30px 0;
    }
    
    .category-card-link .p-4 {
        padding: 20px 10px !important;
    }
    
    .category-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .category-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .category-card-link h6 {
        font-size: 12px;
    }
    
    .category-card-link p {
        font-size: 11px;
    }
}

/* =============================================
   11. RESPONSIVE - SMALL MOBILE
   ============================================= */
@media (max-width: 480px) {
    .popular-categories-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .category-card-link .p-4 {
        padding: 15px 8px !important;
    }
    
    .category-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .category-icon-img {
        width: 25px;
        height: 25px;
    }
    
    .category-card-link h6 {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    .category-card-link p {
        font-size: 10px;
    }
}

/* =============================================
   12. BORDER FIX FOR RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .popular-categories-section .col-6:nth-child(odd) .border-end {
        border-right: none !important;
    }
    
    .popular-categories-section .col-6:nth-child(2) .border-end {
        border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
    
    .popular-categories-section .col-6:nth-child(odd) .border-start {
        border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
}

@media (max-width: 480px) {
    .popular-categories-section .col-6:nth-child(odd) .border-end {
        border-right: none !important;
    }
    
    .popular-categories-section .col-6:nth-child(2) .border-end {
        border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
}

/* ============================================================
   POPULAR CATEGORIES - PERFECT PADDING & RESPONSIVE
   ============================================================ */

/* =============================================
   1. SECTION CONTAINER
   ============================================= */
   .popular-categories-section {
    padding: 30px 0 !important;  /* ✅ Desktop मा padding कम */
    background: #f9f9f9;
}

/* =============================================
   2. CATEGORY CARD
   ============================================= */
.popular-categories-section .category-card-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: transparent;
}

.popular-categories-section .category-card-link:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* =============================================
   3. CATEGORY CARD PADDING - FIXED
   ============================================= */
.popular-categories-section .category-card-link .p-4 {
    padding: 20px 10px !important;  /* ✅ Desktop padding कम */
}

/* =============================================
   4. ICON WRAPPER
   ============================================= */
.popular-categories-section .category-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.popular-categories-section .category-card-link:hover .category-icon-wrapper {
    background: rgba(230, 57, 70, 0.15);
    transform: scale(1.05);
}

/* =============================================
   5. ICON IMAGE
   ============================================= */
.popular-categories-section .category-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

/* =============================================
   6. TEXT STYLES
   ============================================= */
.popular-categories-section .category-card-link h6 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    color: #333;
    transition: color 0.3s ease;
}

.popular-categories-section .category-card-link p {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
}

.popular-categories-section .category-card-link:hover h6 {
    color: #e63946;
}

/* =============================================
   7. BORDERS
   ============================================= */
.popular-categories-section .border-start,
.popular-categories-section .border-end {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* First item - no left border */
.popular-categories-section .col-lg-2:first-child .border-start {
    border-left: none !important;
}

/* Last item - no right border */
.popular-categories-section .col-lg-2:last-child .border-end {
    border-right: none !important;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 992px) {
    .popular-categories-section {
        padding: 25px 0 !important;
    }
    
    .popular-categories-section .category-card-link .p-4 {
        padding: 18px 10px !important;
    }
    
    .popular-categories-section .category-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .popular-categories-section .category-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .popular-categories-section .category-card-link h6 {
        font-size: 12px;
    }
    
    .popular-categories-section .category-card-link p {
        font-size: 11px;
    }
    
    /* Tablet Border Fix */
    .popular-categories-section .col-md-4:nth-child(3n+1) .border-start {
        border-left: none !important;
    }
    
    .popular-categories-section .col-md-4:nth-child(3n) .border-end {
        border-right: none !important;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .popular-categories-section {
        padding: 20px 0 !important;
    }
    
    .popular-categories-section .category-card-link .p-4 {
        padding: 15px 8px !important;
    }
    
    .popular-categories-section .category-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .popular-categories-section .category-icon-img {
        width: 28px;
        height: 28px;
    }
    
    .popular-categories-section .category-card-link h6 {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
    
    .popular-categories-section .category-card-link p {
        font-size: 10px;
    }
    
    /* Mobile Border Fix - 2 columns */
    .popular-categories-section .col-6:nth-child(odd) .border-start {
        border-left: none !important;
    }
    
    .popular-categories-section .col-6:nth-child(even) .border-end {
        border-right: none !important;
    }
    
    .popular-categories-section .col-6:nth-child(odd) .border-end {
        border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .popular-categories-section {
        padding: 15px 0 !important;
    }
    
    .popular-categories-section .category-card-link .p-4 {
        padding: 12px 6px !important;
    }
    
    .popular-categories-section .category-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .popular-categories-section .category-icon-img {
        width: 24px;
        height: 24px;
    }
    
    .popular-categories-section .category-card-link h6 {
        font-size: 10px;
    }
    
    .popular-categories-section .category-card-link p {
        font-size: 9px;
    }
}

/* ============================================================
   IF WOW.JS IS NOT LOADED - FALLBACK
   ============================================================ */
.popular-categories-section .wow {
    visibility: visible !important;
    animation: none !important;
}


/* ============================================================
   POPULAR CATEGORIES - MOBILE FIRST
   ============================================================ */

/* =============================================
   1. SECTION
   ============================================= */
   .popular-categories-section {
    padding: 20px 0 !important;
    background: #f9f9f9;
    overflow: hidden;
}

/* =============================================
   2. MOBILE - HORIZONTAL SCROLL
   ============================================= */
.categories-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.categories-scroll-container {
    display: flex;
    gap: 12px;
    padding: 8px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Firefox */
}

.categories-scroll-container::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Edge */
}

.category-scroll-item {
    flex: 0 0 auto;
    width: 100px;
    scroll-snap-align: start;
    text-align: center;
}

.category-scroll-item .category-card-link {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}

.category-scroll-item .category-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-scroll-item .category-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-scroll-item h6 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-scroll-item p {
    font-size: 10px;
    color: #999;
    margin: 0;
}

/* =============================================
   3. TABLET & DESKTOP - GRID
   ============================================= */
.categories-grid-wrapper .category-card-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.categories-grid-wrapper .category-card-link:hover {
    background: rgba(0, 0, 0, 0.02);
}

.categories-grid-wrapper .category-card-link .p-3 {
    padding: 18px 8px !important;
}

.categories-grid-wrapper .category-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.categories-grid-wrapper .category-card-link:hover .category-icon-wrapper {
    background: rgba(230, 57, 70, 0.15);
    transform: scale(1.05);
}

.categories-grid-wrapper .category-icon-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.categories-grid-wrapper .category-card-link h6 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    color: #333;
    transition: color 0.3s ease;
}

.categories-grid-wrapper .category-card-link p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.categories-grid-wrapper .category-card-link:hover h6 {
    color: #e63946;
}

/* =============================================
   4. BORDERS
   ============================================= */
.categories-grid-wrapper .border-start,
.categories-grid-wrapper .border-end {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.categories-grid-wrapper .col-lg-2:first-child .border-start {
    border-left: none !important;
}

.categories-grid-wrapper .col-lg-2:last-child .border-end {
    border-right: none !important;
}

/* =============================================
   5. RESPONSIVE - TABLET
   ============================================= */
@media (min-width: 576px) and (max-width: 992px) {
    .categories-grid-wrapper .category-card-link .p-3 {
        padding: 15px 8px !important;
    }
    
    .categories-grid-wrapper .category-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .categories-grid-wrapper .category-icon-img {
        width: 28px;
        height: 28px;
    }
    
    .categories-grid-wrapper .category-card-link h6 {
        font-size: 12px;
    }
    
    .categories-grid-wrapper .category-card-link p {
        font-size: 11px;
    }
    
    /* Tablet Border Fix */
    .categories-grid-wrapper .col-md-3:nth-child(4n+1) .border-start {
        border-left: none !important;
    }
    
    .categories-grid-wrapper .col-md-3:nth-child(4n) .border-end {
        border-right: none !important;
    }
}

/* =============================================
   6. RESPONSIVE - DESKTOP
   ============================================= */
@media (min-width: 993px) {
    .categories-grid-wrapper .category-card-link .p-3 {
        padding: 20px 12px !important;
    }
    
    .categories-grid-wrapper .category-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .categories-grid-wrapper .category-icon-img {
        width: 38px;
        height: 38px;
    }
}

/* =============================================
   7. FALLBACK - IF WOW.JS NOT LOADED
   ============================================= */
.popular-categories-section .wow {
    visibility: visible !important;
    animation: none !important;
}

/* ============================================================
   PROMOTIONAL BANNERS - 2 BANNERS (6+6)
   ============================================================ */

/* =============================================
   1. SECTION
   ============================================= */
   .promo-banners-section {
    padding: 50px 0;
}

/* =============================================
   2. BANNER CARD
   ============================================= */
.promo-banner-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.promo-banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Background Image */
.promo-banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.promo-banner-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* =============================================
   3. BANNER INNER
   ============================================= */
.promo-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.promo-banner-left {
    flex: 1;
}

.promo-banner-right {
    flex: 0 0 100px;
    max-width: 100px;
}

.promo-banner-right img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.promo-banner-card:hover .promo-banner-right img {
    transform: scale(1.08) rotate(-3deg);
}

/* =============================================
   4. BANNER CONTENT
   ============================================= */
.promo-banner-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.promo-banner-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.promo-banner-desc {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* =============================================
   5. BUTTON
   ============================================= */
.promo-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.promo-banner-btn:hover {
    transform: translateX(4px) scale(1.02);
}

.promo-banner-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.promo-banner-btn:hover i {
    transform: translateX(4px);
}

/* =============================================
   6. RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .promo-banners-section {
        padding: 40px 0;
    }
    
    .promo-banner-card {
        min-height: 170px;
        padding: 20px 25px;
    }
    
    .promo-banner-title {
        font-size: 19px;
    }
    
    .promo-banner-right {
        flex: 0 0 80px;
        max-width: 80px;
    }
    
    .promo-banner-right img {
        max-height: 65px;
    }
}

/* =============================================
   7. RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .promo-banners-section {
        padding: 30px 0;
    }
    
    .promo-banner-card {
        min-height: 140px;
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .promo-banner-inner {
        flex-direction: row;
        gap: 15px;
    }
    
    .promo-banner-title {
        font-size: 17px;
    }
    
    .promo-banner-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .promo-banner-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .promo-banner-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .promo-banner-right {
        flex: 0 0 65px;
        max-width: 65px;
    }
    
    .promo-banner-right img {
        max-height: 55px;
    }
    
    .promo-banner-card:hover {
        transform: translateY(-3px);
    }
}

/* =============================================
   8. RESPONSIVE - SMALL MOBILE
   ============================================= */
@media (max-width: 480px) {
    .promo-banners-section {
        padding: 20px 0;
    }
    
    .promo-banner-card {
        min-height: 120px;
        padding: 14px 14px;
        border-radius: 10px;
    }
    
    .promo-banner-title {
        font-size: 15px;
    }
    
    .promo-banner-desc {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .promo-banner-btn {
        padding: 5px 12px;
        font-size: 11px;
        gap: 4px;
    }
    
    .promo-banner-badge {
        font-size: 9px;
        padding: 2px 8px;
        margin-bottom: 4px;
    }
    
    .promo-banner-right {
        flex: 0 0 55px;
        max-width: 55px;
    }
    
    .promo-banner-right img {
        max-height: 45px;
    }
}


/* Add Button - Below Price */
.add-to-cart-btn {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 80px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Product Item Spacing */
.product-item-inner .text-center.p-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item-inner .text-center.p-4 .mt-3 {
    margin-top: 12px !important;
}


/* ============================================================
   TOPBAR STYLES
   ============================================================ */
   .topbar-tagline,
   .topbar-address,
   .topbar-phone,
   .topbar-social,
   .topbar-home {
       transition: opacity 0.3s ease;
   }
   
   .topbar-social:hover,
   .topbar-home:hover {
       opacity: 0.7;
   }
   
   /* ============================================================
      HEADER STYLES
      ============================================================ */
   .customlogo {
       padding: 10px 0;
   }
   
   .site-logo-img {
       max-height: 60px;
       width: auto;
   }
   
   /* Search */
   .header-search {
       overflow: hidden;
       background: #ffffff;
       border-color: #ddd !important;
   }
   
   .header-search-input {
       border: none !important;
       outline: none !important;
       box-shadow: none !important;
       background: transparent;
   }
   
   .header-search-input:focus {
       box-shadow: none !important;
   }
   
   .header-search-btn {
       border-radius: 50px !important;
       border: none !important;
       padding: 12px 30px !important;
       font-size: 16px;
   }
   
   /* Header Actions */
   .header-actions {
       gap: 8px;
   }
   
   /* Booking Button */
   .booking-btn {
       font-size: 14px;
       font-weight: 600;
       transition: all 0.3s ease;
   }
   
   .booking-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 4px 15px rgba(0,0,0,0.15);
       opacity: 0.9;
   }
   
   /* ============================================================
      WISHLIST & CART BUTTONS
      ============================================================ */
   .btn-md-square {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 45px;
       height: 45px;
       transition: all 0.3s ease;
       background: #ffffff;
       border-color: #ddd !important;
       color: #666;
   }
   
   .btn-md-square:hover {
       background: #e63946;
       color: #fff !important;
       border-color: #e63946 !important;
   }
   
   .header-wishlist-btn,
   .header-cart-btn {
       position: relative;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       text-decoration: none;
       color: #666;
   }
   
   .header-wishlist-btn:hover,
   .header-cart-btn:hover {
       text-decoration: none;
       color: #666;
   }
   
   /* Badges */
   .wishlist-badge,
   .cart-badge {
       position: absolute;
       top: -5px;
       right: -5px;
       background: #e63946;
       color: #ffffff;
       font-size: 10px;
       font-weight: 700;
       width: 20px;
       height: 20px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       border: 2px solid #ffffff;
   }
   
   /* ============================================================
      CART DROPDOWN
      ============================================================ */
   .cart-dropdown-wrapper {
       position: relative;
   }
   
   .cart-dropdown {
       position: absolute;
       top: calc(100% + 10px);
       right: 0;
       width: 380px;
       max-height: 500px;
       background: #ffffff;
       border-radius: 12px;
       box-shadow: 0 10px 50px rgba(0,0,0,0.15);
       opacity: 0;
       visibility: hidden;
       transform: translateY(10px);
       transition: all 0.3s ease;
       z-index: 9999;
       overflow: hidden;
       border: 1px solid #eee;
   }
   
   .cart-dropdown-wrapper:hover .cart-dropdown {
       opacity: 1;
       visibility: visible;
       transform: translateY(0);
   }
   
   /* Dropdown Header */
   .cart-dropdown-header {
       padding: 15px 20px;
       border-bottom: 1px solid #eee;
       background: #f8f9fa;
   }
   
   .cart-dropdown-header h6 {
       margin: 0;
       font-weight: 600;
       color: #333;
   }
   
   .cart-dropdown-header h6 span {
       color: #e63946;
   }
   
   /* Dropdown Items */
   .cart-dropdown-items {
       max-height: 280px;
       overflow-y: auto;
       padding: 5px 0;
   }
   
   .cart-dropdown-items::-webkit-scrollbar {
       width: 4px;
   }
   
   .cart-dropdown-items::-webkit-scrollbar-track {
       background: #f1f1f1;
   }
   
   .cart-dropdown-items::-webkit-scrollbar-thumb {
       background: #e63946;
       border-radius: 4px;
   }
   
   .cart-dropdown-item {
       display: flex;
       align-items: center;
       padding: 10px 20px;
       transition: background 0.2s ease;
       position: relative;
       border-bottom: 1px solid #f5f5f5;
   }
   
   .cart-dropdown-item:last-child {
       border-bottom: none;
   }
   
   .cart-dropdown-item:hover {
       background: #f8f9fa;
   }
   
   .cart-dropdown-item img {
       width: 50px;
       height: 50px;
       object-fit: cover;
       border-radius: 8px;
       margin-right: 12px;
       flex-shrink: 0;
   }
   
   .cart-dropdown-item-details {
       flex: 1;
       min-width: 0;
   }
   
   .cart-dropdown-item-details .item-name {
       display: block;
       font-size: 14px;
       font-weight: 500;
       color: #333;
       white-space: nowrap;
       overflow: hidden;
       text-overflow: ellipsis;
   }
   
   .cart-dropdown-item-details .item-qty {
       display: block;
       font-size: 12px;
       color: #999;
   }
   
   .cart-dropdown-item-details .item-price {
       display: block;
       font-size: 14px;
       font-weight: 600;
       color: #e63946;
   }
   
   .cart-dropdown-item .remove-item {
       color: #ccc;
       transition: color 0.2s ease;
       padding: 5px;
       margin-left: 10px;
       font-size: 12px;
   }
   
   .cart-dropdown-item .remove-item:hover {
       color: #e63946;
   }
   
   /* Dropdown Footer */
   .cart-dropdown-footer {
       padding: 15px 20px;
       border-top: 1px solid #eee;
       background: #f8f9fa;
   }
   
   .cart-dropdown-footer .cart-total {
       display: flex;
       justify-content: space-between;
       margin-bottom: 12px;
       font-size: 16px;
   }
   
   .cart-dropdown-footer .cart-total strong {
       color: #e63946;
       font-size: 18px;
   }
   
   .cart-dropdown-footer .cart-actions {
       display: flex;
       gap: 10px;
   }
   
   .cart-dropdown-footer .cart-actions .btn {
       flex: 1;
       font-size: 13px;
       font-weight: 600;
       padding: 8px 12px;
       border-radius: 50px;
   }
   
   .cart-dropdown-footer .cart-actions .view-cart-btn {
       border-color: #e63946;
       color: #e63946;
       background: transparent;
   }
   
   .cart-dropdown-footer .cart-actions .view-cart-btn:hover {
       background: #e63946;
       color: #fff;
   }
   
   .cart-dropdown-footer .cart-actions .checkout-btn {
       background: #e63946;
       border-color: #e63946;
       color: #fff;
   }
   
   .cart-dropdown-footer .cart-actions .checkout-btn:hover {
       background: #c62836;
       border-color: #c62836;
   }
   
   /* Empty Cart */
   .cart-dropdown-empty {
       padding: 40px 20px;
       text-align: center;
   }
   
   .cart-dropdown-empty i {
       color: #ddd;
       margin-bottom: 15px;
   }
   
   .cart-dropdown-empty p {
       color: #999;
       margin-bottom: 15px;
   }
   
   .cart-dropdown-empty .btn {
       border-radius: 50px;
       padding: 8px 25px;
   }
   
   /* ============================================================
      NAVBAR STYLES
      ============================================================ */
   .customnavbar {
       position: sticky;
       top: 0;
       z-index: 999;
   }
   
   .navbar {
       padding: 0 0;
   }
   
   .nav-menu-custom .nav-link {
       color: rgba(255,255,255,0.8) !important;
       font-weight: 500;
       padding: 15px 18px !important;
       transition: all 0.3s ease;
       font-size: 15px;
   }
   
   .nav-menu-custom .nav-link:hover,
   .nav-menu-custom .nav-link.active {
       color: #ffffff !important;
       background: rgba(255,255,255,0.1);
   }
   
   .nav-menu-custom .dropdown-menu {
       border-radius: 8px;
       border: none;
       box-shadow: 0 10px 30px rgba(0,0,0,0.1);
       padding: 8px 0;
   }
   
   .nav-menu-custom .dropdown-item {
       padding: 8px 20px;
       font-size: 14px;
       transition: all 0.2s ease;
   }
   
   .nav-menu-custom .dropdown-item:hover {
       background: #e63946;
       color: #fff;
   }
   
   /* WhatsApp Nav Button */
   .whatsapp-nav-btn {
       font-size: 14px;
       transition: all 0.3s ease;
   }
   
   .whatsapp-nav-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 4px 15px rgba(0,0,0,0.2);
       opacity: 0.9;
       color: #fff !important;
   }
   
   /* ============================================================
      RESPONSIVE
      ============================================================ */
   @media (max-width: 992px) {
       .cart-dropdown {
           width: 320px;
           right: -50px;
       }
   }
   
   @media (max-width: 576px) {
       .cart-dropdown {
           width: 300px;
           right: -80px;
       }
       
       .cart-dropdown-item img {
           width: 40px;
           height: 40px;
       }
       
       .cart-dropdown-item-details .item-name {
           font-size: 12px;
       }
       
       .cart-dropdown-item-details .item-price {
           font-size: 12px;
       }
   }


   /* ============================================================
   MOBILE FOOTER NAVIGATION
   ============================================================ */
.mobile-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
    display: none;
}

.mobile-footer-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    padding: 4px 12px;
    min-width: 50px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
    text-decoration: none;
    color: #e63946;
}

.mobile-nav-item.active {
    color: #e63946;
}

.mobile-nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-nav-icon i {
    transition: all 0.3s ease;
}

.mobile-nav-item.active .mobile-nav-icon i {
    transform: scale(1.05);
}

.mobile-nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #e63946;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    padding: 0 4px;
}

.mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.3px;
    color: inherit;
}

/* Active State with Indicator */
.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #e63946;
    border-radius: 0 0 4px 4px;
}

/* ============================================================
   RESPONSIVE - Show only on mobile
   ============================================================ */
@media (max-width: 991px) {
    .mobile-footer-nav {
        display: block !important;
    }
    body {
        padding-bottom: 70px !important;
    }
}

@media (min-width: 992px) {
    .mobile-footer-nav {
        display: none !important;
    }
}

/* ============================================================
   ANIMATION
   ============================================================ */
.mobile-nav-item {
    animation: mobileNavFade 0.3s ease forwards;
    opacity: 0;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes mobileNavFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   DARK MODE SUPPORT (Optional)
   ============================================================ */
@media (prefers-color-scheme: dark) {
    .mobile-footer-nav {
        background: #1a1a1a;
        border-top-color: #333;
    }
    
    .mobile-nav-item {
        color: #888;
    }
    
    .mobile-nav-item:hover,
    .mobile-nav-item:focus,
    .mobile-nav-item.active {
        color: #e63946;
    }
}


.topbar {
    padding: 2px 10px 2px 20px;
    background: #212121 !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #212121 !important;
}

.site-logo-img {
    max-height: 110px;
    width: auto;
}
/*woocommerce */
/* ============================================================
   SHOP PAGE - COMPLETE CSS
   ============================================================ */

/* ============================================
   1. GRID - 4 COLUMNS WITH GAP
   ============================================ */

   .products,
   .woocommerce ul.products {
       display: flex !important;
       flex-wrap: wrap !important;
       margin: 0 -12px !important;
       padding: 0 !important;
       list-style: none !important;
   }
   
   .products .product,
   .woocommerce ul.products li.product {
       flex: 0 0 25% !important;
       max-width: 25% !important;
       padding: 0 12px 24px 12px !important;
       margin: 0 !important;
       float: none !important;
       clear: none !important;
       width: 100% !important;
   }
   
   /* ============================================
      2. PRODUCT CARD
      ============================================ */
   
   .product-card {
       height: 100%;
       margin: 0 !important;
   }
   
   .product-card-inner {
       background: #ffffff;
       border-radius: 12px;
       overflow: hidden;
       transition: all 0.4s ease;
       box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
       height: 100%;
       border: 1px solid #f0f0f0;
       display: flex;
       flex-direction: column;
       width: 100%;
   }
   
   .product-card-inner:hover {
       transform: translateY(-8px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
   }
   
   /* ============================================
      3. PRODUCT IMAGE
      ============================================ */
   
   .product-card-image {
       position: relative;
       overflow: hidden;
       background: #f8f9fa;
       flex-shrink: 0;
   }
   
   .product-card-image img {
       width: 100%;
       height: 220px;
       object-fit: cover;
       transition: transform 0.5s ease;
   }
   
   .product-card-inner:hover .product-card-image img {
       transform: scale(1.06);
   }
   
   /* ============================================
      4. BADGE - SALE
      ============================================ */
   
   .badge-sale {
       position: absolute;
       top: 12px;
       left: 12px;
       padding: 4px 14px;
       background: #e74c3c;
       color: #ffffff;
       border-radius: 20px;
       font-size: 11px;
       font-weight: 600;
       text-transform: uppercase;
       z-index: 2;
   }
   
   /* ============================================
      5. PRODUCT ACTIONS (Eye + Wishlist)
      ============================================ */
   
   .product-card-actions {
       position: absolute;
       top: 12px;
       right: 12px;
       display: flex;
       flex-direction: column;
       gap: 8px;
       opacity: 0;
       transform: translateX(10px);
       transition: all 0.3s ease;
       z-index: 10;
   }
   
   .product-card-inner:hover .product-card-actions {
       opacity: 1;
       transform: translateX(0);
   }
   
   /* Quick View Button */
   .product-card-actions .action-btn {
       display: flex !important;
       align-items: center !important;
       justify-content: center !important;
       width: 36px !important;
       height: 36px !important;
       background: #ffffff !important;
       border-radius: 50% !important;
       color: #555 !important;
       font-size: 14px !important;
       box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1) !important;
       transition: all 0.3s ease !important;
       text-decoration: none !important;
   }
   
   .product-card-actions .action-btn:hover {
       background: #f28b00 !important;
       color: #ffffff !important;
       transform: scale(1.1) !important;
   }
   
   .product-card-actions .action-btn:hover i {
       color: #ffffff !important;
   }
   
   /* ============================================
      6. WISHLIST - ICON ONLY
      ============================================ */
   
   .product-card-actions .wishlist-btn {
       display: flex !important;
       align-items: center !important;
       justify-content: center !important;
       width: 36px !important;
       height: 36px !important;
       background: #ffffff !important;
       border-radius: 50% !important;
       color: #555 !important;
       font-size: 14px !important;
       box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1) !important;
       transition: all 0.3s ease !important;
       text-decoration: none !important;
   }
   
   .product-card-actions .wishlist-btn i {
       color: #555 !important;
   }
   
   .product-card-actions .wishlist-btn:hover {
       background: #f28b00 !important;
       color: #ffffff !important;
       transform: scale(1.1) !important;
   }
   
   .product-card-actions .wishlist-btn:hover i {
       color: #ffffff !important;
   }
   
   /* Wishlist - Active/Added State */
   .product-card-actions .wishlist-btn.active {
       background: #f28b00 !important;
       color: #ffffff !important;
   }
   
   .product-card-actions .wishlist-btn.active i {
       color: #ffffff !important;
   }
   
   /* ============================================
      7. PRODUCT CONTENT
      ============================================ */
   
   .product-card-content {
       padding: 16px 16px 20px 16px;
       text-align: center;
       flex: 1;
       display: flex;
       flex-direction: column;
   }
   
   .product-category {
       display: inline-block;
       font-size: 11px;
       color: #999;
       text-transform: uppercase;
       letter-spacing: 0.5px;
       font-weight: 500;
       margin-bottom: 4px;
   }
   
   .product-title {
       display: block;
       font-size: 15px;
       font-weight: 700;
       color: #1a1a1a;
       margin: 4px 0 6px 0;
       line-height: 1.3;
       text-decoration: none;
       transition: color 0.3s ease;
   }
   
   .product-title:hover {
       color: #f28b00;
   }
   
   .product-card-content .price {
       display: block;
       font-size: 18px;
       font-weight: 700;
       color: #1a1a1a;
       margin: 0 0 12px 0;
   }
   
   .product-card-content .price .amount {
       font-size: 18px;
       font-weight: 700;
       color: #1a1a1a;
   }
   
   .product-card-content .price del {
       font-size: 14px;
       color: #bbb;
       font-weight: 400;
       margin-right: 8px;
   }
   
   .product-card-content .price ins {
       text-decoration: none;
       color: #e74c3c;
   }
   
   /* ============================================
      8. ADD TO CART BUTTON
      ============================================ */
   
   .btn-add-cart {
       display: inline-flex !important;
       align-items: center !important;
       justify-content: center !important;
       background: #f28b00 !important;
       color: #ffffff !important;
       font-size: 12px !important;
       font-weight: 700 !important;
       padding: 10px 20px !important;
       border-radius: 30px !important;
       border: none !important;
       text-decoration: none !important;
       text-transform: uppercase !important;
       letter-spacing: 0.5px !important;
       transition: all 0.3s ease !important;
       width: 100% !important;
       margin-top: auto !important;
       cursor: pointer !important;
   }
   
   .btn-add-cart:hover {
       background: #d97a00 !important;
       transform: scale(1.02) !important;
       box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
       color: #ffffff !important;
   }
   
   .btn-out-of-stock {
       display: inline-flex !important;
       align-items: center !important;
       justify-content: center !important;
       background: #e8e8e8 !important;
       color: #999 !important;
       font-size: 12px !important;
       font-weight: 700 !important;
       padding: 10px 20px !important;
       border-radius: 30px !important;
       width: 100% !important;
       margin-top: auto !important;
       cursor: not-allowed !important;
   }
   
   /* ============================================
      9. CATEGORY FILTERS
      ============================================ */
   
   .category-filters {
       display: flex !important;
       flex-wrap: wrap !important;
       justify-content: center !important;
       gap: 10px !important;
       margin-bottom: 20px !important;
   }
   
   .category-filter-btn {
       display: inline-flex !important;
       align-items: center !important;
       padding: 8px 24px !important;
       background: #f8f8f8 !important;
       border: 2px solid #e8e8e8 !important;
       border-radius: 30px !important;
       color: #555 !important;
       font-size: 14px !important;
       font-weight: 600 !important;
       text-decoration: none !important;
       transition: all 0.3s ease !important;
   }
   
   .category-filter-btn:hover,
   .category-filter-btn.active {
       background: #f28b00 !important;
       border-color: #f28b00 !important;
       color: #ffffff !important;
   }
   
   /* ============================================
      10. TOOLBAR - SORT BOX
      ============================================ */
   
   .woocommerce-ordering {
       margin: 0 !important;
       float: none !important;
   }
   
   .woocommerce-ordering select {
       padding: 10px 35px 10px 18px !important;
       background: #f8f8f8 !important;
       border: 2px solid #e8e8e8 !important;
       border-radius: 10px !important;
       font-size: 14px !important;
       font-weight: 500 !important;
       color: #333 !important;
       cursor: pointer !important;
       outline: none !important;
       appearance: none !important;
       -webkit-appearance: none !important;
       -moz-appearance: none !important;
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
       background-repeat: no-repeat !important;
       background-position: right 15px center !important;
       background-size: 12px !important;
       min-width: 200px !important;
       transition: all 0.3s ease !important;
   }
   
   .woocommerce-ordering select:hover {
       border-color: #f28b00 !important;
   }
   
   .woocommerce-ordering select:focus {
       border-color: #f28b00 !important;
       box-shadow: 0 0 0 3px rgba(242, 139, 0, 0.1) !important;
   }
   
   .woocommerce-result-count {
       margin: 0 !important;
       padding: 10px 0 !important;
       font-size: 14px !important;
       color: #888 !important;
       float: none !important;
   }
   
   /* ============================================
      11. PAGINATION - CENTER
      ============================================ */
   
   .woocommerce-pagination {
       text-align: center !important;
       margin-top: 30px !important;
   }
   
   .woocommerce-pagination ul {
       display: flex !important;
       justify-content: center !important;
       gap: 6px !important;
       border: none !important;
       padding: 0 !important;
       margin: 0 !important;
       list-style: none !important;
   }
   
   .woocommerce-pagination ul li {
       border: none !important;
       display: inline-block !important;
       float: none !important;
       margin: 0 !important;
   }
   
   .woocommerce-pagination ul li a,
   .woocommerce-pagination ul li span {
       display: inline-flex !important;
       align-items: center !important;
       justify-content: center !important;
       min-width: 40px !important;
       height: 40px !important;
       padding: 0 14px !important;
       border-radius: 50% !important;
       background: #f8f8f8 !important;
       color: #555 !important;
       font-size: 14px !important;
       font-weight: 500 !important;
       transition: all 0.3s ease !important;
       border: 2px solid transparent !important;
   }
   
   .woocommerce-pagination ul li a:hover {
       background: #f28b00 !important;
       color: #ffffff !important;
       border-color: #f28b00 !important;
   }
   
   .woocommerce-pagination ul li span.current {
       background: #f28b00 !important;
       color: #ffffff !important;
       border-color: #f28b00 !important;
   }
   
   .woocommerce-pagination ul li span.dots {
       background: transparent !important;
       border: none !important;
       color: #bbb !important;
   }
   
   /* ============================================
      12. SHOP BANNER
      ============================================ */
   
   .page-header {
       background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
   }
   
   .page-header h1 {
       text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
   }
   
   .page-header .breadcrumb-item a:hover {
       color: #f28b00 !important;
   }
   
   /* ============================================
      13. RESPONSIVE
      ============================================ */
   
   @media (min-width: 1200px) {
       .products .product,
       .woocommerce ul.products li.product {
           flex: 0 0 25% !important;
           max-width: 25% !important;
           padding: 0 12px 24px 12px !important;
       }
   }
   
   @media (max-width: 1199px) and (min-width: 992px) {
       .products .product,
       .woocommerce ul.products li.product {
           flex: 0 0 33.333% !important;
           max-width: 33.333% !important;
           padding: 0 12px 24px 12px !important;
       }
   }
   
   @media (max-width: 991px) and (min-width: 576px) {
       .products .product,
       .woocommerce ul.products li.product {
           flex: 0 0 50% !important;
           max-width: 50% !important;
           padding: 0 12px 20px 12px !important;
       }
       .product-card-image img {
           height: 200px !important;
       }
   }
   
   @media (max-width: 575px) {
       .products .product,
       .woocommerce ul.products li.product {
           flex: 0 0 100% !important;
           max-width: 100% !important;
           padding: 0 10px 16px 10px !important;
       }
       .product-card-image img {
           height: 180px !important;
       }
       .product-card-content {
           padding: 14px 14px 16px 14px !important;
       }
       .woocommerce-ordering select {
           min-width: 100% !important;
           width: 100% !important;
           font-size: 13px !important;
           padding: 8px 30px 8px 14px !important;
       }
   }
   
   /* ============================================
      14. WOOCOMMERCE OVERRIDES
      ============================================ */
   
   .woocommerce ul.products {
       margin: 0 !important;
       padding: 0 !important;
   }
   
   .woocommerce ul.products li.product {
       margin: 0 !important;
       padding: 0 12px 24px 12px !important;
       float: none !important;
       clear: none !important;
       width: 100% !important;
   }
   
   .woocommerce ul.products li.product .star-rating,
   .woocommerce ul.products li.product .onsale,
   .woocommerce ul.products li.product .button {
       display: none !important;
   }
   
   /* Remove Sidebar */
   .lb-shop-sidebar {
       display: none !important;
   }
   
   .lb-shop-main {
       width: 100% !important;
       max-width: 100% !important;
       flex: 0 0 100% !important;
   }


   /* ============================================
   ADD TO CART - CUSTOM COLOR
   ============================================ */

/* Default Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    border: none !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: auto !important;
    cursor: pointer !important;
}

/* Hover */
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
    color: #ffffff !important;
}

/* Loading State */
.woocommerce ul.products li.product .button.loading,
.woocommerce ul.products li.product .add_to_cart_button.loading {
    opacity: 0.7 !important;
    cursor: wait !important;
    background: #d97a00 !important;
}

/* Added State */
.woocommerce ul.products li.product .button.added,
.woocommerce ul.products li.product .add_to_cart_button.added {
    background: #2ecc71 !important;
}
.yith-wcwl-add-to-wishlist-button__label{
    display: none !important;
}



/* whocommerce single page */
/* ============================================================
   SINGLE PRODUCT PAGE - ONLY
   ============================================================ */

/* ============================================
   1. PRODUCT IMAGE
   ============================================ */

   .woocommerce.single-product div.product .images {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
}

.woocommerce.single-product div.product .images img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Thumbnails */
.woocommerce.single-product div.product .flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product .flex-control-thumbs li {
    width: 80px !important;
    flex: 0 0 80px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.woocommerce.single-product div.product .flex-control-thumbs li:hover {
    border-color: #f28b00 !important;
}

.woocommerce.single-product div.product .flex-control-thumbs li img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
}

/* ============================================
   2. PRODUCT TITLE
   ============================================ */

.woocommerce.single-product div.product .product_title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
}

/* ============================================
   3. PRICE
   ============================================ */

.woocommerce.single-product div.product .price {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #f28b00 !important;
    margin-bottom: 15px !important;
}

.woocommerce.single-product div.product .price del {
    color: #bbb !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-right: 10px !important;
}

.woocommerce.single-product div.product .price ins {
    text-decoration: none !important;
    color: #f28b00 !important;
}

/* ============================================
   4. RATING
   ============================================ */

.woocommerce.single-product div.product .woocommerce-product-rating {
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce.single-product div.product .woocommerce-product-rating .star-rating {
    float: none !important;
    margin: 0 !important;
}

.woocommerce.single-product div.product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 14px !important;
    color: #888 !important;
    text-decoration: none !important;
}

.woocommerce.single-product div.product .woocommerce-product-rating .woocommerce-review-link:hover {
    color: #f28b00 !important;
}

/* ============================================
   5. SHORT DESCRIPTION
   ============================================ */

.woocommerce.single-product div.product .woocommerce-product-details__short-description {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

/* ============================================
   6. ADD TO CART
   ============================================ */

/* Quantity Input */
.woocommerce.single-product div.product form.cart .quantity {
    margin-right: 10px !important;
}

.woocommerce.single-product div.product form.cart .quantity input {
    width: 60px !important;
    height: 45px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 16px !important;
    color: #333 !important;
}

.woocommerce.single-product div.product form.cart .quantity input:focus {
    border-color: #f28b00 !important;
    outline: none !important;
}

/* Add to Cart Button */
.woocommerce.single-product div.product form.cart .single_add_to_cart_button {
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 35px !important;
    border-radius: 30px !important;
    border: none !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ============================================
   7. PRODUCT META
   ============================================ */

.woocommerce.single-product div.product .product_meta {
    font-size: 13px !important;
    color: #888 !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #f0f0f0 !important;
}

.woocommerce.single-product div.product .product_meta > span {
    display: block !important;
    margin-bottom: 5px !important;
}

.woocommerce.single-product div.product .product_meta .sku_wrapper {
    display: none !important;
}

.woocommerce.single-product div.product .product_meta .posted_in a,
.woocommerce.single-product div.product .product_meta .tagged_as a {
    color: #888 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.woocommerce.single-product div.product .product_meta .posted_in a:hover,
.woocommerce.single-product div.product .product_meta .tagged_as a:hover {
    color: #f28b00 !important;
}

/* ============================================
   8. TABS
   ============================================ */

.woocommerce.single-product div.product .woocommerce-tabs {
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-top: 40px !important;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs::before,
.woocommerce.single-product div.product .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    padding: 12px 25px !important;
    margin: 0 !important;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border-bottom: 3px solid #f28b00 !important;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li a {
    color: #555 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

.woocommerce.single-product div.product .woocommerce-tabs ul.tabs li.active a {
    color: #f28b00 !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel {
    padding: 25px !important;
    background: #ffffff !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 15px !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel p {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.6 !important;
}

/* Reviews */
.woocommerce.single-product div.product .woocommerce-tabs .panel .comment-reply-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .comment-form-rating label {
    display: block !important;
    margin-bottom: 5px !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .comment-form-rating .stars {
    margin: 0 !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .comment-form-comment label {
    display: block !important;
    margin-bottom: 5px !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .comment-form-comment textarea {
    width: 100% !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 12px !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .comment-form-comment textarea:focus {
    border-color: #f28b00 !important;
    outline: none !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .form-submit input {
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 10px 30px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.woocommerce.single-product div.product .woocommerce-tabs .panel .form-submit input:hover {
    background: #d97a00 !important;
}

/* ============================================
   9. STOCK BADGE
   ============================================ */

.woocommerce.single-product div.product .stock {
    display: inline-block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 4px 15px !important;
    border-radius: 20px !important;
    margin-bottom: 15px !important;
}

.woocommerce.single-product div.product .stock.in-stock {
    background: #d4edda !important;
    color: #155724 !important;
}

.woocommerce.single-product div.product .stock.out-of-stock {
    background: #f8d7da !important;
    color: #721c24 !important;
}

/* ============================================
   10. WISHLIST (YITH)
   ============================================ */

.woocommerce.single-product div.product .yith-wcwl-add-to-wishlist {
    margin-top: 15px !important;
}

.woocommerce.single-product div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f8f8f8 !important;
    color: #555 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.woocommerce.single-product div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover {
    background: #f28b00 !important;
    color: #ffffff !important;
}

.woocommerce.single-product div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
    margin: 0 !important;
}

.woocommerce.single-product div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.added {
    background: #2ecc71 !important;
    color: #ffffff !important;
}

/* ============================================
   11. RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .woocommerce.single-product div.product .product_title {
        font-size: 24px !important;
    }
    
    .woocommerce.single-product div.product .price {
        font-size: 20px !important;
    }
    
    .woocommerce.single-product div.product .woocommerce-tabs ul.tabs li {
        padding: 10px 15px !important;
    }
    
    .woocommerce.single-product div.product .woocommerce-tabs ul.tabs li a {
        font-size: 13px !important;
    }
}

@media (max-width: 575px) {
    .woocommerce.single-product div.product .product_title {
        font-size: 20px !important;
    }
    
    .woocommerce.single-product div.product .price {
        font-size: 18px !important;
    }
    
    .woocommerce.single-product div.product form.cart .quantity input {
        width: 50px !important;
        height: 40px !important;
    }
    
    .woocommerce.single-product div.product form.cart .single_add_to_cart_button {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
    
    .woocommerce.single-product div.product .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
    }
    
    .woocommerce.single-product div.product .woocommerce-tabs ul.tabs li {
        padding: 8px 15px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .woocommerce.single-product div.product .woocommerce-tabs ul.tabs li.active {
        border-bottom: none !important;
        background: #f28b00 !important;
    }
    
    .woocommerce.single-product div.product .woocommerce-tabs ul.tabs li.active a {
        color: #ffffff !important;
    }
}


/* ============================================================
   SINGLE PRODUCT PAGE - COMPLETE
   ============================================================ */

/* ============================================
   1. PRODUCT IMAGE
   ============================================ */

   .single-product-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.single-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Thumbnails */
.single-product-image .flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
    padding: 0 !important;
}

.single-product-image .flex-control-thumbs li {
    width: 80px !important;
    flex: 0 0 80px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.single-product-image .flex-control-thumbs li:hover {
    border-color: #f28b00 !important;
}

.single-product-image .flex-control-thumbs li img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
}

/* ============================================
   2. PRODUCT DETAILS
   ============================================ */

.single-product-details {
    padding: 0;
}

.single-product-category {
    display: inline-block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 8px;
}

.single-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.single-product-price {
    font-size: 24px;
    font-weight: 700;
    color: #f28b00;
    margin-bottom: 15px;
}

.single-product-price del {
    color: #bbb;
    font-size: 18px;
    font-weight: 400;
    margin-right: 10px;
}

.single-product-price ins {
    text-decoration: none;
    color: #f28b00;
}

/* Rating */
.single-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.single-product-rating .star-rating {
    float: none !important;
}

.single-product-rating .rating-count {
    font-size: 14px;
    color: #888;
}

/* Short Description */
.single-product-short-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ============================================
   3. ADD TO CART
   ============================================ */

.single-product-add-to-cart .quantity {
    margin-right: 10px;
}

.single-product-add-to-cart .quantity input {
    width: 60px;
    height: 45px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.single-product-add-to-cart .quantity input:focus {
    border-color: #f28b00;
    outline: none;
}

.single-product-add-to-cart .single_add_to_cart_button {
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 35px !important;
    border-radius: 30px !important;
    border: none !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.single-product-add-to-cart .single_add_to_cart_button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
}

/* ============================================
   4. PRODUCT META
   ============================================ */

.single-product-meta {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.single-product-meta span {
    display: block;
    margin-bottom: 5px;
}

.single-product-meta .sku_wrapper {
    display: none;
}

.single-product-meta a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-product-meta a:hover {
    color: #f28b00;
}

/* ============================================
   5. WISHLIST
   ============================================ */

.single-product-wishlist .yith-wcwl-add-to-wishlist {
    display: inline-block !important;
}

.single-product-wishlist .yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f8f8f8 !important;
    color: #555 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.single-product-wishlist .yith-wcwl-add-button a:hover {
    background: #f28b00 !important;
    color: #ffffff !important;
}

.single-product-wishlist .yith-wcwl-add-button a.added {
    background: #2ecc71 !important;
    color: #ffffff !important;
}

/* ============================================
   6. TABS
   ============================================ */

.single-product-tabs .woocommerce-tabs {
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-top: 40px !important;
}

.single-product-tabs .woocommerce-tabs ul.tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.single-product-tabs .woocommerce-tabs ul.tabs::before,
.single-product-tabs .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.single-product-tabs .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    padding: 12px 25px !important;
    margin: 0 !important;
}

.single-product-tabs .woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border-bottom: 3px solid #f28b00 !important;
}

.single-product-tabs .woocommerce-tabs ul.tabs li a {
    color: #555 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

.single-product-tabs .woocommerce-tabs ul.tabs li.active a {
    color: #f28b00 !important;
}

.single-product-tabs .woocommerce-tabs .panel {
    padding: 25px !important;
    background: #ffffff !important;
}

.single-product-tabs .woocommerce-tabs .panel h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 15px !important;
}

.single-product-tabs .woocommerce-tabs .panel p {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.6 !important;
}

/* ============================================
   7. RELATED PRODUCTS
   ============================================ */

.related.products {
    margin-top: 50px !important;
}

.related.products > h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

.related.products ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -12px !important;
}

.related.products ul.products li.product {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding: 0 12px 24px 12px !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
}

/* Related Products - Product Card */
.related.products ul.products li.product .product-card {
    height: 100% !important;
}

.related.products ul.products li.product .product-card-inner {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06) !important;
    height: 100% !important;
    border: 1px solid #f0f0f0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.related.products ul.products li.product .product-card-inner:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

.related.products ul.products li.product .product-card-image {
    position: relative !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    flex-shrink: 0 !important;
}

.related.products ul.products li.product .product-card-image img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.related.products ul.products li.product .product-card-inner:hover .product-card-image img {
    transform: scale(1.06) !important;
}

.related.products ul.products li.product .product-card-content {
    padding: 16px 16px 20px 16px !important;
    text-align: center !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.related.products ul.products li.product .product-category {
    display: inline-block !important;
    font-size: 11px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
}

.related.products ul.products li.product .product-title {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 4px 0 6px 0 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.related.products ul.products li.product .product-title:hover {
    color: #f28b00 !important;
}

.related.products ul.products li.product .price {
    display: block !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 12px 0 !important;
}

.related.products ul.products li.product .add_to_cart_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    border: none !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: auto !important;
}

.related.products ul.products li.product .add_to_cart_button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
}

/* Hide WooCommerce default elements in related products */
.related.products ul.products li.product .star-rating {
    display: none !important;
}

.related.products ul.products li.product .onsale {
    display: none !important;
}

/* ============================================
   8. RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .single-product-title {
        font-size: 24px !important;
    }
    
    .single-product-price {
        font-size: 20px !important;
    }
    
    .single-product-details {
        padding-top: 20px !important;
    }
    
    .related.products ul.products li.product {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .single-product-tabs .woocommerce-tabs ul.tabs li {
        padding: 10px 15px !important;
    }
    
    .single-product-tabs .woocommerce-tabs ul.tabs li a {
        font-size: 13px !important;
    }
}

@media (max-width: 575px) {
    .single-product-title {
        font-size: 20px !important;
    }
    
    .single-product-price {
        font-size: 18px !important;
    }
    
    .single-product-add-to-cart .quantity input {
        width: 50px !important;
        height: 40px !important;
    }
    
    .single-product-add-to-cart .single_add_to_cart_button {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
    
    .single-product-tabs .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
    }
    
    .single-product-tabs .woocommerce-tabs ul.tabs li {
        padding: 8px 15px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .single-product-tabs .woocommerce-tabs ul.tabs li.active {
        border-bottom: none !important;
        background: #f28b00 !important;
    }
    
    .single-product-tabs .woocommerce-tabs ul.tabs li.active a {
        color: #ffffff !important;
    }
    
    .related.products ul.products li.product {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .related.products ul.products li.product .product-card-image img {
        height: 200px !important;
    }
}


/* singlie product * /
/* ============================================================
   SINGLE PRODUCT PAGE - ONLY CSS
   ============================================================ */

/* ============================================
   1. PRODUCT IMAGE
   ============================================ */

   body.single-product .woocommerce div.product .images {
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06) !important;
}

body.single-product .woocommerce div.product .images img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Thumbnails */
body.single-product .woocommerce div.product .flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
    padding: 0 !important;
}

body.single-product .woocommerce div.product .flex-control-thumbs li {
    width: 80px !important;
    flex: 0 0 80px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

body.single-product .woocommerce div.product .flex-control-thumbs li:hover,
body.single-product .woocommerce div.product .flex-control-thumbs li.active {
    border-color: #f28b00 !important;
}

body.single-product .woocommerce div.product .flex-control-thumbs li img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
}

/* ============================================
   2. PRODUCT TITLE
   ============================================ */

body.single-product .woocommerce div.product .product_title {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.5px !important;
}

/* ============================================
   3. PRICE
   ============================================ */

body.single-product .woocommerce div.product .price {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #f28b00 !important;
    margin-bottom: 15px !important;
}

body.single-product .woocommerce div.product .price del {
    color: #bbb !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-right: 10px !important;
}

body.single-product .woocommerce div.product .price ins {
    text-decoration: none !important;
    color: #f28b00 !important;
}

/* ============================================
   4. RATING
   ============================================ */

body.single-product .woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

body.single-product .woocommerce div.product .woocommerce-product-rating .star-rating {
    float: none !important;
    margin: 0 !important;
}

body.single-product .woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 14px !important;
    color: #888 !important;
    text-decoration: none !important;
}

body.single-product .woocommerce div.product .woocommerce-product-rating .woocommerce-review-link:hover {
    color: #f28b00 !important;
}

/* ============================================
   5. SHORT DESCRIPTION
   ============================================ */

body.single-product .woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    padding: 15px 0 !important;
    border-top: 1px solid #f5f5f5 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

/* ============================================
   6. ADD TO CART - WOOCOMMERCE DEFAULT
   ============================================ */

body.single-product .woocommerce div.product form.cart .quantity {
    margin-right: 10px !important;
}

body.single-product .woocommerce div.product form.cart .quantity input {
    width: 60px !important;
    height: 45px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 16px !important;
    color: #333 !important;
}

body.single-product .woocommerce div.product form.cart .quantity input:focus {
    border-color: #f28b00 !important;
    outline: none !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 40px !important;
    border-radius: 30px !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 25px rgba(242, 139, 0, 0.35) !important;
}

/* ============================================
   7. PRODUCT META
   ============================================ */

body.single-product .woocommerce div.product .product_meta {
    font-size: 13px !important;
    color: #888 !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #f0f0f0 !important;
}

body.single-product .woocommerce div.product .product_meta > span {
    display: block !important;
    margin-bottom: 4px !important;
}

body.single-product .woocommerce div.product .product_meta .sku_wrapper {
    display: none !important;
}

body.single-product .woocommerce div.product .product_meta a {
    color: #888 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body.single-product .woocommerce div.product .product_meta a:hover {
    color: #f28b00 !important;
}

/* ============================================
   8. WISHLIST
   ============================================ */

body.single-product .woocommerce div.product .yith-wcwl-add-to-wishlist {
    margin-top: 15px !important;
}

body.single-product .woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f8f8f8 !important;
    color: #555 !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border: 1px solid #e8e8e8 !important;
}

body.single-product .woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover {
    background: #f28b00 !important;
    color: #ffffff !important;
    border-color: #f28b00 !important;
}

body.single-product .woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.added {
    background: #2ecc71 !important;
    color: #ffffff !important;
    border-color: #2ecc71 !important;
}

/* ============================================
   9. TABS
   ============================================ */

body.single-product .woocommerce div.product .woocommerce-tabs {
    border: 1px solid #f0f0f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-top: 40px !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    padding: 14px 30px !important;
    margin: 0 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border-bottom: 3px solid #f28b00 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #555 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #f28b00 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px !important;
    background: #ffffff !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 15px !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs .panel p {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.8 !important;
}

/* ============================================
   10. RELATED PRODUCTS
   ============================================ */

body.single-product .related.products {
    margin-top: 50px !important;
}

body.single-product .related.products > h2 {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    margin-bottom: 35px !important;
    position: relative !important;
}

body.single-product .related.products > h2::after {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 3px !important;
    background: #f28b00 !important;
    margin: 10px auto 0 !important;
    border-radius: 5px !important;
}

body.single-product .related.products ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -15px !important;
    padding: 0 !important;
    list-style: none !important;
}

body.single-product .related.products ul.products li.product {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding: 0 15px 30px 15px !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
}

/* Related Product Card */
body.single-product .related.products ul.products li.product .product-card {
    height: 100% !important;
    margin: 0 !important;
}

body.single-product .related.products ul.products li.product .product-card-inner {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
    height: 100% !important;
    border: 1px solid #f0f0f0 !important;
    display: flex !important;
    flex-direction: column !important;
}

body.single-product .related.products ul.products li.product .product-card-inner:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

body.single-product .related.products ul.products li.product .product-card-image {
    position: relative !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
    flex-shrink: 0 !important;
}

body.single-product .related.products ul.products li.product .product-card-image img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

body.single-product .related.products ul.products li.product .product-card-inner:hover .product-card-image img {
    transform: scale(1.08) !important;
}

body.single-product .related.products ul.products li.product .product-card-content {
    padding: 18px 18px 22px 18px !important;
    text-align: center !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

body.single-product .related.products ul.products li.product .product-category {
    display: inline-block !important;
    font-size: 11px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
}

body.single-product .related.products ul.products li.product .product-title {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 4px 0 6px 0 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body.single-product .related.products ul.products li.product .product-title:hover {
    color: #f28b00 !important;
}

body.single-product .related.products ul.products li.product .price {
    display: block !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #f28b00 !important;
    margin: 0 0 12px 0 !important;
}

body.single-product .related.products ul.products li.product .add_to_cart_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    border: none !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: auto !important;
}

body.single-product .related.products ul.products li.product .add_to_cart_button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
}

body.single-product .related.products ul.products li.product .star-rating {
    display: none !important;
}

body.single-product .related.products ul.products li.product .onsale {
    display: none !important;
}

/* ============================================
   11. STOCK BADGE
   ============================================ */

body.single-product .woocommerce div.product .stock {
    display: inline-block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 4px 18px !important;
    border-radius: 20px !important;
    margin-bottom: 15px !important;
}

body.single-product .woocommerce div.product .stock.in-stock {
    background: #d4edda !important;
    color: #155724 !important;
}

body.single-product .woocommerce div.product .stock.out-of-stock {
    background: #f8d7da !important;
    color: #721c24 !important;
}

/* ============================================
   12. RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    body.single-product .woocommerce div.product .product_title {
        font-size: 26px !important;
    }
    
    body.single-product .woocommerce div.product .price {
        font-size: 22px !important;
    }
    
    body.single-product .related.products ul.products li.product {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
        padding: 10px 20px !important;
    }
}

@media (max-width: 575px) {
    body.single-product .woocommerce div.product .product_title {
        font-size: 22px !important;
    }
    
    body.single-product .woocommerce div.product .price {
        font-size: 20px !important;
    }
    
    body.single-product .woocommerce div.product form.cart .quantity input {
        width: 50px !important;
        height: 40px !important;
    }
    
    body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
    
    body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
    }
    
    body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
        padding: 10px 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
        border-bottom: none !important;
        background: #f28b00 !important;
    }
    
    body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
        color: #ffffff !important;
    }
    
    body.single-product .related.products ul.products li.product {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/*card */
/* ============================================================
   CART PAGE - COMPLETE DESIGN
   ============================================================ */

   .cart-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   1. CART HEADER
   ============================================ */

.cart-header {
    text-align: center;
    margin-bottom: 35px;
}

.cart-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.5px !important;
}

.cart-count-text {
    font-size: 18px !important;
    color: #888 !important;
    font-weight: 400 !important;
}

/* ============================================
   2. CART TABLE
   ============================================ */

.cart-table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.shop_table.cart {
    width: 100%;
    border-collapse: collapse;
}

.shop_table.cart thead {
    background: #f8f9fa;
}

.shop_table.cart thead th {
    padding: 18px 20px;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid #f0f0f0;
}

.shop_table.cart tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.shop_table.cart tbody tr:hover {
    background: #fafafa;
}

.shop_table.cart tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    font-size: 16px !important;
    color: #444;
}

/* ============================================
   3. PRODUCT IMAGE
   ============================================ */

.shop_table.cart .product-thumbnail img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

/* ============================================
   4. PRODUCT NAME
   ============================================ */

.shop_table.cart .product-name a {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop_table.cart .product-name a:hover {
    color: #f28b00 !important;
}

/* ============================================
   5. PRICE
   ============================================ */

.shop_table.cart .product-price .amount {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #f28b00 !important;
}

.shop_table.cart .product-subtotal .amount {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

/* ============================================
   6. QUANTITY
   ============================================ */

.shop_table.cart .quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.shop_table.cart .quantity .qty {
    width: 55px !important;
    height: 45px !important;
    border: none !important;
    text-align: center !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #333 !important;
    background: #ffffff !important;
    outline: none !important;
}

.shop_table.cart .quantity .qty::-webkit-inner-spin-button,
.shop_table.cart .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.shop_table.cart .quantity .qty-minus,
.shop_table.cart .quantity .qty-plus {
    width: 40px !important;
    height: 45px !important;
    border: none !important;
    background: #f8f8f8 !important;
    color: #333 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.shop_table.cart .quantity .qty-minus:hover,
.shop_table.cart .quantity .qty-plus:hover {
    background: #f28b00 !important;
    color: #ffffff !important;
}

/* ============================================
   7. REMOVE BUTTON
   ============================================ */

.shop_table.cart .product-remove .remove {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #f8f8f8 !important;
    color: #999 !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.shop_table.cart .product-remove .remove:hover {
    background: #e74c3c !important;
    color: #ffffff !important;
}

/* ============================================
   8. ACTIONS
   ============================================ */

.shop_table.cart .actions {
    padding: 22px 20px !important;
    background: #f8f9fa !important;
    border-top: 1px solid #f0f0f0 !important;
}

.shop_table.cart .actions .coupon {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    float: left !important;
}

.shop_table.cart .actions .coupon .input-text {
    width: 220px !important;
    height: 48px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 30px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    background: #ffffff !important;
}

.shop_table.cart .actions .coupon .input-text:focus {
    border-color: #f28b00 !important;
    box-shadow: 0 0 0 3px rgba(242, 139, 0, 0.1) !important;
}

.shop_table.cart .actions .button {
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.shop_table.cart .actions .button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 20px rgba(242, 139, 0, 0.3) !important;
}

.shop_table.cart .actions .button[name="update_cart"] {
    float: right !important;
    background: #333 !important;
}

.shop_table.cart .actions .button[name="update_cart"]:hover {
    background: #1a1a1a !important;
    box-shadow: none !important;
}

.shop_table.cart .actions .btn-continue {
    float: right !important;
    background: #e8e8e8 !important;
    color: #555 !important;
    margin-right: 12px !important;
    text-decoration: none !important;
}

.shop_table.cart .actions .btn-continue:hover {
    background: #d5d5d5 !important;
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

/* ============================================
   9. CART TOTALS
   ============================================ */

.cart-collaterals {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 35px !important;
}

.cart-collaterals .cart_totals {
    width: 45% !important;
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 16px !important;
    padding: 35px !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
}

.cart-collaterals .cart_totals h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 25px !important;
    letter-spacing: -0.5px !important;
}

.cart-collaterals .cart_totals table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.cart-collaterals .cart_totals table tr {
    border-bottom: 1px solid #f0f0f0 !important;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
    padding: 14px 0 !important;
    font-size: 17px !important;
}

.cart-collaterals .cart_totals table th {
    font-weight: 600 !important;
    color: #555 !important;
}

.cart-collaterals .cart_totals table td {
    text-align: right !important;
}

.cart-collaterals .cart_totals table td .amount {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.cart-collaterals .cart_totals .order-total .amount {
    font-size: 26px !important;
    color: #f28b00 !important;
}

.cart-collaterals .cart_totals .checkout-button {
    display: block !important;
    text-align: center !important;
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 16px !important;
    border-radius: 30px !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
    width: 100% !important;
    text-decoration: none !important;
}

.cart-collaterals .cart_totals .checkout-button:hover {
    background: #d97a00 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 25px rgba(242, 139, 0, 0.35) !important;
}

/* ============================================
   10. EMPTY CART
   ============================================ */

.empty-cart-wrapper {
    text-align: center !important;
    padding: 80px 20px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
}

.empty-cart-icon {
    font-size: 72px !important;
    color: #e8e8e8 !important;
    margin-bottom: 25px !important;
}

.empty-cart-title {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
}

.empty-cart-text {
    font-size: 18px !important;
    color: #888 !important;
    margin-bottom: 30px !important;
}

.btn-empty-cart {
    display: inline-flex !important;
    align-items: center !important;
    background: #f28b00 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 40px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px !important;
}

.btn-empty-cart:hover {
    background: #d97a00 !important;
    color: #ffffff !important;
    transform: scale(1.02) !important;
    box-shadow: 0 5px 25px rgba(242, 139, 0, 0.35) !important;
}

/* ============================================
   11. RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .shop_table.cart thead {
        display: none !important;
    }
    
    .shop_table.cart tbody tr {
        display: block !important;
        padding: 18px !important;
        border: 1px solid #f0f0f0 !important;
        margin-bottom: 18px !important;
        border-radius: 12px !important;
        background: #ffffff !important;
    }
    
    .shop_table.cart tbody td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
        border: none !important;
        font-size: 15px !important;
    }
    
    .shop_table.cart tbody td::before {
        content: attr(data-title) !important;
        font-weight: 600 !important;
        color: #555 !important;
        font-size: 15px !important;
    }
    
    .shop_table.cart .product-thumbnail {
        justify-content: center !important;
    }
    
    .shop_table.cart .product-thumbnail img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .shop_table.cart .actions .coupon {
        float: none !important;
        width: 100% !important;
        flex-direction: column !important;
    }
    
    .shop_table.cart .actions .coupon .input-text {
        width: 100% !important;
    }
    
    .shop_table.cart .actions .button[name="update_cart"] {
        float: none !important;
        width: 100% !important;
        margin-top: 12px !important;
        justify-content: center !important;
    }
    
    .shop_table.cart .actions .btn-continue {
        float: none !important;
        width: 100% !important;
        margin-right: 0 !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .cart-collaterals .cart_totals {
        width: 100% !important;
    }
    
    .cart-title {
        font-size: 30px !important;
    }
    
    .empty-cart-title {
        font-size: 24px !important;
    }
}

/*checkout */
