/* ═══════════════════════════════════════════════════════════════
   ZARQ LUXURY FASHION THEME — Main Stylesheet (Optimized)
   ═══════════════════════════════════════════════════════════════
   
   🎨 COLOR SYSTEM: All colors use CSS custom properties
   To change colors site-wide, edit the :root variables below
   OR use Customizer (if you add color settings there)
   
   📐 LAYOUT: All spacing/sizing uses consistent units
   📱 RESPONSIVE: 3 breakpoints — 1200px, 992px, 768px
   ═══════════════════════════════════════════════════════════════ */

/* ══════════ COLOR VARIABLES ══════════ */
:root {
    --z-bg-primary: #F8F9FB;
    --z-bg-secondary: #EEF0F5;
    --z-bg-white: #FFFFFF;
    --z-primary-blue: #2C3E50;
    --z-accent-blue: #5D7A9C;
    --z-light-blue: #8FA8C8;
    --z-muted-blue: #B8C8DC;
    --z-gold: #C9A962;
    --z-gold-light: #E8D5A3;
    --z-gold-dark: #A88B45;
    --z-text-dark: #1A1A2E;
    --z-text-muted: #6B7280;
    --z-text-light: #9CA3AF;
    --z-shadow-soft: 0 10px 40px rgba(44, 62, 80, 0.08);
    --z-shadow-medium: 0 20px 60px rgba(44, 62, 80, 0.12);
    --z-shadow-strong: 0 30px 80px rgba(44, 62, 80, 0.15);
    --z-shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.2);
    --z-header-height: 80px;
    --z-radius: 20px;
    --z-radius-sm: 15px;
    --z-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ══════════ RESET & BASE ══════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--z-bg-primary) 0%, var(--z-bg-secondary) 100%);
    color: var(--z-text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* Generic Headings Consistent Fallback */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--z-primary-blue);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--z-bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--z-accent-blue); border-radius: 3px; }

/* Container */
.zarq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ══════════ HEADER ══════════ */
.zarq-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--z-transition);
}

.zarq-header.zarq-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--z-shadow-soft);
}

.zarq-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 40px;
    gap: 40px;
}

/* ─── LEFT HAMBURGER (Main Drawer Toggle) ─── */
.zarq-drawer-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1100;
    flex-shrink: 0;
}

.zarq-drawer-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 22px;
}

.zarq-drawer-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--z-primary-blue);
    border-radius: 2px;
    transition: all var(--z-transition);
    transform-origin: center;
}

/* Hamburger → X animation */
.zarq-drawer-toggle.zarq-is-open .zarq-drawer-lines span:nth-child(1) {
    transform: rotate(45deg);
}

.zarq-drawer-toggle.zarq-is-open .zarq-drawer-lines span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ─── LOGO (Center) ─── */
.zarq-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--z-primary-blue);
    text-decoration: none;
    letter-spacing: 8px;
    position: relative;
    display: inline-block;
}

.zarq-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--z-gold);
}

.zarq-header .custom-logo-link {
    max-height: 50px;
    width: auto;
}

/* ─── DESKTOP NAV ─── */
.zarq-nav-menu {
    display: flex;
    gap: 40px;
}

.zarq-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-text-dark);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.zarq-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--z-gold);
    transition: width 0.3s ease;
}

.zarq-nav-link:hover,
.zarq-nav-link.zarq-nav-active {
    color: var(--z-gold);
}

.zarq-nav-link:hover::before,
.zarq-nav-link.zarq-nav-active::before {
    width: 100%;
}

/* ─── HEADER ACTION BUTTONS (FIXED FOR ISOLATION & CONTRAST) ─── */
.zarq-header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.zarq-action-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(44, 62, 80, 0.18);
    border-radius: 50%;
    background: var(--z-bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--z-transition);
    position: relative;
    overflow: hidden;
    color: var(--z-primary-blue);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.05);
    will-change: transform;
}

.zarq-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--z-primary-blue);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
    z-index: 1;
}

.zarq-action-btn:hover {
    border-color: var(--z-primary-blue);
    color: var(--z-bg-white) !important;
    box-shadow: var(--z-shadow-soft);
    transform: translateY(-2px);
}

.zarq-action-btn svg {
    position: relative;
    z-index: 2;
    transition: stroke 0.3s ease;
}

.zarq-action-btn:hover svg {
    stroke: var(--z-bg-white) !important;
}

.zarq-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--z-gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* Hide old mobile toggle */
.zarq-mobile-toggle-old { display: none !important; }

/* ══════════════════════════════════════════════════════════
   GLASSMORPHISM LEFT DRAWER
   ══════════════════════════════════════════════════════════ */

/* Backdrop */
.zarq-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zarq-drawer-backdrop.zarq-is-open {
    opacity: 1;
    visibility: visible;
}

/* Drawer Panel — The Glass Box */
.zarq-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 100vh;
    z-index: 1500;
    transform: translateX(-105%);
    transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* ── GLASSMORPHISM CORE ── */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(201, 169, 98, 0.08) 100%
    );
    backdrop-filter: blur(100px) saturate(200%);
    -webkit-backdrop-filter: blur(100px) saturate(200%);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        20px 0 60px rgba(0, 0, 0, 0.15),
        inset 1px 0 0 rgba(255, 255, 255, 0.2),
        inset -1px 0 0 rgba(255, 255, 255, 0.05);
}

.zarq-drawer.zarq-is-open {
    transform: translateX(0);
}

/* Drawer Header */
.zarq-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.zarq-drawer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--z-primary-blue);
    letter-spacing: 6px;
    text-decoration: none;
    position: relative;
}

.zarq-drawer-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--z-gold);
}

.zarq-drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(44, 62, 80, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--z-primary-blue);
    transition: all var(--z-transition);
}

.zarq-drawer-close:hover {
    background: rgba(201, 169, 98, 0.3);
    border-color: rgba(201, 169, 98, 0.4);
    color: var(--z-primary-blue);
    transform: rotate(90deg);
}

/* Drawer Nav Links */
.zarq-drawer-nav {
    padding: 25px 30px 15px;
    flex-shrink: 0;
}

.zarq-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zarq-drawer-link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 16px 24px;
    cursor: pointer;

    /* ── FIXED REAL GLASS EFFECT ── */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    transition: all var(--z-transition);
    will-change: transform;
}

.zarq-drawer-link:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(201, 169, 98, 0.15) 100%
    );
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow:
        0 8px 30px rgba(201, 169, 98, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    transform: translateY(-2px) scale(1.02);
}

/* ── MOUSE-FOLLOW LIGHT EFFECT ── */
.zarq-glass-btn-light,
.zarq-drawer-link .zarq-glass-btn-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: 0;
}

.zarq-drawer-link:hover .zarq-glass-btn-light,
.zarq-glass-btn:hover .zarq-glass-btn-light {
    opacity: 1;
}

/* Button Text */
.zarq-glass-btn-text,
.zarq-drawer-link .zarq-glass-btn-text {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--z-primary-blue);
    transition: color 0.3s ease;
}

.zarq-drawer-link:hover .zarq-glass-btn-text,
.zarq-glass-btn:hover .zarq-glass-btn-text {
    color: var(--z-gold-dark);
}

/* Drawer Divider */
.zarq-drawer-divider {
    height: 1px;
    margin: 10px 30px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(44, 62, 80, 0.12) 20%,
        rgba(44, 62, 80, 0.12) 80%,
        transparent 100%
    );
    flex-shrink: 0;
}

/* Drawer Extra Section */
.zarq-drawer-extra {
    padding: 10px 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

/* ── STANDALONE GLASS BUTTONS (FIXED FOR BLUR) ─── */
.zarq-glass-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 14px 24px;
    cursor: pointer;

    /* ── CRYSTAL GLASS BLUR ACTIVE ── */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    transition: all var(--z-transition);
    will-change: transform;
}

.zarq-glass-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(201, 169, 98, 0.12) 100%
    );
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow:
        0 8px 30px rgba(201, 169, 98, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    transform: translateY(-2px) scale(1.02);
}

.zarq-glass-btn-text {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-primary-blue);
    transition: color 0.3s ease;
}

.zarq-glass-btn:hover .zarq-glass-btn-text {
    color: var(--z-gold-dark);
}

/* Cart button special style */
.zarq-glass-btn-cart {
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.12) 0%,
        rgba(44, 62, 80, 0.04) 100%
    );
    border-color: rgba(44, 62, 80, 0.15);
}

.zarq-glass-btn-cart:hover {
    background: linear-gradient(
        135deg,
        rgba(201, 169, 98, 0.2) 0%,
        rgba(201, 169, 98, 0.08) 100%
    );
    border-color: rgba(201, 169, 98, 0.4);
}

/* Drawer Bottom */
.zarq-drawer-bottom {
    padding: 15px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    flex-shrink: 0;
}

/* Drawer Socials */
.zarq-drawer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
}

.zarq-drawer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--z-primary-blue);
    text-decoration: none;
    transition: all var(--z-transition);

    /* Glass effect */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.zarq-drawer-social-link:hover {
    background: rgba(201, 169, 98, 0.3);
    border-color: rgba(201, 169, 98, 0.4);
    color: var(--z-primary-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.2);
}

/* ══════════ SEARCH OVERLAY ══════════ */
.zarq-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--z-transition);
}

.zarq-search-overlay.zarq-is-open {
    opacity: 1;
    visibility: visible;
}

.zarq-search-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
    position: relative;
}

.zarq-search-close {
    position: absolute;
    top: -60px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--z-text-dark);
    transition: color 0.3s;
}

.zarq-search-close:hover { color: var(--z-gold); }

.zarq-search-form {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid var(--z-primary-blue);
    padding-bottom: 15px;
}

.zarq-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--z-text-dark);
    outline: none;
}

.zarq-search-input::placeholder { color: var(--z-text-light); }

.zarq-search-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--z-primary-blue);
    transition: color 0.3s;
    padding: 5px;
}

.zarq-search-submit:hover { color: var(--z-gold); }

/* ══════════ HERO ══════════ */
.zarq-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.zarq-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.zarq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248,249,251,0.9) 0%, rgba(238,240,245,0.7) 50%, rgba(248,249,251,0.9) 100%);
    z-index: 2;
}

.zarq-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zarq-hero-text { perspective: 1000px; }

.zarq-hero-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--z-gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.zarq-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--z-primary-blue);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
}

.zarq-hero-title span {
    display: block;
    font-style: italic;
    color: var(--z-accent-blue);
}

.zarq-hero-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--z-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
}

.zarq-hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.zarq-btn-primary {
    padding: 16px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: var(--z-primary-blue);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--z-transition);
    display: inline-block;
    text-align: center;
}

.zarq-btn-primary::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 0.5s ease;
}

.zarq-btn-primary:hover::before { left: 100%; }

.zarq-btn-primary:hover {
    background: var(--z-accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.2);
    color: white;
}

.zarq-btn-secondary {
    padding: 16px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-primary-blue);
    background: transparent;
    border: 1px solid var(--z-primary-blue);
    cursor: pointer;
    transition: all var(--z-transition);
    display: inline-block;
    text-align: center;
}

.zarq-btn-secondary:hover {
    background: var(--z-primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.2);
}

.zarq-hero-3d-product {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.zarq-product-3d-container {
    position: relative;
    width: 400px;
    height: 550px;
    transform-style: preserve-3d;
    animation: zarq-float 6s ease-in-out infinite;
}

@keyframes zarq-float {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(5deg) rotateX(-5deg); }
}

.zarq-product-card-3d {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--z-radius);
    box-shadow: 0 30px 80px rgba(44, 62, 80, 0.15), 0 10px 30px rgba(44, 62, 80, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transform-style: preserve-3d;
}

.zarq-product-image-3d {
    width: 100%;
    height: 75%;
    background: linear-gradient(135deg, var(--z-bg-secondary), var(--z-muted-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zarq-product-image-3d::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}

.zarq-product-info-3d {
    padding: 30px;
    transform: translateZ(30px);
}

.zarq-product-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-gold);
    margin-bottom: 8px;
}

.zarq-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--z-primary-blue);
    margin-bottom: 10px;
}

.zarq-product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--z-accent-blue);
}

.zarq-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--z-primary-blue);
    box-shadow: var(--z-shadow-soft);
    transform: translateZ(40px);
    animation: zarq-pulse 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes zarq-pulse {
    0%, 100% { transform: translateZ(40px) scale(1); }
    50% { transform: translateZ(40px) scale(1.05); }
}

.zarq-deco-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.zarq-deco-1 { width: 300px; height: 300px; background: linear-gradient(135deg, var(--z-muted-blue), transparent); top: -50px; right: -50px; opacity: 0.3; filter: blur(40px); }
.zarq-deco-2 { width: 200px; height: 200px; border: 2px solid var(--z-gold); bottom: 50px; left: -80px; opacity: 0.2; animation: zarq-rotate 20s linear infinite; }
.zarq-deco-3 { width: 100px; height: 100px; background: var(--z-gold); top: 100px; left: 50px; opacity: 0.1; filter: blur(20px); }

@keyframes zarq-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.zarq-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.zarq-scroll-indicator span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-text-muted);
}

.zarq-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--z-primary-blue), transparent);
    animation: zarq-scroll-down 2s ease-in-out infinite;
}

@keyframes zarq-scroll-down {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ══════════ SECTION HEADERS ══════════ */
.zarq-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.zarq-section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--z-gold);
    margin-bottom: 15px;
}

.zarq-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--z-primary-blue);
}

/* ══════════ CATEGORIES ══════════ */
.zarq-categories { padding: 100px 40px; }

.zarq-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.zarq-category-card {
    position: relative;
    height: 450px;
    border-radius: var(--z-radius);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform var(--z-transition);
    display: block;
}

.zarq-category-card:hover {
    transform: translateY(-15px) rotateX(5deg);
}

.zarq-category-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--z-bg-secondary), var(--z-muted-blue));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.zarq-category-card:hover .zarq-category-bg { transform: scale(1.1); }

.zarq-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.zarq-category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.zarq-category-card:hover .zarq-category-name { transform: translateY(0); }

.zarq-category-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-gold);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.zarq-category-card:hover .zarq-category-link {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════ FEATURED PRODUCTS SLIDER ══════════ */
.zarq-featured { padding: 100px 0; background: var(--z-bg-white); }

.zarq-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.zarq-slider-nav { display: flex; gap: 15px; }

.zarq-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--z-muted-blue);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--z-transition);
    color: var(--z-primary-blue);
}

.zarq-nav-btn:hover {
    background: var(--z-primary-blue);
    border-color: var(--z-primary-blue);
    transform: scale(1.1);
    color: white;
}

.zarq-nav-btn:hover svg { stroke: white; }

.zarq-product-slider {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.zarq-product-slider::-webkit-scrollbar { display: none; }

/* Product Card */
.zarq-product-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: var(--z-radius-sm);
    overflow: hidden;
    transition: all var(--z-transition);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: var(--z-shadow-soft);
}

.zarq-product-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    box-shadow: var(--z-shadow-strong);
}

.zarq-product-link { display: block; text-decoration: none; }

.zarq-product-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--z-bg-secondary), var(--z-muted-blue));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.zarq-product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.zarq-product-card:hover .zarq-product-image::before { opacity: 1; }

/* Quick Actions */
.zarq-quick-actions {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    z-index: 5;
}

.zarq-product-card:hover .zarq-quick-actions {
    bottom: 20px;
    opacity: 1;
}

.zarq-quick-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--z-shadow-soft);
    transition: all var(--z-transition);
    color: var(--z-primary-blue);
}

.zarq-quick-btn:hover {
    background: var(--z-primary-blue);
    transform: scale(1.1);
    color: white;
}

.zarq-quick-btn:hover svg { stroke: white; }

.zarq-product-details {
    padding: 25px;
    background: white;
    transform: translateZ(20px);
}

.zarq-product-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--z-gold);
    margin-bottom: 8px;
}

.zarq-product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--z-primary-blue);
    margin-bottom: 8px;
}

.zarq-product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--z-accent-blue);
}

/* ══════════ NEW ARRIVALS MASONRY ══════════ */
.zarq-new-arrivals { padding: 100px 40px; }

.zarq-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 400px;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.zarq-masonry-large { grid-column: span 2; grid-row: span 2; }
.zarq-masonry-wide { grid-column: span 2; }

.zarq-masonry-item {
    position: relative;
    border-radius: var(--z-radius-sm);
    overflow: hidden;
    background: var(--z-bg-white);
    box-shadow: var(--z-shadow-soft);
    transition: all var(--z-transition);
    transform-style: preserve-3d;
    display: block;
}

.zarq-masonry-item:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: var(--z-shadow-strong);
}

.zarq-masonry-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--z-bg-secondary), var(--z-muted-blue));
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.zarq-masonry-item:hover .zarq-masonry-img { transform: scale(1.1); }

.zarq-masonry-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zarq-masonry-item:hover .zarq-masonry-content { opacity: 1; }

.zarq-masonry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.zarq-masonry-item:hover .zarq-masonry-title { transform: translateY(0); }

.zarq-masonry-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--z-gold);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.zarq-masonry-item:hover .zarq-masonry-price { transform: translateY(0); }

/* ══════════ INSTAGRAM ══════════ */
.zarq-instagram { padding: 80px 0; background: var(--z-bg-white); }

.zarq-insta-header { text-align: center; margin-bottom: 40px; }

.zarq-insta-username {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--z-primary-blue);
}

.zarq-insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.zarq-insta-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all var(--z-transition);
    display: block;
}

.zarq-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zarq-insta-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.zarq-insta-item:hover::before { opacity: 1; }
.zarq-insta-item:hover img { transform: scale(1.1); }

.zarq-insta-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.zarq-insta-item:hover .zarq-insta-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.zarq-insta-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--z-shadow-medium);
}

/* ══════════ NEWSLETTER ══════════ */
.zarq-newsletter {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--z-bg-secondary), var(--z-muted-blue));
    position: relative;
    overflow: hidden;
}

.zarq-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.zarq-newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--z-primary-blue);
    margin-bottom: 15px;
}

.zarq-newsletter-text {
    font-size: 14px;
    color: var(--z-text-muted);
    margin-bottom: 30px;
}

.zarq-newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.zarq-newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 16px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.zarq-newsletter-input:focus { border-color: var(--z-primary-blue); }

.zarq-newsletter-btn {
    padding: 16px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    background: var(--z-primary-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--z-transition);
}

.zarq-newsletter-btn:hover {
    background: var(--z-accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--z-shadow-soft);
}

.zarq-newsletter-msg {
    width: 100%;
    margin-top: 10px;
    font-size: 13px;
    display: block;
}

.zarq-newsletter-msg.zarq-success { color: #22c55e; }
.zarq-newsletter-msg.zarq-error { color: #ef4444; }

/* ══════════ FOOTER ══════════ */
.zarq-footer {
    background: var(--z-primary-blue);
    color: white;
    padding: 80px 40px 30px;
}

.zarq-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.zarq-footer-brand .zarq-logo { color: white; font-size: 32px; }

.zarq-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    max-width: 280px;
}

.zarq-footer-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-gold);
    margin-bottom: 25px;
}

.zarq-footer-links li { margin-bottom: 12px; }

.zarq-footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--z-transition);
}

.zarq-footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.zarq-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.zarq-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.zarq-social-links { display: flex; gap: 15px; }

.zarq-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--z-transition);
}

.zarq-social-link:hover {
    background: var(--z-gold);
    border-color: var(--z-gold);
    transform: translateY(-3px);
}

/* ══════════ BLOG ══════════ */
.zarq-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.zarq-blog-card {
    background: var(--z-bg-white);
    border-radius: var(--z-radius-sm);
    overflow: hidden;
    box-shadow: var(--z-shadow-soft);
    transition: all var(--z-transition);
}

.zarq-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--z-shadow-medium);
}

.zarq-blog-thumb {
    display: block;
    height: 250px;
    overflow: hidden;
}

.zarq-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zarq-blog-card:hover .zarq-blog-thumb img { transform: scale(1.08); }

.zarq-blog-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--z-bg-secondary), var(--z-muted-blue));
}

.zarq-blog-info { padding: 25px; }

.zarq-blog-date {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-gold);
}

.zarq-blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--z-primary-blue);
    margin: 10px 0;
    line-height: 1.3;
}

.zarq-blog-title a { transition: color 0.3s; }
.zarq-blog-title a:hover { color: var(--z-gold); }

.zarq-blog-excerpt {
    font-size: 14px;
    color: var(--z-text-muted);
    line-height: 1.7;
}

.zarq-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.zarq-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--z-muted-blue);
    border-radius: 50%;
    font-size: 14px;
    color: var(--z-primary-blue);
    transition: all 0.3s;
}

.zarq-pagination .page-numbers.current,
.zarq-pagination .page-numbers:hover {
    background: var(--z-primary-blue);
    border-color: var(--z-primary-blue);
    color: white;
}

/* ══════════ SINGLE POST / PAGE ══════════ */
.zarq-single-thumb { margin-bottom: 40px; border-radius: var(--z-radius); overflow: hidden; }
.zarq-single-thumb img { width: 100%; }

.zarq-single-header { margin-bottom: 40px; }

.zarq-single-date {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-gold);
}

.zarq-single-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--z-primary-blue);
    margin: 15px 0;
    line-height: 1.2;
}

.zarq-single-cats { font-size: 13px; color: var(--z-text-muted); }
.zarq-single-cats a { color: var(--z-accent-blue); transition: color 0.3s; }
.zarq-single-cats a:hover { color: var(--z-gold); }

.zarq-single-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--z-text-muted);
}

.zarq-single-content h2, .zarq-single-content h3, .zarq-single-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--z-primary-blue);
    margin: 30px 0 15px;
}

.zarq-single-content p { margin-bottom: 20px; }

.zarq-single-content img { border-radius: var(--z-radius-sm); margin: 20px 0; }

.zarq-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--z-primary-blue);
    margin-bottom: 30px;
}

.zarq-page-content { font-size: 16px; line-height: 1.9; color: var(--z-text-muted); }
.zarq-page-content p { margin-bottom: 20px; }

/* ══════════ 404 ══════════ */
.zarq-404-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.zarq-404-content { text-align: center; }

.zarq-404-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--z-gold);
    margin-bottom: 10px;
}

.zarq-404-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: var(--z-primary-blue);
    line-height: 1;
    margin-bottom: 20px;
}

.zarq-404-text {
    font-size: 16px;
    color: var(--z-text-muted);
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════ SHOP PAGE ══════════ */
.zarq-shop-header { margin-bottom: 40px; }

.zarq-shop-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--z-primary-blue);
    text-align: center;
}

.zarq-shop-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

.zarq-shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zarq-woo-card {
    border-radius: var(--z-radius-sm);
    overflow: hidden;
    box-shadow: var(--z-shadow-soft);
    transition: all var(--z-transition);
    background: white;
}

.zarq-woo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--z-shadow-strong);
}

.zarq-sidebar {
    position: sticky;
    top: 100px;
}

.zarq-widget {
    background: var(--z-bg-white);
    border-radius: var(--z-radius-sm);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--z-shadow-soft);
}

.zarq-widget-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--z-primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--z-bg-secondary);
}

/* WooCommerce element overrides */
.zarq-shop-products .woocommerce-loop-product__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--z-primary-blue) !important;
    padding: 0 !important;
    margin-bottom: 5px !important;
}

.zarq-shop-products .price {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--z-accent-blue) !important;
}

.zarq-shop-products .price del {
    color: var(--z-text-light) !important;
    font-size: 14px !important;
}

.zarq-shop-products .price ins {
    color: var(--z-accent-blue) !important;
}

.zarq-shop-products a.woocommerce-loop-product__link {
    display: block;
}

.zarq-shop-products .woocommerce-loop-product__image {
    position: relative;
    overflow: hidden;
}

.zarq-shop-products .woocommerce-loop-product__image img {
    border-radius: 0 !important;
    transition: transform 0.5s ease !important;
}

.zarq-woo-card:hover .woocommerce-loop-product__image img {
    transform: scale(1.05) !important;
}

.zarq-onsale {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: var(--z-gold) !important;
    color: white !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    border-radius: 30px !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    min-width: auto !important;
    min-height: auto !important;
}

.zarq-shop-products .button,
.zarq-shop-products a.add_to_cart_button {
    display: inline-block !important;
    padding: 12px 25px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: white !important;
    background: var(--z-primary-blue) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
}

.zarq-shop-products .button:hover,
.zarq-shop-products a.add_to_cart_button:hover {
    background: var(--z-accent-blue) !important;
    color: white !important;
}

/* ══════════ SINGLE PRODUCT ══════════ */
.zarq-single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.zarq-sp-gallery {
    position: sticky;
    top: 100px;
}

.zarq-sp-info {
    padding: 20px 0;
}

.zarq-sp-info .product_title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    color: var(--z-primary-blue) !important;
    margin-bottom: 15px !important;
}

.zarq-sp-info .price {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--z-accent-blue) !important;
    margin-bottom: 20px !important;
}

.zarq-sp-info .woocommerce-product-details__short-description {
    font-size: 15px !important;
    color: var(--z-text-muted) !important;
    line-height: 1.8 !important;
    margin-bottom: 25px !important;
}

.zarq-sp-info .quantity .qty {
    width: 60px !important;
    height: 50px !important;
    border: 1px solid var(--z-muted-blue) !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
}

.zarq-sp-info button.single_add_to_cart_button {
    padding: 18px 50px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: white !important;
    background: var(--z-primary-blue) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.zarq-sp-info button.single_add_to_cart_button:hover {
    background: var(--z-accent-blue) !important;
}

.zarq-sp-tabs {
    margin-top: 60px;
}

.zarq-sp-tabs .woocommerce-tabs {
    border: none !important;
}

.zarq-sp-tabs .wc-tabs {
    border-bottom: 2px solid var(--z-bg-secondary) !important;
    margin-bottom: 30px !important;
}

.zarq-sp-tabs .wc-tabs li {
    border: none !important;
    background: none !important;
    margin-right: 30px !important;
}

.zarq-sp-tabs .wc-tabs li a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--z-text-muted) !important;
    padding: 10px 0 !important;
}

.zarq-sp-tabs .wc-tabs li.active a {
    color: var(--z-primary-blue) !important;
    border-bottom: 2px solid var(--z-gold) !important;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1200px) {
    .zarq-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .zarq-masonry-grid { grid-template-columns: repeat(3, 1fr); }
    .zarq-masonry-large { grid-column: span 2; }
    .zarq-insta-grid { grid-template-columns: repeat(3, 1fr); }
    .zarq-footer-grid { grid-template-columns: repeat(3, 1fr); }
    .zarq-shop-products { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 992px) {
    .zarq-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    .zarq-hero-description { margin: 0 auto 40px; }
    .zarq-hero-buttons { justify-content: center; }
    .zarq-hero-3d-product { height: 450px; }
    .zarq-product-3d-container { width: 320px; height: 450px; }
    .zarq-nav-menu { display: none; }
    .zarq-mobile-toggle-old { display: flex; }
    .zarq-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .zarq-single-product-layout { grid-template-columns: 1fr; }
    .zarq-shop-layout { grid-template-columns: 1fr; }
    .zarq-sidebar { position: static; }
}

@media (max-width: 768px) {
    .zarq-container { padding: 0 20px; }
    .zarq-header-inner { padding: 15px 20px; }
    .zarq-logo { font-size: 28px; letter-spacing: 4px; }
    .zarq-categories { padding: 60px 20px; }
    .zarq-categories-grid { grid-template-columns: 1fr; gap: 20px; }
    .zarq-category-card { height: 350px; }
    .zarq-featured-header { padding: 0 20px 30px; flex-direction: column; gap: 20px; align-items: flex-start; }
    .zarq-product-slider { padding: 0 20px; }
    .zarq-product-card { flex: 0 0 280px; }
    .zarq-product-image { height: 320px; }
    .zarq-new-arrivals { padding: 60px 20px; }
    .zarq-masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .zarq-masonry-large, .zarq-masonry-wide { grid-column: span 1; grid-row: span 1; }
    .zarq-insta-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
    .zarq-newsletter { padding: 60px 20px; }
    .zarq-footer { padding: 60px 20px 20px; }
    .zarq-footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .zarq-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .zarq-section-title { font-size: 32px; }
    .zarq-blog-grid { grid-template-columns: 1fr; }
    .zarq-shop-products { grid-template-columns: 1fr; }
    .zarq-hero-3d-product { display: none; }
    .zarq-hero-content { padding-top: 120px; }
    .zarq-mobile-menu { width: 100%; }
    .zarq-drawer { width: 100%; }
}
/* ==========================================================================
   ZARQ ULTRA PREMIUM BLUR & HEADER ACTIONS OVERRIDE
   ========================================================================== */

/* ─── 1. HEADER ACTIONS ICONS VISIBILITY FIX ─── */
.zarq-header-actions .zarq-action-btn {
    border: 1px solid rgba(44, 62, 80, 0.15) !important;
    background-color: var(--z-bg-white) !important;
    color: var(--z-primary-blue) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 10;
}

/* Force SVGs to be perfectly visible with exact contrast */
.zarq-header-actions .zarq-action-btn svg {
    stroke: var(--z-primary-blue) !important;
    stroke-width: 2px !important; /* Thicker for elegant crisp look */
    fill: none !important;
    width: 18px !important;
    height: 18px !important;
    position: relative;
    z-index: 3;
    transition: stroke 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Hover State Animations */
.zarq-header-actions .zarq-action-btn:hover {
    background-color: var(--z-primary-blue) !important;
    border-color: var(--z-primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: var(--z-shadow-soft) !important;
}

.zarq-header-actions .zarq-action-btn:hover svg {
    stroke: var(--z-bg-white) !important; /* Hover par white icons */
}

/* Cart badge isolation */
.zarq-header-actions .zarq-cart-count {
    background: var(--z-gold) !important;
    color: #FFFFFF !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    border: 2px solid var(--z-bg-white) !important;
    top: -4px !important;
    right: -4px !important;
}

/* ─── 2. DRAWER GLASSMORPHISM EXTREME BLUR (OPEN STATE) ─── */
/* Backdrop fix */
.zarq-drawer-backdrop.zarq-is-open {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(26, 26, 46, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Crystal Mirror Drawer Effect when open */
.zarq-drawer.zarq-is-open {
    transform: translateX(0) !important;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 100%
    ) !important;
    backdrop-filter: blur(40px) saturate(220%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(220%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 25px 0 70px rgba(26, 26, 46, 0.15) !important;
}

/* Menu items internal premium glass refraction */
.zarq-drawer-links li a {
    display: block;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    color: var(--z-primary-blue) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.zarq-drawer-links li a:hover {
    background: rgba(201, 169, 98, 0.15) !important;
    border-color: rgba(201, 169, 98, 0.4) !important;
    color: var(--z-gold-dark) !important;
    transform: translateX(5px);
}