/* ============================================
   WERNERS STORE - LUXURY EDITION
   Premium Gold Jewelry E-Commerce
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&family=Cinzel:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Luxury Dark Theme */
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-section: #0d0d0d;
    --bg-alt: #141414;

    /* Gold Palette */
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #8b6914;
    --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #f0e68c 25%, #c9a96e 50%, #8b6914 75%, #c9a96e 100%);
    --gold-shimmer: linear-gradient(90deg, #c9a96e 0%, #f0e68c 50%, #c9a96e 100%);
    --gold-text: linear-gradient(135deg, #f0e68c, #c9a96e, #8b6914);

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #d4d4d4;
    --text-muted: #888888;
    --text-gold: #c9a96e;

    /* Borders */
    --border: rgba(201, 169, 110, 0.15);
    --border-gold: rgba(201, 169, 110, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);
    --shadow-gold-lg: 0 8px 40px rgba(201, 169, 110, 0.2);

    /* Spacing */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;

    /* Amazon */
    --amazon-orange: #ff9900;

    /* Status */
    --success: #4ade80;
    --danger: #ef4444;
    --primary: #c9a96e;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }

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

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

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

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

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

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

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

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(201, 169, 110, 0.15); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes goldGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(201, 169, 110, 0.3); }
    50% { text-shadow: 0 0 20px rgba(201, 169, 110, 0.6), 0 0 40px rgba(201, 169, 110, 0.2); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 169, 110, 0.2); }
    50% { border-color: rgba(201, 169, 110, 0.6); }
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(20px); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 8px 0;
    text-align: center;
}

.header-notice {
    font-size: 0.72rem;
    color: var(--bg-dark);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-gradient);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-dark);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cart-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

.cart-btn:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.cart-btn:hover svg {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count.hidden { display: none; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    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.1), transparent);
    transition: var(--transition-slow);
}

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

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-amazon {
    background: var(--amazon-orange);
    color: #111;
    font-weight: 600;
    border: 1px solid var(--amazon-orange);
}

.btn-amazon:hover {
    background: #ffad33;
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    font-size: 0.7rem;
}

.btn-outline:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
}

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

.btn-ghost:hover {
    color: var(--text-white);
    border-color: var(--text-muted);
}

.btn-sm { padding: 8px 18px; font-size: 0.7rem; }
.btn-lg { padding: 18px 40px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.05);
    animation: rotate-border 30s linear infinite;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease;
}

.hero-text .subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-text h1 .gold-text {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.hero-floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-alt);
}

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

.section-header .section-label {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 20px auto;
}

/* === CATEGORIES === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-8px);
}

.category-card:hover::before {
    background: linear-gradient(180deg, transparent 20%, rgba(10,10,10,0.95) 100%);
}

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

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

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.category-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.category-card-content .explore-link {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

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

/* Legacy category overlay support */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    z-index: 2;
}

.category-overlay h3 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* === PRODUCT CARDS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.product-card:hover::before {
    opacity: 1;
    animation: shimmer 2s linear infinite;
}

.product-card-link {
    display: block;
}

.product-image {
    position: relative;
    background: #fafafa;
    padding: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-height: 280px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.product-info {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.product-category-tag {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.product-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-white);
    margin-top: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    margin-top: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
}

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

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 12px;
    letter-spacing: 1px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.add-to-cart-btn.added {
    background: var(--success);
    border-color: var(--success);
    color: var(--bg-dark);
}

/* === FEATURES SECTION === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--bg-dark);
    animation: pulse-gold 2s ease infinite;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === SHOP PAGE === */
.shop-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
}

.shop-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.shop-hero p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.shop-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
}

.shop-sort select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.shop-sort select:hover,
.shop-sort select:focus {
    border-color: var(--gold);
    outline: none;
}

.shop-results {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

/* === PRODUCT DETAIL PAGE === */
.product-detail {
    padding: 120px 0 60px;
}

.breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery-main {
    background: #fafafa;
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    min-height: 500px;
    transition: var(--transition);
    overflow: hidden;
}

.product-gallery-main:hover {
    border-color: var(--border-gold);
}

.product-gallery-main img {
    max-height: 420px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-slow);
}

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

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.gallery-thumb {
    appearance: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    text-align: center;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: #fafafa;
    display: block;
    margin-bottom: 8px;
}

.gallery-thumb span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.product-image-downloads {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.product-image-downloads strong {
    color: var(--text-light);
    margin-right: 4px;
}

.product-image-downloads a {
    color: var(--gold);
    border-bottom: 1px solid transparent;
}

.product-image-downloads a:hover {
    border-color: var(--gold);
}

.product-category-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-explainer {
    padding: 20px;
    background: rgba(201, 155, 60, 0.08);
    border: 1px solid rgba(201, 155, 60, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}

.product-explainer h3,
.product-explainer-card h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.product-explainer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-explainer li {
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.86rem;
    padding-left: 22px;
    margin-bottom: 8px;
}

.product-explainer li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.product-explainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.product-explainer-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.product-explainer-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.84rem;
}

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

.btn-outline:hover {
    background: rgba(201, 155, 60, 0.12);
    color: var(--gold-light);
}

.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-detail-rating .stars {
    font-size: 1rem;
}

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

.product-detail-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: goldGlow 3s ease infinite;
}

.product-detail-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.product-detail-features li:last-child {
    border-bottom: none;
}

.product-detail-features li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.product-detail-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-detail-actions .btn {
    flex: 1;
    min-width: 180px;
}

.product-trust {
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.product-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.product-trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* === CART PAGE === */
.cart-page {
    padding: 140px 0 80px;
    min-height: 70vh;
}

.cart-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}

.cart-empty svg {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
    margin-bottom: 24px;
    opacity: 0.5;
}

.cart-empty h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--border-gold);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: #fafafa;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.cart-item-image img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.cart-item-info h3 {
    font-size: 0.88rem;
    color: var(--text-white);
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.5;
}

.cart-item-info h3 a:hover {
    color: var(--gold);
}

.cart-item-info .price {
    font-size: 0.82rem;
    color: var(--gold);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-control button {
    width: 32px;
    height: 32px;
    background: var(--bg-alt);
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-control button:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.qty-control span {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-white);
    background: var(--bg-card);
}

.cart-item-actions strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
}

.cart-item-remove {
    font-size: 0.72rem;
    color: var(--danger);
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    text-decoration: underline;
}

.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 32px;
    position: sticky;
    top: 120px;
    animation: borderGlow 3s ease infinite;
}

.cart-summary h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 16px;
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.cart-summary-row.total span:last-child {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
}

.cart-summary-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
    padding: 12px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}

/* === ABOUT PAGE === */
.about-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.about-hero p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

.about-content {
    padding: 0 0 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* === CONTACT PAGE === */
.contact-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-content {
    padding: 0 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-link-item:hover {
    border-color: var(--border-gold);
    background: var(--bg-alt);
}

.contact-link-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* === FOOTER === */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* === MOBILE MENU === */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* === TOAST NOTIFICATION === */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: fadeInUp 0.4s ease;
    box-shadow: var(--shadow-gold-lg);
}

.toast svg {
    color: var(--gold);
    flex-shrink: 0;
}

.toast p {
    font-size: 0.85rem;
    color: var(--text-white);
}

.toast.hide {
    animation: fadeOut 0.3s ease forwards;
}

/* === LUXURY DECORATIVE ELEMENTS === */
.luxury-line {
    width: 80px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

.section-ornament {
    text-align: center;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.6;
}

/* Particle Background Effect */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-badges { flex-direction: column; gap: 12px; }
    .categories-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
    .shop-toolbar { flex-direction: column; gap: 16px; align-items: flex-start; }
    .shop-filters { flex-wrap: wrap; }
    .cart-item { grid-template-columns: 80px 1fr; }
    .cart-item-actions { flex-direction: row; align-items: center; grid-column: 1 / -1; justify-content: space-between; }
    .about-stats { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .btn-lg { padding: 14px 28px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 1.8rem; }
    .container { padding: 0 16px; }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

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

/* === SELECTION === */
::selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--text-white);
}


/* ============================================
   3D EFFECTS & NEW SECTIONS
   ============================================ */

/* === 3D PERSPECTIVE CONTAINER === */
.perspective-container {
    perspective: 1200px;
    perspective-origin: center;
}

/* === 3D TILT CARD EFFECT === */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: var(--shadow-gold-lg), 0 30px 60px rgba(0, 0, 0, 0.4);
}

.tilt-card .tilt-inner {
    transform: translateZ(30px);
    transition: transform 0.3s ease;
}

.tilt-card:hover .tilt-inner {
    transform: translateZ(50px);
}

/* === 3D PRODUCT SHOWCASE (Rotating) === */
.showcase-3d {
    padding: 120px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.showcase-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    perspective: 1000px;
    padding: 60px 0;
}

.showcase-item {
    width: 280px;
    height: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
}

.showcase-item:nth-child(1) {
    transform: rotateY(15deg) translateZ(-50px) scale(0.9);
    opacity: 0.7;
}

.showcase-item:nth-child(2) {
    transform: rotateY(0deg) translateZ(50px) scale(1.05);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--border-gold);
}

.showcase-item:nth-child(3) {
    transform: rotateY(-15deg) translateZ(-50px) scale(0.9);
    opacity: 0.7;
}

.showcase-item:hover {
    transform: rotateY(0deg) translateZ(60px) scale(1.08) !important;
    opacity: 1 !important;
    box-shadow: var(--shadow-gold-lg), 0 0 40px rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
}

.showcase-item img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.05) translateZ(20px);
}

.showcase-item-info {
    padding: 20px;
    text-align: center;
}

.showcase-item-info h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-item-info .showcase-price {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

/* === 3D TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    perspective: 1200px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--border-gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* === 3D STATS COUNTER === */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f0f 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 169, 110, 0.03), transparent, rgba(201, 169, 110, 0.03), transparent);
    animation: rotate-border 20s linear infinite;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.stat-3d {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-3d::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.stat-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.stat-3d-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 8px;
    transform: translateZ(20px);
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.stat-3d-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* === 3D NEWSLETTER / CTA SECTION === */
.newsletter-section {
    padding: 120px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* === 3D PARALLAX BANNER === */
.parallax-banner {
    padding: 140px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
                url('../images/products/product-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, transparent 50%, rgba(201, 169, 110, 0.05) 100%);
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 4px;
    animation: goldGlow 3s infinite;
}

.parallax-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* === 3D FLOATING BADGES === */
.floating-3d-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform-style: preserve-3d;
    animation: float 4s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
}

.floating-3d-badge:nth-child(2) { animation-delay: 0.5s; }
.floating-3d-badge:nth-child(3) { animation-delay: 1s; }
.floating-3d-badge:nth-child(4) { animation-delay: 1.5s; }

/* === 3D FEATURE CARDS ENHANCED === */
.feature-card-3d {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card-3d::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    animation: rotate-border 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-3d:hover::before {
    opacity: 1;
}

.feature-card-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-3deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--shadow-gold);
    border-color: var(--border-gold);
}

.feature-card-3d .feature-icon-3d {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    transform: translateZ(30px);
    transition: all 0.4s ease;
}

.feature-card-3d:hover .feature-icon-3d {
    transform: translateZ(50px) scale(1.1);
    background: rgba(201, 169, 110, 0.2);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.feature-card-3d .feature-icon-3d svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
}

.feature-card-3d h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    transform: translateZ(20px);
}

.feature-card-3d p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    transform: translateZ(10px);
}

/* === RESPONSIVE 3D === */
@media (max-width: 1024px) {
    .showcase-carousel { flex-direction: column; gap: 20px; }
    .showcase-item:nth-child(1),
    .showcase-item:nth-child(3) {
        transform: rotateY(0) translateZ(0) scale(0.95);
    }
    .showcase-item:nth-child(2) {
        transform: rotateY(0) translateZ(0) scale(1);
    }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-3d { padding: 30px 16px; }
    .stat-3d-number { font-size: 2rem; }
    .newsletter-form { flex-direction: column; }
    .parallax-banner { padding: 80px 0; background-attachment: scroll; }
    .parallax-content h2 { font-size: 1.6rem; }
    .showcase-item { width: 240px; height: 320px; }
}


/* Operating office address blocks */
.office-card,
.office-highlight {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.office-card h3,
.office-highlight h2 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.office-card address {
    color: var(--text-secondary);
    font-style: normal;
    line-height: 1.8;
    margin: 10px 0 14px;
}

.office-note,
.office-highlight p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-office {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

.footer-office strong {
    color: var(--gold);
}
