/*
Theme Name: Zari Zeen S Collection
Theme URI: https://zarizeenscollection.com
Author: Zari Zeen S Collection
Author URI: https://zarizeenscollection.com
Description: Premium WooCommerce theme for Zari Zeen S Collection — Traditional Wear for Women. Unstitched ladies' clothing brand based in Sialkot, Pakistan. Mobile-first, Elementor-compatible, fully optimized.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zarizeens
Tags: woocommerce, e-commerce, custom-logo, custom-menu, featured-images, translation-ready, rtl-language-support

Zari Zeen S Collection — Traditional Wear for Women
*/

/* ============================================
   DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ============================================ */

:root {
    /* Brand Colors */
    --zz-gold: #C6A94D;
    --zz-gold-light: #D4BC6A;
    --zz-gold-dark: #A8893A;
    --zz-gold-muted: #C6A94D33;
    --zz-black: #1A1A1A;
    --zz-black-soft: #2D2D2D;
    --zz-cream: #FFF8F0;
    --zz-cream-dark: #F5EDE0;
    --zz-white: #FFFFFF;
    --zz-off-white: #FAFAF7;
    --zz-gray-100: #F7F7F5;
    --zz-gray-200: #ECECEA;
    --zz-gray-300: #D4D4D0;
    --zz-gray-400: #A8A8A3;
    --zz-gray-500: #737370;
    --zz-gray-600: #545452;
    --zz-gray-700: #3D3D3B;
    --zz-red: #C53030;
    --zz-green: #2F855A;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* 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;

    /* Layout */
    --container-max: 1400px;
    --container-narrow: 1100px;
    --header-height: 70px;
    --header-height-mobile: 60px;
    --mobile-bottom-nav-height: 60px;
    --announcement-height: 36px;

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(198,169,77,0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-mobile-nav: 600;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--zz-black);
    background-color: var(--zz-white);
    overflow-x: hidden;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--zz-black);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

a {
    color: var(--zz-black);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--zz-gold);
}

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--zz-gold); }
.text-muted { color: var(--zz-gray-500); }
.text-sm { font-size: var(--text-sm); }

.section-padding {
    padding: var(--space-16) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-3);
    color: var(--zz-black);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    text-align: center;
    color: var(--zz-gray-500);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-8);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--zz-black);
    color: var(--zz-white);
    border: 2px solid var(--zz-black);
}

.btn-primary:hover {
    background: var(--zz-gold);
    border-color: var(--zz-gold);
    color: var(--zz-white);
}

.btn-outline {
    background: transparent;
    color: var(--zz-black);
    border: 2px solid var(--zz-black);
}

.btn-outline:hover {
    background: var(--zz-black);
    color: var(--zz-white);
}

.btn-gold {
    background: var(--zz-gold);
    color: var(--zz-white);
    border: 2px solid var(--zz-gold);
}

.btn-gold:hover {
    background: var(--zz-gold-dark);
    border-color: var(--zz-gold-dark);
    color: var(--zz-white);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--zz-white);
    border: 2px solid #25D366;
    border-radius: var(--radius-full);
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--zz-white);
}
