/* =====================================================
   Rustico's - Artesania, Fragancias y Cuero
   Domain: rusticos.uy
   Color Palette: Dark luxury + Gold accents
   Typography: Playfair Display + Lato
   ===================================================== */

/* ----- CSS Custom Properties ----- */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #111111;
    --color-bg-card: #141414;
    --color-bg-elevated: #1e1e1e;
    --color-gold: #c8a96e;
    --color-gold-light: #d4af37;
    --color-gold-dark: #a8893e;
    --color-gold-muted: rgba(200, 169, 110, 0.15);
    --color-gold-glow: rgba(200, 169, 110, 0.4);
    --color-white: #ffffff;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #777777;
    --color-border: #2a2a2a;
    --color-border-light: #333333;
    --color-success: #4caf50;
    --color-error: #e74c3c;
    --color-warning: #f39c12;
    --color-overlay: rgba(0, 0, 0, 0.7);
    --color-whatsapp: #25d366;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --nav-height: 100px;
    --sidebar-width: 280px;
    --cart-drawer-width: 420px;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 20px rgba(200, 169, 110, 0.2);
    --shadow-gold-lg: 0 0 40px rgba(200, 169, 110, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-body);
    color: var(--color-text-primary);
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-muted);
}

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

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c8a96e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

select option {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-border-light);
    border-radius: var(--radius-full);
}

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

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-border-light) var(--color-bg-primary);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

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

.heading-accent {
    color: var(--color-gold);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: 0 auto var(--space-xl);
    border: none;
}

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

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

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

.section-dark {
    background-color: var(--color-bg-secondary);
}

.section-pattern {
    background-color: var(--color-bg-tertiary);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200, 169, 110, 0.03) 0%, transparent 50%);
}

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

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

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

.flex {
    display: flex;
}

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

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

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

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

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

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

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

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

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

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    border: none;
}

.btn-whatsapp:hover {
    background: #20b858;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-xs);
    letter-spacing: 1px;
}

.btn-lg {
    padding: 1.125rem 3rem;
    font-size: var(--text-base);
    letter-spacing: 2px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
}

/* ----- Navigation ----- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(200, 169, 110, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    text-decoration: none;
    position: relative;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

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

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

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

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

.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text-primary);
    font-size: var(--text-xl);
    transition: color var(--transition-fast);
    cursor: pointer;
    background: none;
    border: none;
}

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

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-bg-primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0 5px;
    line-height: 1;
    transform: scale(0);
    transition: transform var(--transition-spring);
}

.cart-badge.visible {
    transform: scale(1);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: all var(--transition-base);
    display: block;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1511 40%, #0d0b08 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(45deg, var(--color-gold) 0, var(--color-gold) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, var(--color-gold) 0, var(--color-gold) 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

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

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

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.hero-particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 10s; }
.hero-particle:nth-child(3) { left: 40%; animation-delay: 3s; animation-duration: 7s; }
.hero-particle:nth-child(4) { left: 55%; animation-delay: 0.5s; animation-duration: 9s; }
.hero-particle:nth-child(5) { left: 70%; animation-delay: 2s; animation-duration: 11s; }
.hero-particle:nth-child(6) { left: 85%; animation-delay: 4s; animation-duration: 8s; }
.hero-particle:nth-child(7) { left: 15%; animation-delay: 2.5s; animation-duration: 10s; }
.hero-particle:nth-child(8) { left: 60%; animation-delay: 1s; animation-duration: 9s; }

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

/* Hero Split Layout (text left + 3D right) */
.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 var(--space-2xl);
    gap: var(--space-2xl);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    flex: 1;
    padding: 0;
}

.hero-3d {
    flex: 1;
    max-width: 550px;
    height: 500px;
    position: relative;
    z-index: 2;
}

.hero-3d canvas {
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding: 0 var(--space-xl);
    }
    .hero-content {
        text-align: center;
        max-width: 800px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-3d {
        max-width: 350px;
        height: 350px;
        margin-top: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .hero-3d {
        max-width: 280px;
        height: 280px;
    }
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: var(--space-sm) var(--space-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, var(--text-7xl));
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-title .accent {
    color: var(--color-gold);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

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

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

/* ----- Product Cards ----- */
.product-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.product-card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

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

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

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

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

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

.badge-offer {
    background: var(--color-error);
    color: var(--color-white);
}

.badge-inspiration {
    background: rgba(200, 169, 110, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(200, 169, 110, 0.3);
    font-weight: 400;
    font-size: 10px;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
}

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

.product-card-quick-actions {
    display: flex;
    gap: var(--space-sm);
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

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

.product-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-category {
    font-size: var(--text-xs);
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

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

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

.product-card-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.product-meta-tag {
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--color-bg-secondary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price-current {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
}

.product-price-original {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-card-cart-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-bg-primary);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    cursor: pointer;
    transition: all var(--transition-base);
}

.product-card-cart-btn:hover {
    background: var(--color-gold-light);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* ----- Category Cards ----- */
.category-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    transition: transform var(--transition-slow);
}

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

.category-card.has-image .category-card-bg {
    background: none;
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.category-card.has-image .category-card-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.15) 100%);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 2;
}

.category-card-icon {
    font-size: var(--text-3xl);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.category-card:hover .category-card-icon {
    transform: translateY(-4px);
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.category-card-count {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.category-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gold);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: var(--space-md);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ----- Brand Story Section ----- */
.brand-story {
    position: relative;
    overflow: hidden;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.brand-story-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.brand-story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius-md);
}

.brand-story-image-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1510, #0d0b08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-story-image-icon {
    font-size: 80px;
    color: rgba(200, 169, 110, 0.15);
}

.brand-story-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: var(--radius-md);
}

.brand-story-content {
    padding: var(--space-xl) 0;
}

.brand-story-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
}

.brand-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.brand-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.brand-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold-muted);
    color: var(--color-gold);
    border-radius: var(--radius-md);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.brand-feature-text h5 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.brand-feature-text p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ----- Newsletter / CTA Section ----- */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, transparent 50%,  rgba(200, 169, 110, 0.05) 100%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

.cta-icon {
    font-size: var(--text-4xl);
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* ----- Footer ----- */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-4xl);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-brand-name span {
    color: var(--color-gold);
}

.footer-brand-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    text-decoration: none;
}

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-link {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-contact-icon {
    color: var(--color-gold);
    font-size: var(--text-base);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-contact-text a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-text a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--text-xl);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition-base);
    text-decoration: none;
    animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

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

/* ----- Cart Drawer ----- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--cart-drawer-width);
    max-width: 100vw;
    height: 100vh;
    background: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.cart-drawer-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cart-drawer-count {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: 400;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-xl);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
}

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

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cart-drawer-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

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

.cart-drawer-item-image {
    width: 72px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    flex-shrink: 0;
}

.cart-drawer-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer-item-details {
    flex: 1;
    min-width: 0;
}

.cart-drawer-item-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-drawer-item-meta {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

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

.cart-drawer-item-price {
    font-weight: 600;
    color: var(--color-gold);
    font-size: var(--text-sm);
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-qty-btn:hover {
    color: var(--color-gold);
    background: var(--color-gold-muted);
}

.cart-qty-value {
    width: 28px;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-white);
    font-weight: 600;
}

.cart-drawer-item-remove {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    cursor: pointer;
    padding: 2px 4px;
    transition: color var(--transition-fast);
    margin-left: var(--space-sm);
}

.cart-drawer-item-remove:hover {
    color: var(--color-error);
}

.cart-drawer-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    text-align: center;
}

.cart-drawer-empty-icon {
    font-size: 48px;
    color: var(--color-border-light);
    margin-bottom: var(--space-lg);
}

.cart-drawer-empty h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
}

.cart-drawer-empty p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.cart-drawer-footer {
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl);
    flex-shrink: 0;
}

.cart-drawer-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
}

.cart-drawer-summary-row.total {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-lg);
    font-weight: 700;
}

.cart-drawer-summary-label {
    color: var(--color-text-secondary);
}

.cart-drawer-summary-value {
    color: var(--color-white);
    font-weight: 600;
}

.cart-drawer-summary-row.total .cart-drawer-summary-value {
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.cart-drawer-shipping-note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ----- Breadcrumb ----- */
.breadcrumb {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

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

.breadcrumb-item {
    color: var(--color-text-muted);
}

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

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

.breadcrumb-separator {
    color: var(--color-border-light);
    font-size: var(--text-xs);
}

.breadcrumb-item.active {
    color: var(--color-gold);
}

/* ----- Catalog Page ----- */
.catalog-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.catalog-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
    align-self: start;
}

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

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

.filter-group-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.filter-group-title i {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    transition: transform var(--transition-fast);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    padding: var(--space-xs) 0;
}

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

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-border-light);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    background: transparent;
}

.filter-option.active .filter-checkbox {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.filter-option.active .filter-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--color-bg-primary);
}

.filter-option.active {
    color: var(--color-gold);
}

.filter-count {
    margin-left: auto;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

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

.filter-price-inputs input {
    padding: var(--space-sm);
    font-size: var(--text-sm);
    text-align: center;
}

.filter-price-inputs span {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.catalog-results-count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.catalog-sort label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.catalog-sort select {
    width: auto;
    padding: var(--space-sm) 2.5rem var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

.catalog-search {
    position: relative;
    margin-bottom: var(--space-xl);
}

.catalog-search input {
    padding-left: 2.5rem;
}

.catalog-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

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

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
    text-decoration: none;
}

.pagination-btn:hover,
.pagination-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-gold-muted);
}

.pagination-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    margin-bottom: var(--space-lg);
}

/* ----- Single Product Page ----- */
.product-detail {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-4xl);
}

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

.product-gallery {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
}

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

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

.product-gallery-thumb {
    width: 72px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
    background: var(--color-bg-secondary);
}

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

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

.product-info {
    padding-top: var(--space-md);
}

.product-info-category {
    font-size: var(--text-sm);
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.product-info-name {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.product-info-price-block {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.product-info-price {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
}

.product-info-price-original {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-info-discount {
    font-size: var(--text-sm);
    color: var(--color-error);
    font-weight: 600;
    background: rgba(231, 76, 60, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}

.product-inspiration {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-gold-muted);
    border: 1px solid rgba(200, 169, 110, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.product-inspiration i {
    font-size: var(--text-xs);
}

.product-notes {
    margin-bottom: var(--space-xl);
}

.product-notes-title {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.product-notes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.product-note-tag {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.product-note-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.product-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-spec-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-spec-value {
    font-size: var(--text-sm);
    color: var(--color-white);
    font-weight: 500;
}

.product-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.product-add-section {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border: none;
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    color: var(--color-gold);
    background: var(--color-gold-muted);
}

.qty-value {
    width: 50px;
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    background: none;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    height: 44px;
}

.product-add-btn {
    flex: 1;
}

.product-whatsapp-btn {
    margin-bottom: var(--space-lg);
}

/* ----- Cart Page ----- */
.cart-page {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-4xl);
}

.cart-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2xl);
}

.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

.cart-items-list {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

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

.cart-item-product {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    flex-shrink: 0;
}

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

.cart-item-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.cart-item-variant {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.cart-item-price {
    font-weight: 600;
    color: var(--color-text-primary);
}

.cart-item-subtotal {
    font-weight: 700;
    color: var(--color-gold);
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-item-remove:hover {
    border-color: var(--color-error);
    color: var(--color-error);
    background: rgba(231, 76, 60, 0.1);
}

.cart-summary {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
}

.cart-summary-row .label {
    color: var(--color-text-secondary);
}

.cart-summary-row .value {
    color: var(--color-white);
    font-weight: 500;
}

.cart-summary-row.free-shipping .value {
    color: var(--color-success);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    margin-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-xl);
}

.cart-summary-total .label {
    font-family: var(--font-heading);
    color: var(--color-white);
}

.cart-summary-total .value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
}

.cart-summary-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.cart-summary-note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-md);
    line-height: 1.5;
}

.cart-empty-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.cart-empty-icon {
    font-size: 64px;
    color: var(--color-border-light);
    margin-bottom: var(--space-xl);
}

.cart-empty-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.cart-empty-text {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

/* ----- Checkout Page ----- */
.checkout-page {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-4xl);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-2xl);
    align-items: start;
}

.checkout-section {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.checkout-section-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-bg-primary);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.form-label .required {
    color: var(--color-error);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--color-gold);
    background: var(--color-gold-muted);
}

.payment-method-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--transition-fast);
}

.payment-method.selected .payment-method-radio {
    border-color: var(--color-gold);
}

.payment-method.selected .payment-method-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

.payment-method-icon {
    font-size: var(--text-2xl);
    color: var(--color-gold);
    width: 40px;
    text-align: center;
}

.payment-method-info h5 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: 2px;
}

.payment-method-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.checkout-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-gold);
}

.checkout-terms label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.checkout-terms a {
    color: var(--color-gold);
}

.checkout-order-summary {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.checkout-order-items {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.checkout-order-item {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-sm) 0;
}

.checkout-order-item-image {
    width: 56px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    flex-shrink: 0;
}

.checkout-order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-order-item-details {
    flex: 1;
    min-width: 0;
}

.checkout-order-item-name {
    font-size: var(--text-sm);
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-order-item-qty {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.checkout-order-item-price {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

/* ----- Contact Page ----- */
.contact-page {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-4xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.contact-info-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.contact-info-card-icon {
    font-size: var(--text-2xl);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.contact-info-card h5 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.contact-info-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.contact-whatsapp-cta {
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-whatsapp-cta h4 {
    margin-bottom: var(--space-sm);
}

.contact-whatsapp-cta p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.contact-form {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
}

.contact-map {
    margin-top: var(--space-2xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 16 / 9;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

/* ----- Toast Notifications ----- */
.toast-container {
    position: fixed;
    top: calc(var(--nav-height) + var(--space-md));
    right: var(--space-xl);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 320px;
    max-width: 420px;
    transform: translateX(120%);
    transition: transform var(--transition-base);
    animation: toastIn 0.4s ease forwards;
}

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

.toast-icon {
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--color-success); }
.toast-error .toast-icon { color: var(--color-error); }
.toast-warning .toast-icon { color: var(--color-warning); }
.toast-info .toast-icon { color: var(--color-gold); }

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.toast-message {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.toast-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: var(--text-base);
    padding: 4px;
    transition: color var(--transition-fast);
}

.toast-close:hover {
    color: var(--color-white);
}

@keyframes toastIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ----- Loading States ----- */
.skeleton {
    background: linear-gradient(90deg, var(--color-bg-secondary) 25%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

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

.skeleton-card {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.skeleton-image {
    aspect-ratio: 3 / 4;
}

.skeleton-text {
    height: 14px;
    margin-bottom: var(--space-sm);
}

.skeleton-text-sm {
    height: 12px;
    width: 60%;
}

.skeleton-price {
    height: 20px;
    width: 40%;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: var(--space-2xl) auto;
}

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

/* ----- Scroll Animations ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* ----- Page Transition ----- */
.page-transition {
    animation: pageEnter 0.4s ease;
}

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

/* ----- Utility Classes ----- */
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.gold-text { color: var(--color-gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Keep categories at 4 cols so 8 items = 2 even rows */
    #categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    :root {
        --nav-height: 85px;
        --cart-drawer-width: 380px;
    }

    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: none;
    }

    .catalog-sidebar.mobile-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        background: var(--color-bg-secondary);
        z-index: 2001;
        padding: var(--space-xl);
        overflow-y: auto;
        border-right: 1px solid var(--color-border);
    }

    .mobile-filter-btn {
        display: flex;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .product-gallery {
        position: static;
    }

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

    .cart-summary {
        position: static;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-order-summary {
        position: static;
        order: -1;
    }

    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .brand-story-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .category-card {
        aspect-ratio: 1;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-2xl);
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: var(--text-2xl);
        font-family: var(--font-heading);
        text-transform: none;
        letter-spacing: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        gap: var(--space-sm);
    }

    .nav-account-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }

    .nav-inner {
        padding: 0 var(--space-md);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
        --cart-drawer-width: 100vw;
    }

    .container {
        padding: 0 var(--space-lg);
    }

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

    .nav-actions {
        gap: var(--space-xs);
    }

    .nav-cart-btn {
        width: 38px;
        height: 38px;
        font-size: var(--text-base);
    }

    .nav-account-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.8rem;
    }

    .hero-content {
        padding: 0 var(--space-lg);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .product-card-body {
        padding: var(--space-md);
    }

    .product-card-name {
        font-size: var(--text-base);
    }

    .product-card-description {
        display: none;
    }

    .product-card-meta {
        display: none;
    }

    .category-card {
        aspect-ratio: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .brand-features {
        grid-template-columns: 1fr;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item-row {
        grid-template-columns: auto 1fr;
        gap: var(--space-md);
    }

    .cart-item-product {
        grid-column: 1 / -1;
    }

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

    .product-specs {
        grid-template-columns: 1fr 1fr;
    }

    .product-add-section {
        flex-direction: column;
    }

    .product-add-section .btn {
        width: 100%;
    }

    .qty-selector {
        width: 100%;
        justify-content: center;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .toast {
        min-width: auto;
        max-width: calc(100vw - 2rem);
        right: 0;
    }

    .toast-container {
        right: var(--space-md);
        left: var(--space-md);
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .product-card {
        max-width: 100%;
    }

    .product-card-image {
        aspect-ratio: 4 / 3;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .product-info-name {
        font-size: var(--text-2xl);
    }

    .product-gallery-thumbs {
        overflow-x: auto;
    }
}

/* =====================================================
   NAV LOGO IMAGE
   ===================================================== */
.nav-logo-img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

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

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

/* =====================================================
   FOOTER LOGO IMAGE
   ===================================================== */
.footer-logo-img {
    height: 140px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-sm);
}

/* =====================================================
   NAV ACCOUNT DROPDOWN
   ===================================================== */
.nav-account {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-account-btn {
    background: none;
    border: 1px solid var(--color-border-light);
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

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

.nav-account-btn i {
    font-size: 1rem;
}

.nav-account-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-account-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-account-dropdown a,
.nav-account-dropdown button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.7rem 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.nav-account-dropdown a:hover,
.nav-account-dropdown button:hover {
    background: var(--color-gold-muted);
    color: var(--color-gold);
}

.nav-account-dropdown .dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.25rem 0;
}

.nav-account-name {
    padding: 0.7rem 1rem;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   AUTH PAGES (login, registro, mi-cuenta)
   ===================================================== */
.auth-page {
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    min-height: 80vh;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.auth-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-xs);
}

.auth-card-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xl);
}

.auth-card .form-group {
    margin-bottom: var(--space-lg);
}

.auth-card .form-label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.auth-card input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.auth-links {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.auth-links a {
    color: var(--color-gold);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--color-error);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    display: none;
}

.auth-error.show {
    display: block;
}

/* Mi Cuenta page */
.account-page {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-4xl);
}

.account-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-xl);
    max-width: 960px;
    margin: 0 auto;
}

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

.account-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.account-sidebar-nav a:hover,
.account-sidebar-nav a.active {
    background: var(--color-gold-muted);
    color: var(--color-gold);
}

.account-section {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.account-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

/* Order history table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.orders-table th {
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--text-xs);
}

.order-status {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.order-status-pendiente { background: rgba(243, 156, 18, 0.15); color: var(--color-warning); }
.order-status-confirmado { background: rgba(52, 152, 219, 0.15); color: #3498db; }
.order-status-pagado { background: rgba(76, 175, 80, 0.15); color: var(--color-success); }
.order-status-enviado { background: rgba(155, 89, 182, 0.15); color: #9b59b6; }
.order-status-entregado { background: rgba(76, 175, 80, 0.15); color: var(--color-success); }
.order-status-cancelado { background: rgba(231, 76, 60, 0.15); color: var(--color-error); }

/* Product type badge on cards */
.product-type-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: var(--color-gold-muted);
    color: var(--color-gold);
}

/* =====================================================
   STAGGER ANIMATIONS (extended for 8 categories)
   ===================================================== */
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* =====================================================
   AUTH PAGES - MISSING CLASSES
   ===================================================== */
.auth-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.auth-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

/* Form control class used in auth pages */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-muted);
}

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

/* =====================================================
   MI CUENTA - ACCOUNT NAV & SECTIONS
   ===================================================== */
.account-sidebar-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

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

.account-nav-link i {
    width: 18px;
    text-align: center;
}

.account-logout-btn {
    margin-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
    color: var(--color-text-muted);
}

.account-logout-btn:hover {
    color: var(--color-error);
    background: rgba(231, 76, 60, 0.1);
}

/* Account sections: only .active is visible */
.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

/* =====================================================
   ORDER CARDS (generated by JS in mi-cuenta.html)
   ===================================================== */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.order-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.order-card:hover {
    border-color: var(--color-gold-dark);
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-md);
}

.order-card-header strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-base);
}

.order-date {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-left: var(--space-md);
}

.order-card-body {
    padding: var(--space-md) var(--space-lg);
}

.order-items-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.order-card-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.order-total {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gold);
}

/* Empty state for orders */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--color-text-muted);
}

.empty-state p {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
}

/* =====================================================
   LEATHER SHOWCASE SECTION
   ===================================================== */
.leather-showcase {
    position: relative;
    overflow: hidden;
    background: #0d0a07;
}

.leather-showcase-inner {
    position: relative;
    padding: var(--space-4xl) 0;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated leather patchwork tiles */
.leather-pattern {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    opacity: 0.35;
}

.leather-tile {
    position: relative;
    background: linear-gradient(145deg, #3a2618 0%, #2a1a0e 50%, #1e120a 100%);
    overflow: hidden;
}

.leather-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(200, 169, 110, 0.06) 3px,
            rgba(200, 169, 110, 0.06) 4px
        );
}

.leather-tile::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(200, 169, 110, 0.12);
    border-radius: 1px;
}

/* Stitch animation along edges */
.leather-tile:nth-child(odd) {
    background: linear-gradient(145deg, #2e1c12 0%, #3a2618 50%, #241610 100%);
    animation: leather-breathe 6s ease-in-out infinite;
}

.leather-tile:nth-child(even) {
    animation: leather-breathe 6s ease-in-out 3s infinite;
}

.leather-tile:nth-child(3n) {
    background: linear-gradient(145deg, #40291a 0%, #2a1a0e 50%, #1a0f08 100%);
}

@keyframes leather-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Moving stitch highlight */
.leather-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 169, 110, 0.08) 50%,
        transparent 100%
    );
    z-index: 1;
    animation: leather-shimmer 8s ease-in-out infinite;
}

@keyframes leather-shimmer {
    0% { left: -30%; }
    100% { left: 130%; }
}

.leather-showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(13, 10, 7, 0.4) 0%, rgba(13, 10, 7, 0.85) 70%),
        linear-gradient(to bottom, rgba(13, 10, 7, 0.6) 0%, transparent 30%, transparent 70%, rgba(13, 10, 7, 0.6) 100%);
    z-index: 1;
}

.leather-showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 0 var(--space-lg);
}

.leather-showcase-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    animation: leather-icon-pulse 4s ease-in-out infinite;
}

@keyframes leather-icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.leather-showcase-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.leather-showcase-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Decorative top/bottom stitch borders */
.leather-showcase::before,
.leather-showcase::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background:
        repeating-linear-gradient(
            90deg,
            var(--color-gold) 0px,
            var(--color-gold) 8px,
            transparent 8px,
            transparent 16px
        );
    opacity: 0.4;
}

.leather-showcase::before { top: 0; }
.leather-showcase::after { bottom: 0; }

@media (max-width: 768px) {
    .leather-showcase-inner {
        min-height: 220px;
        padding: var(--space-3xl) 0;
    }

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

    .leather-showcase-title {
        font-size: var(--text-xl);
    }

    .leather-showcase-text {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .leather-pattern {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .leather-showcase-inner {
        min-height: 200px;
    }
}
