/* ============================================
   OPULENT - Ultimate Luxury Lifestyle Store
   Premium E-Commerce Template CSS
   ============================================ */

/* ============================================
   CSS Variables - Luxury Color Palette
   ============================================ */
:root {
    /* Primary Colors */
    --primary-black: #0A0A0A;
    --primary-gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8952F;

    /* Neutral Palette */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F5F5F0;
    --marble-light: #F8F7F5;
    --marble-pattern: linear-gradient(135deg, #FAFAFA 0%, #F0EDE8 25%, #FAFAFA 50%, #E8E4DC 75%, #FAFAFA 100%);

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #888888;
    --text-light: #CCCCCC;

    /* Accent Colors */
    --accent-burgundy: #722F37;
    --accent-navy: #1B2838;
    --accent-emerald: #2E5A4C;

    /* UI Colors */
    --border-light: rgba(212, 175, 55, 0.2);
    --border-gold: rgba(212, 175, 55, 0.5);
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --overlay-dark: rgba(10, 10, 10, 0.85);
    --overlay-light: rgba(10, 10, 10, 0.6);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);

    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Container Widths */
    --container-sm: 768px;
    --container-md: 1024px;
    --container-lg: 1280px;
    --container-xl: 1440px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Selection Styling */
::selection {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

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

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

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

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

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

.gold-text {
    color: var(--primary-gold);
}

.display-text {
    font-family: var(--font-display);
    font-style: italic;
}

.accent-text {
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   Layout Components
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

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

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

.section {
    padding: var(--spacing-xl) 0;
}

.section-lg {
    padding: var(--spacing-xxl) 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 1.25rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

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

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

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

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

.btn-link {
    background: none;
    padding: 0;
    color: var(--primary-gold);
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition-normal);
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-top {
    background-color: var(--primary-black);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.header-top a {
    color: var(--text-light);
}

.header-top a:hover {
    color: var(--primary-gold);
}

.header-main {
    background-color: var(--primary-black);
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.header.scrolled .header-main {
    padding: 1rem 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.3em;
    font-weight: 400;
}

.logo span {
    color: var(--primary-gold);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

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

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition-normal);
}

.nav-icon:hover {
    color: var(--primary-gold);
}

.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-gold);
    color: var(--primary-black);
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition-normal);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-luxury), visibility var(--transition-luxury);
}

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

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    color: var(--white);
    z-index: 10;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

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

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--primary-gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-nav-dot.active,
.hero-nav-dot:hover {
    background-color: var(--primary-gold);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
    pointer-events: none;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    pointer-events: auto;
}

.hero-arrow:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-black);
}

/* ============================================
   Luxury Categories
   ============================================ */
.categories-section {
    background: var(--marble-pattern);
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    group: category;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: var(--transition-normal);
    z-index: 5;
    pointer-events: none;
}

.category-card:hover::before {
    border-color: var(--primary-gold);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.9) 100%);
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: var(--white);
    z-index: 10;
}

.category-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
}

.category-card:hover .category-title {
    color: var(--primary-gold);
}

.category-count {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

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

.category-link i {
    transition: var(--transition-normal);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Featured Products
   ============================================ */
.featured-section {
    background-color: var(--primary-black);
    padding: var(--spacing-xxl) 0;
}

.featured-section .section-header {
    color: var(--white);
}

.featured-section .section-title {
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-image-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.product-badge {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    color: var(--white);
}

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

.product-badge.exclusive {
    background-color: var(--primary-black);
}

.product-badge.limited {
    background-color: var(--accent-burgundy);
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
    z-index: 5;
}

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

.product-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-action-btn:hover {
    background-color: var(--primary-gold);
}

.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

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

.quick-view-btn {
    width: 100%;
    background-color: var(--white);
    color: var(--primary-black);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.quick-view-btn:hover {
    background-color: var(--primary-gold);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-brand {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: var(--transition-normal);
}

.product-card:hover .product-title {
    color: var(--primary-gold);
}

.product-price {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.product-price .current {
    color: var(--primary-gold);
    font-weight: 600;
}

.product-price .original {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* ============================================
   Curated Collections
   ============================================ */
.collections-section {
    padding: var(--spacing-xxl) 0;
    background: var(--marble-pattern);
}

.collection-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.collection-showcase:nth-child(even) {
    direction: rtl;
}

.collection-showcase:nth-child(even) > * {
    direction: ltr;
}

.collection-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.collection-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid var(--primary-gold);
    z-index: -1;
    transition: var(--transition-normal);
}

.collection-image-wrapper:hover::before {
    top: -10px;
    left: -10px;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.collection-image-wrapper:hover .collection-image {
    transform: scale(1.03);
}

.collection-content {
    padding: 2rem;
}

.collection-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.collection-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.collection-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.collection-features {
    list-style: none;
    margin-bottom: 2rem;
}

.collection-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-body);
    color: var(--text-secondary);
}

.collection-features li i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* ============================================
   VIP Showcase
   ============================================ */
.vip-section {
    background-color: var(--primary-black);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.02" fill="%23D4AF37">VIP</text></svg>');
    background-size: 300px;
    opacity: 0.3;
}

.vip-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vip-text {
    color: var(--white);
}

.vip-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.vip-label span {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
}

.vip-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.vip-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.vip-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.vip-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vip-benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    flex-shrink: 0;
}

.vip-benefit-text h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.vip-benefit-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.vip-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.vip-image-item:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section {
    background: var(--marble-pattern);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-normal);
}

.newsletter-form input:focus {
    border-color: var(--primary-gold);
}

.newsletter-form button {
    padding: 1.25rem 2rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding-top: var(--spacing-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    transition: var(--transition-normal);
}

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

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item i {
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.footer-payments {
    display: flex;
    gap: 1rem;
}

.footer-payments i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Quick View Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: var(--white);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    overflow: auto;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-black);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-view-gallery {
    position: relative;
    aspect-ratio: 3/4;
}

.quick-view-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    padding: 3rem;
}

.quick-view-brand {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.quick-view-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-view-price {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.quick-view-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.quick-view-options {
    margin-bottom: 2rem;
}

.option-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.size-options,
.color-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.size-option {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: transparent;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.size-option:hover,
.size-option.active {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.quantity-input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 1px solid var(--border-light);
    font-family: var(--font-accent);
    font-size: 1rem;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
}

.quick-view-actions .btn {
    flex: 1;
}

/* ============================================
   Shop Page Styles
   ============================================ */
.page-header {
    background-color: var(--primary-black);
    padding: 12rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--marble-pattern);
    opacity: 0.05;
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.breadcrumb {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: var(--primary-gold);
}

.page-title {
    color: var(--white);
    font-size: 3rem;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: var(--spacing-lg) 0;
}

.shop-sidebar {
    padding-right: 2rem;
    border-right: 1px solid var(--border-light);
}

.filter-section {
    margin-bottom: 2.5rem;
}

.filter-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 0.75rem;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.filter-list label:hover {
    color: var(--primary-gold);
}

.filter-list input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
}

.filter-list input[type="checkbox"]:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.filter-list input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--primary-black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.price-range {
    margin-top: 1rem;
}

.price-slider {
    width: 100%;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    appearance: none;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.price-inputs input {
    width: 50%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    text-align: center;
}

.shop-content {
    padding-left: 1rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.product-count {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sort-select {
    padding: 0.75rem 2rem 0.75rem 1rem;
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    appearance: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23888"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 0.75rem center;
    background-size: 1rem;
    cursor: pointer;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.view-option.active,
.view-option:hover {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

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

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.pagination a:hover,
.pagination span.active {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

/* ============================================
   Product Detail Page
   ============================================ */
.product-detail {
    padding: var(--spacing-lg) 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-gallery {
    position: sticky;
    top: 150px;
}

.gallery-main {
    aspect-ratio: 3/4;
    margin-bottom: 1rem;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform var(--transition-normal);
}

.gallery-main img:hover {
    transform: scale(1.05);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
}

.gallery-thumb {
    width: 100px;
    height: 130px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

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

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

.product-detail-info {
    padding-top: 1rem;
}

.product-detail-brand {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-rating .stars {
    color: var(--primary-gold);
}

.product-rating .count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1rem;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-light);
    background: transparent;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-normal);
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

.add-to-cart-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

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

.wishlist-btn {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.product-meta {
    margin-bottom: 2rem;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.product-meta-item i {
    color: var(--primary-gold);
    width: 20px;
}

.product-tabs {
    margin-top: var(--spacing-lg);
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.tab-btn.active {
    color: var(--primary-gold);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.provenance-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.provenance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.provenance-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--marble-light);
    color: var(--primary-gold);
    flex-shrink: 0;
}

.provenance-text h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.provenance-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.review-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-rating {
    margin-left: auto;
    color: var(--primary-gold);
}

.review-content {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Cart Page
   ============================================ */
.cart-section {
    padding: var(--spacing-lg) 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.cart-items {
    border: 1px solid var(--border-light);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background-color: var(--marble-light);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-product-image {
    width: 100px;
    height: 130px;
    object-fit: cover;
}

.cart-product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-product-info span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.cart-price {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.cart-quantity button:hover {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
}

.cart-quantity input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid var(--border-light);
    font-family: var(--font-accent);
}

.cart-subtotal {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.cart-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.cart-remove:hover {
    color: var(--accent-burgundy);
}

.cart-summary {
    background-color: var(--marble-light);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-row span:first-child {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.summary-row.total {
    padding-top: 1.5rem;
    border-bottom: none;
}

.summary-row.total span:first-child {
    font-size: 1rem;
    color: var(--text-primary);
}

.summary-row.total span:last-child {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.delivery-options {
    margin: 2rem 0;
}

.delivery-options h4 {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.delivery-option:hover,
.delivery-option.selected {
    border-color: var(--primary-gold);
}

.delivery-option input {
    margin-top: 0.25rem;
}

.delivery-option-text h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.delivery-option-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.delivery-option-price {
    margin-left: auto;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1.5rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.secure-checkout i {
    color: var(--primary-gold);
}

/* ============================================
   About Page
   ============================================ */
.about-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.about-hero-subtitle {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
}

.about-story {
    padding: var(--spacing-xxl) 0;
    background: var(--marble-pattern);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-gold);
    z-index: -1;
}

.values-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--primary-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.value-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.partnerships-section {
    padding: var(--spacing-xxl) 0;
    background: var(--marble-pattern);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.partner-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.vip-services-section {
    padding: var(--spacing-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background-color: var(--marble-light);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-soft);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-black);
    color: var(--primary-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-black);
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-method-text h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-method-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.contact-method-text a {
    color: var(--primary-gold);
}

.contact-form-wrapper {
    background-color: var(--marble-light);
    padding: 3rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

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

.concierge-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--primary-black);
}

.concierge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.concierge-text {
    color: var(--white);
}

.concierge-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.concierge-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.concierge-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.concierge-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.concierge-feature i {
    color: var(--primary-gold);
}

.concierge-feature span {
    color: rgba(255, 255, 255, 0.8);
}

.concierge-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

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

.private-viewing-section {
    padding: var(--spacing-xxl) 0;
    background: var(--marble-pattern);
}

.private-viewing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.private-viewing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.private-viewing-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.viewing-form {
    background-color: var(--white);
    padding: 3rem;
    text-align: left;
}

.viewing-form .form-row {
    margin-bottom: 0;
}

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .vip-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        width: 95%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 400px;
    }

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

    .collection-showcase,
    .collection-showcase:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .vip-content {
        grid-template-columns: 1fr;
    }

    .vip-image-grid {
        order: -1;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: relative;
        top: 0;
    }

    .about-story-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .concierge-content {
        grid-template-columns: 1fr;
    }

    .concierge-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-arrows {
        display: none;
    }

    .products-grid,
    .shop-products {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .quick-view-content {
        grid-template-columns: 1fr;
    }

    .quick-view-gallery {
        aspect-ratio: 1;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .provenance-details {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .vip-benefits {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-lg {
        padding: var(--spacing-xl) 0;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.7rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .category-card {
        height: 350px;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .gallery-thumbnails {
        gap: 0.5rem;
    }

    .gallery-thumb {
        width: 70px;
        height: 90px;
    }

    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }
}

/* ============================================
   Mobile Navigation
   ============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-black);
    z-index: 9999;
    transition: var(--transition-luxury);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.mobile-nav-close:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-black);
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem;
}

.mobile-nav-links li {
    margin-bottom: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-normal);
}

.mobile-nav-links a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.mobile-nav-footer {
    padding: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-footer .footer-social {
    justify-content: center;
    margin-bottom: 2rem;
}

.mobile-nav-footer p {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ============================================
   Loading States
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--marble-light) 25%, var(--cream) 50%, var(--marble-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
