/* ============================================================
   Vigna Royals — Main Stylesheet
   Dark Luxury Theme — "Timeless Tradition. Royal Elegance"
   All colors reference CSS custom properties from theme-variables.php
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Hide number input spinners globally to fix centering issues */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + var(--announcement-height) + 20px);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-body-text);
    background-color: var(--color-body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: var(--font-body);
    font-size: var(--fs-base);
}

/* Form Controls Theme Override */
.form-control,
.form-select {
    background-color: var(--color-surface) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-sm) !important;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--color-surface-elevated) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-white) !important;
    box-shadow: 0 0 0 0.15rem rgba(189, 118, 38, 0.25) !important;
}

/* Fix text placeholder color for dark theme */
.form-control::placeholder {
    color: var(--color-text-muted) !important;
    opacity: 0.7;
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

h1 {
    font-size: var(--fs-5xl);
}

h2 {
    font-size: var(--fs-4xl);
}

h3 {
    font-size: var(--fs-3xl);
}

h4 {
    font-size: var(--fs-2xl);
}

h5 {
    font-size: var(--fs-xl);
}

h6 {
    font-size: var(--fs-lg);
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-text-muted);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

/* ── Section Title ─────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--space-3);
    display: block;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--space-4);
    position: relative;
    color: var(--color-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    margin: var(--space-4) auto 0;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--fs-base);
    color: var(--color-text-muted);
}

/* ── Container ─────────────────────────────────────────────── */
.vr-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.vr-section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary-vr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.btn-primary-vr:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-vr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 36px;
    background-color: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.btn-outline-vr:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Ghost Button — transparent with subtle white border */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 6px 14px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.btn-ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-ghost:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Focus Visible — accessible keyboard focus ring */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: var(--container-px);
    z-index: 9999;
    padding: 12px 24px;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top var(--duration-fast);
}

.skip-to-content:focus {
    top: 0;
    color: var(--color-black);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 15px 32px;
    background-color: #25D366;
    color: #FFFFFF;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: #20BD5C;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-wishlist {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-wishlist:hover,
.btn-wishlist.active {
    color: #E74C3C;
    border-color: #E74C3C;
}

.btn-wishlist.active .heart-icon {
    fill: #E74C3C;
}

/* ── Quantity Control ───────────────────────────────────────── */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    height: 48px;
    width: 140px;
    overflow: hidden;
    background: var(--color-surface);
}

.qty-btn {
    width: 48px;
    height: 100%;
    background: var(--color-surface-elevated);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    color: var(--color-gold);
    background: rgba(189, 118, 38, 0.15);
}

.qty-input {
    flex: 1;
    height: 100%;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    background: transparent;
    color: var(--color-white);
}

/* Smaller size for cart */
.cart-item .qty-control {
    height: 40px;
    width: 120px;
}

.cart-item .qty-btn {
    width: 40px;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
    background: linear-gradient(90deg, #0a0405, var(--color-black), #0a0405);
    color: var(--color-gold);
    font-size: var(--fs-xs);
    text-align: center;
    padding: 8px var(--container-px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(189, 118, 38, 0.15);
}

.announcement-bar a {
    color: var(--color-gold-light);
    text-decoration: underline;
}

.announcement-links {
    position: absolute;
    right: var(--container-px);
    display: flex;
    gap: var(--space-4);
    font-size: var(--fs-xs);
}

.announcement-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.announcement-links a:hover {
    color: var(--color-gold);
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
    background-color: var(--color-header-bg);
    border-bottom: 1px solid rgba(189, 118, 38, 0.12);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
    transition: var(--transition);
}

.site-header.scrolled {
    background-color: rgba(18, 8, 9, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.header-logo img {
    width: clamp(260px, 30vw, 380px);
    height: auto;
    max-height: 85px;
    object-fit: contain;
    margin: 0;
    transition: var(--transition);
}

.header-logo .logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--color-header-text);
    letter-spacing: 0.04em;
}

.header-logo .logo-text span {
    color: var(--color-gold);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.main-nav a {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-header-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    transition: width var(--duration) var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.main-nav a.active {
    color: var(--color-gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-header-text);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.header-action-btn:hover {
    color: var(--color-gold);
    background-color: rgba(189, 118, 38, 0.1);
}




.header-action-btn svg {
    width: 20px;
    height: 20px;
}

.wishlist-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--color-header-text);
    transition: var(--transition);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--duration-slower) var(--ease-in-out);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(18, 8, 9, 0.75) 0%,
            rgba(18, 8, 9, 0.4) 50%,
            rgba(18, 8, 9, 0.25) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 var(--container-px);
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    max-width: 650px;
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    width: 30px;
}

/* ── Feature Icons ─────────────────────────────────────────── */
.features-bar {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-8) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    transition: transform var(--duration-fast);
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.15);
}

.feature-title {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.feature-desc {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ── Product Card ──────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.product-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(189, 118, 38, 0.25);
    box-shadow: var(--shadow-gold);
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--color-surface-elevated);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration) var(--ease-out);
}

.product-card-image .hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}

.product-card:hover .primary-img {
    opacity: 0;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    line-height: 1.4;
}

.badge-sale {
    background-color: #C0392B;
    color: var(--color-white);
}

.badge-new {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
}

.badge-premium {
    background: linear-gradient(135deg, #c9a84c, #f5d88e);
    color: #120809;
}

.product-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-card-actions,
.product-card-actions:has(.wishlisted) {
    opacity: 1;
    transform: translateX(0);
}

.card-action-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    color: var(--color-white);
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.card-action-btn:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
    border-color: transparent;
}

.card-action-btn.wishlisted {
    color: #E74C3C;
}

.card-action-btn.wishlisted .heart-icon,
.btn-wishlist.active .heart-icon {
    fill: currentColor !important;
}

.card-action-btn svg {
    width: 18px;
    height: 18px;
}

.product-card-info {
    padding: var(--space-5);
    text-align: center;
}

.product-card-category {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-1);
    display: block;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-2);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-name a {
    color: inherit;
    text-decoration: none;
}

.product-card-name a:hover {
    color: var(--color-gold);
}

.product-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.price-current {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-gold);
}

.price-original {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: var(--fs-xs);
    color: #C0392B;
    font-weight: 600;
}

.product-card-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 10px;
    background-color: #25D366;
    color: #FFFFFF;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    width: 100%;
    text-decoration: none;
}

.product-card-wa:hover {
    background-color: #20BD5C;
    color: #FFFFFF;
}

.product-card-wa svg {
    width: 16px;
    height: 16px;
}

/* ── Category Cards ────────────────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 8, 9, 0.8) 0%, rgba(18, 8, 9, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.category-card-count {
    font-size: var(--fs-xs);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Promotional Banner ────────────────────────────────────── */
.promo-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slower) var(--ease-out);
}

.promo-banner:hover .promo-banner-bg {
    transform: scale(1.03);
}

.promo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 8, 9, 0.8) 0%, rgba(18, 8, 9, 0.2) 100%);
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    padding: var(--space-12);
    max-width: 500px;
}

.promo-banner-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.promo-banner-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-6);
}

/* ── Why Choose Us ─────────────────────────────────────────── */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.usp-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.usp-card:hover {
    border-color: rgba(189, 118, 38, 0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
}

.usp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(189, 118, 38, 0.15), rgba(249, 194, 104, 0.1));
    border-radius: var(--radius-full);
    color: var(--color-gold);
}

.usp-icon svg {
    width: 28px;
    height: 28px;
}

.usp-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 500;
    margin-bottom: var(--space-3);
    color: var(--color-white);
}

.usp-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: rgba(189, 118, 38, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-4);
    color: var(--color-gold);
}

.testimonial-text {
    font-style: italic;
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-white);
    font-size: var(--fs-sm);
}

.testimonial-location {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
}

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
    background: linear-gradient(135deg, #0a0405 0%, var(--color-surface) 100%);
    text-align: center;
    border-top: 1px solid rgba(189, 118, 38, 0.1);
    border-bottom: 1px solid rgba(189, 118, 38, 0.1);
}

.newsletter-section .section-title {
    color: var(--color-white);
}

.newsletter-section .section-desc {
    color: var(--color-text-muted);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: var(--space-8) auto 0;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(189, 118, 38, 0.25);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: var(--fs-sm);
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-form button {
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
    box-shadow: var(--shadow-gold);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding-top: var(--space-16);
    border-top: 1px solid rgba(189, 118, 38, 0.12);
}

.footer-logo {
    width: clamp(240px, 28vw, 340px);
    height: auto;
    max-height: 85px;
    margin: 0 0 var(--space-4) 0;
    display: block;
    object-fit: contain;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: var(--space-4);
    display: block;
}

.footer-brand .logo-text span {
    color: var(--color-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-6);
    display: block;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(189, 118, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-color: transparent;
    color: var(--color-white);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: var(--space-5);
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--fs-sm);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(189, 118, 38, 0.08);
    padding: var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.25);
}

/* ── Shop Page Sidebar ─────────────────────────────────────── */
.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: var(--space-8);
}

.shop-content {
    min-width: 0;
    max-width: 100%;
    position: relative;
    overflow-x: hidden;
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--announcement-height) + 20px);
    height: fit-content;
}

.filter-group {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.filter-title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 500;
    margin-bottom: var(--space-4);
    color: var(--color-white);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.filter-option:hover {
    color: var(--color-white);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--color-gold);
}

/* ── Product Detail Page ───────────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--announcement-height) + 20px);
}

.product-gallery-main {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-4);
    background: var(--color-surface);
    cursor: zoom-in;
    border: 1px solid var(--color-border);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.gallery-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--color-gold);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding-top: var(--space-4);
}

.product-info-category {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--space-3);
}

.product-info h1 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-white);
}

.product-info-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.product-info-price .price-current {
    font-size: var(--fs-3xl);
    font-weight: 600;
    color: var(--color-gold);
}

.product-info-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.meta-label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.meta-value {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-white);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
}

.availability-badge.in-stock {
    background: rgba(62, 214, 96, 0.12);
    color: #2ECC71;
}

.availability-badge.out-of-stock {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
}

.availability-badge.made-to-order {
    background: rgba(189, 118, 38, 0.12);
    color: var(--color-gold);
}
.availability-badge.sold {
    background: rgba(231, 76, 60, 0.12);
    color: #E74C3C;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

/* ── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
    padding: var(--space-4) 0;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumbs span {
    margin: 0 var(--space-2);
    color: var(--color-text-light);
}

/* ── Blog Card ─────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.blog-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
    border-color: rgba(189, 118, 38, 0.2);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: var(--space-6);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    margin-bottom: var(--space-3);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 500;
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--color-white);
}

.blog-card-title a:hover {
    color: var(--color-gold);
}

.blog-card-excerpt {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Search Modal ──────────────────────────────────────────── */
.search-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 200;
    display: none;
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.search-overlay.open {
    display: block;
    opacity: 1;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    z-index: 201;
    padding: var(--space-8) var(--container-px);
    transform: translateY(-100%);
    transition: transform var(--duration) var(--ease-out);
    border-bottom: 1px solid var(--color-border);
}

.search-modal.open {
    transform: translateY(0);
}

.search-input-wrap {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.search-input-wrap input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 1px solid rgba(189, 118, 38, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--fs-lg);
    color: var(--color-white);
    background: var(--color-surface-elevated);
    transition: border-color var(--duration-fast);
}

.search-input-wrap input::placeholder {
    color: var(--color-text-muted);
}

.search-input-wrap input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(189, 118, 38, 0.15);
}

.search-results {
    max-width: 700px;
    margin: var(--space-6) auto 0;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background: var(--color-surface-elevated);
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    color: var(--color-white);
    transition: var(--transition-fast);
    background: var(--color-surface);
}

.pagination a:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-color: transparent;
    color: var(--color-white);
}

.pagination .current {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-color: transparent;
    color: var(--color-white);
}

/* ── Toast / Alert ─────────────────────────────────────────── */
.alert {
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-4);
    border: 1px solid transparent;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.2);
    color: #2ECC71;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.2);
    color: #E74C3C;
}

.alert-warning {
    background-color: rgba(241, 196, 15, 0.1);
    border-color: rgba(241, 196, 15, 0.2);
    color: #F39C12;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-form .form-group {
    margin-bottom: var(--space-5);
}

.contact-form label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-white);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    color: var(--color-white);
    background: var(--color-surface);
    transition: border-color var(--duration-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(189, 118, 38, 0.15);
}

/* ── Quick View Modal ──────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.modal-overlay.open {
    display: flex;
}

.modal-content {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--color-border);
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-elevated);
    color: var(--color-white);
    z-index: 5;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
}

/* ── Mobile Menu Drawer ────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-surface);
    z-index: 300;
    transform: translateX(-100%);
    transition: transform var(--duration) var(--ease-out);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border-right: 1px solid var(--color-border);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5);
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-logo {
    height: 60px;
    width: auto;
    margin: 0;
}

.mobile-menu-nav {
    padding: var(--space-5);
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    padding: var(--space-4) 0;
    font-size: var(--fs-base);
    color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
    min-height: 44px;
    transition: var(--transition-fast);
}

.mobile-menu-nav a:hover {
    color: var(--color-gold);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 299;
    display: none;
}

.mobile-menu-backdrop.open {
    display: block;
}

/* ── Shop Mobile Filter Drawer ─────────────────────────────── */
.mobile-filter-toggle {
    display: none;
}

.shop-filter-backdrop {
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 199;
    display: none;
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.shop-filter-backdrop.open {
    display: block;
    opacity: 1;
}

.shop-sidebar-header {
    display: none;
}

/* ── Loading / Skeleton ────────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-surface-elevated) 50%, var(--color-surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* ── Wishlist Page ─────────────────────────────────────────── */
.wishlist-empty {
    text-align: center;
    padding: var(--space-16) 0;
}

.wishlist-empty svg {
    width: 80px;
    height: 80px;
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
}

/* ── Cart Page ─────────────────────────────────────────────── */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 992px) {
    .cart-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.cart-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    background: var(--color-surface);
    position: relative;
    align-items: center;
    transition: var(--transition-fast);
}

.cart-item:hover {
    border-color: rgba(189, 118, 38, 0.2);
}

.cart-item-select {
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: var(--fs-base);
    margin-bottom: var(--space-1);
    color: var(--color-white);
}

.cart-item-title a {
    color: var(--color-white);
}

.cart-item-title a:hover {
    color: var(--color-gold);
}

.cart-item-price {
    color: var(--color-gold);
    font-weight: 600;
}

.cart-item-code {
    color: var(--color-text-muted);
    font-size: var(--fs-xs);
}

.cart-item-remove {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: #E74C3C;
}

.cart-summary-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    position: sticky;
    top: calc(var(--header-height) + var(--announcement-height) + 20px);
}

.cart-summary-title {
    font-size: var(--fs-xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cart-summary-desc {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-white);
}

/* ── Collections Page Grid ─────────────────────────────────── */
.collections-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.collection-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.collection-card:hover {
    border-color: rgba(189, 118, 38, 0.25);
    box-shadow: var(--shadow-gold);
}

.collection-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--duration-slow) var(--ease-out);
}

.collection-card:hover img {
    transform: scale(1.03);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-8);
    pointer-events: none;
}

/* ── Page Header (inner pages) ─────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-surface) 100%);
    padding: var(--space-16) 0 var(--space-12);
    text-align: center;
    border-bottom: 1px solid rgba(189, 118, 38, 0.1);
}

.page-header h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-4);
}

.page-header p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Dark Theme Section Backgrounds ────────────────────────── */
.bg-light {
    background-color: var(--color-surface) !important;
}

/* ── Form Controls (Dark Theme) ────────────────────────────── */
.form-control,
.form-select {
    background-color: var(--color-surface);
    border-color: var(--color-border);
    color: var(--color-white);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--color-surface-elevated);
    border-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(189, 118, 38, 0.15);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

.form-check-input {
    background-color: var(--color-surface);
    border-color: var(--color-border);
}

.form-check-input:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

/* ── Utility ───────────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

/* ============================================================
   RESPONSIVE — Desktop-first media queries
   ============================================================ */

/* ── Tablet landscape (≤1024px) ────────────────────────────── */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .product-gallery {
        position: static;
    }

    .shop-layout {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .mobile-filter-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: var(--space-2);
        padding: 10px 20px;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
        font-size: var(--fs-sm);
        font-weight: 500;
        color: var(--color-white);
        cursor: pointer;
        transition: var(--transition-fast);
        min-height: 44px;
    }

    .mobile-filter-toggle svg {
        color: var(--color-gold);
    }

    .mobile-filter-toggle:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: var(--color-surface);
        z-index: 200;
        transform: translateX(-100%);
        transition: transform var(--duration) var(--ease-out);
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
        padding: 0 var(--space-5) var(--space-5);
    }

    .shop-sidebar.open {
        transform: translateX(0);
    }

    .shop-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-5) 0;
        border-bottom: 1px solid var(--color-border);
        margin-bottom: var(--space-4);
        position: sticky;
        top: 0;
        background: var(--color-surface);
        z-index: 1;
    }

    .shop-sidebar-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-full);
        background: var(--color-surface-elevated);
        color: var(--color-white);
        border: none;
        cursor: pointer;
        transition: var(--transition-fast);
    }

    .shop-sidebar-close:hover {
        background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
        color: var(--color-white);
    }
}

/* ── Tablet portrait (≤768px) ──────────────────────────────── */
@media (max-width: 768px) {

    /* ── Viewport containment — prevent horizontal scroll ──── */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    /* Bootstrap .row negative margins cause horizontal scroll */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row > * {
        padding-left: var(--container-px);
        padding-right: var(--container-px);
    }

    /* ── Header / Nav ──────────────────────────────────────── */
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .announcement-links {
        display: none;
    }

    .announcement-bar {
        white-space: normal;
        height: auto;
        min-height: var(--announcement-height);
        line-height: 1.4;
        padding: 6px var(--container-px);
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .site-header {
        height: 70px;
    }

    .header-logo img {
        width: clamp(140px, 32vw, 200px);
        max-height: 55px;
        margin: 0;
    }

    .header-actions {
        gap: var(--space-1);
    }

    .header-action-btn {
        width: 36px;
        height: 36px;
    }

    .header-action-btn svg {
        width: 18px;
        height: 18px;
    }

    /* ── Hero Section ──────────────────────────────────────── */
    .hero-section {
        height: 65vh;
        min-height: 380px;
        max-height: 600px;
    }

    .hero-content {
        padding: 0 var(--container-px);
        justify-content: flex-end;
        padding-bottom: 70px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 0.2em;
        margin-bottom: var(--space-2);
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
        max-width: 90%;
        margin-bottom: var(--space-4);
        line-height: 1.15;
    }

    .hero-cta .btn-primary-vr {
        padding: 12px 28px;
        font-size: 11px;
    }

    .hero-dots {
        bottom: 20px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
        padding: 8px;
        margin: -8px 0;
        background-clip: content-box;
    }

    .hero-dot.active {
        width: 24px;
    }

    /* ── Section Spacing ───────────────────────────────────── */
    .vr-section {
        padding-top: clamp(2.5rem, 6vw, 4rem);
        padding-bottom: clamp(2.5rem, 6vw, 4rem);
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    .section-subtitle {
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .section-title::after {
        width: 40px;
        margin-top: var(--space-3);
    }

    /* ── Features Bar ──────────────────────────────────────── */
    .features-bar {
        padding: var(--space-6) 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: var(--fs-xs);
    }

    .feature-desc {
        font-size: 11px;
    }

    /* ── Category Cards ────────────────────────────────────── */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .category-card {
        aspect-ratio: 3/4;
    }

    .category-card-overlay {
        padding: var(--space-4);
    }

    .category-card-name {
        font-size: var(--fs-base);
    }

    /* ── Product Cards ─────────────────────────────────────── */
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-3);
    }

    .product-card-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .card-action-btn {
        width: 36px;
        height: 36px;
    }

    .card-action-btn svg {
        width: 15px;
        height: 15px;
    }

    .product-badge .badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .product-card-info {
        padding: var(--space-3) var(--space-3) var(--space-4);
    }

    .product-card-name {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-1);
    }

    .product-card-price {
        gap: var(--space-2);
        margin-bottom: var(--space-3);
    }

    .product-card-wa {
        padding: 8px;
        font-size: 11px;
    }

    .product-card-wa svg {
        width: 14px;
        height: 14px;
    }

    /* ── Promotional Banners ───────────────────────────────── */
    .promo-banner {
        min-height: 280px;
    }

    .promo-banner-content {
        padding: var(--space-6);
    }

    .promo-banner-content h2 {
        font-size: var(--fs-2xl);
        margin-bottom: var(--space-3);
    }

    .promo-banner-overlay {
        background: linear-gradient(to top,
            rgba(18, 8, 9, 0.85) 0%,
            rgba(18, 8, 9, 0.4) 60%,
            rgba(18, 8, 9, 0.2) 100%);
    }

    /* ── Testimonials ──────────────────────────────────────── */
    .testimonial-card {
        padding: var(--space-6);
    }

    .testimonial-text {
        font-size: var(--fs-sm);
        line-height: 1.7;
    }

    /* ── Newsletter ────────────────────────────────────────── */
    .newsletter-form {
        flex-direction: column;
        gap: var(--space-3);
    }

    .newsletter-form input {
        border-right: 1px solid rgba(189, 118, 38, 0.25);
        border-radius: var(--radius-sm);
        font-size: 16px;
        text-align: center;
    }

    .newsletter-form button {
        border-radius: var(--radius-sm);
        padding: 14px 28px;
    }

    /* ── Blog ──────────────────────────────────────────────── */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filter-wrap {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: var(--space-2);
    }

    .blog-filter-wrap::-webkit-scrollbar {
        display: none;
    }

    .blog-filter-wrap .btn-outline-vr {
        padding: 10px 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── Contact ───────────────────────────────────────────── */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    input,
    textarea,
    select {
        font-size: 16px; /* Prevents iOS zoom */
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px;
    }

    /* ── Footer ────────────────────────────────────────────── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-logo {
        width: clamp(180px, 35vw, 260px);
        max-height: 65px;
        margin: 0 0 var(--space-3) 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    /* ── USP / Why Choose Us ───────────────────────────────── */
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Product Detail ────────────────────────────────────── */
    .product-info-meta {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    /* ── Collections ───────────────────────────────────────── */
    .collections-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    /* ── Search ─────────────────────────────────────────────── */
    #searchClose {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ── Shop Toolbar ──────────────────────────────────────── */
    .shop-toolbar-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: var(--space-3) !important;
    }

    .shop-toolbar-row .d-flex {
        width: 100%;
        justify-content: space-between;
    }

    .shop-toolbar-row label {
        white-space: nowrap;
    }

    .shop-toolbar-row select {
        flex: 1;
        width: auto !important;
        min-width: 0 !important;
    }

    /* ── Page Header ───────────────────────────────────────── */
    .page-header {
        padding: var(--space-10) 0 var(--space-8);
    }

    .page-header h1 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    /* ── Buttons ────────────────────────────────────────────── */
    .btn-primary-vr {
        padding: 12px 28px;
        font-size: 11px;
    }

    .btn-outline-vr {
        padding: 12px 24px;
        font-size: var(--fs-xs);
    }

    /* ── Back to top ───────────────────────────────────────── */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* ── Cart ───────────────────────────────────────────────── */
    .cart-item {
        flex-wrap: wrap;
    }

    /* ── Pagination ─────────────────────────────────────────── */
    .pagination {
        flex-wrap: wrap;
        gap: var(--space-1);
    }
    .pagination a,
    .pagination span {
        min-width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/* ── Mobile (≤480px) ───────────────────────────────────────── */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2);
    }

    .product-card-info {
        padding: var(--space-2) var(--space-2) var(--space-3);
    }

    .product-card-name {
        font-size: var(--fs-sm);
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .product-card-category {
        font-size: 10px;
    }

    .price-current {
        font-size: var(--fs-sm);
    }

    .price-original {
        font-size: var(--fs-xs);
    }

    .product-card-wa {
        padding: 7px;
        font-size: 10px;
        letter-spacing: 0;
    }

    .btn-primary-vr,
    .btn-outline-vr {
        padding: 10px 20px;
        font-size: 10px;
    }

    .header-logo img {
        width: clamp(130px, 36vw, 180px);
        max-height: 50px;
        margin: 0;
    }

    /* Hero tightening */
    .hero-section {
        height: 60vh;
        min-height: 320px;
        max-height: 500px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 6.5vw, 2rem);
    }

    .hero-content {
        padding-bottom: 60px;
    }

    /* Category tightening */
    .categories-grid {
        gap: var(--space-2);
    }

    .category-card-name {
        font-size: var(--fs-sm);
    }

    .category-card-overlay {
        padding: var(--space-3);
    }

    /* Cart responsive */
    .cart-item {
        flex-wrap: wrap;
        gap: var(--space-3);
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-details {
        flex: 1;
        min-width: calc(100% - 110px);
    }

    /* Collections page */
    .collections-page-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* Promo banners */
    .promo-banner {
        min-height: 220px;
    }

    .promo-banner-content h2 {
        font-size: var(--fs-xl);
    }

    /* Section spacing */
    .section-header {
        margin-bottom: var(--space-6);
    }

    /* Features bar */
    .features-grid {
        gap: var(--space-3);
    }

    .feature-title {
        font-size: 11px;
    }

    .feature-desc {
        font-size: 10px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-5);
    }

    .testimonial-text {
        font-size: var(--fs-xs);
    }

    /* Newsletter */
    .newsletter-form input {
        padding: 14px 16px;
    }

    .newsletter-form button {
        padding: 12px 24px;
    }

    /* Page header */
    .page-header {
        padding: var(--space-8) 0 var(--space-6);
    }

    .page-header h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
}

/* ── Small mobile (≤360px) ─────────────────────────────────── */
@media (max-width: 360px) {
    .header-logo img {
        width: clamp(120px, 40vw, 160px);
        max-height: 45px;
        margin: 0;
    }

    .footer-logo {
        width: clamp(120px, 40vw, 160px);
        max-height: 45px;
        margin: 0 0 var(--space-2) 0;
    }

    .hero-section {
        height: 55vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }

    .products-grid {
        gap: 6px;
    }

    .product-card-info {
        padding: var(--space-2);
    }

    .announcement-bar {
        font-size: 9px;
        padding: 5px 10px;
    }

    .categories-grid {
        gap: 6px;
    }

    .site-header {
        height: 60px;
    }

    .header-action-btn {
        width: 32px;
        height: 32px;
    }
}