/* =========================================================
   GIZZO INT STORES - ULTRA LUXURY DESIGN SYSTEM
   Premium Fashion Brand Styling
   ========================================================= */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ultra Luxury Color Palette */
    --midnight-navy: #060b1a;
    --royal-purple: #3d0e6f;
    --deep-burgundy: #5a0f7c;
    --champagne-gold: #f4e3c1;
    --rose-gold: #e3a6ab;
    --platinum: #e2e1df;
    --pearl-white: #fffdf8;
    --charcoal: #1f1f23;
    --warm-ivory: #f7f3ea;
    
    /* Premium Accent Colors */
    --luxury-gold: #f2c14e;
    --metallic-silver: #bfc4ca;
    --emerald: #50C878;
    --ruby-red: #E0115F;
    --sapphire-blue: #0F52BA;
    --diamond-white: #FFFFFF;
    
    /* Sophisticated Gradients */
    --gradient-primary: linear-gradient(135deg, #060b1a 0%, #3d0e6f 50%, #5a0f7c 100%);
    --gradient-gold: linear-gradient(135deg, #f2c14e 0%, #f4e3c1 50%, #e3a6ab 100%);
    --gradient-silver: linear-gradient(135deg, var(--metallic-silver) 0%, var(--platinum) 50%, var(--pearl-white) 100%);
    --gradient-burgundy: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--rose-gold) 50%, var(--champagne-gold) 100%);
    --gradient-hero: linear-gradient(135deg, var(--midnight-navy) 0%, var(--royal-purple) 25%, var(--deep-burgundy) 50%, var(--rose-gold) 75%, var(--champagne-gold) 100%);
    
    /* Text Colors */
    --text-primary: var(--royal-purple);
    --text-secondary: var(--charcoal);
    --text-light: #6B7280;
    --text-white: var(--diamond-white);
    --text-gold: var(--luxury-gold);
    
    /* Background Colors */
    --bg-primary: var(--pearl-white);
    --bg-secondary: var(--warm-ivory);
    --bg-dark: var(--midnight-navy);
    --bg-gradient: var(--gradient-primary);
    
    /* Shadows & Effects */
    --shadow-soft: 0 6px 26px rgba(6, 11, 26, 0.10);
    --shadow-medium: 0 12px 36px rgba(6, 11, 26, 0.16);
    --shadow-strong: 0 20px 64px rgba(6, 11, 26, 0.22);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.25);
    --shadow-purple: 0 8px 32px rgba(74, 20, 140, 0.25);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 100px;
}

/* Keep a safe offset below the fixed main header */
body {
    padding-top: 100px;
}

/* Ensure the main header stays above content */
.main-header {
    z-index: 2000;
}

/* Premium Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(11, 20, 38, 0.1);
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-burgundy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
}

h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
}

h5 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--text-primary);
}

h6 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: var(--text-primary);
}

/* Premium Text Styles */
p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    font-weight: 400;
}

.text-large {
    font-size: 1.375rem;
    line-height: 1.7;
    font-weight: 500;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 400;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
}

.text-gold {
    color: var(--luxury-gold);
    font-weight: 600;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout Components */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Premium Grid System */
.grid {
    display: grid;
    gap: var(--space-2xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Ultra Premium Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-2xl);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
    min-height: 56px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn:focus {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--diamond-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: var(--diamond-white);
    color: var(--royal-purple);
    border: 2px solid var(--royal-purple);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--royal-purple);
    color: var(--diamond-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--midnight-navy);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--diamond-white);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: var(--space-xl) var(--space-3xl);
    font-size: 1.125rem;
    min-height: 64px;
    border-radius: var(--radius-xl);
}

.btn-small {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.875rem;
    min-height: 44px;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

/* Ultra Premium Card System */
.card {
    background: var(--diamond-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--gradient-silver);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.card:hover .card-overlay {
    opacity: 0.9;
}

.card-content {
    padding: var(--space-2xl);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.2;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.card-price {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--royal-purple);
    margin-bottom: var(--space-lg);
}

/* Premium Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(61, 14, 111, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(242, 193, 78, 0.25);
    z-index: 1000;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    text-decoration: none;
    color: var(--pearl-white);
    transition: transform var(--transition-medium);
}

.logo:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: var(--pearl-white);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.main-nav a {
    font-weight: 600;
    color: var(--pearl-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--space-sm) 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: var(--champagne-gold);
    transform: translateY(-2px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--royal-purple);
    transition: width var(--transition-medium);
    border-radius: 2px;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Ultra Premium Hero Section */
.hero {
    padding: calc(100px + var(--space-5xl)) 0 var(--space-5xl);
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="25" cy="25" r="0.5" fill="%23E8B4B8" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%23F7E7CE" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: var(--diamond-white);
}

.hero h1 {
    margin-bottom: var(--space-xl);
    color: var(--diamond-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: var(--space-3xl);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Section Styling */
.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-header h2 {
    margin-bottom: var(--space-lg);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Ultra Premium Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-strong);
    background: var(--diamond-white);
}

.carousel-container {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gradient-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--diamond-white);
    padding: var(--space-4xl) var(--space-2xl) var(--space-2xl);
    backdrop-filter: blur(10px);
}

.carousel-nav {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
}

.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: var(--royal-purple);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--royal-purple);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(61, 14, 111, 0.45);
}

/* Premium Form Styling */
.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-lg);
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid rgba(11, 20, 38, 0.1);
    border-radius: var(--radius-lg);
    background: var(--diamond-white);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-soft);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1), var(--shadow-medium);
    transform: translateY(-2px);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* Ultra Premium Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--diamond-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: var(--shadow-strong);
    z-index: 1000;
    transition: all var(--transition-medium);
    animation: pulse 3s infinite;
    border: 3px solid var(--diamond-white);
}

.floating-whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover {
    background: rgba(11, 20, 38, 0.1);
}

.mobile-nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 2000;
    padding: var(--space-5xl) var(--space-2xl);
    backdrop-filter: blur(20px);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
}

.mobile-nav a {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--diamond-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.mobile-nav a:hover {
    color: var(--luxury-gold);
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Ultra Premium Footer */
.main-footer {
    background: var(--gradient-primary);
    color: var(--diamond-white);
    padding: var(--space-5xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--diamond-white);
    margin-bottom: var(--space-xl);
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-md);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--luxury-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-2xl);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --space-5xl: 4rem;
        --space-4xl: 3rem;
        --space-3xl: 2rem;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: calc(100px + var(--space-3xl)) 0 var(--space-3xl);
        min-height: 80vh;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp {
        bottom: var(--space-xl);
        right: var(--space-xl);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .card-content {
        padding: var(--space-xl);
    }
    
    .hero-actions .btn {
        max-width: none;
    }
    
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000000;
        --text-primary: #000000;
        --bg-primary: #FFFFFF;
    }
}

/* Print styles */
@media print {
    .floating-whatsapp,
    .main-header,
    .mobile-nav {
        display: none !important;
    }
}
/* =========================================================
   GIZZO INT STORES - LUXURY DESIGN SYSTEM
   ========================================================= */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Color Palette */
    --rich-black: #0D0D0D;
    --ivory: #F7F4EF;
    --muted-gold: #B9925E;
    --muted-text: #888888;
    --pure-white: #FFFFFF;
    --warm-grey: #F5F2ED;
    --dark-grey: #2A2A2A;
    --accent-gold: #D4AF37;
    --success-green: #10B981;
    --error-red: #EF4444;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-subtle: 0 1px 3px rgba(13, 13, 13, 0.1);
    --shadow-soft: 0 4px 12px rgba(13, 13, 13, 0.15);
    --shadow-medium: 0 8px 24px rgba(13, 13, 13, 0.2);
    --shadow-strong: 0 16px 48px rgba(13, 13, 13, 0.3);
    
    /* Transitions */
    --transition-fast: 180ms ease-out;
    --transition-medium: 260ms ease-out;
    --transition-slow: 400ms ease-out;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--rich-black);
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--rich-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
}

/* Paragraphs and Text */
p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--muted-text);
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--muted-gold);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--muted-gold);
    color: var(--pure-white);
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--royal-purple);
    border: 1px solid var(--royal-purple);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
    background: var(--royal-purple);
    color: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    background: transparent;
    color: var(--rich-black);
    border: 1px solid var(--muted-text);
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--pure-white);
    box-shadow: var(--shadow-subtle);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
    min-height: 56px;
}

.btn-small {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    min-height: 40px;
}

.btn-full {
    width: 100%;
}

/* Card Components */
.card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--warm-grey);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: var(--space-xl);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--rich-black);
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-text);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.card-price {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--royal-purple);
    margin-bottom: var(--space-lg);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(61, 14, 111, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 193, 78, 0.25);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    color: var(--ivory);
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.main-nav a {
    font-weight: 500;
    color: var(--ivory);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.main-nav a:hover {
    color: var(--muted-gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--muted-gold);
    transition: width var(--transition-medium);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23B9925E" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--muted-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    color: var(--muted-text);
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styling */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel/Slider */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.carousel-container {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    background: var(--warm-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 13, 13, 0.8));
    color: var(--pure-white);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
}

.carousel-nav {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--royal-purple);
    transform: scale(1.2);
}

/* Form Styling */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--rich-black);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 1px solid var(--muted-text);
    border-radius: var(--radius-md);
    background: var(--pure-white);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--muted-gold);
    box-shadow: 0 0 0 3px rgba(185, 146, 94, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: all var(--transition-medium);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--rich-black);
    transition: all var(--transition-fast);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    z-index: 2000;
    padding: var(--space-4xl) var(--space-xl);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--rich-black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--muted-gold);
}

/* Footer */
.main-footer {
    background: var(--rich-black);
    color: var(--ivory);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--ivory);
    margin-bottom: var(--space-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--muted-gold);
}

.footer-bottom {
    border-top: 1px solid var(--dark-grey);
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--muted-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --space-4xl: 3rem;
        --space-3xl: 2rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .card-content {
        padding: var(--space-lg);
    }
    
    .hero-actions .btn {
        max-width: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--muted-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --muted-text: #000000;
        --rich-black: #000000;
        --ivory: #FFFFFF;
    }
}
