:root {
    /* Brand Colors */
    --color-primary: #111111;
    --color-accent: #D6B55E;
    --color-accent-hover: #b49542;
    --color-neutral: #FFFFFF;
    --color-text-light: #f5f5f5;
    --color-text-dark: #333333;
    --color-border: rgba(201, 168, 76, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Styling */
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
}

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

html {
    font-family: var(--font-body);
    scroll-behavior: smooth;
    background-color: var(--color-primary);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--color-text-light);
    background-color: var(--color-primary);
}

a {
    transition: var(--transition);
}

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-accent);
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

section { padding: 80px 0; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* -----------------------------
   TOP BAR / ANNOUNCEMENT
----------------------------- */
.announcement-bar {
    background-color: var(--color-accent); /* Dorado Oro Viejo */
    color: #111111;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.topbar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar-item a:hover {
    color: #f1f1f1;
}

.topbar-item span {
    opacity: 0.6;
}

.email-second {
    margin-left: 5px;
}

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

.social-icon {
    color: #111111;
    background: rgba(0,0,0,0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,255,255,0.4);
}

/* -----------------------------
   NAVBAR
----------------------------- */
.luxury-header {
    background-color: rgba(17, 17, 17, 0.85);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
}

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

.logo-container .luxury-logo {
    max-height: 100px;
    width: auto; /* Evita estiramiento horizontal */
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(214, 181, 94, 0.8)) drop-shadow(0 0 30px rgba(214, 181, 94, 0.3));
    transition: transform 0.3s ease;
}

.logo-container .luxury-logo:hover {
    transform: scale(1.05);
}

.luxury-footer .luxury-logo {
    max-height: 120px !important;
    width: auto !important; /* Fuerza el ratio original */
    height: auto !important;
    display: block;
    object-fit: contain;
}

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

.luxury-nav .nav-links a {
    color: #FFFFFF; /* Letras Blancas */
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none; 
    letter-spacing: 0.5px;
}

.luxury-nav .nav-links a:hover {
    color: var(--color-accent);
}

/* Header Action Button (Oro Viejo solid) */
.btn-header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-accent); /* Dorado Oro Viejo */
    color: #111111;
    padding: 10px 24px;
    border-radius: 100px; /* Pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(207, 181, 59, 0.3);
}

.btn-header-contact:hover {
    background-color: #bfa530;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(207, 181, 59, 0.4);
}

/* -----------------------------
   BUTTONS & LINKS
----------------------------- */
.btn-outline-gold {
    display: inline-block;
    background: linear-gradient(to bottom, #d4ba68, #b49542);
    color: #111;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-outline-gold:hover {
    background: linear-gradient(to bottom, #e2cb83, var(--color-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
}

.btn-solid-gold {
    display: inline-block;
    background-color: var(--color-accent);
    color: #111111;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.btn-solid-gold:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.btn-text-icon:hover {
    color: #fff;
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero-section {
    background-color: var(--color-primary);
    padding: 130px 0 80px; /* top: +90px to compensate margin-top pull-up */
    margin-top: -90px;     /* pull section up behind sticky header so canvas covers header zone */
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-accent); /* Changed to match precisely what you have in the image */
    margin-bottom: 40px; /* Space between title and buttons */
}

.hero-title span { color: #fff; }

.hero-image-wrapper {
    position: relative;
    padding: 30px;
}

.hero-image-frame {
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.badge-best-seller {
    position: absolute;
    top: 15px; /* Relative to .hero-image-wrapper — lands badge on frame corner */
    right: 15px;
    background: linear-gradient(135deg, #e2cb83, #b49542);
    color: #111;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.75rem;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.5);
    z-index: 10;
}

.hero-image-wrapper::before,
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-accent);
    z-index: 1;
}

.hero-image-wrapper::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.hero-image-wrapper::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.hero-img {
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: block;
}

/* -----------------------------
   STATS BAR
----------------------------- */
.stats-section {
    background: linear-gradient(135deg, #d4ba68, #b49542);
    padding: 40px 0;
    color: #111;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-text strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-text span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* -----------------------------
   SHOWCASE SECTION
----------------------------- */
.showcase-section {
    background-color: var(--color-primary);
    padding: 60px 0 50px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.showcase-title {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}

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

.showcase-card {
    background-color: #1a1500;
    border-top: 3px solid var(--color-accent);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(0,0,0,0.45);
}

.showcase-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1915; /* Suavizado de Negro a Bronce Carbón */
    height: 260px;
    padding: 20px;
    overflow: hidden;
    border-bottom: 1px solid rgba(214, 181, 94, 0.15);
}

.showcase-card__image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 12px rgba(214, 181, 94, 0.35)); /* Gold glow */
}

.showcase-card:hover .showcase-card__image img {
    transform: scale(1.04);
}

.showcase-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.showcase-card__name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.showcase-card__cta {
    display: block;
    background: var(--color-accent);
    color: #111;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    margin-top: auto;
}

.showcase-card__cta:hover {
    background: var(--color-accent-hover);
}

.showcase-footer {
    text-align: center;
    margin-top: 36px;
}

.showcase-bridge-link {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.showcase-bridge-link:hover {
    color: var(--color-accent);
}

/* -----------------------------
   SHOWCASE STRIPS (Opción B)
----------------------------- */
.showcase-strips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-strip {
    display: grid;
    grid-template-columns: 45% 1fr;
    min-height: 240px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(214, 181, 94, 0.15);
    background: #0e0e0e;
}

.showcase-strip--reverse {
    grid-template-columns: 1fr 45%;
}

.showcase-strip__img {
    overflow: hidden;
}

.showcase-strip__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-strip:hover .showcase-strip__img img {
    transform: scale(1.03);
}

.showcase-strip__content {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    border-left: 3px solid var(--color-accent);
}

.showcase-strip--reverse .showcase-strip__content {
    border-left: none;
    border-right: 3px solid var(--color-accent);
}

.showcase-strip__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcase-strip__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    line-height: 1.15;
}

.showcase-strip__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.showcase-strip__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
}

.showcase-strip__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-color: var(--color-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

.showcase-strip__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: #111;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.showcase-strip__cta:hover {
    background: var(--color-accent-hover);
}

/* -----------------------------
   CATALOG LAYOUT (SIDEBAR)
----------------------------- */
.catalog-content-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.catalog-sidebar {
    width: 260px; /* Slightly wider to accommodate tabs */
    position: sticky;
    top: 120px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(214, 181, 94, 0.1);
    
    /* Internal scroll for long lists */
    max-height: calc(100vh - 160px); 
    overflow-y: auto;
    scrollbar-width: none; 
}

.catalog-sidebar::-webkit-scrollbar {
    display: none;
}

.catalog-sidebar h4 {
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 800;
    opacity: 0.8;
}

/* Row 1: Groups (Tabs) */
.catalog-group-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(214, 181, 94, 0.2);
    padding-bottom: 20px;
}

.catalog-group-tab {
    background: transparent;
    border: 1px solid rgba(214, 181, 94, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.catalog-group-tab:hover {
    border-color: var(--color-accent);
    color: #fff;
    background: rgba(214, 181, 94, 0.05);
}

.catalog-group-tab.active {
    background: var(--color-accent);
    color: #111;
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(214, 181, 94, 0.3);
}

/* Row 2: Categories (Pills) */
.catalog-sub-filters {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-item {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-item:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.03);
}

.filter-item.active {
    color: var(--color-accent);
    font-weight: 700;
    background: rgba(214, 181, 94, 0.1);
}

.filter-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.3;
}

.catalog-main {
    flex-grow: 1;
}

/* Featured Grid Adjustment */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns as requested */
    gap: 30px;
}

/* -----------------------------
   PRODUCT CARD REFINEMENT
----------------------------- */

.product {
    background-color: #1a1a1a;
    border-radius: 15px;
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px rgba(0,0,0,0.4);
}

.product_image_wrapper {
    background: #1a1915; /* Suavizado de Negro a Bronce Carbón */
    border-radius: 10px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid rgba(214, 181, 94, 0.2); /* Subtle gold border */
}

.product_img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(214, 181, 94, 0.45)); /* Gold glow */
}

.product_content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product_sku {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.product_name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.product_name a {
    color: var(--color-accent);
    text-decoration: none;
}

.product_name a:hover {
    color: #fff;
}

.product_features {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    padding-left: 15px;
    flex: 1;
}

.product_features li {
    list-style: disc;
    margin-bottom: 4px;
}

.product_cta {
    display: block;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.product_cta:hover {
    background: var(--color-accent);
    color: #000;
}

/* -----------------------------
   CLIENTS & CONTACT
----------------------------- */
.client-wall-section {
    background: #111;
    border-top: 1px solid rgba(214,181,94,0.15);
}

.client-wall-section p {
    color: rgba(255,255,255,0.5) !important;
}

/* -----------------------------
   CLIENTS CAROUSEL
----------------------------- */
.client-wall-section { 
    background: #1a1915; /* Suavizado de Negro a Bronce Carbón */
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.client-wall-section .section-title {
    margin-bottom: 10px;
}

.client-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    /* Mask for soft fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.client-carousel-track {
    display: flex;
    width: max-content;
    gap: 120px; /* Adjusted gap for larger logos */
    align-items: center;
    animation: scroll-clients 45s linear infinite;
}

.client-carousel-track img {
    height: 110px; /* Doubled size (was 55px) */
    width: auto;
    filter: drop-shadow(0 0 15px rgba(214, 181, 94, 0.5));
    transition: var(--transition);
    flex-shrink: 0;
}

.client-carousel-track img:hover {
    filter: drop-shadow(0 0 25px rgba(214, 181, 94, 0.8));
    transform: scale(1.1);
}

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

/* Pause on hover for better UX */
.client-carousel-container:hover .client-carousel-track {
    animation-play-state: paused;
}

.contact-section { 
    background: #1a1915; /* Suavizado de Negro a Bronce Carbón */
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-container { display: flex; gap: 60px; }

.contact-form-wrapper { 
    flex: 1; 
    padding: 40px; 
    border-radius: 15px; 
    border: 1px solid rgba(201,168,76,0.3); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); 
    background: #1a1915; 
}

.luxury-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.luxury-form input, .luxury-form textarea { 
    width: 100%; 
    padding: 12px 0; 
    border: none; 
    border-bottom: 1px solid rgba(201,168,76,0.3); 
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
}

.luxury-form input::placeholder, .luxury-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.luxury-form input:focus { 
    outline: none; 
    border-bottom-color: var(--color-accent); 
    box-shadow: 0 4px 10px rgba(214, 181, 94, 0.1);
}

.btn-whatsapp-submit { 
    background: #25D366; 
    color: #fff; 
    padding: 15px; 
    border-radius: 8px; 
    text-transform: uppercase; 
    font-weight: 800; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}

.form_input.invalid {
    border-bottom: 2px solid #ff4d4d !important;
    background-color: rgba(255, 77, 77, 0.05);
}

.form_input.valid {
    border-bottom: 2px solid #25D366 !important;
}

/* -----------------------------
   FOOTER
----------------------------- */
.luxury-footer { 
    background: #080808; /* Black deeper as per ref */
    padding: 100px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container { 
    display: flex; 
    justify-content: space-between; 
    gap: 40px;
    padding-bottom: 80px;
}

.footer-col { 
    flex: 1; 
    color: rgba(255,255,255,0.6); 
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: #ffffff; /* White and bold as per ref */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Support Pill Button */
.btn-support-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(214, 181, 94, 0.4);
    border-radius: 50px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    max-width: fit-content;
    margin-top: 10px;
}

.btn-support-pill:hover {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 20px rgba(214, 181, 94, 0.3);
}

/* Social Icons Refined */
.social-icons-footer {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon-circle {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.6);
}

.social-icon-circle:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* -----------------------------
   FLOATING WHATSAPP BUTTON
----------------------------- */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-accent);
    color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    background-color: #bfa530;
}

/* Responsive */
/* ─── HAMBURGER BUTTON ─────────────────────────── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3001;
    flex-shrink: 0;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animate to X when active */
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ─── FULLSCREEN MENU ─────────────────────────── */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 40px 24px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.fullscreen-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.2s;
}

.fullscreen-menu__close:hover {
    color: var(--color-accent);
}

.fullscreen-menu__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.fullscreen-menu__links li {
    width: 100%;
    text-align: center;
}

.fullscreen-menu-link {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fullscreen-menu-link:hover {
    color: var(--color-accent);
}

.fullscreen-menu__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-accent);
    color: #111;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.fullscreen-menu__cta:hover {
    background-color: var(--color-accent-hover);
}

@media (max-width: 1024px) {
    .featured-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .header-container { gap: 0; }
    .luxury-nav { display: none; }
    /* Hide CTA buttons in header, but keep the container so hamburger (injected inside) stays visible */
    .header-actions .btn-header-contact,
    .header-actions .btn-outline-gold { display: none; }
    .hamburger-btn { display: flex !important; }

    .topbar-left .topbar-item:last-child { display: none; } /* Oculta emails, deja solo teléfono */
    .email-second { display: none; }

    .hero-container, .contact-container, .footer-container { flex-direction: column; text-align: center; }
    .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-strip,
    .showcase-strip--reverse { grid-template-columns: 1fr; }
    .showcase-strip__img { height: auto; aspect-ratio: 4 / 3; }
    .showcase-strip__img img { object-fit: contain; padding: 0; background: #0e0e0e; }
    .showcase-strip--reverse .showcase-strip__img { order: -1; }
    .showcase-strip--reverse .showcase-strip__content { border-right: none; border-left: 3px solid var(--color-accent); }
    .showcase-strip__content { gap: 6px; padding: 16px 20px; }
    /* Mobile: solo el botón CTA */
    .showcase-strip__features,
    .showcase-strip__label,
    .showcase-strip__name { display: none; }
    .showcase-strip__cta { align-self: center; }
    /* Scroll-reveal — progressive enhancement: strips son visibles por defecto.
       El JS agrega .strip--init para ocultarlas. Si JS falla → siempre visibles. */
    .showcase-strips { overflow: hidden; }
    .showcase-strips .showcase-strip {
        transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    /* Estado inicial — lo pone el JS */
    .showcase-strip.strip--init {
        opacity: 0;
        transform: translateX(70px);   /* 1° y 3° entran desde la derecha */
    }
    .showcase-strip.strip--init:nth-child(even) {
        transform: translateX(-70px);  /* 2° entra desde la izquierda */
    }
    .showcase-strip.strip--visible {
        opacity: 1;
        transform: translateX(0);
    }
    .hero-image-wrapper { margin-top: 40px; }
    .category-sticky-bar { top: 70px; }
    .logo-container .luxury-logo { max-height: 80px; }
    .catalog-content-wrapper { flex-direction: column; }
    .catalog-sidebar { 
        width: 100%; 
        position: static; 
        max-height: none; 
        padding: 16px 0;
        background: transparent;
        border: none;
    }
    .catalog-sidebar h4 { display: none; } /* Ocultar título en móvil para ganar espacio */
    
    .catalog-group-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
        margin-bottom: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
    }
    .catalog-group-tabs::-webkit-scrollbar { display: none; }
    .catalog-group-tab {
        white-space: nowrap;
        padding: 8px 16px;
        flex-shrink: 0;
    }

    .catalog-sub-filters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
    }
    .catalog-sub-filters::-webkit-scrollbar { display: none; }
    .filter-item {
        white-space: nowrap;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(214, 181, 94, 0.1);
        flex-shrink: 0;
    }
    .filter-item::before { display: none; }
    .footer-bottom-content { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal-links { justify-content: center; gap: 20px; flex-wrap: wrap; }

    /* ── PRODUCT GRID: image-only on mobile ── */
    .featured-products-grid .product {
        padding: 0;
        border-radius: 10px;
        overflow: hidden;
        /* Scroll-reveal: initial hidden state */
        opacity: 0;
        transform: translateY(36px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .featured-products-grid .product.product--visible {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger: 2-column grid, odd cards lag slightly */
    .featured-products-grid .product:nth-child(even) {
        transition-delay: 0.1s;
    }
    .featured-products-grid .product_content {
        display: none;
    }
    .featured-products-grid .product_image_wrapper {
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 0;
        border-radius: 0;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .featured-products-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-strip__name { font-size: 1.35rem; }
    .stats-container { flex-direction: column; gap: 24px; text-align: center; }
    .hero-title { font-size: 2.4rem; }
    .announcement-bar { display: none; } /* Muy estrecho, se cae todo */
    
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    .fwb-text { display: none; }
    .logo-container .luxury-logo {
        max-height: 65px;
    }
}
