:root {
            --primary: #e7365a;
            --primary-color: #e7365a;
            --primary-dark: #000000;
            --primary-hover: #d32246;
            --primary-soft: rgba(231, 54, 90, 0.1);
            --primary-gradient: linear-gradient(135deg, #e7365a, #fb4a6e);
            --font-heading: 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Theme Mode Variables */
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-light: #e2e8f0;
        }

        body {
            font-family: var(--font-body) !important;
            background-color: var(--bg-primary) !important;
            color: var(--text-primary) !important;
        }

        h1, h2, h3, h4, h5, h6, .logo-text, .product-title {
            font-family: var(--font-heading) !important;
            color: var(--text-primary) !important;
        }
/* Moda Elegance Theme - Minimalist Fashion */
.moda_elegance-theme {
    /* Variables now inherited from :root (Admin Settings) */
    --theme-shadow: 0 10px 30px -10px var(--primary-soft);
    --theme-radius: 0;
}

.moda_elegance-theme .product-card {
    border-radius: var(--theme-radius);
    border: 1px solid #e5e7eb;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.moda_elegance-theme .product-card:hover {
    border-color: #111827;
    transform: translateY(-2px);
}

.moda_elegance-theme .product-image-container {
    border-radius: 0;
}

.moda_elegance-theme .btn-primary,
.moda_elegance-theme .btn-add {
    border-radius: 0;
    /* Very sharp minimalist look */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}