/* ==========================================================================
   ANYELIS CALZADOS & MODA - ESTILOS FEMENINOS Y MODERNOS
   ========================================================================== */

:root {
    /* Paleta Femenina Light & Glamour */
    --color-bg: #fffafc;
    --color-surface: #ffffff;
    --color-surface-trans: rgba(255, 255, 255, 0.85);
    --color-primary: #ec4899;        /* Rosa vibrante */
    --color-primary-dark: #be185d;   /* Frambuesa profundo */
    --color-primary-light: #fce7f3;  /* Rosa pastel suave */
    --color-accent-gold: #d4af37;    /* Dorado Champagne */
    --color-accent-gold-light: #fef3c7;
    --color-accent-rose: #fda4af;    /* Rosa suave */
    --color-text-main: #374151;      /* Gris grafito suave */
    --color-text-muted: #83272d;     /* Borgoña sutil */
    --color-text-light: #6b7280;     /* Gris lectura */
    --color-border: rgba(244, 114, 182, 0.2);
    --color-border-subtle: #f3e8ee;
    
    /* Sombras Elegantes & Glows */
    --shadow-sm: 0 4px 12px rgba(236, 72, 153, 0.05);
    --shadow-md: 0 8px 24px rgba(236, 72, 153, 0.08);
    --shadow-lg: 0 16px 36px rgba(236, 72, 153, 0.12);
    --shadow-glow: 0 0 25px rgba(236, 72, 153, 0.25);
    --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.2);

    /* Bordes y Transiciones */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--text-main, #374151);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Fondo decorativo con ondas y destellos suaves */
body::before {
    content: '';
    position: fixed;
    top: -10vw;
    right: -10vw;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(253, 164, 175, 0.25) 0%, rgba(254, 242, 242, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10vw;
    left: -10vw;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(254, 240, 138, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #4a044e;
    letter-spacing: -0.01em;
}

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

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

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

/* ==========================================================================
   HEADER & NAVEGACIÓN
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-surface-trans);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.top-bar {
    background: linear-gradient(90deg, #ec4899, #f43f5e, #d4af37);
    color: #ffffff;
    font-size: 12.5px;
    text-align: center;
    padding: 6px 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #be185d 0%, #ec4899 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.logo-badge {
    font-size: 11px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: #4b5563;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-whatsapp-header:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-primary-dark);
    cursor: pointer;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 70px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 232, 242, 0.85);
    border: 1px solid var(--color-border);
    color: var(--color-primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 50px;
    line-height: 1.15;
    color: #4a044e;
    margin-bottom: 18px;
}

.hero-title span {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.45);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-surface);
    color: var(--color-primary-dark);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(219, 39, 119, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.9);
    background: #ffe4e6;
}

.hero-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.floating-badge {
    position: absolute;
    bottom: 25px;
    left: -20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(244, 114, 182, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

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

.floating-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf2f8, #fbcfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
}

.floating-badge-text h4 {
    font-size: 14px;
    color: #831843;
}

.floating-badge-text p {
    font-size: 12px;
    color: #6b7280;
}

/* ==========================================================================
   CARACTERÍSTICAS / BENEFICIOS FEMENINOS
   ========================================================================== */
.features-strip {
    padding: 30px 0;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-subtle);
    padding: 22px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf2f8, #ffe4e6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 15px;
    color: #4a044e;
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 12.5px;
    color: #6b7280;
}

/* ==========================================================================
   TÍTULOS DE SECCIÓN
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.section-title {
    font-size: 34px;
    color: #4a044e;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.sparkle-icon {
    color: var(--color-accent-gold);
    display: inline-block;
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   GRID DE PRODUCTOS Y TARJETAS
   ========================================================================== */
/* ==========================================================================
   GRID DE PRODUCTOS Y TARJETAS REDISEÑADAS
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 72, 153, 0.35);
}

.product-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 105%; /* Proporción limpia para calzados */
    background: linear-gradient(135deg, #fff5f7, #fdf2f8);
    overflow: hidden;
}

.product-thumb-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-thumb-wrapper img {
    transform: scale(1.06);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.badge-featured {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-content {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-colors-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.color-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    cursor: default;
    transition: transform 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: #1f2937;
}

.product-title a:hover {
    color: var(--color-primary);
}

.product-pricing {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f9e8f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-main-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.price-main-value {
    font-size: 24px;
    font-weight: 800;
    color: #be185d;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.price-main-bs {
    font-size: 12.5px;
    color: #6b7280;
    font-weight: 500;
}

.cuotas-box-card {
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.cuotas-box-card .cuota-usd {
    color: #831843;
    font-weight: 700;
}

.cuotas-box-card .cuota-bs {
    color: #db2777;
    font-weight: 500;
    font-size: 11.5px;
}

.product-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-view {
    flex: 1;
    text-align: center;
    background: #ffffff;
    color: #be185d;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid #fbcfe8;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(236, 72, 153, 0.06);
}

.btn-view:hover {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.25);
    transform: translateY(-2px);
}

.btn-wp-quick {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.btn-wp-quick:hover {
    background: #20ba59;
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   BARRA DE FILTROS DEL CATÁLOGO
   ========================================================================== */
.catalog-filter-bar {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.filter-form {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr auto;
    gap: 16px;
    align-items: center;
}

.search-input-group {
    position: relative;
}

.search-input-group input {
    width: 100%;
    padding: 12px 18px 12px 42px;
    border-radius: var(--radius-full);
    border: 1px solid #e5e7eb;
    background: #fafafa;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.select-filter {
    padding: 12px 18px;
    border-radius: var(--radius-full);
    border: 1px solid #e5e7eb;
    background: #fafafa;
    font-family: inherit;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: var(--transition);
}

.select-filter:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-filter-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter-submit:hover {
    background: var(--color-primary-dark);
}

.btn-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: #6b7280;
    background: #f3f4f6;
}

.btn-filter-reset:hover {
    background: #e5e7eb;
    color: #111827;
}

.chips-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f3e8ee;
}

.color-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: #831843;
    cursor: pointer;
    transition: var(--transition);
}

.color-chip-btn:hover, .color-chip-btn.active {
    background: #f472b6;
    color: #ffffff;
    border-color: #f472b6;
}

/* ==========================================================================
   FICHA DE PRODUCTO DETALLADA
   ========================================================================== */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff1f2;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border-subtle);
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
    background: #fdf2f8;
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.2);
}

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

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-brand {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.detail-title {
    font-size: 32px;
    line-height: 1.2;
    color: #4a044e;
    margin-bottom: 16px;
}

.detail-price-box {
    background: linear-gradient(135deg, #fff5f7, #fdf2f8);
    border: 1px solid #fbcfe8;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.price-row-detal {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.price-row-detal .amount {
    font-size: 34px;
    font-weight: 800;
    color: #be185d;
    font-family: 'Playfair Display', serif;
}

.price-row-detal .tag {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.cuotas-box-highlight {
    background: #ffffff;
    border: 1px solid #f472b6;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.1);
}

.cuotas-box-highlight .cuotas-text {
    font-size: 14px;
    color: #831843;
    font-weight: 600;
}

.cuotas-box-highlight .cuotas-val {
    font-size: 18px;
    color: #ec4899;
    font-weight: 700;
}

.color-selection-section {
    margin-bottom: 24px;
}

.color-selection-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.colors-radio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: var(--transition);
}

.color-option-btn:hover {
    border-color: var(--color-primary);
}

.color-option-btn.selected {
    border-color: var(--color-primary);
    background: #fdf2f8;
    color: var(--color-primary-dark);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.15);
}

.detail-cta-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-order-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-order-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.detail-description {
    border-top: 1px solid #f3e8ee;
    padding-top: 20px;
    margin-top: auto;
}

.detail-description h4 {
    font-size: 16px;
    color: #4a044e;
    margin-bottom: 10px;
}

.detail-description p {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
    white-space: pre-line;
}

/* ==========================================================================
   PAGINACIÓN ELEGANTE
   ========================================================================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border-subtle);
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.page-btn:hover, .page-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* ==========================================================================
   FOOTER FEMENINO
   ========================================================================== */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    padding: 60px 0 25px;
    margin-top: 80px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 26px;
    color: #831843;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: #6b7280;
    max-width: 320px;
    margin-bottom: 20px;
}

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

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fdf2f8;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 16px;
    color: #4a044e;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 13.5px;
    color: #6b7280;
}

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

.footer-bottom {
    border-top: 1px solid #f3e8ee;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #9ca3af;
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-float-wp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: wp-pulse 2.5s infinite;
}

.btn-float-wp:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes wp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-tooltip {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 600;
    color: #065f46;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

/* ==========================================================================
   LIGHTBOX / MODAL DE IMÁGENES
   ========================================================================== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.open {
    display: flex;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.image-modal-content img {
    max-height: 85vh;
    width: auto;
    object-fit: contain;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE DESIGN ULTRA FLUIDO & MÓVIL
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .hero-grid {
        gap: 30px;
    }
    .product-detail-layout {
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-desc {
        margin: 0 auto 28px;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-image-wrapper img {
        height: 380px;
    }
    .floating-badge {
        left: 20px;
        bottom: 15px;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Barra Superior */
    .top-bar {
        font-size: 11px;
        padding: 8px 12px;
        line-height: 1.4;
    }

    /* Menú Móvil */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 24px;
        flex-direction: column;
        gap: 14px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--color-border);
        z-index: 100;
    }
    .nav-menu.open {
        display: flex;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-link {
        font-size: 15px;
        padding: 6px 0;
    }

    /* Hero */
    .hero-section {
        padding: 40px 0 50px;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-image-wrapper img {
        height: 300px;
    }

    /* Filtros del Catálogo */
    .catalog-filter-bar {
        padding: 16px;
        border-radius: 16px;
        margin-bottom: 25px;
    }
    .filter-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .chips-colors {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .chips-colors::-webkit-scrollbar {
        display: none;
    }
    .color-chip-btn {
        flex-shrink: 0;
    }

    /* Grid de Productos */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    /* Footer */
    .site-footer {
        padding: 45px 0 20px;
        margin-top: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* WhatsApp Flotante */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    .btn-float-wp {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    .float-tooltip {
        display: none;
    }
}

@media (max-width: 540px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-thumb-wrapper {
        padding-top: 95%;
    }
    .product-content {
        padding: 18px 16px;
    }
    .section-title {
        font-size: 26px;
    }
    .btn-order-whatsapp {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
    }
}
