/* --- Variables de Color y Tipografía --- */
:root {
    --color-bg: #ffffff;          /* Blanco limpio */
    --color-primary: #333333;      /* Gris oscuro principal */
    --color-secondary: #f5f5f5;     /* Gris muy claro */
    --color-accent: #d4a574;       /* Beige dorado / acento */
    --color-accent-light: #e8d4b8; /* Beige claro */
    --color-accent-dark: #b8956a;  /* Beige oscuro */
    --color-text: #333333;         /* Gris oscuro para texto */
    --color-text-light: #666666;   /* Gris medio */
    --color-white: #ffffff;
    --color-border: #e0e0e0;      /* Borde suave */
    
    /* Colores de estado */
    --color-success: #4caf50;     /* Verde éxito */
    --color-success-light: #81c784;
    --color-warning: #ff9800;      /* Naranja advertencia */
    --color-warning-light: #ffb74d;
    --color-error: #f44336;        /* Rojo error */
    --color-error-light: #e57373;
    --color-info: #2196f3;         /* Azul información */
    --color-info-light: #64b5f6;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-accent: 0 4px 12px rgba(212, 165, 116, 0.3);
    
    --font-heading: 'Montserrat', sans-serif;    /* Moderna y comercial */
    --font-body: 'Montserrat', sans-serif;        /* Consistente */
}

/* --- Reset Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul { list-style: none; }

/* --- Navegación --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logo:hover {
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 220px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--color-text);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

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

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

.nav-links a.active {
    color: var(--color-accent);
    font-weight: 600;
}

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

/* Menú móvil */
.menu-toggle { 
    display: none; 
    cursor: pointer; 
    background: none;
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.menu-toggle:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.bar { 
    display: block; 
    width: 25px; 
    height: 3px; 
    margin: 5px auto; 
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Hero Section --- */
.hero-carousel {
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    animation: fadeInSlide 1s ease-in-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-slide.active .hero-content {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--color-white);
}

/* Controles del carrusel */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-carousel-btn svg {
    width: 24px;
    height: 24px;
}

.hero-carousel-prev {
    left: 2rem;
}

.hero-carousel-next {
    right: 2rem;
}

/* Indicadores del carrusel */
.hero-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-indicator.active {
    background-color: var(--color-white);
    width: 32px;
    border-radius: 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-scroll-indicator:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-arrow {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* --- Banner de Información --- */
.info-banner {
    background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(212, 165, 116, 0.1) 100%);
    padding: 3rem 5%;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 165, 116, 0.03) 10px,
        rgba(212, 165, 116, 0.03) 20px
    );
    pointer-events: none;
}

.info-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.2);
    background-color: var(--color-white);
}

.info-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    transition: all 0.3s ease;
    padding: 0.5rem;
    background-color: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--color-primary);
    background-color: rgba(212, 165, 116, 0.2);
}

.info-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    transition: color 0.3s ease;
}

.info-item:hover .info-text {
    color: var(--color-accent);
}

.info-divider {
    width: 1px;
    height: 50px;
    background-color: var(--color-border);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .info-banner {
        padding: 1.5rem 3%;
    }
    
    .info-banner-container {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: space-around;
    }

    .info-divider {
        display: none;
    }

    .info-item {
        min-width: auto;
        padding: 0.8rem 0.5rem;
        flex: 1;
        gap: 0.5rem;
    }
    
    .info-icon {
        width: 32px;
        height: 32px;
        padding: 0.3rem;
    }
    
    .info-text {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-badges {
        justify-content: center;
    }
}

/* Botones */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.1rem 2.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.2);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(51, 51, 51, 0.15);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(212, 165, 116, 0.2);
}

/* --- Productos --- */
.products-section {
    padding: 6rem 5%;
    background-color: var(--color-bg);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.category-sidebar {
    width: 280px;
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-nav {
    width: 100%;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.25rem;
}

.category-link {
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.category-link:hover {
    background-color: var(--color-secondary);
}

.category-link.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
}

.category-link.active .category-count {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.category-name {
    flex: 1;
}

.category-count {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

.products-content {
    flex: 1;
    min-width: 0;
}

.products-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-subtitle {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 2rem;
    margin: 0;
    justify-content: start;
}

.product-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--color-border);
    width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.25);
    border-color: var(--color-accent);
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 280px;
    height: 320px;
    background-color: var(--color-secondary);
}

.product-card img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.product-badge.new {
    background-color: #4caf50;
}

.product-badge.bestseller {
    background-color: #ff9800;
}

.product-badge.discount {
    background-color: #e74c3c;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-card img[src=""],
.product-card img:not([src]) {
    background-color: var(--color-secondary);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300"><rect fill="%23f5f5f5" width="400" height="300"/><text x="50%25" y="50%25" text-anchor="middle" dy=".3em" fill="%23666" font-family="Arial" font-size="16">Imagen no disponible</text></svg>');
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 1.8rem;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

.product-info .desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.product-info .material {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
    display: block;
    font-style: italic;
}

.product-info .price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
    position: relative;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.price-discounted {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
}

.discount-badge {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.product-info .price-container .price {
    margin-bottom: 0;
}

.product-stock {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stock-available {
    color: #4caf50;
    font-weight: 500;
}

.stock-unavailable {
    color: #f44336;
    font-weight: 500;
}

.product-aroma {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-aroma label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.aroma-select {
    padding: 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
}

.aroma-select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.product-quantity {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-quantity label {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.quantity-select {
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    min-width: 60px;
}

.quantity-select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.btn-secondary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* --- Sobre Nosotros --- */
.about-section {
    background-color: var(--color-secondary);
    padding: 6rem 5%;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    object-fit: cover;
}

.about-image img[src=""],
.about-image img:not([src]) {
    background-color: var(--color-secondary);
    min-height: 400px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-text p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.values-list {
    margin-top: 2rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-text);
    padding: 0.8rem;
    background-color: rgba(212, 165, 116, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background-color: rgba(212, 165, 116, 0.1);
    transform: translateX(5px);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-text {
    flex: 1;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* --- Contacto --- */
.contact-section {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--color-white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-section > p {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    background-color: var(--color-white);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: var(--color-success);
}

.form-input:invalid:not(:placeholder-shown),
.form-input.error {
    border-color: var(--color-error);
}

.form-input.valid:not(:placeholder-shown) {
    border-color: var(--color-success);
}

.form-group::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2.8rem;
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.form-group:has(.form-input:focus)::before {
    opacity: 0.6;
}

.form-error {
    display: block;
    color: var(--color-error);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-error.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    display: block !important;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

.social-links {
    margin-top: 3rem;
    text-align: center;
}

.social-links p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-secondary);
    border-radius: 8px;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a2a2a 100%);
    color: var(--color-white);
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -1.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
}

.newsletter-form .btn-secondary:hover {
    background-color: var(--color-accent-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Estilos del Carrito Flotante --- */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.cart-icon:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.cart-icon:hover {
    background-color: var(--color-accent);
    transform: scale(1.05);
}

.cart-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

#cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cart-count:not(:empty) {
    animation: cart-bounce 0.5s ease;
}

@keyframes cart-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* --- Modal del Carrito --- */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%; /* Oculto por defecto */
    width: 380px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    z-index: 1002;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cart-header h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-cart { 
    font-size: 2rem; 
    cursor: pointer; 
    color: var(--color-text-light);
    transition: color 0.2s ease;
    line-height: 1;
}

.close-cart:hover {
    color: var(--color-primary);
}

.cart-items { flex: 1; overflow-y: auto; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-item-name {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-aroma {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-style: italic;
}

.cart-item-quantity {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.cart-item-price {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.cart-item-total {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-total-price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.cart-item-remove {
    color: #f44336;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
    transition: transform 0.2s ease;
    user-select: none;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-footer {
    border-top: 2px solid var(--color-border);
    padding-top: 1.5rem;
    text-align: center;
    margin-top: auto;
}

.cart-footer p { 
    font-size: 1.3rem; 
    font-weight: 700; 
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

.empty-msg {
    text-align: center;
    color: var(--color-text-light);
    padding: 2rem 0;
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .logo {
        height: 60px;
        padding: 0.4rem 0.8rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 180px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        background-color: var(--color-white);
        position: fixed;
        top: 70px;
        left: 0;
        height: calc(100vh - 70px);
        padding: 2rem 0;
        text-align: center;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel-prev {
        left: 1rem;
    }
    
    .hero-carousel-next {
        right: 1rem;
    }
    
    .hero-indicators {
        bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .products-section,
    .about-section,
    .contact-section {
        padding: 4rem 5%;
    }

    .cart-modal {
        width: 100%;
    }
    
    .products-container {
        flex-direction: column;
    }
    
    .category-sidebar {
        width: 100%;
        min-width: auto;
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 2rem;
    }
    
    .products-content {
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 280px));
        justify-content: center;
        gap: 1.5rem;
    }
    
    .product-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .product-card img {
        width: 100%;
        max-width: 280px;
    }
}

/* Skeleton Screens */
.skeleton-card {
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-image {
    width: 280px;
    height: 320px;
    background: linear-gradient(90deg, var(--color-secondary) 25%, rgba(255,255,255,0.5) 50%, var(--color-secondary) 75%);
    background-size: 200% 100%;
    border-radius: 12px 12px 0 0;
}

.skeleton-content {
    padding: 1.8rem;
}

.skeleton-line {
    height: 1rem;
    background: linear-gradient(90deg, var(--color-secondary) 25%, rgba(255,255,255,0.5) 50%, var(--color-secondary) 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-title {
    width: 70%;
    height: 1.3rem;
}

.skeleton-text {
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-price {
    width: 40%;
    height: 1.6rem;
    margin-top: 1rem;
}

.skeleton-button {
    width: 100%;
    height: 2.5rem;
    background: linear-gradient(90deg, var(--color-secondary) 25%, rgba(255,255,255,0.5) 50%, var(--color-secondary) 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    margin-top: 1rem;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

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

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 300px;
    border-left: 4px solid var(--color-accent);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toast-notification::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-success {
    border-left-color: var(--color-success);
}

.toast-success::before {
    background-color: var(--color-success);
}

.toast-error {
    border-left-color: var(--color-error);
}

.toast-error::before {
    background-color: var(--color-error);
}

@media (max-width: 768px) {
    .toast-notification {
        right: 15px;
        left: 15px;
        max-width: none;
        bottom: 80px;
    }
}

/* ============================================
   SECCIÓN INSTAGRAM / COMUNIDAD
   ============================================ */
.instagram-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5E6E0 50%, #E8D5E2 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.instagram-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.instagram-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.instagram-cta {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
}

.instagram-feed-container {
    margin: 1.5rem 0 2rem;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Placeholder mientras carga Elfsight */
.instagram-feed-container .elfsight-app-lazy {
    width: 100%;
    max-width: 800px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.btn-instagram svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   SECCIÓN TESTIMONIOS
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #FAF8F5 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

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

.author-name {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.author-handle {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* ============================================
   BOTÓN FLOTANTE DE CONTACTO
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.floating-contact-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.floating-contact-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
}

.floating-contact-toggle .icon-close {
    display: none;
}

.floating-contact.active .floating-contact-toggle .icon-chat {
    display: none;
}

.floating-contact.active .floating-contact-toggle .icon-close {
    display: block;
}

.floating-contact.active .floating-contact-toggle {
    background: var(--color-text-light);
}

.floating-contact-options {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-contact.active .floating-contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-option:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-option.whatsapp {
    color: #25D366;
}

.floating-option.whatsapp:hover {
    background: #25D366;
    color: white;
}

.floating-option.instagram {
    color: #E1306C;
}

.floating-option.instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    color: white;
}

.floating-option svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE - INSTAGRAM Y TESTIMONIOS
   ============================================ */
@media (max-width: 768px) {
    .instagram-section {
        padding: 2rem 0;
    }
    
    .instagram-header h2 {
        font-size: 1.5rem;
    }
    
    .instagram-cta {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .instagram-feed-container {
        min-height: 150px;
        margin: 1rem 0 1.5rem;
    }
    
    .testimonials-section {
        padding: 2.5rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .floating-contact {
        bottom: 16px;
        left: 16px;
    }
    
    .floating-contact-toggle {
        width: 48px;
        height: 48px;
    }
    
    .floating-option span {
        display: none;
    }
    
    .floating-option {
        padding: 0.6rem;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .instagram-header h2 {
        font-size: 1.3rem;
    }
    
    .testimonials-section h2 {
        font-size: 1.3rem;
    }
    
    .btn-instagram {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}