/* ================================================
   ECOMFLOW ENHANCED DESIGN SYSTEM v2.0
   Professional, Mature & Elegant E-Commerce Design
   Compatible with all theme presets & settings
   ================================================ */

/* --------------------------------------------
   1. ENHANCED DESIGN TOKENS (override fallbacks)
   -------------------------------------------- */
:root {
    --ef-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ef-transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ef-transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ef-radius-sm: 10px;
    --ef-radius-md: 14px;
    --ef-radius-lg: 18px;
    --ef-radius-xl: 24px;
    --ef-shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    --ef-shadow-card-hover: 0 2px 4px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
    --ef-shadow-btn: 0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --ef-shadow-btn-hover: 0 4px 16px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
    --ef-shadow-elevated: 0 4px 12px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.05);
    --ef-overlay-subtle: rgba(0,0,0,0.03);
    --ef-overlay-medium: rgba(0,0,0,0.06);
    --ef-font-scale-sm: 0.875rem;
    --ef-font-scale-base: 1rem;
    --ef-font-scale-lg: 1.125rem;
    --ef-font-scale-xl: 1.25rem;
    --ef-font-scale-2xl: 1.5rem;
    --ef-font-scale-3xl: 2rem;
}

/* --------------------------------------------
   2. GLOBAL REFINEMENTS
   -------------------------------------------- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.01em;
    transition: background-color 0.3s ease;
}

::selection {
    background-color: var(--primary-color, #2563EB);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--primary-color, #2563EB);
    color: #ffffff;
}

/* Focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color, #2563EB);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Link base */
a {
    transition: var(--ef-transition-fast);
}

/* --------------------------------------------
   3. CUSTOM SCROLLBAR
   -------------------------------------------- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
    border: 2px solid transparent;
    background-clip: padding-box;
}

/* --------------------------------------------
   4. HEADER ENHANCEMENTS
   -------------------------------------------- */
.site-header {
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    transition: var(--ef-transition) !important;
}

.site-header .container {
    height: 56px !important;
}

@media (max-width: 640px) {
    .site-header .container {
        height: 52px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* Navigation icon buttons */
.dz-nav-icon-btn,
.site-header button[class*="icon"],
.site-header a[class*="icon"] {
    border-radius: 12px !important;
    transition: var(--ef-transition-fast) !important;
    position: relative !important;
    overflow: hidden !important;
}

.dz-nav-icon-btn:hover,
.site-header button[class*="icon"]:hover,
.site-header a[class*="icon"]:hover {
    background: var(--primary-color, #2563EB) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.dz-nav-icon-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.6 !important;
}

/* Cart count badge */
.dz-cart-count,
[class*="cart-count"] {
    background: var(--accent-color, #DC2626) !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    border-radius: 999px !important;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 4px !important;
    line-height: 1 !important;
}

/* Brand/Logo area */
.site-brand img,
.site-header img[alt*="logo"],
.site-header img[src*="logo"] {
    max-height: 32px !important;
    width: auto !important;
    transition: var(--ef-transition-fast) !important;
}

/* Announcement bar */
.dz-announcement-bar,
[class*="announcement"],
[class*="marquee"] {
    min-height: 34px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 4px 0 !important;
}

/* --------------------------------------------
   5. HERO / SLIDER ENHANCEMENTS
   -------------------------------------------- */
.dz-slider-container {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

.dz-slider-wrapper {
    border-radius: 0 !important;
}

.dz-slide-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.5) 100%) !important;
}

.dz-slide-content {
    padding: 0 8% !important;
    max-width: 700px !important;
}

@media (max-width: 768px) {
    .dz-slide-content {
        padding: 0 6% !important;
        text-align: center !important;
        max-width: 100% !important;
    }
}

.dz-slide-title {
    text-shadow: 0 2px 12px rgba(0,0,0,0.35), 0 4px 40px rgba(0,0,0,0.15) !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.15 !important;
}

.dz-slide-subtitle {
    text-shadow: 0 1px 8px rgba(0,0,0,0.3), 0 2px 20px rgba(0,0,0,0.1) !important;
    font-weight: 500 !important;
    opacity: 0.92 !important;
    line-height: 1.6 !important;
}

.dz-slide-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 15px 36px !important;
    background: #ffffff !important;
    color: #0F172A !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1) !important;
    transition: var(--ef-transition) !important;
    letter-spacing: -0.01em !important;
}

.dz-slide-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.12) !important;
}

.dz-slide-btn:active {
    transform: translateY(-1px) !important;
}

/* Slider arrows */
.dz-slider-arrow {
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--ef-transition) !important;
    opacity: 0 !important;
    color: #ffffff !important;
    font-size: 20px !important;
}

.dz-slider-container:hover .dz-slider-arrow {
    opacity: 0.85 !important;
}

.dz-slider-arrow:hover {
    background: rgba(255,255,255,0.28) !important;
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.08) !important;
}

/* Slider dots */
.dz-slider-dots {
    bottom: 28px !important;
    gap: 10px !important;
}

.dz-dot {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255,255,255,0.35) !important;
    border-radius: 50% !important;
    transition: var(--ef-transition) !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
}

.dz-dot.active {
    background: #ffffff !important;
    box-shadow: 0 0 16px rgba(255,255,255,0.5) !important;
    transform: scale(1.25) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

/* Category pills overlay on slider */
.slider-categories-overlay,
[class*="categories-overlay"] {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
    border-radius: 999px !important;
    padding: 10px 28px !important;
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .slider-categories-overlay,
    [class*="categories-overlay"] {
        padding: 8px 14px !important;
    }
}

.slider-category-pill,
[class*="category-pill"] {
    background: rgba(255,255,255,0.9) !important;
    color: #0F172A !important;
    padding: 7px 20px !important;
    border-radius: 999px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    transition: var(--ef-transition) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.slider-category-pill:hover,
[class*="category-pill"]:hover {
    background: var(--primary-color, #2563EB) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

/* Static hero (when slider disabled) */
.hero-section,
.dz-attractive-hero {
    padding: 90px 20px 80px !important;
    background: linear-gradient(170deg, #F8FAFC 0%, #EFF6FF 30%, #F0F9FF 70%, #F8FAFC 100%) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
    margin-bottom: 60px !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-section::before,
.dz-attractive-hero::before {
    content: '' !important;
    position: absolute !important;
    top: -30% !important;
    right: -15% !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(37,99,235,0.01) 40%, transparent 70%) !important;
    pointer-events: none !important;
    border-radius: 50% !important;
}

.hero-section::after,
.dz-attractive-hero::after {
    content: '' !important;
    position: absolute !important;
    bottom: -20% !important;
    left: -10% !important;
    width: 350px !important;
    height: 350px !important;
    background: radial-gradient(circle, rgba(37,99,235,0.03) 0%, transparent 70%) !important;
    pointer-events: none !important;
    border-radius: 50% !important;
}

.dz-hero-content {
    border-radius: 24px !important;
    padding: 56px 48px !important;
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: var(--ef-shadow-elevated) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    position: relative !important;
    z-index: 2 !important;
}

.dz-hero-store-name {
    font-size: 3.5rem !important;
    letter-spacing: -2px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
}

.dz-hero-welcome {
    font-size: 1.1rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    opacity: 0.7 !important;
}

.dz-hero-btn {
    border-radius: 999px !important;
    padding: 16px 40px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    box-shadow: var(--ef-shadow-btn) !important;
    transition: var(--ef-transition) !important;
    letter-spacing: -0.01em !important;
    border: none !important;
}

    .dz-hero-btn:hover {
        transform: translateY(-3px) !important;
        box-shadow: var(--ef-shadow-btn-hover) !important;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .dz-attractive-hero {
        padding: 60px 16px 50px !important;
        margin-bottom: 40px !important;
    }
    .dz-hero-content {
        padding: 40px 24px !important;
        border-radius: 20px !important;
    }
    .dz-hero-store-name {
        font-size: 2.4rem !important;
        letter-spacing: -1px !important;
    }
}

/* --------------------------------------------
   6. SECTION TITLES
   -------------------------------------------- */
.section-title,
.dz-section-title {
    text-align: center !important;
    margin-bottom: 40px !important;
    font-size: 1.9rem !important;
    font-weight: 900 !important;
    color: #0F172A !important;
    letter-spacing: -1px !important;
    line-height: 1.3 !important;
    position: relative !important;
    padding-bottom: 18px !important;
}

.section-title::after,
.dz-section-title::after {
    content: '' !important;
    display: block !important;
    width: 48px !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary-color, #2563EB), rgba(37,99,235,0.3)) !important;
    border-radius: 999px !important;
    margin: 14px auto 0 !important;
}

@media (max-width: 768px) {
    .section-title,
    .dz-section-title {
        font-size: 1.5rem !important;
        margin-bottom: 28px !important;
        padding-bottom: 14px !important;
    }
}

/* --------------------------------------------
   7. TRUST BAR / FEATURES SECTION
   -------------------------------------------- */
.dz-trust-bar,
[class*="trust-bar"],
[class*="guarantees"] {
    display: flex !important;
    gap: 20px !important;
    padding: 36px 32px !important;
    border-radius: 20px !important;
    margin: 0 0 60px !important;
    background: #ffffff !important;
    box-shadow: var(--ef-shadow-card) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.trust-item,
[class*="trust-item"],
[class*="feature-item"] {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 20px !important;
    border-radius: 16px !important;
    transition: var(--ef-transition) !important;
    cursor: default !important;
    flex: 1 !important;
    min-width: 200px !important;
    justify-content: center !important;
}

.trust-item:hover,
[class*="trust-item"]:hover,
[class*="feature-item"]:hover {
    background: #F8FAFC !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.trust-icon,
[class*="trust-icon"],
[class*="feature-icon"] {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    transition: var(--ef-transition-fast) !important;
}

.trust-item:hover .trust-icon,
[class*="trust-item"]:hover [class*="trust-icon"],
[class*="feature-item"]:hover [class*="feature-icon"] {
    transform: scale(1.08) !important;
}

.trust-text-title,
[class*="trust-text-title"] {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.3 !important;
}

.trust-text-subtitle,
[class*="trust-text-subtitle"] {
    font-size: 0.8rem !important;
    color: #64748B !important;
    font-weight: 500 !important;
    margin-top: 2px !important;
}

@media (max-width: 768px) {
    .dz-trust-bar,
    [class*="trust-bar"],
    [class*="guarantees"] {
        gap: 12px !important;
        padding: 24px 16px !important;
        margin-bottom: 40px !important;
        border-radius: 16px !important;
    }
    .trust-item,
    [class*="trust-item"],
    [class*="feature-item"] {
        min-width: 140px !important;
        padding: 10px 14px !important;
        gap: 10px !important;
    }
    .trust-icon,
    [class*="trust-icon"],
    [class*="feature-icon"] {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 12px !important;
        font-size: 1.3rem !important;
    }
    .trust-text-title,
    [class*="trust-text-title"] {
        font-size: 0.9rem !important;
    }
}

/* --------------------------------------------
   8. PRODUCT CARDS - COMPLETE REDESIGN
   -------------------------------------------- */
.products-grid {
    gap: 24px !important;
    padding: 8px 0 70px !important;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

.products-grid .product-card,
.product-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: var(--ef-shadow-card) !important;
    transition: var(--ef-transition) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.products-grid .product-card:hover,
.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--ef-shadow-card-hover) !important;
    border-color: rgba(0,0,0,0.08) !important;
}

/* Product image container */
.products-grid .card-img,
.card-img {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%) !important;
    aspect-ratio: 1 / 1 !important;
    display: block !important;
}

.products-grid .card-img img,
.card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.products-grid .product-card:hover .card-img img,
.product-card:hover .card-img img {
    transform: scale(1.08) !important;
}

/* Product card body */
.products-grid .card-body,
.card-body {
    padding: 18px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Product title */
.products-grid .product-title,
.product-title {
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: #0F172A !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.9rem !important;
}

.products-grid .product-title a,
.product-title a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.products-grid .product-title a:hover,
.product-title a:hover {
    color: var(--primary-color, #2563EB) !important;
}

/* Price tag */
.products-grid .price-tag,
.price-tag {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.products-grid .price-tag .old-price,
.price-tag .old-price,
.old-price {
    text-decoration: line-through !important;
    color: #94A3B8 !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
}

.products-grid .price-tag small,
.price-tag small {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #64748B !important;
}

/* Discount badge */
.discount-badge,
[style*="background: var(--primary-color)"][style*="position: absolute"],
[style*="background: #ef4444"][style*="position: absolute"],
[style*="background: #dc2626"][style*="position: absolute"] {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    z-index: 3 !important;
    letter-spacing: -0.01em !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Out of stock badge */
.out-of-stock-badge,
[style*="background: #94a3b8"],
[style*="background: #64748b"] {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    padding: 5px 14px !important;
    border-radius: 999px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    z-index: 3 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}

/* --------------------------------------------
   9. PREMIUM BUTTONS
   -------------------------------------------- */
.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--primary-color, #2563EB) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 13px 28px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.93rem !important;
    text-align: center !important;
    transition: var(--ef-transition) !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: var(--ef-shadow-btn) !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: -0.01em !important;
    line-height: 1.4 !important;
}

.btn-primary::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to left, rgba(255,255,255,0.12), transparent 60%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--ef-shadow-btn-hover) !important;
    filter: brightness(1.06) !important;
}

.btn-primary:hover::before {
    opacity: 1 !important;
}

.btn-primary:active {
    transform: translateY(0) !important;
    filter: brightness(0.95) !important;
}

.btn-block {
    display: flex !important;
    width: 100% !important;
}

/* Secondary button */
.btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: transparent !important;
    color: var(--primary-color, #2563EB) !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.93rem !important;
    border: 2px solid rgba(37,99,235,0.2) !important;
    cursor: pointer !important;
    transition: var(--ef-transition) !important;
}

.btn-secondary:hover {
    background: rgba(37,99,235,0.05) !important;
    border-color: var(--primary-color, #2563EB) !important;
    transform: translateY(-2px) !important;
}

/* Submit / CTA button */
.btn-submit {
    width: 100% !important;
    padding: 16px 28px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    background: var(--accent-color, #DC2626) !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    transition: var(--ef-transition) !important;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: -0.01em !important;
    font-family: inherit !important;
}

.btn-submit::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to left, rgba(255,255,255,0.1), transparent 60%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.35) !important;
    filter: brightness(1.06) !important;
}

.btn-submit:hover::before {
    opacity: 1 !important;
}

.btn-submit:active {
    transform: translateY(0) !important;
}

.btn-submit:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
    filter: none !important;
}

/* Sticky order button (mobile) */
.sticky-order-btn {
    display: none !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: 20px !important;
    background: var(--primary-color, #2563EB) !important;
    color: #ffffff !important;
    padding: 16px 24px !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2) !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    transition: var(--ef-transition) !important;
    border: none !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    letter-spacing: -0.01em !important;
    animation: ef-pulse 2.5s ease-in-out infinite !important;
}

@keyframes ef-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
    50% { transform: scale(1.015); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
}

.sticky-order-btn:hover {
    transform: scale(1.025) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.28) !important;
    animation: none !important;
}

.sticky-order-btn:active {
    transform: scale(0.98) !important;
}

@media (max-width: 768px) {
    .sticky-order-btn {
        display: flex !important;
    }
}

/* PDP add to cart button */
#dz-add-to-cart-btn,
[class*="add-to-cart-btn"] {
    border-radius: 14px !important;
    font-weight: 800 !important;
    transition: var(--ef-transition) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
}

#dz-add-to-cart-btn:hover,
[class*="add-to-cart-btn"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15) !important;
}

/* --------------------------------------------
   10. FORM INPUTS ENHANCEMENTS
   -------------------------------------------- */
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
select,
textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    transition: var(--ef-transition) !important;
    background: #ffffff !important;
    color: #0F172A !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02) !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color, #2563EB) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.08), 0 1px 2px rgba(0,0,0,0.04) !important;
}

label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    font-size: 0.88rem !important;
    letter-spacing: -0.01em !important;
}

.form-group {
    margin-bottom: 20px !important;
}

/* Price summary box */
.price-summary {
    background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 100%) !important;
    border: 2px solid rgba(37,99,235,0.12) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin: 24px 0 !important;
}

/* Order form box */
.order-form-box {
    padding: 32px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: var(--ef-shadow-elevated) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    position: relative !important;
    overflow: hidden !important;
}

.order-form-box::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary-color, #2563EB), rgba(37,99,235,0.3), var(--accent-color, #DC2626)) !important;
    border-radius: 4px 4px 0 0 !important;
}

.order-form-box h3 {
    text-align: center !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin: 0 0 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    letter-spacing: -0.5px !important;
}

/* Validation error */
.validation-error {
    color: #DC2626 !important;
    font-size: 0.8rem !important;
    margin-top: 6px !important;
    display: none !important;
    font-weight: 600 !important;
}

.input-invalid {
    border-color: #DC2626 !important;
    background-color: #FEF2F2 !important;
    animation: ef-shake 0.5s cubic-bezier(.36, .07, .19, .97) both !important;
}

@keyframes ef-shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* --------------------------------------------
   11. PRODUCT PAGE ENHANCEMENTS
   -------------------------------------------- */
.single-product-container {
    gap: 40px !important;
}

.main-image-stage {
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: var(--ef-shadow-card) !important;
    background: linear-gradient(135deg, #ffffff 0%, #F8FAFC 100%) !important;
    transition: var(--ef-transition) !important;
}

.main-image-stage:hover {
    box-shadow: var(--ef-shadow-card-hover) !important;
}

.thumb-item {
    width: 68px !important;
    height: 68px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    opacity: 0.65 !important;
    transition: var(--ef-transition-fast) !important;
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}

.thumb-item:hover {
    opacity: 1 !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--ef-shadow-card) !important;
}

.thumb-item.active {
    border-color: var(--primary-color, #2563EB) !important;
    opacity: 1 !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
}

.product-details {
    padding: 32px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: var(--ef-shadow-elevated) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
}

.product-title-page {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #0F172A !important;
    line-height: 1.35 !important;
    letter-spacing: -1px !important;
}

.product-price {
    padding: 18px 24px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%) !important;
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
    gap: 16px !important;
}

.product-price .current-price {
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: #DC2626 !important;
    letter-spacing: -1px !important;
}

.product-price .compare-price {
    font-size: 1.1rem !important;
    color: #94A3B8 !important;
    font-weight: 500 !important;
}

.short-desc {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #64748B !important;
}

.product-content {
    margin-top: 40px !important;
    padding: 32px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    line-height: 1.9 !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: var(--ef-shadow-card) !important;
}

.product-content h2,
.product-content h3 {
    color: #0F172A !important;
    margin: 28px 0 14px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}

.product-content ul,
.product-content ol {
    padding-right: 24px !important;
    margin-bottom: 16px !important;
}

.product-content li {
    margin-bottom: 10px !important;
}

.product-content li::marker {
    color: var(--primary-color, #2563EB) !important;
}

/* Variation buttons */
.var-option-btn {
    border: 2px solid #E2E8F0 !important;
    background: #ffffff !important;
    color: #64748B !important;
    border-radius: 10px !important;
    padding: 9px 18px !important;
    font-weight: 700 !important;
    transition: var(--ef-transition-fast) !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    font-family: inherit !important;
}

.var-option-btn:hover {
    border-color: var(--primary-color, #2563EB) !important;
    color: var(--primary-color, #2563EB) !important;
    background: #EFF6FF !important;
}

.var-option-btn.active {
    background: var(--primary-color, #2563EB) !important;
    border-color: var(--primary-color, #2563EB) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3) !important;
}

/* Related products */
.related-products-section {
    margin-top: 60px !important;
    padding: 40px 24px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 100%) !important;
}

.related-products-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 32px !important;
}

.related-grid {
    gap: 20px !important;
}

.related-grid .product-card {
    border-radius: 16px !important;
    box-shadow: var(--ef-shadow-card) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    transition: var(--ef-transition) !important;
    overflow: hidden !important;
}

.related-grid .product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--ef-shadow-card-hover) !important;
}

.related-grid .product-image img {
    height: 160px !important;
    object-fit: cover !important;
}

.related-grid .product-info {
    padding: 16px !important;
}

.related-grid .product-info h3 {
    font-weight: 700 !important;
}

.related-grid .product-info .price {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}

@media (min-width: 769px) and (max-width: 1023px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .related-products-section {
        margin: 20px 16px !important;
        padding: 24px 16px !important;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .related-grid .product-image img {
        height: 130px !important;
    }
    .product-details {
        padding: 24px !important;
        border-radius: 0 !important;
    }
    .product-title-page {
        font-size: 1.4rem !important;
    }
    .product-price .current-price {
        font-size: 1.6rem !important;
    }
    .order-form-box {
        padding: 24px !important;
        margin: 16px !important;
        border-radius: 16px !important;
    }
    .single-product-container {
        gap: 24px !important;
    }
}

/* --------------------------------------------
   12. CART DRAWER ENHANCEMENTS
   -------------------------------------------- */
#dz-cart-drawer {
    border-radius: 20px 0 0 20px !important;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#dz-cart-drawer .border-b,
#dz-cart-drawer .border-t {
    border-color: rgba(0,0,0,0.05) !important;
}

#dz-cart-total-value {
    font-weight: 900 !important;
    color: var(--primary-color, #2563EB) !important;
}

#dz-cart-checkout-btn {
    border-radius: 14px !important;
    font-weight: 800 !important;
    transition: var(--ef-transition) !important;
    box-shadow: var(--ef-shadow-btn) !important;
}

#dz-cart-checkout-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--ef-shadow-btn-hover) !important;
}

/* --------------------------------------------
   13. OFFERS / BEST DEALS SECTION
   -------------------------------------------- */
.offers-grid,
[class*="offers-grid"] {
    gap: 20px !important;
    margin-bottom: 48px !important;
}

.offer-card,
[class*="offer-card"] {
    border-radius: 16px !important;
    padding: 20px !important;
    transition: var(--ef-transition) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: var(--ef-shadow-card) !important;
}

.offer-card:hover,
[class*="offer-card"]:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--ef-shadow-card-hover) !important;
}

.offer-card-title,
[class*="offer-card-title"] {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
}

.offer-badge,
[class*="offer-badge"] {
    border-radius: 8px !important;
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.offer-btn,
[class*="offer-btn"] {
    border-radius: 10px !important;
    padding: 8px 18px !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    transition: var(--ef-transition) !important;
    cursor: pointer !important;
}

.offer-btn:hover,
[class*="offer-btn"]:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.offer-img-box,
[class*="offer-img-box"] {
    width: 110px !important;
    height: 110px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

@media (max-width: 900px) {
    .offers-grid,
    [class*="offers-grid"] {
        grid-template-columns: 1fr !important;
    }
    .offer-card,
    [class*="offer-card"] {
        padding: 16px !important;
    }
    .offer-img-box,
    [class*="offer-img-box"] {
        width: 90px !important;
        height: 90px !important;
    }
}

/* --------------------------------------------
   14. CATEGORY PAGE ENHANCEMENTS
   -------------------------------------------- */
/* Category hero banner */
[class*="category-hero"],
.taxonomy-product_cat .dz-attractive-hero {
    padding: 60px 20px 50px !important;
    margin-bottom: 40px !important;
    border-radius: 0 0 24px 24px !important;
}

/* Category filter pills */
[class*="category-filters"],
[class*="filter-pills"] {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-bottom: 36px !important;
    padding: 0 16px !important;
}

[class*="filter-pill"],
[class*="category-pill-item"] {
    padding: 9px 20px !important;
    border-radius: 999px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border: 2px solid #E2E8F0 !important;
    background: #ffffff !important;
    color: #64748B !important;
    transition: var(--ef-transition-fast) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

[class*="filter-pill"]:hover,
[class*="category-pill-item"]:hover {
    border-color: var(--primary-color, #2563EB) !important;
    color: var(--primary-color, #2563EB) !important;
    background: #EFF6FF !important;
}

[class*="filter-pill"].active,
[class*="category-pill-item"].active {
    background: var(--primary-color, #2563EB) !important;
    border-color: var(--primary-color, #2563EB) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3) !important;
}

/* --------------------------------------------
   15. FOOTER ENHANCEMENTS
   -------------------------------------------- */
.site-footer {
    padding-top: 64px !important;
    padding-bottom: 32px !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%) !important;
}

.site-footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, transparent, var(--primary-color, #2563EB), transparent) !important;
    border-radius: 0 0 8px 8px !important;
}

.site-footer h4,
.site-footer h3 {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.3px !important;
}

.site-footer ul li a,
.site-footer a:not([class*="btn"]) {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 5px 0 !important;
    color: #64748B !important;
    transition: var(--ef-transition-fast) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.92rem !important;
}

.site-footer ul li a:hover,
.site-footer a:not([class*="btn"]):hover {
    color: var(--primary-color, #2563EB) !important;
    transform: translateX(-4px) !important;
}

/* Social media links */
.site-footer a[href*="facebook"],
.site-footer a[href*="instagram"],
.site-footer a[href*="tiktok"],
.site-footer a[href*="twitter"],
.site-footer a[href*="youtube"] {
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    transition: var(--ef-transition) !important;
    padding: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
}

.site-footer a[href*="facebook"]:hover,
.site-footer a[href*="instagram"]:hover,
.site-footer a[href*="tiktok"]:hover,
.site-footer a[href*="twitter"]:hover,
.site-footer a[href*="youtube"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--ef-shadow-card) !important;
    border-color: rgba(0,0,0,0.1) !important;
}

.site-footer .border-t {
    border-color: rgba(0,0,0,0.05) !important;
    padding-top: 28px !important;
    margin-top: 44px !important;
}

/* --------------------------------------------
   16. LIGHTBOX ENHANCEMENTS
   -------------------------------------------- */
.lightbox-modal {
    background-color: rgba(15, 23, 42, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.lightbox-content {
    border-radius: 16px !important;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4) !important;
}

.close-btn {
    top: 24px !important;
    right: 40px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    color: #CBD5E1 !important;
    transition: var(--ef-transition-fast) !important;
    border: none !important;
    cursor: pointer !important;
}

.close-btn:hover {
    background: rgba(255,255,255,0.18) !important;
    color: #ffffff !important;
}

.lightbox-nav {
    border-radius: 14px !important;
    background: rgba(255,255,255,0.08) !important;
    padding: 14px 18px !important;
    font-size: 20px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: var(--ef-transition-fast) !important;
    color: #ffffff !important;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2) !important;
}

/* --------------------------------------------
   17. ANIMATIONS
   -------------------------------------------- */
@keyframes ef-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ef-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ef-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered card entrance animation */
.products-grid .product-card {
    animation: ef-fade-in-up 0.55s ease-out both;
}

.products-grid .product-card:nth-child(1) { animation-delay: 0.04s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.08s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.12s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.16s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.24s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.28s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.32s; }
.products-grid .product-card:nth-child(9) { animation-delay: 0.36s; }
.products-grid .product-card:nth-child(10) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(11) { animation-delay: 0.44s; }
.products-grid .product-card:nth-child(12) { animation-delay: 0.48s; }

/* Hero content entrance */
.dz-hero-content,
.hero-section > * {
    animation: ef-fade-in-up 0.7s ease-out both;
}

/* --------------------------------------------
   18. RESPONSIVE REFINEMENTS
   -------------------------------------------- */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    body {
        font-size: 14px !important;
    }

    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="email"],
    select,
    textarea {
        padding: 12px 14px !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }

    .btn-primary {
        padding: 12px 20px !important;
        font-size: 0.88rem !important;
        border-radius: 10px !important;
    }

    .btn-submit {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
    }

    .products-grid .card-body,
    .card-body {
        padding: 14px !important;
    }

    .products-grid .product-title,
    .product-title {
        font-size: 0.88rem !important;
        min-height: 2.6rem !important;
    }

    .products-grid .price-tag,
    .price-tag {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 10px !important;
    }
    .products-grid .product-title,
    .product-title {
        font-size: 0.82rem !important;
        min-height: 2.4rem !important;
    }
    .products-grid .card-body,
    .card-body {
        padding: 10px !important;
    }
}

/* --------------------------------------------
   19. DARK ELEGANCE PRESET ENHANCEMENTS
   -------------------------------------------- */
body[data-preset="dark_elegance"] .product-card,
body.preset-dark_elegance .product-card,
body[data-preset="dark_elegance"] .site-header,
body.preset-dark_elegance .site-header,
body[data-preset="dark_elegance"] .product-details,
body.preset-dark_elegance .product-details,
body[data-preset="dark_elegance"] .order-form-box,
body.preset-dark_elegance .order-form-box {
    background: #1E293B !important;
    border-color: rgba(255,255,255,0.06) !important;
    color: #F1F5F9 !important;
}

body[data-preset="dark_elegance"] input,
body.preset-dark_elegance input,
body[data-preset="dark_elegance"] select,
body.preset-dark_elegance select,
body[data-preset="dark_elegance"] textarea,
body.preset-dark_elegance textarea {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #F1F5F9 !important;
}

body[data-preset="dark_elegance"] .btn-primary,
body.preset-dark_elegance .btn-primary {
    background: #D4AF37 !important;
    color: #0F172A !important;
}

body[data-preset="dark_elegance"] .product-price,
body.preset-dark_elegance .product-price {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%) !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
}

/* --------------------------------------------
   20. UTILITY & PRINT
   -------------------------------------------- */
@media print {
    .site-header,
    .site-footer,
    .sticky-order-btn,
    #dz-cart-drawer,
    .dz-slider-container {
        display: none !important;
    }
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
}

/* Smooth image loading */
img {
    transition: opacity 0.4s ease !important;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}
