/* ==========================================================================
   Design Tokens — روسری شیک
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #B04A72;
    --color-primary-hover: #963D61;
    --color-primary-light: #D4899F;
    --color-secondary: #FAF0F4;
    --color-background: #FDFAF8;
    --color-surface: #FFFFFF;
    --color-text: #2C2428;
    --color-text-light: #7A6E74;
    --color-border: #E8D5DE;
    --color-success: #3D9B5F;
    --color-danger: #D64545;

    /* Luxury Palette */
    --color-rose-gold: #C4A088;
    --color-soft-pink: #FAF0F4;
    --color-warm-gray: #8A7A82;
    --color-blush: #FFF5F8;
    --color-ivory: #FDFAF8;
    --color-champagne: #F5EDE6;
    --color-deep-rose: #8B3A5C;

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 72px;

    /* Typography */
    --font-family: 'Estedad', Tahoma, 'Segoe UI', sans-serif;
    --font-family-display: 'Lalezar', 'Estedad', Georgia, serif;
    --font-size-body: 16px;
    --font-size-h1: 44px;
    --font-size-h2: 34px;
    --font-size-h3: 24px;
    --line-height-body: 1.75;
    --line-height-heading: 1.35;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --letter-spacing-tight: -0.02em;
    --letter-spacing-wide: 0.06em;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 280ms ease;
    --transition-slow: 400ms ease;
    --transition-smooth: 450ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 36, 40, 0.05);
    --shadow-md: 0 6px 20px rgba(44, 36, 40, 0.08);
    --shadow-lg: 0 12px 36px rgba(44, 36, 40, 0.12);
    --shadow-focus: 0 0 0 3px rgba(176, 74, 114, 0.22);
    --shadow-luxury: 0 20px 60px rgba(176, 74, 114, 0.18);
    --shadow-card: 0 4px 24px rgba(138, 122, 130, 0.1);
    --shadow-card-hover: 0 20px 50px rgba(176, 74, 114, 0.2);
    --shadow-glow: 0 0 40px rgba(196, 160, 136, 0.25);

    /* Layout */
    --container-max-width: 1200px;
    --container-padding: var(--space-4);
    --grid-gap: var(--space-5);

    /* Animation */
    --animation-fade-distance: 24px;
    --animation-duration: 0.8s;
}
