/* ============================================
   CROCHET BY MOCLA - ESTILOS COMPLETOS
   Diseño Elegante y Minimalista
   ============================================ */

/* ========== VARIABLES ========== */
:root {
    --color-primary: #1A1A1A;
    --color-secondary: #C9A87C;
    --color-accent: #8B7355;
    --color-white: #FFFFFF;
    --color-cream: #FAF8F5;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #E8E8E8;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-text-lighter: #9E9E9E;
    --color-border: #E0E0E0;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-secondary: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 8rem;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    
    --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    
    --border-radius: 0;
}

/* ========== RESET Y BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.header-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 50%, transparent 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.logo .by {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-text-light);
    margin: 0 0.4rem;
}

.main-nav ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-secondary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 1px;
    background-color: var(--color-primary);
    transition: all var(--transition-fast);
}

/* ========== HERO PREMIUM (INDEX) ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAF8F5;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 168, 124, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.04) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border: 1px solid rgba(201, 168, 124, 0.08);
    border-radius: 50%;
    animation: pulse-circle 10s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.12;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    padding: 3rem 2rem;
}

.hero-ornament {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A87C, transparent);
    margin: 0 auto 2.5rem;
    opacity: 0.5;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #C9A87C;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.25;
    color: #1A1A1A;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: 0.5px;
}

.hero-title em {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 5.2rem;
    color: #8B7355;
    display: block;
    line-height: 1.3;
    margin-top: 0.6rem;
    letter-spacing: 3px;
    opacity: 0.92;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem auto;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A87C, transparent);
}

.divider-dot {
    width: 4px;
    height: 4px;
    background-color: #C9A87C;
    border-radius: 50%;
}

.hero-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6B6B6B;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1.2s both;
    z-index: 2;
}

.scroll-indicator span {
    width: 1px;
    height: 55px;
    background: linear-gradient(to bottom, transparent, #C9A87C);
    animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(-12px);
        opacity: 0;
    }
    50% {
        transform: translateY(12px);
        opacity: 1;
    }
}
/* ========== CARRUSEL PRODUCTOS DESTACADOS - ALTURA UNIFORME ========== */
.featured-products {
    background-color: #FAF8F5;
    padding: 5rem 0;
    position: relative;
}

.featured-products .section-header {
    margin-bottom: 3.5rem;
}

.carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ========== GRID DE 3 COLUMNAS UNIFORME ========== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

/* ========== TARJETAS CON ALTURA FIJA ========== */
.featured-grid .product-item {
    background-color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 500px; /* ALTURA FIJA para todas las tarjetas */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.featured-grid .product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* ========== IMAGEN CON ALTURA FIJA ========== */
.featured-grid .product-image-wrapper {
    width: 100%;
    height: 300px; /* ALTURA FIJA para todas las imágenes */
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
    background-color: #F5F5F5;
    flex-shrink: 0;
    position: relative;
}

.featured-grid .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ========== CONTENIDO CON FLEX PARA DISTRIBUIR ESPACIO ========== */
.featured-grid .product-details {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0; /* Permite que flex funcione correctamente */
}

.featured-grid .product-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C9A87C;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.featured-grid .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    flex-shrink: 0;
    /* Limitar a 2 líneas máximo */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.featured-grid .product-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: #666;
    margin-bottom: auto; /* Empuja el footer hacia abajo */
    line-height: 1.5;
    /* Limitar a 2 líneas máximo */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.55rem;
}

.featured-grid .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.featured-grid .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: 0.5px;
}

.featured-grid .product-arrow {
    font-size: 1.2rem;
    color: #C9A87C;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== HOVER EFFECTS ========== */
.featured-grid .product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.featured-grid .product-item:hover .product-image {
    transform: scale(1.05);
}

.featured-grid .product-item:hover .product-arrow {
    transform: translateX(5px);
}

/* ========== FLECHAS ELEGANTES ========== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background-color: #1A1A1A;
    border-color: #1A1A1A;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn:hover svg {
    color: #FFFFFF;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: #1A1A1A;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ========== INDICADORES MINIMALISTAS ========== */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.indicator:hover {
    background-color: rgba(201, 168, 124, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background-color: #C9A87C;
    width: 24px;
    border-radius: 4px;
}

/* ========== BOTÓN VER TODO ========== */
.view-all-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-cta .btn-primary {
    padding: 0.9rem 2.5rem;
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1400px) {
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    .featured-grid .product-item {
        height: 480px;
    }
    
    .featured-grid .product-image-wrapper {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
    }
}

@media (max-width: 1200px) {
    .featured-grid {
        gap: 1.75rem;
    }
    
    .featured-grid .product-item {
        height: 460px;
    }
    
    .featured-grid .product-image-wrapper {
        height: 260px;
        min-height: 260px;
        max-height: 260px;
    }
}

@media (max-width: 1024px) {
    .featured-products {
        padding: 4rem 0;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-grid .product-item {
        height: 450px;
    }
    
    .carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .featured-products {
        padding: 2.5rem 0;
    }
    
    .featured-products .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-grid .product-image-wrapper {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
    
    .featured-grid .product-item {
        height: 400px;
    }
    
    .featured-grid .product-details {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .featured-grid .product-name {
        font-size: 1.1rem;
    }
    
    .featured-grid .product-desc {
        font-size: 0.8rem;
    }
    
    .featured-grid .product-price {
        font-size: 1.1rem;
    }
    
    .carousel-wrapper {
        padding: 0 35px;
    }
}

@media (max-width: 400px) {
    .featured-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .view-all-cta {
        padding: 0 1rem;
    }
    
    .carousel-wrapper {
        padding: 0 30px;
    }
}

/* ========== BOTONES ========== */
.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--color-primary);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

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

.btn-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding-bottom: 5px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transition: all var(--transition-base);
}

.btn-text:hover {
    color: var(--color-secondary);
}

.btn-text:hover::after {
    background-color: var(--color-secondary);
    width: 50%;
}

/* ========== SECCIONES GENERALES ========== */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent);
}

/* ========== CATEGORÍAS ========== */
.categories {
    background-color: var(--color-white);
    margin-top: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: var(--color-light-gray);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.category-item:hover .category-image img {
    transform: scale(1.08);
}

.category-item:hover .category-overlay {
    opacity: 0.8;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    transform: translateY(0);
    transition: transform var(--transition-base);
}

.category-item:hover .category-content {
    transform: translateY(-10px);
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.category-line {
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--color-secondary);
    margin: 1rem auto;
}

.category-content p {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ========== PRODUCTOS ========== */
.products {
    background-color: var(--color-cream);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-item {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    background-color: transparent;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    cursor: pointer;
}

.filter-item:hover,
.filter-item.active {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-item {
    background-color: var(--color-white);
    transition: all var(--transition-base);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-link {
    display: block;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: var(--color-light-gray);
}

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

.product-item:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-badge.new {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.product-details {
    padding: 2rem;
}

.product-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

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

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

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-primary);
}

.product-arrow {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform var(--transition-base);
}

.product-item:hover .product-arrow {
    transform: translateX(5px);
}

/* ========== SOBRE NOSOTROS ========== */
.about {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 168, 124, 0.2) 0%, transparent 100%);
}

.about-content {
    padding: 2rem 0;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about-content .btn-primary {
    margin-top: 2rem;
}

/* ========== VALORES ========== */
.values {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-cream);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-text-light);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-lighter);
    letter-spacing: 1px;
}

/* ========== WHATSAPP ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .carousel-prev { left: -20px; }
    .carousel-next { right: -20px; }
}

@media (max-width: 1200px) {
    .hero-title { font-size: 4.2rem; }
    .hero-title em { font-size: 4.8rem; }
    .featured-grid { gap: 2.5rem; }
    .featured-grid .product-image-wrapper { 
        max-height: 380px;
        min-height: 350px;
    }
}

@media (max-width: 1023px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-xxl: 6rem;
    }
    
    .container { padding: 0 2.5rem; }
    .header-content { padding: 1.25rem 0; }
    .logo h1 { font-size: 1.9rem; }
    .logo .by { font-size: 1rem; }
    .main-nav ul { gap: 2rem; }
    .nav-link { font-size: 0.9rem; }
    .hero { height: 85vh; }
    .hero-title { font-size: 4rem; }
    .hero-text { font-size: 1.05rem; }
    .section-title { font-size: 3rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .category-content h3 { font-size: 1.5rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .product-name { font-size: 1.3rem; }
    .about-grid { gap: 3rem; }
    .about-image img { height: 500px; }
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
    .value-item { padding: 1.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-main { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 1024px) {
    .hero { height: 85vh; min-height: 650px; }
    .hero-title { font-size: 3.8rem; }
    .hero-title em { font-size: 4.4rem; }
    .hero-text { font-size: 1rem; }
    .featured-products { padding: 6rem 0; }
    .featured-products .section-header { margin-bottom: 4rem; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .featured-grid .product-image-wrapper { 
        max-height: 350px;
        min-height: 320px;
    }
    .carousel-prev { left: -15px; }
    .carousel-next { right: -15px; }
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }
    
    .container { padding: 0 1.5rem; }
    .header { padding: 0; }
    .header-content { padding: 1rem 0; }
    .logo h1 { font-size: 1.5rem; letter-spacing: 1.5px; }
    .logo .by { font-size: 0.95rem; }
    
    /* ========== MENÚ MÓVIL ELEGANTE CON LOGO Y LÍNEAS ========== */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
        z-index: 999;
        padding: 3rem 2rem;
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 40%, rgba(201, 168, 124, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
        z-index: 0;
    }
    
    .main-nav::after {
        content: 'Crochet by Mocla';
        position: absolute;
        top: 4rem;
        left: 0;
        right: 0;
        font-family: 'Dancing Script', cursive;
        font-size: 2rem;
        font-weight: 400;
        color: #8B7355;
        opacity: 0;
        letter-spacing: 2px;
        white-space: nowrap;
        z-index: 3;
        pointer-events: none;
        text-align: center;
    }
    
    .main-nav.active::after {
        opacity: 0.95;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        max-width: 400px;
        padding: 2rem 0;
        position: relative;
        z-index: 2;
    }
    
    .main-nav ul::before {
        content: '';
        position: absolute;
        top: -2.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, #C9A87C, transparent);
        opacity: 0;
        z-index: 1;
    }
    
    .main-nav.active ul::before {
        opacity: 0.5;
    }
    
    .main-nav ul li {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .main-nav ul li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.3), transparent);
        transition: width 0.3s ease;
    }
    
    .main-nav.active ul li::after {
        width: 80%;
    }
    
    .main-nav ul li:last-child::after {
        display: none;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 2px;
        padding: 1.5rem 2rem;
        display: block;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .main-nav.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .main-nav.active ul li:nth-child(1) .nav-link { transition-delay: 0.3s; }
    .main-nav.active ul li:nth-child(2) .nav-link { transition-delay: 0.4s; }
    .main-nav.active ul li:nth-child(3) .nav-link { transition-delay: 0.5s; }
    .main-nav.active ul li:nth-child(4) .nav-link { transition-delay: 0.6s; }
    
    .main-nav.active ul li:nth-child(1)::after { transition-delay: 0.4s; }
    .main-nav.active ul li:nth-child(2)::after { transition-delay: 0.5s; }
    .main-nav.active ul li:nth-child(3)::after { transition-delay: 0.6s; }
    
    .nav-link::after { display: none; }
    
    .nav-link:hover { 
        color: var(--color-secondary);
        transform: translateX(10px);
    }
    
    .nav-link.active {
        color: var(--color-secondary);
        font-weight: 400;
    }
    
    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        background-color: var(--color-secondary);
        border-radius: 50%;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle span {
        position: absolute;
        width: 24px;
        height: 1px;
        background-color: var(--color-primary);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span:first-child { transform: translateY(-6px); }
    .mobile-menu-toggle span:last-child { transform: translateY(6px); }
    
    .mobile-menu-toggle.active span:first-child { 
        transform: rotate(45deg);
        background-color: var(--color-secondary);
    }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:last-child { 
        transform: rotate(-45deg);
        background-color: var(--color-secondary);
    }
    
    /* ========== HERO MOBILE ========== */
    .hero { height: auto; min-height: 650px; padding: 5rem 0; }
    .hero-content { padding: 2rem 1.5rem; }
    .hero-ornament { width: 60px; margin-bottom: 2rem; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 4px; margin-bottom: 1.5rem; }
    .hero-title { font-size: 2.8rem; margin-bottom: 2rem; }
    .hero-title em { font-size: 3.6rem; margin-top: 0.5rem; }
    .hero-title br { display: none; }
    .divider-line { width: 40px; }
    .hero-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 2.5rem; }
    .hero-text br { display: none; }
    .hero-cta { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-cta .btn-primary, .hero-cta .btn-text { width: 100%; text-align: center; padding: 1.1rem 2rem; }
    .scroll-indicator { bottom: 2rem; }
    .scroll-indicator span { height: 45px; }
    
/* ========== CARRUSEL MOBILE - ELEGANTE Y REFINADO ========== */
.featured-products { 
    padding: 3.5rem 0; 
}

.featured-products .section-header { 
    margin-bottom: 2.5rem; 
}

.carousel-wrapper { 
    position: relative;
    margin: 0 auto; 
    padding: 0 55px;
    max-width: 100%;
}

.carousel-container { 
    width: 100%; 
    overflow: hidden;
}

.carousel-track { 
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-slide { 
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.carousel-slide.active { 
    opacity: 1;
    visibility: visible;
}

/* GRID: Solo 1 producto visible en móvil */
.featured-grid { 
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 0 0.5rem;
}

/* Ocultar productos 2 y 3 de cada slide */
.featured-grid .product-item:nth-child(n+2) {
    display: none !important;
}

/* Producto visible - altura optimizada para móvil */
.featured-grid .product-item { 
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.featured-grid .product-link { 
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Imagen con proporción 4:5 elegante para móvil */
.featured-grid .product-image-wrapper { 
    width: 100%;
    aspect-ratio: 4/5;
    max-height: none;
    min-height: auto;
    overflow: hidden;
    background-color: #F5F5F5;
    position: relative;
}

.featured-grid .product-image { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Contenido del producto */
.featured-grid .product-details { 
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}

.featured-grid .product-cat { 
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C9A87C;
    margin-bottom: 0.75rem;
}

.featured-grid .product-name { 
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-grid .product-desc { 
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.featured-grid .product-footer { 
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-grid .product-price { 
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: 0.5px;
    line-height: 1;
}

.featured-grid .product-arrow { 
    font-size: 1.35rem;
    color: #C9A87C;
    transition: transform 0.3s ease;
}

/* Efecto touch elegante */
.featured-grid .product-item:active {
    transform: scale(0.99);
}

.featured-grid .product-item:active .product-image {
    transform: scale(1.02);
}

.featured-grid .product-item:active .product-arrow {
    transform: translateX(5px);
}

/* Botones del carrusel - elegantes y funcionales */
.carousel-btn { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.carousel-btn:active { 
    transform: translateY(-50%) scale(0.92);
    background-color: #1A1A1A;
}

.carousel-btn:active svg { 
    color: #FFFFFF;
}

.carousel-btn svg { 
    width: 20px;
    height: 20px;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }

/* Indicadores minimalistas */
.carousel-indicators { 
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.indicator { 
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.18);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:active { 
    transform: scale(1.25);
}

.indicator.active { 
    background-color: #C9A87C;
    width: 28px;
    border-radius: 3.5px;
}

/* Botón ver todo */
.view-all-cta { 
    margin-top: 3rem;
    padding: 0 1.5rem;
    text-align: center;
}

.view-all-cta .btn-primary { 
    width: 100%;
    max-width: 420px;
    padding: 1.15rem 2.5rem;
}

    
    /* ========== RESTO MOBILE ========== */
    section { padding: var(--spacing-xxl) 0; }
    .section-header { margin-bottom: var(--spacing-lg); }
    .section-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .section-title { font-size: 2.2rem; line-height: 1.2; }
    .categories-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .category-item { aspect-ratio: 4/5; }
    .category-content { padding: 1.5rem; }
    .category-content h3 { font-size: 1.8rem; }
    .category-content p { font-size: 0.9rem; }
    .filter-bar { gap: 0.75rem; margin-bottom: var(--spacing-md); }
    .filter-item { padding: 0.65rem 1.5rem; font-size: 0.7rem; letter-spacing: 1.5px; flex: 0 0 auto; }
    .products-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .product-details { padding: 1.5rem; }
    .product-cat { font-size: 0.7rem; margin-bottom: 0.5rem; }
    .product-name { font-size: 1.4rem; margin-bottom: 0.75rem; }
    .product-desc { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .product-price { font-size: 1.4rem; }
    .product-arrow { font-size: 1.3rem; }
    .about-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); }
    .about-image { order: 2; }
    .about-content { order: 1; padding: 0; }
    .about-image img { height: 400px; }
    .about-content .section-subtitle, .about-content .section-title { text-align: center; }
    .about-text { font-size: 0.95rem; text-align: center; margin-bottom: 1.25rem; }
    .about-content .btn-primary { display: block; text-align: center; margin: 2rem auto 0; width: 100%; max-width: 300px; }
    .values { padding: var(--spacing-lg) 0; }
    .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .value-item { padding: 1.5rem 1rem; }
    .value-number { font-size: 2.5rem; margin-bottom: 1rem; }
    .value-item h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
    .value-item p { font-size: 0.9rem; line-height: 1.7; }
    .footer { padding: var(--spacing-lg) 0 var(--spacing-md); }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: var(--spacing-md); padding-bottom: var(--spacing-md); text-align: center; }
    .footer-logo { font-size: 1.5rem; }
    .footer-tagline { font-size: 0.9rem; }
    .footer-column h4 { font-size: 0.75rem; margin-bottom: 1rem; }
    .footer-column ul li { margin-bottom: 0.65rem; }
    .footer-column ul li a { font-size: 0.9rem; }
    .footer-column ul li a:hover { padding-left: 0; color: var(--color-secondary); }
    .footer-bottom { padding-top: var(--spacing-md); }
    .footer-bottom p { font-size: 0.75rem; }
    .whatsapp-btn { width: 56px; height: 56px; bottom: 1.5rem; right: 1.5rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    .whatsapp-btn svg { width: 26px; height: 26px; }
}

@media (max-width: 576px) {
    :root { --spacing-xxl: 3rem; }
    .container { padding: 0 1.25rem; }
    .logo h1 { font-size: 1.35rem; }
    .logo .by { font-size: 0.85rem; }
    .hero { min-height: 600px; }
    .hero-title { font-size: 2.2rem; }
    .hero-title em { font-size: 3rem; }
    .hero-text { font-size: 0.9rem; margin-bottom: 2rem; }
    .hero-cta .btn-primary { padding: 1rem 1.5rem; font-size: 0.75rem; }
    section { padding: 3rem 0; }
    .section-title { font-size: 1.9rem; }
    .category-item { aspect-ratio: 3/4; }
    .category-content h3 { font-size: 1.5rem; }
    .filter-bar { overflow-x: auto; overflow-y: hidden; flex-wrap: nowrap; gap: 0.5rem; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-item { padding: 0.6rem 1.25rem; white-space: nowrap; }
    .products-grid { gap: 2rem; }
    .product-details { padding: 1.25rem; }
    .product-name { font-size: 1.25rem; }
    .product-desc { font-size: 0.85rem; }
    .about-image img { height: 350px; }
    .about-text { font-size: 0.9rem; }
    .value-number { font-size: 2.2rem; }
    .value-item h3 { font-size: 1.2rem; }
    .value-item p { font-size: 0.85rem; }
    .whatsapp-btn { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
    .whatsapp-btn svg { width: 24px; height: 24px; }
    .carousel-btn { width: 36px; height: 36px; }
    .carousel-btn svg { width: 16px; height: 16px; }
    .carousel-prev { left: 0.5rem; }
    .carousel-next { right: 0.5rem; }
    .indicator { width: 5px; height: 5px; }
    .indicator.active { width: 16px; }
}

@media (max-width: 400px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-title em { font-size: 2.6rem; }
    .section-title { font-size: 1.7rem; }
    .category-content h3 { font-size: 1.3rem; }
    .nav-link { font-size: 1.5rem; }
    .hero-bg::after { width: 700px; height: 700px; }
    .carousel-btn { width: 34px; height: 34px; }
    .carousel-btn svg { width: 14px; height: 14px; }
}

@media (max-width: 896px) and (orientation: landscape) {
    .hero { height: auto; min-height: 550px; padding: 4rem 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-title em { font-size: 3.2rem; }
    .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .hero-bg::after { animation: none; }
    .scroll-indicator span { animation: none; }
}

@media (hover: none) and (pointer: coarse) {
    .carousel-btn:hover { transform: translateY(-50%); }
    .nav-link, .filter-item, .btn-primary, .btn-text, .product-link, .category-item { -webkit-tap-highlight-color: transparent; }
    .nav-link { padding: 1.25rem 2rem; }
    .filter-item { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .btn-primary { min-height: 48px; }
    .product-item:active { transform: scale(0.98); }
    .filter-item:active { transform: scale(0.95); }
    .category-item:active { transform: scale(0.98); }
}

@media (prefers-contrast: high) {
    :root { --color-primary: #000000; --color-text: #000000; --color-border: #000000; }
    .nav-link::after, .filter-item { border-width: 2px; }
}

/* ========== BADGES ELEGANTES PARA PRODUCTOS ========== */
.product-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 1rem;
    background-color: #C9A87C;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.product-badge.new,
.product-badge.badge-new {
    background-color: #C9A87C;
}

/* Badge responsive */
@media (max-width: 768px) {
    .product-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.35rem 0.85rem;
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
}