/*
Theme Name: NewCorella
Theme URI: https://velura-theme.com
Author: Velura Design Studio
Author URI: https://velura-theme.com
Description: A modern, fast, and responsive WordPress e-commerce theme optimized for fashion brands. Features a clean, minimalist, premium aesthetic with WooCommerce integration, Elementor/Gutenberg support, and Core Web Vitals optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: velura
Tags: e-commerce, woocommerce, fashion, responsive, mobile-first, gutenberg, elementor, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options
WC requires at least: 7.0
WC tested up to: 8.4
*/

/* ============================================
   VELURA FASHION THEME
   Modern E-Commerce for Fashion Brands
   ============================================ */

/* CSS Custom Properties - Design Tokens */
:root {
    /* Color Palette */
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;
    --color-beige: #E8E0D5;
    --color-beige-light: #F5F1EC;
    --color-beige-dark: #C4B8A8;
    
    /* Pastel Accents */
    --color-blush: #E8C4C4;
    --color-sage: #C4D4C0;
    --color-lavender: #D4C4E8;
    --color-sky: #C4D8E8;
    
    /* Neutral Grays */
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-400: #A3A3A3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Italiana', serif;
    
    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-xl: clamp(1.15rem, 1.05rem + 0.5vw, 1.25rem);
    --text-2xl: clamp(1.4rem, 1.2rem + 1vw, 1.5rem);
    --text-3xl: clamp(1.75rem, 1.5rem + 1.25vw, 1.875rem);
    --text-4xl: clamp(2rem, 1.5rem + 2.5vw, 2.25rem);
    --text-5xl: clamp(2.5rem, 1.75rem + 3.75vw, 3rem);
    --text-6xl: clamp(3rem, 2rem + 5vw, 3.75rem);
    --text-hero: clamp(3.5rem, 2rem + 7.5vw, 6rem);
    
    /* Spacing */
    --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;
    
    /* Layout */
    --container-max: 1440px;
    --container-content: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;
    --header-height-scrolled: 64px;
    
    /* Borders & Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

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

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

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

p {
    margin-bottom: var(--space-md);
}

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

a:hover {
    color: var(--color-gray-600);
}

strong, b {
    font-weight: 600;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

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

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

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

.section {
    padding-block: var(--space-4xl);
}

.section--sm {
    padding-block: var(--space-2xl);
}

.section--lg {
    padding-block: var(--space-5xl);
}

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

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid--4,
    .grid--3,
    .grid--2 { grid-template-columns: 1fr; }
}

/* Flexbox 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); }

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--color-white);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--color-gray-100);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .header-main {
    height: var(--header-height-scrolled);
}

.header-announcement {
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding-inline: var(--space-xl);
    transition: height var(--transition-base);
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
}

.header-right {
    justify-content: flex-end;
}

.site-logo {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-logo img,
.custom-logo {
    height: auto !important;
    max-height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
    display: block;
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-xl);
    }
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-700);
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-black);
}

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

/* Mega Menu */
.mega-menu-trigger {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    padding: var(--space-2xl);
}

.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.mega-menu-column h4 {
    font-size: var(--text-sm);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-gray-200);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column li {
    margin-bottom: var(--space-sm);
}

.mega-menu-column a {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.mega-menu-column a:hover {
    color: var(--color-black);
}

.mega-menu-featured {
    background: var(--color-beige-light);
    padding: var(--space-lg);
    text-align: center;
}

.mega-menu-featured img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: var(--space-md);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.header-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gray-700);
    stroke-width: 1.5;
    fill: none;
    transition: stroke var(--transition-fast);
}

.header-icon:hover svg {
    stroke: var(--color-black);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--color-black);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: var(--z-modal);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
    padding: var(--space-5xl) var(--space-xl) var(--space-xl);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-black);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
}

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8%;
    max-width: 600px;
}

.hero-slide-subtitle {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-slide-title {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    font-weight: 300;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-slide-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-nav-dot.active {
    background: var(--color-white);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.hero-arrow:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.hero-arrow--prev { left: var(--space-xl); }
.hero-arrow--next { right: var(--space-xl); }

/* ============================================
   BUTTONS
   ============================================ */

.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-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn--primary {
    background: var(--color-black);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-gray-800);
    color: var(--color-white);
}

.btn--secondary {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

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

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

.btn--white:hover {
    background: var(--color-beige);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

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

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
}

/* ============================================
   CATEGORY BLOCKS
   ============================================ */

.categories-section {
    padding: var(--space-4xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
}

.category-card-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.category-card-link {
    font-size: var(--text-sm);
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-card-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.category-card:hover .category-card-link::after {
    transform: translateX(4px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-subtitle {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--color-black);
}

.section-header--left {
    text-align: left;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-gray-100);
    margin-bottom: var(--space-md);
}

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

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

.product-card-image-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.product-card-badges {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.product-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-badge--sale {
    background: var(--color-blush);
    color: var(--color-black);
}

.product-badge--new {
    background: var(--color-black);
    color: var(--color-white);
}

.product-card-actions {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    display: flex;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card-action {
    flex: 1;
    padding: var(--space-sm);
    background: var(--color-white);
    border: none;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-card-action:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.product-card-wishlist {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-fast);
}

.product-card:hover .product-card-wishlist {
    opacity: 1;
}

.product-card-wishlist svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gray-700);
    fill: none;
}

.product-card-wishlist:hover svg,
.product-card-wishlist.active svg {
    fill: var(--color-blush);
    stroke: var(--color-blush);
}

.product-card-info {
    text-align: center;
}

.product-card-category {
    font-size: var(--text-xs);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.product-card-title {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.product-card-title a:hover {
    text-decoration: underline;
}

.product-card-price {
    font-size: var(--text-base);
    color: var(--color-gray-700);
}

.product-card-price del {
    color: var(--color-gray-400);
    margin-right: var(--space-sm);
}

.product-card-price ins {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
}

/* Color Swatches */
.product-card-colors {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.color-swatch {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* ============================================
   BANNER / PROMO SECTION
   ============================================ */

.promo-banner {
    position: relative;
    overflow: hidden;
    background: var(--color-beige);
}

.promo-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

@media (max-width: 768px) {
    .promo-banner-inner {
        grid-template-columns: 1fr;
    }
}

.promo-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-4xl);
}

.promo-banner-subtitle {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-600);
    margin-bottom: var(--space-md);
}

.promo-banner-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.promo-banner-text {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
    max-width: 400px;
}

.promo-banner-image {
    position: relative;
}

.promo-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   PRODUCT FILTERS (Shop Page)
   ============================================ */

.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-gray-200);
    margin-bottom: var(--space-xl);
}

.shop-results {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.shop-sort select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    cursor: pointer;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-toggle:hover {
    border-color: var(--color-black);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    height: fit-content;
}

@media (max-width: 1024px) {
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: var(--color-white);
        z-index: var(--z-modal);
        transform: translateX(-100%);
        transition: transform var(--transition-smooth);
        padding: var(--space-xl);
        overflow-y: auto;
    }
    
    .shop-sidebar.active {
        transform: translateX(0);
    }
}

.filter-group {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-gray-100);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-title {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.filter-group-title::after {
    content: '−';
    font-size: var(--text-lg);
}

.filter-group.collapsed .filter-group-title::after {
    content: '+';
}

.filter-group.collapsed .filter-group-content {
    display: none;
}

/* Color Filter */
.filter-colors {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-color {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.filter-color.active {
    border-color: var(--color-black);
}

.filter-color::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 12px;
    opacity: 0;
}

.filter-color.active::after {
    opacity: 1;
}

/* Size Filter */
.filter-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-size {
    min-width: 44px;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    font-size: var(--text-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-size:hover {
    border-color: var(--color-black);
}

.filter-size.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Price Range */
.filter-price-range {
    padding: var(--space-md) 0;
}

.price-slider {
    position: relative;
    height: 4px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.price-slider-fill {
    position: absolute;
    height: 100%;
    background: var(--color-black);
    border-radius: var(--radius-full);
}

.price-slider-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.price-input {
    flex: 1;
    padding: var(--space-sm);
    border: 1px solid var(--color-gray-200);
    font-size: var(--text-sm);
    text-align: center;
}

.price-separator {
    color: var(--color-gray-400);
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */

.single-product {
    padding-top: calc(var(--header-height) + var(--space-2xl));
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--color-gray-100);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-zoom {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-gallery-main:hover .gallery-zoom {
    opacity: 1;
}

.product-gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
}

.product-gallery-thumb {
    width: 80px;
    aspect-ratio: 3/4;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    border: 2px solid transparent;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    opacity: 1;
    border-color: var(--color-black);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Summary */
.product-summary {
    padding: var(--space-lg) 0;
}

.product-breadcrumb {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-lg);
}

.product-breadcrumb a:hover {
    color: var(--color-black);
}

.product-breadcrumb span {
    margin: 0 var(--space-sm);
}

.product-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.product-price {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
}

.product-price del {
    color: var(--color-gray-400);
    font-size: var(--text-lg);
    margin-right: var(--space-sm);
}

.product-price ins {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
}

.product-description-short {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-gray-100);
}

/* Product Options */
.product-option {
    margin-bottom: var(--space-xl);
}

.product-option-label {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.size-guide-link {
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
}

/* Product Sizes */
.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.product-size {
    min-width: 50px;
    padding: var(--space-md);
    border: 1px solid var(--color-gray-300);
    background: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-size:hover {
    border-color: var(--color-black);
}

.product-size.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.product-size.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Product Colors */
.product-colors {
    display: flex;
    gap: var(--space-sm);
}

.product-color {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.product-color.active {
    border-color: var(--color-black);
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-gray-300);
}

.quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: var(--text-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--color-gray-100);
}

.quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--color-gray-300);
    border-right: 1px solid var(--color-gray-300);
    text-align: center;
    font-size: var(--text-base);
    font-family: var(--font-body);
}

/* Add to Cart */
.product-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.btn-add-to-cart {
    flex: 1;
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gray-300);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-wishlist:hover {
    border-color: var(--color-black);
}

.btn-wishlist svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gray-700);
    fill: none;
}

/* Product Meta */
.product-meta {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-gray-100);
}

.product-meta p {
    margin-bottom: var(--space-sm);
}

.product-meta strong {
    color: var(--color-black);
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-gray-50);
    margin-top: var(--space-xl);
}

.product-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.product-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-600);
}

/* Size Guide Modal */
.size-guide-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.size-guide-modal.active {
    opacity: 1;
    visibility: visible;
}

.size-guide-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.size-guide-content {
    position: relative;
    background: var(--color-white);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-2xl);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.size-guide-modal.active .size-guide-content {
    transform: translateY(0);
}

.size-guide-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-lg);
}

.size-guide-table th,
.size-guide-table td {
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--color-gray-200);
    font-size: var(--text-sm);
}

.size-guide-table th {
    background: var(--color-gray-100);
    font-weight: 600;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */

.related-products {
    padding: var(--space-4xl) 0;
    border-top: 1px solid var(--color-gray-100);
    margin-top: var(--space-4xl);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--color-black);
    color: var(--color-white);
}

.footer-main {
    padding: var(--space-4xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-2xl);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-about .footer-logo {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.footer-about p {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-white);
    border-color: var(--color-white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
    transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
    fill: var(--color-black);
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--color-white);
}

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

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

.footer-column a {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-white);
}

/* Newsletter */
.footer-newsletter {
    margin-top: var(--space-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-md);
    background: transparent;
    border: 1px solid var(--color-gray-700);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.newsletter-input::placeholder {
    color: var(--color-gray-500);
}

.newsletter-btn {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border: none;
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-btn:hover {
    background: var(--color-beige);
}

/* Instagram Feed */
.footer-instagram {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-gray-800);
}

.footer-instagram h4 {
    text-align: center;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.instagram-item:hover .instagram-item-overlay {
    opacity: 1;
}

.instagram-item-overlay svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-gray-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer-payments {
    display: flex;
    gap: var(--space-sm);
}

.footer-payments img {
    height: 24px;
    opacity: 0.6;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    border: none;
    background: var(--color-beige-light);
    font-size: var(--text-sm);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--color-black);
}

.woocommerce-error {
    background: var(--color-blush);
}

/* Cart Page */
.woocommerce-cart-form {
    margin-bottom: var(--space-2xl);
}

.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-gray-100);
}

.woocommerce table.shop_table th {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Checkout Page */
.woocommerce-checkout .form-row label {
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.woocommerce-checkout .input-text {
    padding: var(--space-md);
    border: 1px solid var(--color-gray-300);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.woocommerce-checkout .input-text:focus {
    border-color: var(--color-black);
    outline: none;
}

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

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   CRITICAL CSS FIXES - v1.1
   Fix navigation bullets and scrolling issues
   ============================================ */

/* Fix body scrolling */
html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
}

body {
    position: relative !important;
}

/* Fix ALL navigation menus - remove bullets universally */
.site-header ul,
.site-header ol,
.header-main ul,
.header-main ol,
.main-nav ul,
.main-nav ol,
#masthead ul,
#masthead ol,
header ul,
header ol,
.menu ul,
.menu ol,
nav ul,
nav ol,
#page > div > ul,
#page > ul,
.site > ul,
body > div > ul {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove bullet markers */
.site-header li,
.header-main li,
.main-nav li,
#masthead li,
header li,
.menu li,
nav li,
#page > div > ul li,
#page > ul li {
    list-style: none !important;
    list-style-type: none !important;
}

/* Remove ::marker pseudo-element bullets */
.site-header li::marker,
.header-main li::marker,
header li::marker,
nav li::marker,
.menu li::marker {
    content: none !important;
    display: none !important;
}

/* Style navigation links - horizontal layout */
.site-header .menu,
.header-main .menu,
#masthead .menu,
header .menu {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-lg);
}

.site-header .menu li,
.header-main .menu li,
#masthead .menu li,
header .menu > li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .menu a,
.header-main .menu a,
.main-nav a,
#masthead .menu a,
header .menu a {
    display: inline-block;
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-header .menu a:hover,
.header-main .menu a:hover,
.main-nav a:hover,
#masthead .menu a:hover,
header .menu a:hover {
    color: var(--color-black);
}

/* Site content offset for fixed header */
.site-content,
#content,
main,
.woocommerce-page .site-content {
    padding-top: var(--header-height);
}

/* Homepage hero shouldn't have extra padding */
.home .site-content {
    padding-top: 0;
}

/* Mobile menu fixes */
.mobile-menu ul,
.mobile-menu ol {
    list-style: none !important;
}

.mobile-menu li {
    display: block !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--color-gray-100);
    list-style: none !important;
}

.mobile-menu a {
    display: block;
    padding: var(--space-md) 0;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-black);
}

/* Product grid fixes */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

.woocommerce ul.products li.product {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}

/* Shop page header styling */
.shop-page-header,
.woocommerce-products-header {
    background: var(--color-beige-light);
    padding: var(--space-3xl) 0;
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Footer list fixes */
.site-footer ul,
.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer li,
.footer-column li {
    list-style: none !important;
}

/* Elementor compatibility - preserve lists in content */
.elementor-widget-text-editor ul,
.elementor-widget-text-editor ol,
.entry-content ul,
.entry-content ol {
    list-style: inherit;
    padding-left: 1.5rem;
}

/* Admin bar spacing */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* Fix hero section on homepage */
.home .hero {
    margin-top: 0;
}

.hero {
    position: relative;
    min-height: 500px;
    height: calc(100vh - var(--header-height));
    max-height: 900px;
}

/* Ensure images display properly */
.hero-slide-image img,
.category-card img,
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CORELLA STORE - PREMIUM HERO STYLING
   ============================================ */

/* Hero Section - Full viewport with animations */
.hero {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 500px;
    max-height: 900px;
    margin-top: 0;
    overflow: hidden;
}

.home .hero {
    margin-top: 0;
}

/* Hero Slide - Ken Burns Effect */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image img {
    transform: scale(1.1);
}

/* Hero Content Animation */
.hero-slide-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 600px;
    z-index: 10;
}

.hero-slide .hero-slide-subtitle,
.hero-slide .hero-slide-title,
.hero-slide .hero-slide-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animated text classes */
.hero-slide .animate-text,
.hero-slide .animate-title,
.hero-slide .animate-btn {
    opacity: 0;
    transform: translateY(50px);
}

.hero-slide.active .animate-text {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-slide.active .animate-title {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.hero-slide.active .animate-btn {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Word by word animation */
.hero-slide-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg);
    transform-origin: bottom;
}

.hero-slide.active .hero-slide-title .word {
    animation: wordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.4s + (var(--word-index) * 0.1s));
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(-20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Text shine effect */
.text-shine {
    background: linear-gradient(
        120deg,
        #d4a853 0%,
        #f0d78c 25%,
        #d4a853 50%,
        #f0d78c 75%,
        #d4a853 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Pulse button effect */
.pulse-btn {
    position: relative;
    overflow: hidden;
}

.pulse-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pulse-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating animation for CTA */
.hero-slide.active .animate-btn {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Slide Content - Better positioning */
.hero-slide-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 600px;
    z-index: 10;
}

/* Hero Subtitle - Gold accent with animation */
.hero-slide-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #d4a853;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-slide-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmerText 3s infinite;
}

@keyframes shimmerText {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Title - Elegant typography with glow */
.hero-slide-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-shadow: 
        0 0 20px rgba(212, 168, 83, 0.5),
        0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

/* Animated text reveal */
.hero-slide-title span {
    display: inline-block;
    animation: textReveal 0.8s ease forwards;
    animation-delay: calc(var(--char-index, 0) * 0.05s);
}

/* Hero CTA Button - Gold style */
.btn--gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4a853 0%, #c19a3e 100%);
    color: #FFFFFF;
    border: none;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.btn--gold:hover {
    background: linear-gradient(135deg, #c19a3e 0%, #b08a30 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
    color: #FFFFFF;
}

.btn--gold svg {
    transition: transform 0.3s ease;
}

.btn--gold:hover svg {
    transform: translateX(5px);
}

/* Hero Arrows - HIDDEN */
.hero-arrow {
    display: none !important;
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4a853, #f0d78c, #d4a853);
    background-size: 200% 100%;
    width: 0%;
    animation: progressBar 6s linear infinite, shimmer 2s linear infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Hero Navigation Dots - Gold style */
.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-nav-dot:hover {
    border-color: #d4a853;
}

.hero-nav-dot.active {
    background: #d4a853;
    border-color: #d4a853;
    transform: scale(1.2);
}

/* Hero Overlay - Premium gradient */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(26, 26, 26, 0.3) 30%,
        rgba(212, 168, 83, 0.15) 60%,
        transparent 100%
    );
    z-index: 1;
}

/* Special overlay for slide 1 */
.hero-slide[data-slide="0"] .hero-slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.4) 25%,
        rgba(212, 168, 83, 0.2) 50%,
        rgba(212, 168, 83, 0.1) 75%,
        transparent 100%
    );
}

/* Golden glow effect on slide 1 */
.hero-slide[data-slide="0"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 168, 83, 0.15) 0%,
        transparent 70%
    );
    z-index: 2;
    pointer-events: none;
    animation: goldenGlow 4s ease-in-out infinite;
}

@keyframes goldenGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Mobile responsiveness for hero */
@media (max-width: 768px) {
    .hero-slide-content {
        bottom: 20%;
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-arrow {
        width: 45px;
        height: 45px;
    }
    
    .hero-arrow--prev {
        left: 10px;
    }
    
    .hero-arrow--next {
        right: 10px;
    }
    
    .btn--gold {
        padding: 14px 24px;
        font-size: 12px;
    }
}

/* ============================================
   HEADER - PREMIUM GOLD ACCENT
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #FFFFFF;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

/* Site content spacing */
.site-content {
    padding-top: 0;
}

.home .site-content {
    padding-top: 0;
}

/* Remove any extra spacing */
.front-page,
.home .site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero starts right after header */
.hero {
    margin-top: 0 !important;
}

/* Gold accent for icons on hover */
.header-icon:hover svg {
    stroke: #d4a853;
}

/* ============================================
   PRODUCT CARDS - PREMIUM HOVER EFFECTS
   ============================================ */

.product-card {
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Gold badge for NEW products */
.product-badge--new {
    background: linear-gradient(135deg, #d4a853 0%, #c19a3e 100%);
    color: #FFFFFF;
}

/* ============================================
   PRODUCT IMAGE WATERMARK PROTECTION
   Logo watermark to protect photos
   ============================================ */

.product-card-image,
.product-gallery-main,
.woocommerce-product-gallery__image {
    position: relative;
}

/* Watermark overlay */
.product-card-image::before,
.product-gallery-main::before,
.woocommerce-product-gallery__image::before {
    content: 'CORELLA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-family: var(--font-display), Georgia, serif;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    user-select: none;
}

/* Repeating watermark pattern */
.product-card-image::after,
.product-gallery-main::after,
.woocommerce-product-gallery__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 100px,
            rgba(212, 168, 83, 0.03) 100px,
            rgba(212, 168, 83, 0.03) 101px
        );
    pointer-events: none;
    z-index: 4;
}

/* Smaller watermark for product cards */
.product-card-image::before {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.1);
}

/* Disable right-click on images */
.product-card-image img,
.product-gallery-main img,
.woocommerce-product-gallery img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

/* Re-enable pointer events on parent for clicks */
.product-card-image,
.product-gallery-main {
    cursor: pointer;
}

/* Corner watermark logo */
.product-gallery-main .watermark-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 80px;
    height: auto;
    opacity: 0.4;
    z-index: 10;
    pointer-events: none;
}

/* ============================================
   FOOTER - ELEGANT DARK STYLE
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.footer-social a:hover {
    background: #d4a853;
    border-color: #d4a853;
}

.footer-column a:hover {
    color: #d4a853;
}

/* Newsletter button */
.newsletter-btn:hover {
    background: #d4a853;
}

/* ============================================
   MORE COLOR EFFECTS - PREMIUM DESIGN
   ============================================ */

/* Colorful gradient backgrounds */
.order-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%) !important;
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(212, 168, 83, 0.1) 0%,
        transparent 50%
    );
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Colorful product badges */
.product-badge--sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

/* Rainbow border on hover */
.product-card:hover .product-card-image {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #d4a853, #f0d78c, #d4a853) border-box;
}

/* Colorful buttons */
.btn--primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 168, 83, 0.3),
        transparent
    );
    transition: left 0.5s;
}

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

/* Colorful section headers */
.section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #d4a853 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Glowing inputs on focus */
.order-section input:focus,
.order-section select:focus,
.order-section textarea:focus {
    border-color: #d4a853 !important;
    box-shadow: 
        0 0 0 3px rgba(212, 168, 83, 0.2),
        0 0 20px rgba(212, 168, 83, 0.3),
        inset 0 0 10px rgba(212, 168, 83, 0.05) !important;
}

/* Colorful price display */
#summary-total {
    background: linear-gradient(135deg, #d4a853 0%, #f0d78c 50%, #d4a853 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Colorful WhatsApp button */
#submit-order {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #25D366 100%) !important;
    background-size: 200% 100% !important;
    animation: greenPulse 3s ease infinite;
}

@keyframes greenPulse {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Neon glow effect on header */
.site-header {
    box-shadow: 0 2px 20px rgba(212, 168, 83, 0.1);
}

/* Colorful scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4a853, #c19a3e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0d78c, #d4a853);
}

/* ===========================================
   FIX: Floating WhatsApp Button
   =========================================== */

/* Clean WhatsApp floating button */
.whatsapp-float,
.floating-wpp,
.wh-api-popup,
[class*="whatsapp"],
.btn-whatsapp,
.whatsapp-btn,
#whatsapp-btn,
.fab-whatsapp,
.wa-btn {
    background: #25D366 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Remove any black background from floating elements at bottom */
.fixed-bottom,
.floating-bottom,
.bottom-bar,
.cookie-bar,
.float-bar {
    background: transparent !important;
}

/* Fix for Elementor WhatsApp widgets */
.elementor-widget-container .whatsapp-float,
.elementor-widget-container [class*="whatsapp"] {
    background: transparent !important;
    border: none !important;
}

.elementor-widget-container .whatsapp-float a,
.elementor-widget-container [class*="whatsapp"] a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.elementor-widget-container .whatsapp-float a:hover,
.elementor-widget-container [class*="whatsapp"] a:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* WhatsApp floating button at bottom right - clean style */
.whatsapp-floating-btn,
.wa-float-btn,
.floating-whatsapp,
#wa-button,
[id*="whatsapp-btn"] {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 9999 !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    animation: whatsappPulse 2s infinite !important;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.whatsapp-floating-btn:hover,
.wa-float-btn:hover,
.floating-whatsapp:hover {
    transform: scale(1.1) !important;
}

/* Remove any black overlay or background at page bottom */
body::after {
    display: none !important;
}

/* ===========================================
   MENU STYLING - Clean Navigation
   =========================================== */

/* Desktop Navigation */
.main-nav .nav-link {
    position: relative;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #333 !important;
    text-decoration: none !important;
    padding: 8px 0 !important;
    transition: color 0.3s !important;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a853;
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover {
    color: #d4a853 !important;
}

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

/* Mobile Navigation Clean */
.mobile-nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 20px 25px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eee !important;
    transition: background 0.3s, padding-left 0.3s !important;
}

.mobile-nav-link:hover {
    background: #f8f5f0 !important;
    padding-left: 35px !important;
    color: #d4a853 !important;
}

/* ===========================================
   HERO SLIDE PRODUCTS - Slides 2 & 3
   =========================================== */

.hero-slide-products {
    animation: fadeInUp 0.8s ease-out;
}

.hero-slide-products a {
    position: relative;
    overflow: hidden;
}

.hero-slide-products a:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.6) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-slide-products a:hover img {
    transform: scale(1.1);
}

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

/* Responsive for hero products */
@media (max-width: 768px) {
    .hero-slide-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        max-width: 100% !important;
    }
}

/* ============================================
   RTL Support - Arabic Language
   ============================================ */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .header-left {
    order: 2;
}

html[dir="rtl"] .header-right {
    order: 1;
}

html[dir="rtl"] .header-center {
    order: 2;
}

html[dir="rtl"] .language-switcher {
    border-right: none;
    border-left: 1px solid #e5e5e5;
    margin-right: 0;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 20px;
}

html[dir="rtl"] .main-nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-icons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-slide-overlay {
    text-align: right;
}

html[dir="rtl"] .category-card-overlay {
    text-align: right;
}

html[dir="rtl"] .product-card {
    text-align: right;
}

html[dir="rtl"] .order-form-container {
    text-align: right;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .price-summary {
    text-align: right;
}

html[dir="rtl"] .section-header {
    text-align: center;
}

/* RTL adjustments for flex containers */
html[dir="rtl"] .flex-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .justify-between {
    flex-direction: row-reverse;
}


/* ============================================
   CORELLA4 - ENHANCED GLOBAL STYLES
   Clean, Organized, Professional
   ============================================ */

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   HEADER - Clean & Organized
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

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

.header-announcement {
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

/* ============================================
   HERO SLIDER - Professional
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   PRODUCTS GRID - Clean Layout
   ============================================ */
.products-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* Product Card */
.product-card,
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Product Image */
.product-card-image,
.woocommerce ul.products li.product a img {
    aspect-ratio: 3/4;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image,
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* Product Info */
.product-card-info {
    padding: 20px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 15px 0 8px;
    padding: 0;
}

.woocommerce ul.products li.product .price {
    color: #d4a853;
    font-weight: 600;
    font-size: 16px;
}

/* ============================================
   SECTIONS - Consistent Spacing
   ============================================ */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #d4a853;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #1a1a1a;
    margin: 0;
}

/* ============================================
   BUTTONS - Consistent Style
   ============================================ */
.btn,
button[type="submit"],
.woocommerce a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary,
.woocommerce a.button.alt {
    background: linear-gradient(135deg, #d4a853, #c19a3e);
    color: white;
    box-shadow: 0 8px 25px rgba(212,168,83,0.3);
}

.btn-primary:hover,
.woocommerce a.button.alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,168,83,0.4);
}

/* ============================================
   FOOTER - Clean Design
   ============================================ */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 70px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   FORMS - Clean Inputs
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #d4a853;
    box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}

/* ============================================
   RESPONSIVE - TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .header-main {
        padding: 12px 20px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-slider {
        height: 85vh;
        min-height: 500px;
    }
    
    .btn,
    button[type="submit"] {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .header-main {
        padding: 10px 15px;
    }
    
    /* Hide desktop nav on mobile */
    .main-nav {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px;
    }
    
    .woocommerce ul.products li.product .price {
        font-size: 14px;
    }
    
    section {
        padding: 40px 12px;
    }
}

/* ============================================
   ANIMATIONS - Smooth & Professional
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Animate elements on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

/* Hide/Show utilities */
.hidden { display: none !important; }
.visible { display: block !important; }

/* Desktop only */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
}

/* Mobile only */
@media (min-width: 769px) {
    .mobile-only { display: none !important; }
}

/* ============================================
   LOADING & TRANSITIONS
   ============================================ */
.page-transition {
    animation: fadeIn 0.5s ease;
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ============================================
   DESKTOP IMPROVEMENTS - CORELLA4
   Clean, Organized, Professional Desktop
   ============================================ */

/* ============================================
   DESKTOP LAYOUT (> 1024px)
   ============================================ */
@media (min-width: 1025px) {
    
    /* Container */
    .container,
    .woocommerce .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    /* Header Desktop */
    .site-header .header-main {
        padding: 18px 50px;
        max-width: 1500px;
    }
    
    .site-header .nav-link {
        font-size: 13px;
        padding: 10px 5px;
        margin: 0 15px;
    }
    
    /* Hero Slider Desktop */
    .hero-slider {
        height: 90vh;
        max-height: 850px;
    }
    
    /* Sections Desktop */
    section {
        padding: 100px 50px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 3.2rem;
        letter-spacing: -0.02em;
    }
    
    .section-subtitle {
        font-size: 13px;
        letter-spacing: 0.35em;
        margin-bottom: 15px;
    }
    
    /* ============================================
       PRODUCTS GRID - DESKTOP PERFECTION
       ============================================ */
    .products-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 35px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    /* Product Card Desktop */
    .woocommerce ul.products li.product,
    .product-card {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        float: none !important;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    
    .woocommerce ul.products li.product:hover,
    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    }
    
    /* Product Image - CLEAR & SHARP */
    .woocommerce ul.products li.product a img,
    .product-card-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3/4 !important;
        object-fit: cover !important;
        object-position: center top !important;
        border-radius: 16px 16px 0 0 !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .woocommerce ul.products li.product:hover a img,
    .product-card:hover .product-card-image {
        transform: scale(1.08);
    }
    
    /* Product Image Container */
    .woocommerce ul.products li.product a {
        display: block;
        overflow: hidden;
        border-radius: 16px 16px 0 0;
        position: relative;
    }
    
    /* Product Info */
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #1a1a1a !important;
        margin: 18px 20px 8px !important;
        padding: 0 !important;
        line-height: 1.4 !important;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .woocommerce ul.products li.product .price {
        color: #d4a853 !important;
        font-weight: 700 !important;
        font-size: 18px !important;
        margin: 0 20px 20px !important;
        display: block !important;
    }
    
    /* Add to Cart Button */
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.add_to_cart_button {
        display: none !important;
    }
    
    /* Sale Badge */
    .woocommerce ul.products li.product .onsale {
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        background: linear-gradient(135deg, #d4a853, #c19a3e) !important;
        color: white !important;
        padding: 6px 14px !important;
        border-radius: 20px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        z-index: 5 !important;
    }
    
    /* ============================================
       CATEGORY CARDS DESKTOP
       ============================================ */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .category-card {
        height: 500px;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
    }
    
    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .category-card:hover img {
        transform: scale(1.05);
    }
    
    /* ============================================
       BUTTONS DESKTOP
       ============================================ */
    .btn,
    .btn-primary {
        padding: 18px 45px;
        font-size: 14px;
        letter-spacing: 0.1em;
    }
    
    .btn:hover {
        transform: translateY(-4px);
    }
    
    /* ============================================
       FOOTER DESKTOP
       ============================================ */
    .site-footer {
        padding: 90px 50px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
    }
    
    /* ============================================
       PAGE CONTENT DESKTOP
       ============================================ */
    .page-content,
    .site-main {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    /* Single Product Desktop */
    .single-product .product-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 50px;
    }
    
    .single-product .product-gallery img {
        border-radius: 20px;
        image-rendering: -webkit-optimize-contrast;
    }
    
}

/* ============================================
   LARGE DESKTOP (> 1400px)
   ============================================ */
@media (min-width: 1401px) {
    
    .container {
        max-width: 1400px;
    }
    
    .products-grid,
    .woocommerce ul.products {
        gap: 40px !important;
    }
    
    section {
        padding: 120px 60px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
}

/* ============================================
   PRODUCT IMAGES - ALWAYS SHARP
   ============================================ */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* High quality product images */
.product-image img,
.product-gallery img,
.woocommerce ul.products li.product img,
.product-card img {
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

/* Prevent blurry images on transform */
.woocommerce ul.products li.product a img,
.product-card-image {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ============================================
   PRODUCT CARDS FIX - CLEAR IMAGES & TEXT
   ============================================ */

/* Product Card Base */
.product-card,
li.product {
    position: relative !important;
    background: #fff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-card:hover,
li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

/* Product Image Container - FIXED */
.product-card-image {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
}

.product-card-image a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* Product Image - ALWAYS VISIBLE & CLEAR */
.product-card-image img,
.product-card-image .attachment-velura-product-card,
.product-card-image .wp-post-image,
li.product a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    transition: transform 0.6s ease !important;
    image-rendering: -webkit-optimize-contrast !important;
}

.product-card:hover .product-card-image img,
li.product:hover a img {
    transform: scale(1.08) !important;
}

/* Secondary Image Hover */
.product-card-image-secondary {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.product-card-image-secondary img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.product-card:hover .product-card-image-secondary {
    opacity: 1 !important;
}

/* Product Info - VISIBLE TEXT */
.product-card-info {
    padding: 20px !important;
    background: #fff !important;
}

/* Category */
.product-card-category {
    margin-bottom: 8px !important;
}

.product-card-category a {
    font-size: 11px !important;
    color: #d4a853 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* Title - CLEAR & READABLE */
.product-card-title {
    margin: 0 0 10px 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

.product-card-title a {
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.product-card-title a:hover {
    color: #d4a853 !important;
}

/* Price - BOLD & VISIBLE */
.product-card-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.product-card-price .woocommerce-Price-amount {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.product-card-price del {
    color: #999 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-right: 8px !important;
}

.product-card-price ins {
    text-decoration: none !important;
    color: #d4a853 !important;
}

/* Badges */
.product-card-badges {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    z-index: 10 !important;
}

.product-badge {
    padding: 6px 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
}

.product-badge--sale {
    background: linear-gradient(135deg, #d4a853, #c19a3e) !important;
    color: #fff !important;
}

.product-badge--new {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* Wishlist */
.product-card-wishlist {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.95) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.product-card:hover .product-card-wishlist {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.product-card-wishlist svg {
    width: 18px !important;
    height: 18px !important;
    color: #333 !important;
}

.product-card-wishlist:hover svg {
    color: #d4a853 !important;
}

/* Quick Actions */
.product-card-actions {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    gap: 1px !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s ease !important;
    z-index: 10 !important;
}

.product-card:hover .product-card-actions {
    transform: translateY(0) !important;
}

.product-card-action {
    flex: 1 !important;
    padding: 14px 10px !important;
    text-align: center !important;
    background: rgba(255,255,255,0.98) !important;
    color: #1a1a1a !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    border: none !important;
    cursor: pointer !important;
}

.product-card-action:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* Color Swatches */
.product-card-colors {
    display: flex !important;
    gap: 6px !important;
    margin-top: 12px !important;
}

.color-swatch {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1) !important;
}

/* ============================================
   PRODUCTS GRID FIX
   ============================================ */
.products-grid,
ul.products,
.woocommerce ul.products {
    display: grid !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Desktop */
@media (min-width: 1024px) {
    .products-grid,
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 35px !important;
    }
    
    .product-card-info {
        padding: 22px !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid,
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .products-grid,
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .product-card-info {
        padding: 12px !important;
    }
    
    .product-card-title {
        font-size: 13px !important;
    }
    
    .product-card-price {
        font-size: 15px !important;
    }
    
    .product-card-category a {
        font-size: 10px !important;
    }
}

/* ============================================
   SECTION HEADERS - VISIBLE
   ============================================ */
.section-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.section-subtitle {
    display: block !important;
    font-size: 12px !important;
    color: #d4a853 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 300 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* ============================================
   CATEGORY CARDS - DESKTOP FIX
   ============================================ */
@media (min-width: 1024px) {
    .category-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
    
    .category-card {
        aspect-ratio: 3/4 !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }
    
    .category-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Small Category Cards */
@media (min-width: 1024px) {
    .small-category-card {
        aspect-ratio: 1 !important;
        border-radius: 16px !important;
    }
    
    .small-category-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* ============================================
   WOOCOMMERCE OVERRIDE - DESKTOP
   ============================================ */
.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    clear: none !important;
}

.woocommerce ul.products li.product a img {
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px !important;
    padding: 0 !important;
    margin: 10px 0 !important;
    color: #1a1a1a !important;
}

.woocommerce ul.products li.product .price {
    color: #1a1a1a !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

/* Hide default WooCommerce button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
    display: none !important;
}

/* ============================================
   HERO SLIDER - MORE VISIBLE
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

/* Slide Bar - Better visibility */
.slide1-bar {
    margin-bottom: 60px !important;
}

/* Hero Products Grid in Slider */
.hero-slide-products a:hover {
    transform: translateY(-5px);
    border-color: #d4a853 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-slide-products img {
    transition: transform 0.4s ease;
}

.hero-slide-products a:hover img {
    transform: scale(1.05);
}

/* Hero Navigation */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active,
.hero-dot:hover {
    background: #d4a853;
    transform: scale(1.2);
}

/* Mobile Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 85vh;
        min-height: 550px;
    }
    
    .slide1-bar {
        bottom: 20px !important;
        width: 95% !important;
        border-radius: 15px !important;
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* ============================================
   BESTSELLERS & NEW ARRIVALS SECTIONS
   ============================================ */
.bestsellers-section,
.new-arrivals-section {
    padding: 80px 0;
}

.bestsellers-section .products-grid,
.new-arrivals-section .products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 1023px) {
    .bestsellers-section .products-grid,
    .new-arrivals-section .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .bestsellers-section .products-grid,
    .new-arrivals-section .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .bestsellers-section,
    .new-arrivals-section {
        padding: 50px 20px;
    }
}

/* ============================================
   ENSURE ALL PRODUCT IMAGES VISIBLE
   ============================================ */
.woocommerce ul.products,
.products-grid,
ul.products {
    display: grid !important;
    list-style: none !important;
}

.woocommerce ul.products li.product,
.products-grid .product-card,
ul.products li.product {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.woocommerce ul.products li.product img,
.products-grid .product-card img,
ul.products li.product img,
.product-card-image img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
}

/* Force product images to show */
.attachment-velura-product-card,
.attachment-woocommerce_thumbnail,
.wp-post-image {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

/* ============================================
   SLIDER DESKTOP FIX - ORGANIZED LAYOUT
   ============================================ */

/* Desktop Slider Layout */
@media (min-width: 1024px) {
    .hero-slider {
        height: 100vh;
        min-height: 750px;
        max-height: 950px;
    }
    
    /* Slide 1 Bar - Desktop */
    .slide1-bar {
        bottom: 80px !important;
        width: 90% !important;
        max-width: 1200px !important;
        border-radius: 24px !important;
        padding: 10px !important;
    }
    
    .slide1-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
    }
    
    .slide1-left {
        flex: 1 !important;
        max-width: 400px !important;
        padding: 25px 35px !important;
        text-align: left !important;
    }
    
    .slide1-left h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    
    .slide1-left p {
        font-size: 13px !important;
        margin-top: 8px !important;
    }
    
    .slide1-center {
        flex: 0 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        border-radius: 16px !important;
        margin: 0 !important;
    }
    
    .slide1-center > div {
        padding: 18px 25px !important;
    }
    
    .slide1-center span[style*="32px"] {
        font-size: 28px !important;
    }
    
    .slide1-right {
        flex: 0 0 auto !important;
        padding: 20px 35px !important;
    }
    
    .slide1-cta {
        padding: 16px 35px !important;
        font-size: 14px !important;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .slide1-bar {
        max-width: 1300px !important;
    }
    
    .slide1-left {
        max-width: 450px !important;
        padding: 30px 45px !important;
    }
    
    .slide1-left h2 {
        font-size: 38px !important;
    }
    
    .slide1-center > div {
        padding: 22px 35px !important;
    }
    
    .slide1-cta {
        padding: 18px 45px !important;
        font-size: 15px !important;
    }
}

/* Medium Desktop (1024-1200px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .slide1-bar {
        width: 95% !important;
    }
    
    .slide1-inner {
        gap: 15px !important;
    }
    
    .slide1-left {
        max-width: 320px !important;
        padding: 20px 25px !important;
    }
    
    .slide1-left h2 {
        font-size: 26px !important;
    }
    
    .slide1-left p {
        font-size: 12px !important;
    }
    
    .slide1-center > div {
        padding: 15px 20px !important;
    }
    
    .slide1-center span[style*="32px"] {
        font-size: 24px !important;
    }
    
    .slide1-right {
        padding: 15px 25px !important;
    }
    
    .slide1-cta {
        padding: 14px 28px !important;
        font-size: 12px !important;
    }
}

/* Slides 2 & 3 Desktop */
@media (min-width: 1024px) {
    .hero-slide-content > div[style*="bottom: 80px"] {
        bottom: 100px !important;
        width: 85% !important;
        max-width: 1000px !important;
        padding: 50px !important;
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        max-width: 100% !important;
    }
    
    .hero-slide-products a {
        aspect-ratio: 3/4 !important;
    }
}

/* Tablet Slider */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }
    
    .slide1-bar {
        bottom: 50px !important;
        width: 95% !important;
    }
    
    .slide1-inner {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .slide1-left {
        width: 100% !important;
        max-width: none !important;
        text-align: center !important;
        padding: 20px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .slide1-center {
        width: auto !important;
        margin: 15px 0 !important;
    }
    
    .slide1-right {
        width: 100% !important;
        padding: 20px !important;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
    }
}

/* Mobile Slider */
@media (max-width: 767px) {
    .hero-slider {
        height: 85vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .slide1-bar {
        bottom: 20px !important;
        width: 95% !important;
        border-radius: 16px !important;
        padding: 5px !important;
    }
    
    .slide1-inner {
        flex-direction: column !important;
    }
    
    .slide1-left {
        width: 100% !important;
        text-align: center !important;
        padding: 18px 15px 12px !important;
    }
    
    .slide1-left h2 {
        font-size: 24px !important;
    }
    
    .slide1-left p {
        font-size: 12px !important;
    }
    
    .slide1-center {
        flex-direction: row !important;
        width: 100% !important;
        justify-content: center !important;
        background: transparent !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .slide1-center > div {
        padding: 12px 15px !important;
    }
    
    .slide1-center span[style*="32px"] {
        font-size: 22px !important;
    }
    
    .slide1-center > div[style*="width: 1px"] {
        height: 40px !important;
    }
    
    .slide1-right {
        width: 100% !important;
        padding: 12px 15px 18px !important;
    }
    
    .slide1-cta {
        padding: 14px 30px !important;
        font-size: 12px !important;
    }
    
    /* Slides 2 & 3 Mobile */
    .hero-slide-content > div[style*="bottom: 80px"] {
        bottom: 30px !important;
        width: 95% !important;
        padding: 25px 20px !important;
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .slide1-left h2 {
        font-size: 20px !important;
    }
    
    .slide1-center > div {
        padding: 10px 12px !important;
    }
    
    .slide1-center span[style*="32px"] {
        font-size: 18px !important;
    }
    
    .slide1-cta {
        padding: 12px 25px !important;
        font-size: 11px !important;
    }
}

/* ============================================
   SINGLE PRODUCT PAGE - MOBILE FIX
   ============================================ */

/* Base Product Page */
.product-page {
    background: #f8f8f8 !important;
    padding: 20px 0 !important;
}

.product-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* Product Grid - Desktop */
@media (min-width: 901px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
        padding: 35px !important;
        border-radius: 20px !important;
    }
}

/* Product Grid - Mobile */
@media (max-width: 900px) {
    .product-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 20px !important;
        border-radius: 16px !important;
    }
    
    .product-page {
        padding: 15px 0 !important;
    }
    
    .product-container {
        padding: 0 12px !important;
    }
}

/* Gallery - Mobile */
@media (max-width: 900px) {
    .product-gallery {
        width: 100% !important;
    }
    
    .main-image-wrap {
        padding-top: 120% !important;
        border-radius: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .thumbnails {
        display: flex !important;
        gap: 10px !important;
        overflow-x: auto !important;
        padding: 8px 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .thumbnails::-webkit-scrollbar {
        display: none;
    }
    
    .thumb-btn {
        width: 65px !important;
        height: 65px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-image-wrap {
        padding-top: 130% !important;
        border-radius: 12px !important;
    }
    
    .thumb-btn {
        width: 55px !important;
        height: 55px !important;
        border-radius: 8px !important;
    }
}

/* Product Info - Mobile */
@media (max-width: 900px) {
    .product-title {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .price-display {
        margin-bottom: 20px !important;
    }
    
    .price-normal {
        font-size: 1.6rem !important;
    }
    
    .special-offer {
        padding: 12px 15px !important;
        border-radius: 10px !important;
        margin-bottom: 20px !important;
        font-size: 14px !important;
    }
    
    .gros-banner {
        padding: 10px 15px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
    }
}

/* Section Boxes - Mobile */
@media (max-width: 900px) {
    .section-box {
        border-radius: 14px !important;
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .section-label {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
}

/* Color Selection - Mobile */
@media (max-width: 900px) {
    .color-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
    }
    
    .color-btn {
        width: 100% !important;
        aspect-ratio: 1 !important;
        height: auto !important;
        border-radius: 10px !important;
    }
    
    .color-btn .check {
        width: 18px !important;
        height: 18px !important;
    }
    
    .selected-color {
        font-size: 13px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .color-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    
    .color-btn {
        border-radius: 8px !important;
    }
}

/* Quantity Selection - Mobile */
@media (max-width: 900px) {
    .qty-grid {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 8px !important;
    }
    
    .qty-btn {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    
    .qty-btn .gros-tag {
        font-size: 7px !important;
        padding: 2px 4px !important;
        top: -6px !important;
        right: -6px !important;
    }
}

@media (max-width: 400px) {
    .qty-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .qty-btn {
        font-size: 14px !important;
    }
}

/* Order Form - Mobile */
@media (max-width: 900px) {
    .order-form {
        border-radius: 16px !important;
        padding: 20px !important;
    }
    
    .form-title {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .form-input,
    .form-select {
        padding: 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
        margin-bottom: 12px !important;
    }
}

/* Summary Box - Mobile */
@media (max-width: 900px) {
    .summary-box {
        border-radius: 10px !important;
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .summary-row {
        padding: 8px 0 !important;
        font-size: 13px !important;
    }
    
    .summary-row.total {
        font-size: 18px !important;
        padding-top: 12px !important;
        margin-top: 8px !important;
    }
}

/* Submit Button - Mobile */
@media (max-width: 900px) {
    .submit-btn {
        padding: 16px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
        gap: 10px !important;
    }
    
    .submit-btn svg {
        width: 22px !important;
        height: 22px !important;
    }
}

/* Delivery Info - Mobile */
@media (max-width: 900px) {
    .delivery-info {
        padding: 15px !important;
        border-radius: 10px !important;
        margin-bottom: 15px !important;
    }
    
    .delivery-info h4 {
        font-size: 14px !important;
    }
    
    .delivery-info p {
        font-size: 13px !important;
    }
}

/* Single Product WooCommerce Override */
.single-product .product {
    padding: 0 !important;
}

.single-product .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
}

.single-product .summary {
    width: 100% !important;
    float: none !important;
}

@media (max-width: 900px) {
    .single-product .woocommerce-breadcrumb {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }
    
    .single-product .related.products {
        padding: 30px 15px !important;
    }
    
    .single-product .related.products h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .single-product .related.products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Fix for iOS input zoom */
@media (max-width: 900px) {
    .form-input,
    .form-select,
    input[type="text"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 900px) {
    .product-page {
        -webkit-overflow-scrolling: touch;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ============================================
   SLIDER TEXT - FULLY VISIBLE
   ============================================ */

/* Hero Slide Content - Ensure Visibility */
.hero-slide-content {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    z-index: 10 !important;
    pointer-events: none;
}

.hero-slide-content > * {
    pointer-events: auto;
}

/* Slide 1 Bar - Text Visible */
.slide1-bar {
    position: absolute !important;
    bottom: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 1200px !important;
    background: rgba(0,0,0,0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    z-index: 20 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}

.slide1-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
}

/* Slide 1 Text - LEFT */
.slide1-left {
    padding: 25px 35px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.slide1-left h2 {
    font-size: 30px !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    font-weight: 400 !important;
}

.slide1-left p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 14px !important;
    margin: 8px 0 0 !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5) !important;
}

/* Slide 1 Center Features */
.slide1-center {
    display: flex !important;
    align-items: center !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 15px !important;
    margin: 15px !important;
    overflow: hidden !important;
}

.slide1-center > div:not([style*="width: 1px"]) {
    padding: 18px 25px !important;
    text-align: center !important;
}

.slide1-center span {
    display: block !important;
}

/* Slide 1 CTA */
.slide1-right {
    padding: 20px 35px !important;
}

.slide1-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 35px !important;
    background: linear-gradient(135deg, #d4a853, #c19a3e) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 30px rgba(212,168,83,0.4) !important;
    transition: all 0.3s !important;
}

.slide1-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(212,168,83,0.5) !important;
}

/* Slides 2 & 3 Content Box */
.hero-slide-content > div:not(.slide1-bar) {
    position: absolute !important;
    bottom: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 850px !important;
    background: rgba(0,0,0,0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 35px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
    z-index: 20 !important;
}

/* Slides 2 & 3 Text */
.hero-slide-subtitle {
    color: #d4a853 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.hero-slide-title {
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

.hero-slide-content p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5) !important;
}

/* Slider Products Grid */
.hero-slide-products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin: 20px 0 !important;
}

.hero-slide-products a {
    display: block !important;
    position: relative !important;
    aspect-ratio: 3/4 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    background: #222 !important;
}

.hero-slide-products img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Hero CTA Button */
.hero-slide-cta a,
.pulse-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 30px !important;
    background: linear-gradient(135deg, #d4a853, #c19a3e) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(212,168,83,0.4) !important;
}

/* Desktop Slider */
@media (min-width: 1024px) {
    .slide1-bar {
        bottom: 80px !important;
    }
    
    .slide1-left h2 {
        font-size: 34px !important;
    }
    
    .hero-slide-title {
        font-size: 2.8rem !important;
    }
    
    .hero-slide-content > div:not(.slide1-bar) {
        bottom: 80px !important;
        padding: 45px !important;
    }
}

/* Tablet Slider */
@media (max-width: 1023px) {
    .slide1-inner {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .slide1-left {
        width: 100% !important;
        text-align: center !important;
        padding: 20px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .slide1-center {
        margin: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }
    
    .slide1-right {
        width: 100% !important;
        text-align: center !important;
        padding: 20px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Mobile Slider */
@media (max-width: 767px) {
    .slide1-bar {
        bottom: 20px !important;
        width: 95% !important;
        border-radius: 15px !important;
    }
    
    .slide1-left h2 {
        font-size: 22px !important;
    }
    
    .slide1-left p {
        font-size: 12px !important;
    }
    
    .slide1-center > div:not([style*="width: 1px"]) {
        padding: 12px 15px !important;
    }
    
    .slide1-cta {
        padding: 12px 25px !important;
        font-size: 12px !important;
    }
    
    .hero-slide-content > div:not(.slide1-bar) {
        bottom: 20px !important;
        width: 95% !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
    }
    
    .hero-slide-title {
        font-size: 1.6rem !important;
    }
    
    .hero-slide-subtitle {
        font-size: 11px !important;
    }
    
    .hero-slide-content p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .pulse-btn {
        padding: 12px 25px !important;
        font-size: 12px !important;
    }
}

/* Ensure all text visible */
.slide1-bar *,
.hero-slide-content * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Remove animations that hide text */
.anim-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* ============================================
   NEW SLIDER STYLES - TEXT ALWAYS VISIBLE
   ============================================ */

/* Hero Slider Base */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
}

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* Slider Content Box - MAIN CONTAINER */
.slider-content-box {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1100px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 100;
}

.slider-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

/* Slider Left Section */
.slider-left {
    flex: 1;
    padding: 25px 30px;
}

.slider-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.badge-new {
    background: linear-gradient(135deg, #d4a853, #c19a3e);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.badge-text {
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slider-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    color: white;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

.slider-title span {
    color: #d4a853;
    font-style: italic;
}

.slider-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 10px 0 0;
    line-height: 1.5;
}

/* Slider Center Section */
.slider-center {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    margin: 0 15px;
    overflow: hidden;
}

.slider-feature {
    text-align: center;
    padding: 18px 25px;
}

.feature-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

.feature-number.green {
    color: #4ade80;
}

.feature-number.gold {
    color: #d4a853;
    font-size: 16px;
}

.feature-text {
    display: block;
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* Slider Right Section */
.slider-right {
    padding: 20px 30px;
    text-align: center;
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #d4a853, #c19a3e);
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212,168,83,0.4);
    transition: all 0.3s;
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,168,83,0.5);
}

.slider-payment {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    margin: 10px 0 0;
}

/* Slides 2 & 3 Box */
.slide23-box {
    padding: 35px 40px;
    text-align: center;
}

.slide-subtitle {
    display: block;
    color: #d4a853;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.slide-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 15px;
    font-weight: 400;
}

.slide-desc {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin: 0 0 25px;
    line-height: 1.6;
}

/* Hero Products in Slides 2 & 3 */
.hero-slide-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.hero-slide-cta {
    margin-top: 25px;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 50;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-nav-dot.active,
.hero-nav-dot:hover {
    background: #d4a853;
    transform: scale(1.2);
}

/* Hero Progress */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 50;
}

.hero-progress-bar {
    height: 100%;
    background: #d4a853;
    width: 0;
    transition: width 0.1s linear;
}

/* ============================================
   SLIDER RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1200px) {
    .slider-content-box {
        bottom: 60px;
        max-width: 1200px;
    }
    
    .slider-title {
        font-size: 36px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

/* ============================================
   SLIDER RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .slider-content-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .slider-left {
        width: 100%;
        text-align: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .slider-badge {
        justify-content: center;
    }
    
    .slider-center {
        margin: 0;
        border-radius: 0;
        width: 100%;
        justify-content: center;
        background: transparent;
    }
    
    .slider-right {
        width: 100%;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   SLIDER RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .hero-slider {
        height: 85vh;
        min-height: 550px;
    }
    
    .slider-content-box {
        bottom: 15px;
        width: 96%;
        border-radius: 15px;
    }
    
    .slider-left {
        padding: 18px 15px;
    }
    
    .slider-title {
        font-size: 24px;
    }
    
    .slider-desc {
        font-size: 12px;
    }
    
    .slider-center {
        padding: 5px 0;
    }
    
    .slider-feature {
        padding: 12px 18px;
    }
    
    .feature-number {
        font-size: 22px;
    }
    
    .feature-number.gold {
        font-size: 14px;
    }
    
    .feature-text {
        font-size: 10px;
    }
    
    .slider-divider {
        height: 40px;
    }
    
    .slider-right {
        padding: 15px;
    }
    
    .slider-btn {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    /* Slides 2 & 3 Mobile */
    .slide23-box {
        padding: 25px 20px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 11px;
    }
    
    .slide-desc {
        font-size: 13px;
    }
    
    .hero-slide-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .hero-nav {
        bottom: 10px;
    }
}

/* ============================================
   SLIDER RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .slider-content-box {
        bottom: 10px;
    }
    
    .slider-title {
        font-size: 20px;
    }
    
    .slider-feature {
        padding: 10px 12px;
    }
    
    .feature-number {
        font-size: 18px;
    }
    
    .slider-btn {
        padding: 12px 22px;
        font-size: 11px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   SLIDER 2 & 3 - PRODUCTS GRID FIX
   ============================================ */

/* Products Grid in Slides */
.slide-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    margin: 25px 0 !important;
    width: 100% !important;
}

/* Product Card in Slider */
.slide-product-card {
    display: block !important;
    position: relative !important;
    aspect-ratio: 3/4 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    background: #333 !important;
    transition: all 0.3s ease !important;
}

.slide-product-card:hover {
    transform: translateY(-5px) !important;
    border-color: #d4a853 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}

.slide-product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Product Price Overlay */
.slide-product-price {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent) !important;
    padding: 20px 10px 10px !important;
    text-align: center !important;
    color: #d4a853 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    color: rgba(255,255,255,0.5) !important;
    padding: 30px !important;
    font-size: 14px !important;
}

/* Slide CTA */
.slide-cta {
    margin-top: 25px !important;
    text-align: center !important;
}

/* Mobile Products Grid */
@media (max-width: 768px) {
    .slide-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 20px 0 !important;
    }
    
    .slide-product-price {
        font-size: 14px !important;
        padding: 15px 8px 8px !important;
    }
}

/* Tablet Products Grid */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
    }
}

/* ============================================
   FIX SLIDER - NO WHITE BOX, CLEAR PHOTO
   ============================================ */

/* Hero Slide Image - ALWAYS VISIBLE */
.hero-slide-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
}

.hero-slide-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Light Overlay - Don't hide the photo */
.hero-slide-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%) !important;
    z-index: 2 !important;
}

/* Content Box - TRANSPARENT, NO WHITE */
.slider-content-box {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 94% !important;
    max-width: 1100px !important;
    background: rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
    z-index: 10 !important;
    padding: 0 !important;
}

/* Remove any white background */
.slider-content-box,
.slider-content-inner,
.slider-left,
.slider-center,
.slider-right,
.slide23-box {
    background-color: transparent !important;
}

/* Only the main box has dark background */
.slider-content-box {
    background: rgba(0,0,0,0.65) !important;
}

.slide23-box {
    background: rgba(0,0,0,0.7) !important;
    padding: 30px !important;
}

/* Text - VERY VISIBLE */
.slider-title {
    font-size: 34px !important;
    color: #fff !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8) !important;
    font-weight: 500 !important;
}

.slider-title span {
    color: #d4a853 !important;
}

.slider-desc {
    color: #fff !important;
    font-size: 15px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
}

.badge-new {
    background: #d4a853 !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.badge-text {
    color: #fff !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8) !important;
}

.feature-number {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

.feature-text {
    color: #fff !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8) !important;
}

.slider-payment {
    color: rgba(255,255,255,0.9) !important;
}

/* Slides 2 & 3 Text */
.slide-subtitle {
    color: #d4a853 !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
}

.slide-title {
    color: #fff !important;
    font-size: 2.2rem !important;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8) !important;
}

.slide-desc {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .slider-content-box {
        bottom: 20px !important;
        width: 95% !important;
        border-radius: 12px !important;
    }
    
    .slider-title {
        font-size: 24px !important;
    }
    
    .slide-title {
        font-size: 1.6rem !important;
    }
    
    .slide23-box {
        padding: 20px !important;
    }
}

/* ============================================
   SLIDER BOX - POSITION HIGHER
   ============================================ */
.slider-content-box {
    bottom: 120px !important;
}

.slide23-box {
    bottom: 100px !important;
}

@media (max-width: 1024px) {
    .slider-content-box {
        bottom: 100px !important;
    }
    .slide23-box {
        bottom: 80px !important;
    }
}

@media (max-width: 768px) {
    .slider-content-box {
        bottom: 80px !important;
    }
    .slide23-box {
        bottom: 60px !important;
    }
}

@media (max-width: 480px) {
    .slider-content-box {
        bottom: 60px !important;
    }
    .slide23-box {
        bottom: 50px !important;
    }
}

/* ============================================
   3 SLIDER BOXES - CLEAN & VISIBLE
   ============================================ */

/* All Slider Content Boxes */
.slider-content-box,
.slide23-box {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(20,20,20,0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4) !important;
    z-index: 50 !important;
}

/* Slider 1 Box */
.slider-content-box:not(.slide23-box) {
    bottom: 100px !important;
    width: 92% !important;
    max-width: 1000px !important;
}

/* Slider 2 & 3 Box */
.slide23-box {
    bottom: 80px !important;
    width: 90% !important;
    max-width: 850px !important;
    padding: 35px 40px !important;
    text-align: center !important;
}

/* Inner content */
.slider-content-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px !important;
    gap: 20px !important;
}

/* Left section */
.slider-left {
    flex: 1 !important;
    text-align: left !important;
    padding: 15px 20px !important;
}

/* Center section - hide on smaller boxes */
.slider-center {
    display: none !important;
}

/* Right section */
.slider-right {
    text-align: center !important;
    padding: 15px 20px !important;
}

/* Typography */
.slider-title {
    font-size: 32px !important;
    color: #fff !important;
    margin: 10px 0 !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}

.slider-title span {
    color: #d4a853 !important;
    font-style: italic !important;
}

.slider-desc {
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.badge-new {
    display: inline-block !important;
    background: #d4a853 !important;
    color: #000 !important;
    padding: 6px 15px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
}

.badge-text {
    color: #fff !important;
    font-size: 12px !important;
    margin-left: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* CTA Button */
.slider-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #d4a853, #b8943f) !important;
    color: #fff !important;
    padding: 16px 35px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(212,168,83,0.3) !important;
    transition: all 0.3s !important;
}

.slider-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(212,168,83,0.4) !important;
}

.slider-payment {
    color: rgba(255,255,255,0.7) !important;
    font-size: 12px !important;
    margin-top: 10px !important;
}

/* Slides 2 & 3 Typography */
.slide-subtitle {
    display: block !important;
    color: #d4a853 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}

.slide-title {
    font-size: 2.2rem !important;
    color: #fff !important;
    margin: 0 0 12px !important;
    font-weight: 400 !important;
}

.slide-desc {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px !important;
    margin-bottom: 25px !important;
}

/* Products Grid */
.slide-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin: 20px 0 !important;
}

.slide-product-card {
    aspect-ratio: 3/4 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255,255,255,0.15) !important;
    background: #333 !important;
    position: relative !important;
    display: block !important;
}

.slide-product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.slide-product-price {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent) !important;
    color: #d4a853 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 15px 10px 10px !important;
    text-align: center !important;
}

/* Slide CTA */
.slide-cta {
    margin-top: 20px !important;
}

/* Responsive */
@media (max-width: 900px) {
    .slider-content-inner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
    }
    
    .slider-left {
        text-align: center !important;
    }
    
    .slider-badge {
        justify-content: center !important;
    }
    
    .slider-content-box:not(.slide23-box) {
        bottom: 60px !important;
    }
    
    .slide23-box {
        bottom: 50px !important;
        padding: 25px !important;
    }
    
    .slide-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .slider-title {
        font-size: 24px !important;
    }
    
    .slide-title {
        font-size: 1.6rem !important;
    }
    
    .slider-btn {
        padding: 14px 28px !important;
        font-size: 12px !important;
    }
    
    .slider-content-box:not(.slide23-box),
    .slide23-box {
        bottom: 40px !important;
        width: 95% !important;
        border-radius: 15px !important;
    }
}

/* ============================================
   SLIDERS - TRANSPARENT & CLEAR
   ============================================ */

/* All Slider Boxes - Glass Effect */
.slider-content-box,
.slide23-box {
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3) !important;
}

/* Slider 1 - Compact & Clear */
.slider-content-box:not(.slide23-box) {
    bottom: 80px !important;
    max-width: 900px !important;
    padding: 10px !important;
}

.slider-content-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    padding: 20px 25px !important;
}

.slider-left {
    flex: 1 !important;
}

.slider-badge {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.badge-new {
    background: #d4a853 !important;
    color: #000 !important;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
}

.badge-text {
    color: rgba(255,255,255,0.9) !important;
    font-size: 11px !important;
    letter-spacing: 0.15em !important;
}

.slider-title {
    font-size: 28px !important;
    color: #fff !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.slider-title span {
    color: #d4a853 !important;
}

.slider-desc {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px !important;
    margin: 8px 0 0 !important;
}

.slider-right {
    flex-shrink: 0 !important;
}

.slider-btn {
    background: linear-gradient(135deg, #d4a853, #c19a3e) !important;
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 8px 25px rgba(212,168,83,0.4) !important;
    transition: all 0.3s !important;
}

.slider-btn:hover {
    transform: translateY(-2px) !important;
}

.slider-payment {
    color: rgba(255,255,255,0.7) !important;
    font-size: 11px !important;
    margin-top: 8px !important;
    text-align: center !important;
}

/* Slides 2 & 3 - Transparent */
.slide23-box {
    bottom: 60px !important;
    max-width: 800px !important;
    padding: 30px !important;
}

.slide-subtitle {
    color: #d4a853 !important;
    font-size: 12px !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 8px !important;
}

.slide-title {
    color: #fff !important;
    font-size: 2rem !important;
    margin: 0 0 10px !important;
}

.slide-desc {
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.slide-products-grid {
    gap: 10px !important;
    margin: 15px 0 !important;
}

.slide-product-card {
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/* ============================================
   SINGLE PRODUCT PAGE - IMPROVED LAYOUT
   ============================================ */

/* Product Page Container */
.product-page {
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%) !important;
    padding: 40px 0 !important;
}

.product-container {
    max-width: 1150px !important;
    padding: 0 20px !important;
}

/* Product Grid */
.product-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    background: #fff !important;
    border-radius: 24px !important;
    padding: 35px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
}

/* Gallery */
.product-gallery {
    position: sticky !important;
    top: 100px !important;
}

.main-image-wrap {
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #f8f8f8 !important;
    margin-bottom: 15px !important;
}

.thumbnails {
    display: flex !important;
    gap: 10px !important;
}

.thumb-btn {
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px !important;
    border: 2px solid #eee !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.thumb-btn.active,
.thumb-btn:hover {
    border-color: #d4a853 !important;
}

/* Product Info */
.product-title {
    font-size: 1.8rem !important;
    color: #1a1a1a !important;
    margin: 0 0 15px !important;
    font-weight: 500 !important;
}

/* Price Display */
.price-display {
    margin-bottom: 20px !important;
}

.price-normal {
    font-size: 1.8rem !important;
    color: #d4a853 !important;
    font-weight: 700 !important;
}

/* Special Offer Box */
.special-offer {
    background: linear-gradient(135deg, #d4a853, #c19a3e) !important;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.special-offer.free-delivery {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

/* Section Boxes - Clean Dark Style */
.section-box {
    background: #1a1a1a !important;
    border-radius: 16px !important;
    padding: 22px !important;
    margin-bottom: 15px !important;
}

.section-label {
    color: #d4a853 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
    display: block !important;
}

/* Color Grid - Improved */
.color-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 10px !important;
}

.color-btn {
    aspect-ratio: 1 !important;
    width: 100% !important;
    height: auto !important;
    border: 2px solid #333 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s !important;
    background: #333 !important;
}

.color-btn.active {
    border-color: #d4a853 !important;
    box-shadow: 0 0 0 3px rgba(212,168,83,0.3) !important;
}

.color-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.color-btn .check {
    position: absolute !important;
    top: 5px !important;
    right: 5px !important;
    width: 20px !important;
    height: 20px !important;
    background: #d4a853 !important;
    border-radius: 50% !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
}

.color-btn.active .check {
    display: flex !important;
}

.selected-color {
    color: #888 !important;
    font-size: 13px !important;
    margin-top: 10px !important;
}

.selected-color span {
    color: #d4a853 !important;
    font-weight: 600 !important;
}

/* Quantity Grid */
.qty-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 8px !important;
}

.qty-btn {
    aspect-ratio: 1 !important;
    border: 2px solid #333 !important;
    border-radius: 10px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.qty-btn:hover {
    border-color: #d4a853 !important;
}

.qty-btn.active {
    background: #d4a853 !important;
    border-color: #d4a853 !important;
    color: #000 !important;
}

/* Order Form */
.order-form {
    background: #1a1a1a !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin-top: 20px !important;
}

.form-title {
    color: #fff !important;
    font-size: 18px !important;
    margin: 0 0 20px !important;
}

.form-input,
.form-select {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    background: #252525 !important;
    color: #fff !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
}

.form-input:focus,
.form-select:focus {
    border-color: #d4a853 !important;
    outline: none !important;
}

/* Summary Box */
.summary-box {
    background: #252525 !important;
    border-radius: 12px !important;
    padding: 18px !important;
    margin-bottom: 15px !important;
}

.summary-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 8px 0 !important;
    color: #999 !important;
    font-size: 13px !important;
}

.summary-row.total {
    border-top: 1px solid #333 !important;
    padding-top: 12px !important;
    margin-top: 8px !important;
    color: #d4a853 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* Submit Button */
.submit-btn {
    width: 100% !important;
    padding: 18px !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s !important;
}

.submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3) !important;
}

/* Mobile Product Page */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 20px !important;
    }
    
    .product-gallery {
        position: relative !important;
        top: 0 !important;
    }
    
    .color-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .qty-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
    
    .product-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .product-page {
        padding: 15px 0 !important;
    }
    
    .product-grid {
        padding: 15px !important;
        border-radius: 16px !important;
    }
    
    .color-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .qty-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .section-box {
        padding: 18px !important;
    }
    
    .order-form {
        padding: 20px !important;
    }
}

/* Slider Mobile */
@media (max-width: 768px) {
    .slider-content-box:not(.slide23-box) {
        bottom: 50px !important;
    }
    
    .slider-content-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    
    .slider-left {
        text-align: center !important;
    }
    
    .slider-badge {
        justify-content: center !important;
    }
    
    .slider-title {
        font-size: 22px !important;
    }
    
    .slide23-box {
        bottom: 40px !important;
        padding: 25px 20px !important;
    }
    
    .slide-title {
        font-size: 1.6rem !important;
    }
    
    .slide-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* =========================================
   MOBILE OPTIMIZATIONS - تحسينات الموبايل
   ========================================= */

/* Global Mobile Fixes */
@media (max-width: 768px) {
    /* Body & Container */
    body {
        font-size: 14px;
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    /* Header Mobile */
    .site-header {
        padding: 10px 15px !important;
    }
    
    .header-main {
        flex-wrap: wrap;
    }
    
    .site-logo img,
    .custom-logo {
        max-width: 120px !important;
        height: auto !important;
    }
    
    .header-left,
    .header-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hero Slider Mobile */
    .hero {
        min-height: 450px !important;
        max-height: 550px !important;
        height: 70vh !important;
    }
    
    .slider-content-box {
        padding: 20px 15px !important;
        margin: 0 10px !important;
        max-width: calc(100% - 20px) !important;
        border-radius: 20px !important;
    }
    
    .slider-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .slider-desc {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    .slider-btn {
        padding: 12px 25px !important;
        font-size: 12px !important;
    }
    
    .slider-features {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .slider-feature {
        font-size: 12px !important;
    }
    
    .hero-nav {
        bottom: 20px !important;
        gap: 10px !important;
    }
    
    .hero-nav-dot {
        width: 35px !important;
        height: 35px !important;
    }
    
    .dot-number {
        font-size: 12px !important;
    }
    
    /* Slide 2 Mobile */
    .slide2-content {
        padding: 20px !important;
    }
    
    .slide2-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .slide2-title {
        font-size: 1.5rem !important;
    }
    
    /* Slide 3 Mobile */
    .slide3-content {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    
    .slide3-right {
        display: none !important;
    }
    
    .slide3-discount {
        font-size: 3rem !important;
    }
    
    /* Product Cards Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }
    
    .product-card {
        border-radius: 15px !important;
    }
    
    .product-card-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    
    .product-card-price {
        font-size: 14px !important;
    }
    
    /* Single Product Mobile */
    .product-page {
        padding: 15px 0 !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 15px !important;
    }
    
    .product-title {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .price-normal {
        font-size: 1.5rem !important;
    }
    
    .section-box {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
        border-radius: 12px !important;
    }
    
    .section-label {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .color-grid {
        gap: 8px !important;
    }
    
    .color-btn {
        width: 60px !important;
        height: 60px !important;
        border-radius: 10px !important;
    }
    
    .size-btn {
        min-width: 45px !important;
        height: 40px !important;
        font-size: 12px !important;
    }
    
    .qty-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 14px !important;
    }
    
    .qty-grid {
        gap: 8px !important;
    }
    
    /* Order Form Mobile */
    .order-form {
        padding: 20px 15px !important;
        border-radius: 15px !important;
    }
    
    .form-title {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    
    .form-input,
    .form-select {
        padding: 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
        margin-bottom: 12px !important;
    }
    
    .summary-box {
        padding: 15px !important;
        border-radius: 10px !important;
    }
    
    .summary-row {
        font-size: 13px !important;
        padding: 8px 0 !important;
    }
    
    .summary-row.total {
        font-size: 16px !important;
    }
    
    .submit-btn {
        padding: 16px !important;
        font-size: 15px !important;
        border-radius: 12px !important;
    }
    
    /* Reviews Section Mobile */
    .reviews-section {
        padding: 60px 0 !important;
    }
    
    .review-card-new {
        flex: 0 0 280px !important;
    }
    
    .reviews-nav {
        display: none !important;
    }
    
    /* Stats Grid Mobile */
    .reviews-section > div > div:last-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Footer Mobile */
    .site-footer {
        padding: 40px 15px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Thumbnails Mobile */
    .thumbnails {
        gap: 8px !important;
    }
    
    .thumb-btn {
        width: 60px !important;
        height: 60px !important;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        padding: 20px !important;
    }
    
    .mobile-nav-link {
        padding: 15px 20px !important;
        font-size: 16px !important;
    }
    
    /* Why Cards in Slide 3 */
    .why-card {
        padding: 15px 10px !important;
    }
    
    .why-card > div:first-child {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }
    
    /* Section Headers Mobile */
    section h2 {
        font-size: 1.5rem !important;
    }
    
    .section-header {
        margin-bottom: 30px !important;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero {
        min-height: 400px !important;
        max-height: 500px !important;
    }
    
    .slider-content-box {
        padding: 15px 12px !important;
    }
    
    .slider-title {
        font-size: 1.3rem !important;
    }
    
    .products-grid {
        gap: 8px !important;
    }
    
    .product-card-info {
        padding: 10px !important;
    }
    
    .color-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .qty-btn,
    .size-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 12px !important;
    }
    
    .submit-btn {
        padding: 14px !important;
        font-size: 14px !important;
    }
    
    /* Slide 3 grid on very small screens */
    .slider-main-content > div:nth-child(2) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* Landscape Phone */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh !important;
        max-height: 100vh !important;
    }
    
    .slider-content-box {
        max-width: 500px !important;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Touch improvements */
@media (hover: none) {
    .color-btn:active,
    .size-btn:active,
    .qty-btn:active,
    .submit-btn:active {
        transform: scale(0.95);
    }
}
