/* 
 * Enterprise Shop Styles - Isolated to .enterprise-shop-wrapper
 * Theme Colors Inherited: 
 * Dark BG: #1E1E1E, Red: #FF070A, White: #fff, Font: Rajdhani 
 */

.enterprise-shop-wrapper,
.enterprise-shop-wrapper {
    --shop-red: #FF070A;
    --shop-dark: #1E1E1E;
    --shop-darker: #151515;
    --shop-card-bg: rgba(255, 255, 255, 0.05);
    --shop-border: rgba(255, 255, 255, 0.1);
    --shop-text: #b0b0b0;
    --shop-white: #ffffff;
    --shop-font: "Rajdhani", sans-serif;
    --shop-transition: 0.3s ease;
    
    font-family: var(--shop-font);
    color: var(--shop-text);
    padding: 0 0 60px 0; /* Changed top padding to 0 since banner has its own space */
}

/* =========================================================================
   1. Shop Banner (SEO Optimized & Modern UI)
   ========================================================================= */
.enterprise-shop-banner {
    position: relative !important;
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #111111 0%, #1a1a1d 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    overflow: hidden !important;
    margin-bottom: 60px !important;
    text-align: center !important;
}

.banner-bg-elements {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.glow-orb {
    position: absolute !important;
    border-radius: 50% !important;
    filter: blur(100px) !important;
    opacity: 0.5 !important;
}

.glow-orb.red-orb {
    top: -50px !important;
    left: -100px !important;
    width: 400px !important;
    height: 400px !important;
    background: rgba(255, 7, 10, 0.15) !important;
}

.glow-orb.dark-orb {
    bottom: -150px !important;
    right: -50px !important;
    width: 500px !important;
    height: 500px !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.enterprise-banner-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.banner-subtitle {
    display: inline-block !important;
    background: rgba(255, 7, 10, 0.1) !important;
    border: 1px solid rgba(255, 7, 10, 0.3) !important;
    color: #FF070A !important;
    padding: 6px 16px !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
}

.banner-title {
    font-size: 56px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    margin-bottom: 25px !important;
    font-family: "Rajdhani", sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.banner-title .highlight {
    color: #FF070A !important;
    background: -webkit-linear-gradient(0deg, #FF070A, #ff5e60) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.banner-description {
    font-size: 18px !important;
    color: #b0b0b0 !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.banner-features {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
}

.feature-item {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
}

.feature-item:hover {
    background: rgba(255, 7, 10, 0.05) !important;
    border-color: rgba(255, 7, 10, 0.2) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
    .enterprise-shop-banner {
        padding: 60px 20px !important;
    }
    .banner-title {
        font-size: 36px !important;
    }
    .banner-description {
        font-size: 16px !important;
    }
    .banner-features {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
    .feature-item {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* =========================================================================
   2. Typography Overrides
   ========================================================================= */
.enterprise-shop-wrapper h1, 
.enterprise-shop-wrapper h2, 
.enterprise-shop-wrapper h3, 
.enterprise-shop-wrapper h4, 
.enterprise-shop-wrapper h5, 
.enterprise-shop-wrapper h6 {
    font-family: var(--shop-font);
    color: var(--shop-white) !important;
}

/* Sidebar / Categories - Premium Redesign */
.enterprise-shop-wrapper .product-categories {
    background: linear-gradient(145deg, rgba(35, 35, 38, 0.7) 0%, rgba(18, 18, 20, 0.95) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    backdrop-filter: blur(12px) !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    font-family: "Rajdhani", sans-serif !important;
}

.enterprise-shop-wrapper .product-categories h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    position: relative !important;
    font-family: "Rajdhani", sans-serif !important;
}

.enterprise-shop-wrapper .product-categories h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #FF070A 0%, #ff3b3e 100%) !important;
    border-radius: 3px !important;
    box-shadow: 0 0 10px rgba(255, 7, 10, 0.4) !important;
}

.enterprise-shop-wrapper ul.categories {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.enterprise-shop-wrapper ul.categories li {
    margin-bottom: 5px !important;
    list-style-type: none !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05) !important;
    position: relative !important;
}

.enterprise-shop-wrapper ul.categories > li:last-child {
    border-bottom: none !important;
}

.enterprise-shop-wrapper ul.categories li a {
    color: #cccccc !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 0 !important;
    letter-spacing: 0.5px !important;
}

.enterprise-shop-wrapper ul.categories li a:hover,
.enterprise-shop-wrapper ul.categories li.active > a {
    color: #FF070A !important;
    transform: translateX(8px) !important;
    text-shadow: 0 0 10px rgba(255, 7, 10, 0.2) !important;
}

/* Subcategories styling (Nested Lists) */
.enterprise-shop-wrapper ul.categories ul.categories {
    padding-left: 20px !important;
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    border-left: 2px solid rgba(255, 7, 10, 0.1) !important;
    margin-left: 8px !important;
}

.enterprise-shop-wrapper ul.categories ul.categories li {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.enterprise-shop-wrapper ul.categories ul.categories li a {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #999999 !important;
    padding: 8px 0 !important;
}

.enterprise-shop-wrapper ul.categories ul.categories li a:hover,
.enterprise-shop-wrapper ul.categories ul.categories li.active > a {
    color: #ffffff !important;
    transform: translateX(5px) !important;
    text-shadow: none !important;
}

/* Fix for blue underline from external theme */
.widgettitle::after, .widget-title::after {
    display: none !important;
}

/* Product Grid */
.enterprise-shop-wrapper ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.enterprise-shop-wrapper ul.products::before,
.enterprise-shop-wrapper ul.products::after {
    display: none !important;
}

/* Modern Product Card - Premium Redesign */
.enterprise-shop-wrapper ul.products li.product {
    background: linear-gradient(145deg, rgba(35, 35, 38, 0.7) 0%, rgba(18, 18, 20, 0.95) 100%) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.enterprise-shop-wrapper ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 7, 10, 0.15) !important;
    border-color: rgba(255, 7, 10, 0.4) !important;
}

.enterprise-shop-wrapper .product-image-wrapper {
    position: relative !important;
    overflow: hidden !important;
    background: radial-gradient(circle at top, rgba(50, 50, 55, 0.4) 0%, rgba(15, 15, 18, 1) 100%) !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    padding: 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.enterprise-shop-wrapper .product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin: 0 !important;
}

.enterprise-shop-wrapper ul.products li.product:hover .product-image-wrapper img {
    transform: scale(1.05) !important;
}

/* Badges */
.enterprise-shop-wrapper span.onsale {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    background: linear-gradient(90deg, #FF070A 0%, #ff3b3e 100%) !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    z-index: 2 !important;
    letter-spacing: 1.5px !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.2 !important;
    box-shadow: 0 5px 15px rgba(255, 7, 10, 0.4) !important;
}

/* Card Content */
.enterprise-shop-wrapper .product-content {
    padding: 25px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-align: center !important;
}

.enterprise-shop-wrapper .product-content a {
    text-decoration: none !important;
}

.enterprise-shop-wrapper .woocommerce-loop-product__title {
    font-size: 21px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    padding: 0 !important;
    font-family: "Rajdhani", sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s ease !important;
}

.enterprise-shop-wrapper ul.products li.product:hover .woocommerce-loop-product__title {
    color: #FF070A !important;
}

/* Star Rating */
.enterprise-shop-wrapper .star-rating {
    margin: 0 auto 12px auto !important;
    color: #FFD700 !important;
    font-size: 14px !important;
}

.enterprise-shop-wrapper .price {
    font-size: 22px !important;
    color: #FF070A !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    display: block !important;
    font-family: "Rajdhani", sans-serif !important;
}

.enterprise-shop-wrapper .price del {
    color: rgba(255,255,255,0.4) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-right: 8px !important;
}

.enterprise-shop-wrapper .price ins {
    text-decoration: none !important;
    background: transparent !important;
    font-weight: 700 !important;
}

/* Add to cart button */
.enterprise-shop-wrapper a.button {
    margin-top: auto !important;
    background: linear-gradient(135deg, #FF070A 0%, #cc0000 100%) !important;
    border: none !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 14px 20px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-family: "Rajdhani", sans-serif !important;
    font-size: 16px !important;
    line-height: 1 !important;
    box-shadow: 0 4px 15px rgba(255, 7, 10, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.enterprise-shop-wrapper a.button::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%) !important;
    transition: all 0.6s ease !important;
    z-index: -1 !important;
}

.enterprise-shop-wrapper a.button:hover::after {
    left: 100% !important;
}

.enterprise-shop-wrapper a.button:hover {
    background: linear-gradient(135deg, #ff1a1d 0%, #e60000 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(255, 7, 10, 0.5) !important;
    transform: translateY(-3px) !important;
}

/* Quick View Overlay (Hidden by default, shown on hover for desktop) */
.enterprise-shop-wrapper button.quick-view-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 40px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 3 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    font-family: "Rajdhani", sans-serif !important;
}

.enterprise-shop-wrapper ul.products li.product:hover button.quick-view-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.enterprise-shop-wrapper button.quick-view-btn:hover {
    background: #FF070A !important;
    border-color: #FF070A !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(255, 7, 10, 0.4) !important;
}

/* Notice / Sorting / Count */
.enterprise-shop-wrapper .woocommerce-result-count {
    color: var(--shop-text) !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
    float: left !important;
}

.enterprise-shop-wrapper .woocommerce-ordering {
    float: right !important;
    margin-bottom: 20px !important;
}

.enterprise-shop-wrapper .woocommerce-ordering select {
    background: var(--shop-darker) !important;
    border: 1px solid var(--shop-border) !important;
    color: var(--shop-white) !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-family: var(--shop-font) !important;
    font-size: 16px !important;
    outline: none !important;
    cursor: pointer !important;
}

/* Pagination */
.enterprise-shop-wrapper .custom-pagination {
    margin-top: 40px !important;
    border-top: 1px solid var(--shop-border) !important;
    padding-top: 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    clear: both !important;
}

.enterprise-shop-wrapper .pagination-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    gap: 10px !important;
}

.enterprise-shop-wrapper .pagination-links a,
.enterprise-shop-wrapper .pagination-links span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    background: var(--shop-card-bg) !important;
    border: 1px solid var(--shop-border) !important;
    color: var(--shop-white) !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: var(--shop-transition) !important;
}

.enterprise-shop-wrapper .pagination-links a:hover {
    background: var(--shop-red) !important;
    border-color: var(--shop-red) !important;
}

.enterprise-shop-wrapper .page-count {
    color: var(--shop-text) !important;
    font-size: 16px !important;
}

/* Offcanvas Filter Drawer (Mobile) */
.enterprise-shop-wrapper .filter-drawer-toggle {
    display: none !important;
    background: var(--shop-card-bg) !important;
    border: 1px solid var(--shop-border) !important;
    color: var(--shop-white) !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-family: var(--shop-font) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    text-align: center !important;
    transition: var(--shop-transition) !important;
}

.enterprise-shop-wrapper .filter-drawer-toggle:hover {
    border-color: var(--shop-red) !important;
    color: var(--shop-red) !important;
}

.enterprise-shop-wrapper .filter-drawer-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.8) !important;
    z-index: 99998 !important;
    backdrop-filter: blur(5px) !important;
}

.enterprise-shop-wrapper .filter-drawer-close {
    display: none !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255,255,255,0.1) !important;
    border: none !important;
    color: var(--shop-white) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--shop-transition) !important;
    z-index: 999999 !important;
}

.enterprise-shop-wrapper .filter-drawer-close:hover {
    background: var(--shop-red) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .enterprise-shop-wrapper ul.products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .enterprise-shop-wrapper .filter-drawer-toggle {
        display: block !important;
    }
    
    .enterprise-shop-wrapper .col-md-3 {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: var(--shop-darker) !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 40px 20px !important;
        border-right: 1px solid var(--shop-border) !important;
        margin: 0 !important;
    }
    
    .enterprise-shop-wrapper.drawer-open .col-md-3 {
        left: 0 !important;
    }
    
    .enterprise-shop-wrapper.drawer-open .filter-drawer-overlay {
        display: block !important;
    }
    
    .enterprise-shop-wrapper.drawer-open .filter-drawer-close {
        display: flex !important;
    }
    
    .enterprise-shop-wrapper .product-categories {
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-top: 20px !important;
    }
    
    .enterprise-shop-wrapper ul.products {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 15px !important;
    }
    
    .enterprise-shop-wrapper button.quick-view-btn {
        display: none !important; 
    }
}

/* Quick View Modal (AJAX) - Premium Redesign */
.enterprise-quick-view-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(5, 5, 5, 0.85) !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(15px) !important;
}

.enterprise-quick-view-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.enterprise-quick-view-content {
    background: rgba(18, 18, 20, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    width: 95% !important;
    max-width: 1100px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    padding: 50px !important;
    transform: translateY(30px) scale(0.98) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 7, 10, 0.15) !important;
    color: #ffffff !important;
    font-family: "Rajdhani", sans-serif !important;
}

/* Custom Scrollbar for Modal */
.enterprise-quick-view-content::-webkit-scrollbar {
    width: 8px;
}
.enterprise-quick-view-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}
.enterprise-quick-view-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}
.enterprise-quick-view-content::-webkit-scrollbar-thumb:hover {
    background: #FF070A;
}

.enterprise-quick-view-modal.active .enterprise-quick-view-content {
    transform: translateY(0) scale(1) !important;
}

.enterprise-quick-view-close {
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    font-size: 26px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.enterprise-quick-view-close:hover {
    background: #FF070A !important;
    border-color: #FF070A !important;
    transform: rotate(90deg) !important;
    box-shadow: 0 0 15px rgba(255, 7, 10, 0.5) !important;
}

.enterprise-quick-view-loader {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 50px !important;
    height: 50px !important;
    border: 3px solid rgba(255, 255, 255, 0.1) !important;
    border-top-color: #FF070A !important;
    border-radius: 50% !important;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
    display: none !important;
    z-index: 11 !important;
}

.enterprise-quick-view-modal.loading .enterprise-quick-view-loader {
    display: block !important;
}
.enterprise-quick-view-modal.loading .enterprise-quick-view-body {
    opacity: 0.1 !important;
    filter: blur(4px) !important;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.enterprise-quick-view-body {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    transition: opacity 0.4s ease, filter 0.4s ease !important;
    align-items: center !important;
}

.quick-view-img {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
    border-radius: 20px !important;
    padding: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.quick-view-img img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
    transition: transform 0.5s ease !important;
    display: block !important;
}

.quick-view-img:hover img {
    transform: scale(1.05) !important;
}

.quick-view-details {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.quick-view-details h1 {
    font-size: 42px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: "Rajdhani", sans-serif !important;
}

.quick-view-price-wrapper {
    margin-bottom: 25px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.quick-view-price-wrapper .price {
    font-size: 32px !important;
    color: #FF070A !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-family: "Rajdhani", sans-serif !important;
}

.quick-view-price-wrapper .price del {
    color: rgba(255,255,255,0.4) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
}

.quick-view-details .woocommerce-product-details__short-description {
    color: #cccccc !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
}

.quick-view-details .woocommerce-product-details__short-description p {
    margin-bottom: 15px !important;
}

/* Add to Cart Form Styling within Quick View */
.quick-view-add-to-cart form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    align-items: center !important;
}

.quick-view-add-to-cart .quantity {
    display: flex !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 5px 15px !important;
    height: 56px !important;
}

.quick-view-add-to-cart .quantity input.qty {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: 50px !important;
    outline: none !important;
    -moz-appearance: textfield !important;
}

.quick-view-add-to-cart .quantity input::-webkit-outer-spin-button,
.quick-view-add-to-cart .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.quick-view-add-to-cart button.single_add_to_cart_button {
    flex: 1 !important;
    min-width: 200px !important;
    height: 56px !important;
    background: #FF070A !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: "Rajdhani", sans-serif !important;
    box-shadow: 0 10px 20px rgba(255, 7, 10, 0.2) !important;
}

.quick-view-add-to-cart button.single_add_to_cart_button:hover {
    background: #e00003 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(255, 7, 10, 0.3) !important;
}

/* Variations Form Styling */
.quick-view-add-to-cart table.variations {
    width: 100% !important;
    margin-bottom: 25px !important;
    border-collapse: collapse !important;
}

.quick-view-add-to-cart table.variations td {
    padding: 10px 0 !important;
    border: none !important;
}

.quick-view-add-to-cart table.variations td.label {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: 30% !important;
}

.quick-view-add-to-cart table.variations select {
    width: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: "Rajdhani", sans-serif !important;
    outline: none !important;
    appearance: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 18px !important;
}

.quick-view-add-to-cart table.variations select:focus {
    border-color: #FF070A !important;
    box-shadow: 0 0 0 3px rgba(255, 7, 10, 0.2) !important;
}

.quick-view-add-to-cart table.variations select option {
    background: #1a1a1d !important;
    color: #ffffff !important;
}

.quick-view-add-to-cart .reset_variations {
    color: #FF070A !important;
    font-size: 14px !important;
    margin-top: 10px !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
}
.quick-view-add-to-cart .reset_variations:hover {
    text-decoration: underline !important;
}

/* Product Meta (Categories, Tags) */
.quick-view-add-to-cart .product_meta {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.1) !important;
    font-size: 14px !important;
    color: #888888 !important;
}

.quick-view-add-to-cart .product_meta span {
    display: block !important;
    margin-bottom: 8px !important;
}

.quick-view-add-to-cart .product_meta a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
}

.quick-view-add-to-cart .product_meta a:hover {
    color: #FF070A !important;
}

@media (max-width: 991px) {
    .enterprise-quick-view-content {
        padding: 40px !important;
        width: 95% !important;
    }
    .enterprise-quick-view-body {
        gap: 30px !important;
    }
    .quick-view-details h1 {
        font-size: 32px !important;
    }
}

@media (max-width: 767px) {
    .enterprise-quick-view-content {
        padding: 30px 20px !important;
    }
    .enterprise-quick-view-close {
        top: 15px !important;
        right: 15px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 20px !important;
    }
    .enterprise-quick-view-body {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .quick-view-details h1 {
        font-size: 28px !important;
        margin-top: 15px !important;
    }
    .quick-view-price-wrapper .price {
        font-size: 26px !important;
    }
    .quick-view-add-to-cart form.cart {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .quick-view-add-to-cart .quantity {
        justify-content: center !important;
    }
}
