/*
Theme Name:     Apex Store Theme
Theme URI:      https://fekerinetech.com/apex-store-theme
Author:         Fekerine Tech
Author URI:     https://fekerinetech.com
Description:    A premium e-commerce theme for the Algerian market. Faithfully ported from the Sample-Ecommerce Next.js design. Features Cairo font, wilaya shipping, Chargily Pay integration, and full RTL support.
Version:        3.0.0
License:        GPL v2 or later
Text Domain:    dz-store-theme
*/

/* ============================================
   GOOGLE FONTS — Cairo + Inter
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   Light mode (default) matching Next.js globals.css
   ============================================ */
:root {
    /* shadcn/ui-compatible color tokens */
    --background:           0 0% 100%;
    --foreground:           240 10% 3.9%;
    --card:                 0 0% 100%;
    --card-foreground:      240 10% 3.9%;
    --popover:              0 0% 100%;
    --popover-foreground:   240 10% 3.9%;
    --primary:              240 5.9% 10%;
    --primary-foreground:   0 0% 98%;
    --secondary:            240 4.8% 95.9%;
    --secondary-foreground: 240 5.9% 10%;
    --muted:                240 4.8% 95.9%;
    --muted-foreground:     240 3.8% 46.1%;
    --accent:               240 4.8% 95.9%;
    --accent-foreground:    240 5.9% 10%;
    --destructive:          0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border:               240 5.9% 90%;
    --input:                240 5.9% 90%;
    --ring:                 240 10% 3.9%;
    --radius:               0.5rem;
    --success:              142 76% 36%;
    --success-foreground:   210 40% 98%;

    /* Computed colors for CSS use */
    --clr-bg:       hsl(var(--background));
    --clr-fg:       hsl(var(--foreground));
    --clr-card:     hsl(var(--card));
    --clr-card-fg:  hsl(var(--card-foreground));
    --clr-primary:  hsl(var(--primary));
    --clr-prim-fg:  hsl(var(--primary-foreground));
    --clr-secondary:hsl(var(--secondary));
    --clr-muted:    hsl(var(--muted));
    --clr-muted-fg: hsl(var(--muted-foreground));
    --clr-accent:   hsl(var(--accent));
    --clr-border:   hsl(var(--border));
    --clr-input:    hsl(var(--input));
    --clr-dest:     hsl(var(--destructive));
    --clr-success:  hsl(var(--success));

    /* Typography */
    --font-sans:    'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-xs:     0.75rem;
    --font-size-sm:     0.875rem;
    --font-size-base:   1rem;
    --font-size-lg:     1.125rem;
    --font-size-xl:     1.25rem;
    --font-size-2xl:    1.5rem;
    --font-size-3xl:    1.875rem;
    --font-size-4xl:    2.25rem;
    --font-size-5xl:    3rem;
    --font-size-6xl:    3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border radius */
    --radius-sm:   calc(var(--radius) - 4px);
    --radius-md:   calc(var(--radius) - 2px);
    --radius-lg:   var(--radius);
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:   0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow:      0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md:   0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg:   0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl:   0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast:   all 0.15s ease;
    --transition:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:   all 0.5s ease-out;

    /* Layout */
    --max-width: 1400px;
    --container-pad: 2rem;
    --navbar-h: 4rem; /* 64px */
}

/* Dark mode  */
@media (prefers-color-scheme: dark) {
    :root {
        --background:           240 10% 3.9%;
        --foreground:           0 0% 98%;
        --card:                 240 10% 3.9%;
        --card-foreground:      0 0% 98%;
        --popover:              240 10% 3.9%;
        --popover-foreground:   0 0% 98%;
        --primary:              0 0% 98%;
        --primary-foreground:   240 5.9% 10%;
        --secondary:            240 3.7% 15.9%;
        --secondary-foreground: 0 0% 98%;
        --muted:                240 3.7% 15.9%;
        --muted-foreground:     240 5% 64.9%;
        --accent:               240 3.7% 15.9%;
        --accent-foreground:    0 0% 98%;
        --destructive:          0 62.8% 30.6%;
        --destructive-foreground: 0 0% 98%;
        --border:               240 3.7% 15.9%;
        --input:                240 3.7% 15.9%;
        --ring:                 240 4.9% 83.9%;
    }
}

body.dark-mode {
    --background:           240 10% 3.9%;
    --foreground:           0 0% 98%;
    --card:                 240 10% 3.9%;
    --card-foreground:      0 0% 98%;
    --popover:              240 10% 3.9%;
    --popover-foreground:   0 0% 98%;
    --primary:              0 0% 98%;
    --primary-foreground:   240 5.9% 10%;
    --secondary:            240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;
    --muted:                240 3.7% 15.9%;
    --muted-foreground:     240 5% 64.9%;
    --accent:               240 3.7% 15.9%;
    --accent-foreground:    0 0% 98%;
    --destructive:          0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border:               240 3.7% 15.9%;
    --input:                240 3.7% 15.9%;
    --ring:                 240 4.9% 83.9%;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-color: hsl(var(--border));
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--clr-fg);
    background-color: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--clr-fg);
}
h1 { font-size: clamp(2rem, 5vw, var(--font-size-5xl)); }
h2 { font-size: clamp(1.5rem, 4vw, var(--font-size-4xl)); }
h3 { font-size: clamp(1.25rem, 3vw, var(--font-size-3xl)); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--clr-fg);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* ============================================
   LAYOUT UTILS
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: hsl(var(--muted) / 0.3); }
::-webkit-scrollbar-thumb { background: hsl(var(--muted-foreground) / 0.3); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--muted-foreground) / 0.5); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}
@keyframes toast-slide {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in        { animation: fadeIn 0.5s ease-out forwards; }
.animate-slide-in-left  { animation: slideInLeft 0.5s ease-out forwards; }
.animate-slide-in-right { animation: slideInRight 0.5s ease-out forwards; }
.animate-scale-in       { animation: scaleIn 0.3s ease-out forwards; }
.animate-spin           { animation: spin 1s linear infinite; }

/* ============================================
   BUTTON SYSTEM
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.btn-sm  { padding: 0.375rem 0.75rem; font-size: var(--font-size-xs); }
.btn-lg  { padding: 0.75rem 2rem; font-size: var(--font-size-base); height: 3rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: var(--font-size-lg); }
.btn-icon { width: 2.25rem; height: 2.25rem; padding: 0; border-radius: var(--radius-md); }
.btn-icon-sm { width: 2rem; height: 2rem; padding: 0; }
.btn-full { width: 100%; }
.btn-pill { border-radius: var(--radius-full); }

/* Primary */
.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-prim-fg);
    border-color: var(--clr-primary);
}
.btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
    color: var(--clr-prim-fg);
}

/* Secondary */
.btn-secondary {
    background-color: var(--clr-secondary);
    color: hsl(var(--secondary-foreground));
    border-color: var(--clr-secondary);
}
.btn-secondary:hover { background-color: hsl(var(--secondary) / 0.8); }

/* Outline */
.btn-outline {
    background-color: transparent;
    color: var(--clr-fg);
    border-color: var(--clr-border);
}
.btn-outline:hover {
    background-color: var(--clr-accent);
    color: hsl(var(--accent-foreground));
}

/* Ghost */
.btn-ghost {
    background-color: transparent;
    border-color: transparent;
    color: var(--clr-fg);
}
.btn-ghost:hover { background-color: var(--clr-accent); color: hsl(var(--accent-foreground)); }

/* Destructive */
.btn-destructive {
    background-color: var(--clr-dest);
    color: hsl(var(--destructive-foreground));
    border-color: var(--clr-dest);
}

.btn:disabled, .btn[disabled] {
    pointer-events: none;
    opacity: 0.5;
}

/* ============================================
   NAVBAR
   ============================================ */
.dz-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    height: var(--navbar-h);
    border-bottom: 1px solid hsl(var(--border) / 0.4);
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dz-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.dz-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: var(--font-size-2xl);
    letter-spacing: -0.05em;
    color: var(--clr-fg);
    text-decoration: none;
}
.dz-nav-logo:hover { color: var(--clr-fg); opacity: 0.9; }
.dz-nav-logo img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.dz-nav-logo-text { display: none; }
@media (min-width: 640px) { .dz-nav-logo-text { display: inline; } }

/* Desktop Nav Links */
.dz-nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
}
@media (min-width: 768px) { .dz-nav-links { display: flex; } }

.dz-nav-links a {
    color: var(--clr-muted-fg);
    text-decoration: none;
    transition: var(--transition);
}
.dz-nav-links a:hover, .dz-nav-links a.active { color: var(--clr-fg); }

/* Nav Actions (right side) */
.dz-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Cart Button */
.dz-cart-btn {
    position: relative;
}
.dz-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    background-color: var(--clr-primary);
    color: var(--clr-prim-fg);
    border-radius: var(--radius-full);
    padding: 0 0.25rem;
}

/* Mobile hamburger */
.dz-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 1.25rem;
    cursor: pointer;
}
.dz-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-fg);
    border-radius: 2px;
    transition: var(--transition);
}
@media (min-width: 768px) { .dz-hamburger-btn { display: none !important; } }

/* Mobile Menu Dropdown */
.dz-mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    border-top: 1px solid hsl(var(--border) / 0.4);
    background-color: var(--clr-bg);
}
.dz-mobile-menu.open { max-height: 12rem; display: block; }
@media (min-width: 768px) { .dz-mobile-menu { display: none !important; } }

.dz-mobile-menu .container { padding: 1rem var(--container-pad); }
.dz-mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--clr-fg);
}

/* Theme Toggle */
.dz-theme-toggle {
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-fg);
    transition: var(--transition);
    font-size: 1rem;
}
.dz-theme-toggle:hover { background: var(--clr-accent); }

/* ============================================
   HERO SECTION
   ============================================ */
.dz-hero {
    position: relative;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, var(--clr-bg) 60%);
    padding: 5rem 0 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--navbar-h));
}

.dz-hero-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.dz-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.dz-hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--clr-muted-fg);
    margin: 0 auto 2.5rem;
    max-width: 36rem;
    line-height: 1.7;
}

.dz-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) { .dz-hero-actions { flex-direction: row; } }

/* Hero Search */
.dz-search-wrap {
    position: relative;
    margin-top: 3rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.dz-search-wrap form { display: flex; position: relative; }
.dz-search-wrap input {
    width: 100%;
    height: 3rem;
    padding: 0 3rem 0 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    color: var(--clr-fg);
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.dz-search-wrap input:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}
.dz-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    background: var(--clr-primary);
    color: var(--clr-prim-fg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.dz-search-btn:hover { opacity: 0.85; }
.dz-search-btn svg { width: 1.125rem; height: 1.125rem; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.dz-section-head {
    text-align: center;
    margin-bottom: 3rem;
}
.dz-section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.dz-section-head p {
    color: var(--clr-muted-fg);
    max-width: 36rem;
    margin: 0 auto;
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

/* ============================================
   CARD SYSTEM
   ============================================ */
.dz-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.dz-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.dz-products-section {
    background: hsl(var(--muted) / 0.4);
    padding: 4rem 0 6rem;
}

.dz-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
@media (min-width: 640px)  { .dz-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dz-products-grid { grid-template-columns: repeat(3, 1fr); } }

/* Product Card */
.dz-product-card {
    background: var(--clr-card);
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.dz-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.dz-product-img-wrap {
    position: relative;
    width: 100%;
    height: 16rem;
    overflow: hidden;
    border-bottom: 1px solid hsl(var(--border) / 0.6);
    background: hsl(var(--muted) / 0.3);
}
.dz-product-img-wrap a { display: block; width: 100%; height: 100%; }
.dz-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.dz-product-card:hover .dz-product-img-wrap img { transform: scale(1.05); }

.dz-product-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dz-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.dz-product-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1.4;
}
.dz-product-name a { color: var(--clr-fg); }
.dz-product-name a:hover { color: var(--clr-primary); }

.dz-product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.dz-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1875rem 0.625rem;
    font-size: var(--font-size-xs);
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    text-transform: capitalize;
    color: var(--clr-fg);
}
.dz-badge-success {
    background: hsl(var(--success) / 0.15);
    border-color: hsl(var(--success) / 0.3);
    color: var(--clr-success);
}
.dz-badge-destructive {
    background: hsl(var(--destructive) / 0.15);
    border-color: hsl(var(--destructive) / 0.3);
    color: var(--clr-dest);
}

.dz-product-footer {
    padding: 0 1rem 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.dz-cta-section {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, var(--clr-bg) 100%);
    padding: 4rem 0 6rem;
    text-align: center;
}
.dz-cta-inner {
    max-width: 32rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.dz-cta-inner p { color: var(--clr-muted-fg); font-size: var(--font-size-lg); line-height: 1.7; }

/* ============================================
   SHOP PAGE
   ============================================ */
.dz-shop-hero {
    padding: 3rem 0;
    text-align: center;
}
.dz-shop-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.dz-shop-hero p {
    color: var(--clr-muted-fg);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.dz-shop-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.dz-shop-search {
    width: 100%;
    max-width: 28rem;
    text-align: center;
}
.dz-shop-search input {
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem;
    text-align: center;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--clr-bg);
    color: var(--clr-fg);
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    transition: var(--transition);
}
.dz-shop-search input:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.dz-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.dz-product-detail {
    padding: 2rem 0 4rem;
}

.dz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-muted-fg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.25rem 0;
    transition: var(--transition);
}
.dz-back-btn:hover { color: var(--clr-primary); }
.dz-back-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; }

.dz-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .dz-detail-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (min-width: 1024px) { .dz-detail-grid { gap: 4rem; } }

/* Image Gallery */
.dz-gallery { display: grid; gap: 1rem; }
.dz-gallery-main {
    position: relative;
    aspect-ratio: 1;
    background: hsl(var(--muted) / 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}
.dz-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.5s ease;
}
.dz-gallery-main img:hover { transform: scale(1.05); }

.dz-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    padding: 0 0.25rem;
}
.dz-thumb-btn {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: hsl(var(--muted) / 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.dz-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}
.dz-thumb-btn.active {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}
.dz-thumb-btn:not(.active) { opacity: 0.6; }
.dz-thumb-btn:hover { opacity: 1; }

/* Product Details Panel */
.dz-detail-info { display: flex; flex-direction: column; gap: 1.5rem; }

.dz-detail-category { display: block; }
.dz-detail-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-top: 0.5rem;
}
.dz-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-top: 0.75rem;
}
.dz-detail-desc {
    font-size: var(--font-size-base);
    color: hsl(var(--foreground) / 0.8);
    line-height: 1.7;
    border-radius: var(--radius-lg);
}

/* Quantity Selector */
.dz-qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.dz-qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    background: var(--clr-bg);
    overflow: hidden;
}
.dz-qty-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: transparent;
    color: var(--clr-fg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}
.dz-qty-btn:hover:not(:disabled) { background: var(--clr-accent); }
.dz-qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.dz-qty-display {
    padding: 0 1rem;
    font-weight: 500;
    min-width: 3rem;
    text-align: center;
    color: var(--clr-fg);
}

/* Action Buttons Row */
.dz-action-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) { .dz-action-row { flex-direction: row; } }
.dz-action-row .btn { flex: 1; }

/* Trust Badges */
.dz-trust-badges { display: flex; flex-direction: column; gap: 0.75rem; }
.dz-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: hsl(var(--card) / 0.5);
    font-size: var(--font-size-sm);
    font-weight: 500;
}
.dz-trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--clr-primary);
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Separator */
.dz-sep {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5rem 0;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.dz-checkout-page { padding: 2rem 0 4rem; }
.dz-checkout-title { text-align: center; margin-bottom: 2rem; }
.dz-checkout-title h1 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; }
.dz-checkout-title p { color: var(--clr-muted-fg); margin-top: 0.5rem; font-size: var(--font-size-base); }

.dz-checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .dz-checkout-grid { grid-template-columns: 2fr 1fr; }
}

/* ============================================
   FORMS
   ============================================ */
.dz-card-box {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.dz-card-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
}
.dz-card-box-title svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.dz-form { display: flex; flex-direction: column; gap: 1.5rem; }
.dz-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.dz-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) { .dz-form-row { grid-template-columns: 1fr 1fr; } }

.dz-label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--clr-fg);
}
.dz-label .optional {
    color: var(--clr-muted-fg);
    font-weight: 400;
    margin-left: 0.25rem;
}

.dz-input,
.dz-textarea,
.dz-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--clr-bg);
    border: 1px solid var(--clr-input);
    border-radius: var(--radius-md);
    color: var(--clr-fg);
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.dz-input:focus,
.dz-textarea:focus,
.dz-select:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}
.dz-input::placeholder,
.dz-textarea::placeholder { color: var(--clr-muted-fg); }
.dz-textarea { resize: vertical; min-height: 4rem; }

.dz-select-wrap { position: relative; }
.dz-select-wrap::after {
    content: '';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--clr-muted-fg);
    pointer-events: none;
}
.dz-select { padding-right: 2.25rem; cursor: pointer; }
.dz-select:disabled { opacity: 0.5; cursor: not-allowed; }

/* Payment Methods */
.dz-payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.dz-pay-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}
.dz-pay-option:hover { border-color: hsl(var(--primary) / 0.5); background: hsl(var(--primary) / 0.03); }
.dz-pay-option input[type="radio"] { accent-color: var(--clr-primary); width: 1rem; height: 1rem; }
.dz-pay-option.selected { border-color: var(--clr-primary); background: hsl(var(--primary) / 0.05); }
.dz-pay-icon { font-size: 1.25rem; }
.dz-pay-label { font-size: var(--font-size-sm); font-weight: 500; }

/* Order Summary Sidebar */
.dz-order-summary {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (min-width: 1024px) { .dz-order-summary { position: sticky; top: calc(var(--navbar-h) + 1.5rem); } }

.dz-order-summary-head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
}
.dz-order-summary-head svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.dz-order-items {
    max-height: 12rem;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dz-order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}
.dz-order-item-img {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
}
.dz-order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.dz-order-item-info { flex: 1; min-width: 0; }
.dz-order-item-name { font-weight: 500; font-size: var(--font-size-sm); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dz-order-item-qty { font-size: var(--font-size-xs); color: var(--clr-muted-fg); margin-top: 0.125rem; }
.dz-order-item-price { font-weight: 500; font-size: var(--font-size-sm); flex-shrink: 0; }

.dz-order-totals {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.dz-order-row {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    color: var(--clr-muted-fg);
}
.dz-order-row.total {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--clr-fg);
    border-top: 1px solid var(--clr-border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}
.dz-order-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--clr-border);
    font-size: var(--font-size-xs);
    color: var(--clr-muted-fg);
    text-align: center;
}

/* ============================================
   CART DRAWER
   ============================================ */
.dz-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}
.dz-cart-overlay.open { opacity: 1; visibility: visible; }

.dz-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(24rem, 90vw);
    background: var(--clr-bg);
    border-left: 1px solid var(--clr-border);
    z-index: 101;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}
.dz-cart-drawer.open { transform: translateX(0); }

.dz-cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    flex-shrink: 0;
}
.dz-cart-drawer-head h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dz-cart-close-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-fg);
    transition: var(--transition);
    font-size: 1rem;
}
.dz-cart-close-btn:hover { background: var(--clr-accent); }

.dz-cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dz-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: var(--clr-muted-fg);
    text-align: center;
    font-size: var(--font-size-sm);
}
.dz-cart-empty svg {
    width: 3rem;
    height: 3rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    opacity: 0.4;
}

.dz-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--clr-card);
}
.dz-cart-item-img {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
}
.dz-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.dz-cart-item-body { flex: 1; min-width: 0; }
.dz-cart-item-name {
    font-size: var(--font-size-sm);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dz-cart-item-price { color: var(--clr-muted-fg); font-size: var(--font-size-xs); margin-top: 0.25rem; }
.dz-cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.dz-cart-qty-btn {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--clr-fg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}
.dz-cart-qty-btn:hover { background: var(--clr-accent); }
.dz-cart-item-qty { font-size: var(--font-size-xs); font-weight: 500; min-width: 1.5rem; text-align: center; }
.dz-cart-remove-btn {
    background: none;
    border: none;
    color: var(--clr-muted-fg);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25rem;
    transition: color 0.2s;
    margin-left: auto;
}
.dz-cart-remove-btn:hover { color: var(--clr-dest); }

.dz-cart-drawer-foot {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--clr-border);
    flex-shrink: 0;
}
.dz-cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    color: var(--clr-muted-fg);
    margin-bottom: 0.75rem;
}
.dz-cart-subtotal-row span:last-child {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--clr-fg);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.dz-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}
.dz-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--clr-fg);
    max-width: 20rem;
    animation: toast-slide 0.3s ease forwards;
    pointer-events: all;
    backdrop-filter: blur(8px);
}
.dz-toast-success { border-left: 4px solid var(--clr-success); }
.dz-toast-error   { border-left: 4px solid var(--clr-dest); }
.dz-toast.hiding  { animation: none; opacity: 0; transform: translateX(100%); transition: all 0.3s ease; }

/* ============================================
   SKELETON LOADER
   ============================================ */
.dz-skeleton {
    background: linear-gradient(90deg, hsl(var(--muted)) 25%, hsl(var(--muted) / 0.5) 50%, hsl(var(--muted)) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ============================================
   ORDER SUCCESS PAGE
   ============================================ */
.dz-success-page {
    min-height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}
.dz-success-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 28rem;
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.dz-success-icon {
    width: 5rem;
    height: 5rem;
    background: hsl(var(--success) / 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
}
.dz-success-card h1 { font-size: var(--font-size-3xl); margin-bottom: 0.75rem; }
.dz-success-card p { color: var(--clr-muted-fg); margin-bottom: 1.5rem; }

/* ============================================
   NOT FOUND / ERROR
   ============================================ */
.dz-error-page {
    min-height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}
.dz-error-card {
    text-align: center;
    max-width: 24rem;
    width: 100%;
}
.dz-error-card h1 { font-size: 4rem; font-weight: 900; opacity: 0.15; margin-bottom: 0.5rem; }
.dz-error-card h2 { font-size: var(--font-size-2xl); margin-bottom: 0.75rem; }
.dz-error-card p { color: var(--clr-muted-fg); margin-bottom: 1.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.dz-footer {
    border-top: 1px solid var(--clr-border);
    padding: 2rem 0;
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--clr-muted-fg);
}

/* ============================================
   ADMIN / DASHBOARD
   ============================================ */
.dz-admin-notice {
    background: hsl(var(--primary) / 0.08);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
    color: var(--clr-fg);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
.hidden { display: none !important; }
@media (min-width: 640px)  { .sm\:block { display: block; } .sm\:hidden { display: none !important; } }
@media (min-width: 768px)  { .md\:block { display: block; } .md\:hidden { display: none !important; } }
@media (min-width: 1024px) { .lg\:block { display: block; } .lg\:hidden { display: none !important; } }

/* ============================================
   LOADING SPINNER
   ============================================ */
.dz-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid hsl(var(--border));
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}
.dz-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    gap: 1rem;
    color: var(--clr-muted-fg);
    font-size: var(--font-size-sm);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.dz-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed var(--clr-border);
    border-radius: var(--radius-lg);
    gap: 1rem;
}
.dz-empty svg {
    width: 3.5rem;
    height: 3.5rem;
    stroke: var(--clr-muted-fg);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.5;
}
.dz-empty h3 { font-size: var(--font-size-2xl); }
.dz-empty p { color: var(--clr-muted-fg); }

/* ============================================
   ORDER MODAL (Quick Order from Product Page)
   ============================================ */
.dz-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}
.dz-modal-overlay.open { opacity: 1; visibility: visible; }

.dz-modal {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 56rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.dz-modal-overlay.open .dz-modal { transform: scale(1); }

.dz-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .dz-modal-grid { grid-template-columns: 3fr 2fr; }
}

.dz-modal-form-side {
    padding: 1.5rem 2rem;
}
.dz-modal-summary-side {
    padding: 1.5rem 2rem;
    background: hsl(var(--muted) / 0.5);
    border-top: 1px solid var(--clr-border);
}
@media (min-width: 768px) {
    .dz-modal-form-side { order: 1; }
    .dz-modal-summary-side { order: 2; border-top: none; border-left: 1px solid var(--clr-border); }
}

.dz-modal-title { font-size: var(--font-size-2xl); font-weight: 700; margin-bottom: 0.5rem; }
.dz-modal-subtitle { color: var(--clr-muted-fg); font-size: var(--font-size-sm); margin-bottom: 1.5rem; }

.dz-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--clr-fg);
    transition: var(--transition);
}
.dz-modal-close:hover { background: var(--clr-accent); }
.dz-modal { position: relative; }

/* ============================================
   FOCUS VISIBLE (accessibility)
   ============================================ */
*:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

/* ============================================
   CARD HOVER UTIL
   ============================================ */
.card-hover { transition: var(--transition); }
.card-hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ============================================
   GRADIENT TEXT UTIL
   ============================================ */
.gradient-text {
    background: linear-gradient(to right, var(--clr-primary), var(--clr-muted-fg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Selection */
::selection { background: hsl(var(--primary) / 0.2); }
