/* Variables CSS - Paleta Oficial de Marca Icona */
:root {
    /* Colores Oficiales según Manual de Marca */
    --icona-black: #000000;          /* Negro principal */
    --icona-wine: #8f4144;           /* Vino/burgundy */
    --icona-white: #FFFFFF;          /* Blanco */
    
    /* Colores complementarios para gradientes y efectos */ 
    --icona-wine-light: #CA8083;
    --icona-wine-medium: #AD5A5E;
    
    /* Grises neutros */
    --icona-gray-dark: #2c2c2c;
    --icona-gray-medium: #666666;
    --icona-gray-light: #f5f5f5;
    
    /* Dorado para acentos */
    --icona-gold: #daa520;
    --icona-gold-star: #ffd700;
    
    /* Tipografías */
    --font-tundra: 'TUNDRA', Georgia, serif;
    --font-clarika: 'Clarika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaciados estándar */
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 25px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    
    /* Bordes redondeados */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 25px;
    --radius-xl: 40px;
    
    /* Sombras */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Transiciones */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Fonts */
@font-face {
    font-family: 'TUNDRA';
    src: url('fonts/TUNDRA.woff2') format('woff2'),
            url('fonts/TUNDRA.woff') format('woff'),
            url('fonts/TUNDRA.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clarika';
    src: url('fonts/Clarika-Regular.woff2') format('woff2'),
            url('fonts/Clarika-Regular.woff') format('woff'),
            url('fonts/Clarika-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clarika';
    src: url('fonts/Clarika-Bold.woff2') format('woff2'),
            url('fonts/Clarika-Bold.woff') format('woff'),
            url('fonts/Clarika-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clarika';
    src: url('fonts/Clarika-Light.woff2') format('woff2'),
            url('fonts/Clarika-Light.woff') format('woff'),
            url('fonts/Clarika-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: var(--font-clarika);
    color: var(--icona-white);
    overflow-x: hidden;
    min-height: 100vh;
}
/* Hero Section */
.novios-hero {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: row;
}

.novios-hero-content {
    flex: 1;
    order: 1;
    padding-right: 20px;
}

.novios-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--icona-wine);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: var(--font-tundra);
}

.novios-hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.novios-cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--icona-wine);
    color: var(--icona-wine);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.novios-cta-button:hover {
    background-color: var(--icona-wine);
    color: white;
}

.novios-hero-image {
    flex: 1;
    position: relative;
    max-width: 610px
}

.novios-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Filter Section */
.novios-filter-section {
    text-align: center;
    margin-bottom: 50px;
}

.novios-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.novios-filter-btn {
    padding: 12px 25px;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.novios-filter-btn:hover,
.novios-filter-btn.active {
    border-color: var(--icona-wine);
    color: var(--icona-wine);
    background: #fff5f5;
}

/* Products Section */
.novios-products-section {
    margin-bottom: 60px;
}

.novios-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.novios-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.novios-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.novios-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.novios-product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.novios-product-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.novios-product-info {
    padding: 25px;
}

.novios-product-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.novios-product-description {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
}

.novios-product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--icona-wine);
    text-align: center;
}

/* Wishlist Button */
.novios-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sale Badge */
.novios-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--icona-wine);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
}

