:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --gold: #c9a84c;
    --gold-light: #e4c76b;
    --gold-dark: #a07d2e;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --text-primary: #f0ece2;
    --text-secondary: #a09e97;
    --text-muted: #6b6960;
    --accent: #8b5e3c;
    --accent-light: #c49a6c;
    --burgundy: #6b2d3e;
    --border: rgba(201, 168, 76, 0.12);
    --border-light: rgba(201, 168, 76, 0.06);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--bg-primary); }
html::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.section-padding {
    padding: 100px 0;
}

.shop-catalog-section {
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-tab,
.sort-select {
    min-height: 46px;
}

.results-count {
    color: var(--text-muted);
    font-size: 0.95rem;
    white-space: nowrap;
}

.sort-select {
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0 18px;
    border-radius: 16px;
    outline: none;
}

.filter-tab {
    background: rgba(22, 22, 31, 0.9);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.shop-pagination[hidden] {
    display: none !important;
}

.pagination-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-page {
    min-height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-page {
    min-width: 44px;
    padding: 0 12px;
}

.pagination-page.active,
.pagination-page:hover,
.pagination-btn:not(:disabled):hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.pagination-ellipsis {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 0 2px;
}

/* ========== PAGE LOADER ========== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 160px;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 160px;
    height: 2px;
    background: var(--border);
    margin-top: 28px;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loader-fill 1.5s ease-in-out forwards;
}

@keyframes loader-fill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ========== CURSOR GLOW ========== */
#cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    display: none;
}

/* ========== PARTICLES ========== */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    min-height: 90px;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    min-height: 70px;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    display: block;
    height: 72px;
    width: auto;
    max-height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.18));
    transition: height var(--transition), filter var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 60px;
    max-height: 60px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: var(--transition-fast);
}

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

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

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

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

.search-toggle,
.cart-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.search-toggle:hover,
.cart-icon:hover {
    color: var(--gold);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-container input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
}

.search-container input:focus {
    border-color: var(--gold);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
    z-index: 2;
    touch-action: pan-y;
}

.hero-slides {
    position: relative;
    height: calc(100vh - 80px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

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

.slide-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 100px;
}

.slide-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-slide.active .slide-tag {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide.active .slide-title {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.slide-inspired {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-slide.active .slide-inspired {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.slide-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 24px;
}

.hero-slide.active .slide-desc {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.slide-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-slide.active .slide-price {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.current-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-slide.active .slide-actions {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.slide-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-slide.active .slide-trust {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.trust-item {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.trust-item i {
    color: var(--gold);
    font-size: 0.85rem;
}

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

/* Slide Product Spotlight */
.slide-product {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-spotlight {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.spotlight-img {
    position: relative;
    z-index: 2;
    height: 480px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(201, 168, 76, 0.35));
}

.hero-slide.active .spotlight-img {
    animation: spotlightEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes spotlightEntry {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.spotlight-img.spotlight-square {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.spotlight-ring {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.1);
    animation: ring-rotate 20s linear infinite;
}

.spotlight-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-glow);
}

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

.product-meta-float {
    position: absolute;
    bottom: 30px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-slide.active .product-meta-float {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.meta-chip {
    background: rgba(22, 22, 31, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.meta-chip i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 70px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(22, 22, 31, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

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

.slider-pips {
    display: flex;
    gap: 6px;
}

.pip {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: background 0.3s;
}

.pip.active {
    background: rgba(255, 255, 255, 0.2);
}

.pip span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: 2px;
}

.pip.active span {
    animation: pip-fill 5s linear forwards;
}

@keyframes pip-fill {
    from { width: 0; }
    to { width: 100%; }
}

/* Quick Category Bar */
.hero-quick-cats {
    position: absolute;
    bottom: 70px;
    right: 24px;
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(22, 22, 31, 0.6);
    backdrop-filter: blur(16px);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.quick-cat {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.quick-cat:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.quick-cat.highlight {
    background: var(--gold);
    color: var(--bg-primary);
}

.quick-cat.highlight:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
}

.quick-cat i {
    font-size: 0.7rem;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
}

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

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

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* ========== FEATURES STRIP ========== */
.features-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.features-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item i {
    color: var(--gold);
    font-size: 1rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

/* ========== CATEGORIES ========== */
.categories {
    position: relative;
    z-index: 2;
}

.cat-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 3px;
    cursor: pointer;
    text-decoration: none;
}

.cat-men { background: linear-gradient(135deg, rgba(22, 33, 62, 0.5), rgba(201, 168, 76, 0.15), rgba(22, 33, 62, 0.5)); }
.cat-women { background: linear-gradient(135deg, rgba(68, 32, 58, 0.5), rgba(201, 168, 76, 0.15), rgba(68, 32, 58, 0.5)); }
.cat-unisex { background: linear-gradient(135deg, rgba(45, 58, 26, 0.5), rgba(201, 168, 76, 0.15), rgba(45, 58, 26, 0.5)); }

.cat-card-inner {
    background: var(--bg-card);
    border-radius: calc(var(--radius-lg) - 3px);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.cat-card:hover .cat-card-inner {
    background: var(--bg-card-hover);
}

.cat-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cat-icon-wrap i {
    font-size: 1.8rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.cat-card:hover .cat-icon-wrap i {
    transform: scale(1.15);
}

.cat-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.cat-men .cat-icon-ring { background: radial-gradient(circle, rgba(22, 33, 62, 0.4), transparent); }
.cat-women .cat-icon-ring { background: radial-gradient(circle, rgba(68, 32, 58, 0.4), transparent); }
.cat-unisex .cat-icon-ring { background: radial-gradient(circle, rgba(45, 58, 26, 0.4), transparent); }

.cat-card:hover .cat-icon-ring {
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.cat-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.cat-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 220px;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-top: auto;
}

.cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    transition: var(--transition);
}

.cat-card:hover .cat-cta {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.cat-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.cat-card:hover .cat-cta i {
    transform: translateX(4px);
}

.cat-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.06), transparent);
    transition: none;
    z-index: 3;
    pointer-events: none;
}

.cat-card:hover .cat-shine {
    animation: cat-shine-sweep 0.8s ease forwards;
}

@keyframes cat-shine-sweep {
    to { left: 150%; }
}

/* ========== PRODUCTS GRID ========== */
.featured-products {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

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

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201, 168, 76, 0.3);
}

.product-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--product-image);
    background-position: var(--product-focus-x, 50%) var(--product-focus-y, 50%);
    background-size: cover;
    filter: blur(34px) saturate(115%) brightness(0.38);
    transform: scale(1.18);
    opacity: 0.72;
    z-index: 0;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04), rgba(10, 10, 15, 0.48));
    z-index: 0;
}

.product-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: cover;
    object-position: var(--product-focus-x, 50%) var(--product-focus-y, 50%);
    transition: var(--transition);
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.32));
    transform: scale(var(--product-zoom, 1));
}

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

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

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

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

.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

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

.product-inspired {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-style: italic;
}

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

.product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.product-price .old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.product-sizes {
    display: flex;
    gap: 6px;
}

.size-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
}

.section-cta {
    text-align: center;
}

/* ========== PROMO BANNER ========== */
.promo-banner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(107, 45, 62, 0.08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.promo-bg-animation {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(107, 45, 62, 0.06) 0%, transparent 60%);
    animation: promo-shift 10s ease-in-out infinite alternate;
}

@keyframes promo-shift {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.promo-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.promo-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    transition: var(--transition);
    position: relative;
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.1);
    position: absolute;
    top: 12px;
    right: 16px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    font-size: 1.2rem;
    border: 1px solid var(--border);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    color: var(--gold);
    opacity: 0.3;
    font-size: 1.2rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 0 12px;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author div:last-child {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    position: relative;
    z-index: 2;
}

.newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(201, 168, 76, 0.08);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(107, 45, 62, 0.08);
    bottom: -80px;
    left: -80px;
}

.newsletter-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
}

.newsletter-card > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    position: relative;
}

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

.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 50px;
    outline: none;
    transition: var(--transition);
}

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

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
    padding-top: 0;
}

.footer-wave {
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    z-index: 10001;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--gold);
}

.product-description-block {
    display: grid;
    gap: 12px;
}

.product-description {
    color: var(--text-secondary);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-description.is-expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.product-description-toggle {
    justify-self: flex-start;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.product-description-toggle:hover {
    color: var(--gold-light);
}

.product-description-toggle[hidden] {
    display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 160px;
    }

    .slide-desc { margin: 0 auto 24px; }
    .slide-actions { justify-content: center; }
    .slide-trust { justify-content: center; }
    .slide-product { order: -1; }
    .product-spotlight { width: 320px; height: 320px; }
    .spotlight-img { height: 320px; }
    .spotlight-img.spotlight-square { width: 270px; height: 270px; }
    .spotlight-ring { width: 280px; height: 280px; }
    .product-meta-float { display: none; }

    .hero-quick-cats {
        display: none;
    }
    .slider-nav {
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
    }
    .slide-content {
        padding-bottom: 60px;
    }

    .cat-showcase { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .cat-card-inner { min-height: auto; padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid { gap: 12px; }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    .nav-container {
        min-height: 56px;
    }

    .nav-logo img {
        height: 58px;
        max-height: 58px;
    }

    .navbar.scrolled .nav-logo img {
        height: 50px;
        max-height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        border-left: 1px solid var(--border);
        z-index: 999;
    }

    .nav-links.active { right: 0; }
    .mobile-toggle { display: flex; }

    .section-padding { padding: 60px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-image { height: 200px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .testimonial-card { padding: 28px 20px; }
    .testimonial-card p { font-size: 1.1rem; }

    .newsletter-form { flex-direction: column; }
    .newsletter-card { padding: 40px 24px; }

    .shop-page-hero {
        display: none;
    }

    .shop-catalog-section {
        padding-top: 102px;
    }

    .filter-bar,
    .filter-meta {
        align-items: stretch;
    }

    .filter-bar {
        gap: 14px;
        margin-bottom: 22px;
    }

    .filter-tabs {
        width: 100%;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .filter-tab {
        min-height: 42px;
        padding: 0 18px;
        font-size: 0.88rem;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .filter-meta {
        width: 100%;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .sort-select {
        min-width: 0;
        width: 100%;
        flex: 0 0 auto;
    }

    .shop-pagination {
        gap: 14px;
    }

    .pagination-summary,
    .pagination-controls {
        width: 100%;
    }

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

    .hero-quick-cats {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius);
        max-width: 90%;
    }

    .slider-nav { display: none; }
    .hero-quick-cats { display: none; }

    .slide-title { font-size: 2.4rem; }
    .current-price { font-size: 2rem; }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 52px;
        max-height: 52px;
    }

    .navbar.scrolled .nav-logo img {
        height: 46px;
        max-height: 46px;
    }

    .shop-catalog-section {
        padding-top: 96px;
    }

    .filter-tabs {
        display: flex;
        width: calc(100% + 8px);
        margin-right: -8px;
    }

    .filter-tab {
        width: auto;
        padding: 0 12px;
        font-size: 0.84rem;
    }

    .filter-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .results-count {
        font-size: 0.88rem;
    }

    .sort-select {
        min-height: 44px;
    }

    .pagination-summary {
        font-size: 0.88rem;
        text-align: center;
    }

    .pagination-controls {
        gap: 8px;
    }

    .pagination-btn,
    .pagination-page {
        min-height: 42px;
        border-radius: 12px;
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .product-card {
        border-radius: 16px;
    }
    .product-image {
        height: 170px;
    }
    .product-image img {
        padding: 10px;
    }
    .product-badge {
        top: 10px;
        left: 10px;
        font-size: 0.62rem;
        padding: 4px 10px;
    }
    .product-actions {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    .product-action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.76rem;
    }
    .product-info {
        padding: 14px 12px;
    }
    .product-category {
        font-size: 0.62rem;
        letter-spacing: 1.1px;
        margin-bottom: 4px;
    }
    .product-name {
        font-size: 0.98rem;
        line-height: 1.35;
        margin-bottom: 6px;
    }
    .product-inspired {
        font-size: 0.72rem;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .product-bottom {
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
    }
    .product-price {
        display: inline-flex;
        align-items: baseline;
        gap: 6px;
        flex-wrap: nowrap;
        font-size: 1.05rem;
        white-space: nowrap;
    }
    .product-price .old-price {
        display: inline;
        margin-left: 0;
        margin-top: 0;
        font-size: 0.74rem;
    }
    .product-sizes {
        gap: 4px;
        flex-wrap: wrap;
    }
    .size-tag {
        font-size: 0.62rem;
        padding: 2px 6px;
    }
    .step-card { min-width: 100%; }
    .slide-title { font-size: 2rem; }
    .product-spotlight { width: 240px; height: 240px; }
    .spotlight-img { height: 240px; }
    .spotlight-img.spotlight-square { width: 210px; height: 210px; }
    .spotlight-ring { width: 210px; height: 210px; }
    .slide-actions .btn { width: 100%; justify-content: center; }
}
