* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0B0B;
    color: #E0BC80;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BACKGROUND ========== */
.bg-ornament {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #472A0F15 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, #442B0D20 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #E0BC8003 2px, #E0BC8008 4px);
    pointer-events: none;
    z-index: -1;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(10, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #BD8B4930;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E0BC80;
    letter-spacing: 2px;
}

.logo span {
    color: #BD8B49;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #E0BC80;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BD8B49;
    transition: width 0.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #BD8B49;
}

.nav-social {
    display: flex;
    gap: 20px;
}

.nav-social a {
    color: #E0BC80;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover {
    color: #BD8B49;
    transform: translateY(-2px);
}

/* Icono carrito */
.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    color: #E0BC80;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #BD8B49;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #BD8B49;
    color: #0A0B0B;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 80px 24px 120px;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, #472A0F60, transparent);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #BD8B49;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #E0BC80 0%, #BD8B49 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-line {
    width: 80px;
    height: 3px;
    background: #BD8B49;
    margin: 24px 0;
}

.hero-text p {
    color: #BD8B49;
    margin-bottom: 32px;
    font-size: 0.95rem;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #BD8B49;
    color: #0A0B0B;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #E0BC80;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #BD8B4940;
}

.btn-outline {
    background: transparent;
    color: #E0BC80;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #BD8B49;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #BD8B4920;
    border-color: #E0BC80;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: #BD8B49;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #E0BC80;
    filter: blur(50px);
    animation: float 8s ease-in-out infinite reverse;
}

.hero-icon {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #472A0F, #442B0D);
    border-radius: 40% 60% 35% 65% / 50% 45% 55% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    border: 2px solid #BD8B49;
    animation: morph 10s ease-in-out infinite;
}

.hero-icon i {
    font-size: 4rem;
    color: #E0BC80;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 35% 65% / 50% 45% 55% 50%; }
    50% { border-radius: 60% 40% 65% 35% / 45% 50% 50% 55%; }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

/* ========== ATTRIBUTES ========== */
.attributes {
    padding: 80px 0;
    background: #0A0B0B;
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.attr-card {
    background: linear-gradient(135deg, #472A0F, #442B0D);
    padding: 32px 24px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s;
    border: 1px solid #BD8B4930;
    transform: skewY(-2deg);
}

.attr-card:nth-child(even) {
    transform: skewY(2deg);
}

.attr-card:hover {
    transform: skewY(0deg) translateY(-8px);
    border-color: #BD8B49;
}

.attr-icon i {
    font-size: 2.5rem;
    color: #BD8B49;
    margin-bottom: 16px;
}

.attr-card h3 {
    color: #E0BC80;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.attr-card p {
    color: #BD8B49;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #BD8B49;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 16px 0;
    color: #E0BC80;
}

.accent-text {
    color: #BD8B49;
    display: inline-block;
}

.section-decoration {
    width: 60px;
    height: 2px;
    background: #BD8B49;
    margin: 20px auto 0;
    position: relative;
}

.section-decoration:before,
.section-decoration:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #BD8B49;
    border-radius: 50%;
    top: -4px;
}

.section-decoration:before { left: -15px; }
.section-decoration:after { right: -15px; }

.section-header.light h2 { color: #E0BC80; }
.section-decoration.light { background: #E0BC80; }

/* ========== PRODUCTOS ========== */
.featured {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0B0B 0%, #472A0F20 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: linear-gradient(145deg, #472A0F, #442B0D);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    border: 1px solid #BD8B4930;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: #BD8B49;
    box-shadow: 0 30px 40px -20px #BD8B4940;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #BD8B49;
    color: #0A0B0B;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-img-wrapper {
    padding: 30px 20px;
    background: #0A0B0B50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #BD8B4940, #E0BC8020);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    display: block;
}

.product-img::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid rgba(189, 139, 73, 0.3);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(224, 188, 128, 0.2), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px #BD8B49, 0 0 0 8px rgba(189, 139, 73, 0.2);
}

.product-card:hover .product-img::after {
    opacity: 1;
}

.product-card:hover .product-image-real {
    transform: scale(1.05);
}

.product-card:hover .product-img::before {
    border-color: rgba(224, 188, 128, 0.8);
}

.product-details {
    padding: 24px;
    text-align: center;
}

.product-details h3 {
    color: #E0BC80;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-details p {
    color: #BD8B49;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.product-price {
    color: #E0BC80;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BD8B49;
    color: #0A0B0B;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.product-wa-btn:hover {
    background: #E0BC80;
    transform: scale(1.05);
}

.product-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2C5F8A;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    font-family: inherit;
}

.product-buy-btn:hover {
    background: #1A4A6F;
    transform: scale(1.05);
}

/* ========== CATÁLOGO ========== */
.catalogo-header {
    background: linear-gradient(135deg, #0A0B0B 0%, #472A0F 100%);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #BD8B49;
    position: relative;
    overflow: hidden;
}

.catalogo-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, #BD8B4920, transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.catalogo-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #E0BC80;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.catalogo-header p {
    color: #BD8B49;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.catalogo-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #E0BC80;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #BD8B49;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #BD8B49;
    color: #E0BC80;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s;
}

.back-home:hover {
    background: #BD8B49;
    color: #0A0B0B;
}

.catalogo-count {
    text-align: center;
    color: #BD8B49;
    margin-bottom: 30px;
    font-size: 0.9rem;
    padding: 10px;
    border-bottom: 1px solid #BD8B4920;
    display: inline-block;
    width: auto;
    margin: 0 auto 30px;
}

.filtros-catalogo {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filtro-btn {
    background: transparent;
    border: 1px solid #BD8B49;
    color: #E0BC80;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 0.8rem;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: #BD8B49;
    color: #0A0B0B;
}

/* Tarjeta catálogo */
.product-card-detalle {
    background: linear-gradient(145deg, #472A0F, #442B0D);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid #BD8B4930;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-detalle:hover {
    transform: translateY(-8px);
    border-color: #BD8B49;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.4);
}

.product-img-detalle {
    position: relative;
    padding: 30px;
    background: #0A0B0B50;
    text-align: center;
}

.product-img-detalle .product-img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.product-badge-detalle {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #BD8B49;
    color: #0A0B0B;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-info-detalle {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-detalle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E0BC80;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.product-brand {
    font-size: 0.7rem;
    color: #BD8B49;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-notes {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.note-tag {
    display: inline-block;
    background: rgba(189, 139, 73, 0.2);
    color: #BD8B49;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
}

.product-price-detalle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E0BC80;
    margin: 15px 0;
}

.product-buttons-detalle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    align-items: center;
}

.btn-wa-detalle {
    flex: 1;
    min-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #BD8B49;
    color: #0A0B0B;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-wa-detalle:hover {
    background: #E0BC80;
    transform: scale(1.02);
}

.btn-buy-detalle {
    flex: 1;
    min-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2C5F8A;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-buy-detalle:hover {
    background: #1A4A6F;
    transform: scale(1.02);
}

/* Controles cantidad */
.cantidad-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0A0B0B;
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid #BD8B49;
}

.cantidad-btn {
    background: #BD8B49;
    color: #0A0B0B;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cantidad-btn:hover {
    background: #E0BC80;
    transform: scale(1.05);
}

.cantidad-display {
    color: #E0BC80;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.btn-cart {
    flex: 1;
    min-width: 80px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #472A0F;
    color: #E0BC80;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid #BD8B49;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-cart.active {
    display: inline-flex;
}

.btn-cart:hover {
    background: #BD8B49;
    color: #0A0B0B;
    transform: scale(1.02);
}

.cart-limit-notice {
    position: fixed;
    bottom: 100px;
    right: 100px;
    background: #BD8B49;
    color: #0A0B0B;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cart-limit-notice.show {
    display: flex;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(20px); }
    10% { opacity: 1; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(20px); }
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.ver-mas-container {
    text-align: center;
    margin-top: 50px;
}

.btn-ver-mas {
    background: transparent;
    border: 2px solid #BD8B49;
    color: #E0BC80;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.btn-ver-mas:hover {
    background: #BD8B49;
    color: #0A0B0B;
    transform: translateY(-3px);
}

/* ========== FAMILIAS ========== */
.families {
    padding: 80px 0;
    position: relative;
    background: #0A0B0B;
}

.families-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, #472A0F30, transparent);
    pointer-events: none;
}

.families-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.mosaic-item {
    background: linear-gradient(135deg, #472A0F, #442B0D);
    padding: 32px 20px;
    text-align: center;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    transition: all 0.4s;
    border: 1px solid #BD8B4930;
    cursor: pointer;
}

.mosaic-item:nth-child(odd) {
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
}

.mosaic-item:nth-child(3n) {
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
}

.mosaic-item:hover {
    transform: scale(1.05);
    border-color: #BD8B49;
    background: linear-gradient(135deg, #BD8B4930, #472A0F);
}

.mosaic-item i {
    font-size: 2rem;
    color: #E0BC80;
    margin-bottom: 12px;
}

.mosaic-item span {
    color: #E0BC80;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========== QUOTE ========== */
.quote-section {
    position: relative;
    padding: 80px 24px;
    background: #0A0B0B;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: repeating-linear-gradient(45deg, #472A0F20, #472A0F20 2px, transparent 2px, transparent 8px);
    transform: rotate(-5deg);
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.quote-content i {
    font-size: 3rem;
    color: #BD8B49;
    opacity: 0.5;
    margin-bottom: 20px;
}

.quote-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #E0BC80;
    line-height: 1.4;
}

.quote-author {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #BD8B49;
    letter-spacing: 2px;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    padding: 80px 0;
}

.newsletter-wrapper {
    background: linear-gradient(135deg, #472A0F, #442B0D);
    border-radius: 40px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #BD8B4930;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content i {
    font-size: 2rem;
    color: #BD8B49;
    margin-bottom: 16px;
}

.newsletter-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #E0BC80;
    margin-bottom: 12px;
}

.newsletter-content h3 span {
    color: #BD8B49;
}

.newsletter-content p {
    color: #BD8B49;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-content input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid #BD8B49;
    background: #0A0B0B;
    color: #E0BC80;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.newsletter-content input:focus {
    border-color: #E0BC80;
    box-shadow: 0 0 0 2px #BD8B4940;
}

.newsletter-content button {
    background: #BD8B49;
    color: #0A0B0B;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-content button:hover {
    background: #E0BC80;
    transform: scale(1.02);
}

.news-message {
    margin-top: 16px;
    font-size: 0.8rem;
    color: #E0BC80;
}

.newsletter-decoration {
    position: relative;
    width: 120px;
}

.deco-circle {
    width: 100px;
    height: 100px;
    background: #E0BC8020;
    border-radius: 40% 60% 35% 65% / 50% 45% 55% 50%;
    position: absolute;
    top: 20px;
    right: 0;
    animation: morph 8s ease-in-out infinite;
}

.deco-circle-small {
    width: 60px;
    height: 60px;
    background: #BD8B4930;
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
    position: absolute;
    bottom: 0;
    right: 20px;
    animation: morph 6s ease-in-out infinite reverse;
}

/* ========== FOOTER ========== */
footer {
    background: #0A0B0B;
    border-top: 1px solid #BD8B4920;
    padding: 60px 0 24px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #E0BC80;
    margin-bottom: 8px;
}

.footer-brand h3 span {
    color: #BD8B49;
}

.footer-brand p {
    color: #BD8B49;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #E0BC80;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #BD8B49;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: #E0BC80;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #BD8B49;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E0BC80;
}

.footer-contact p {
    color: #BD8B49;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #BD8B4920;
    font-size: 0.7rem;
    color: #BD8B49;
}

/* ========== MODAL CARRITO ========== */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.cart-modal.show {
    display: flex;
}

.cart-modal-content {
    background: linear-gradient(145deg, #472A0F, #442B0D);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid #BD8B49;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #BD8B4930;
}

.cart-modal-header h3 {
    color: #E0BC80;
    font-size: 1.3rem;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: #E0BC80;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-close:hover {
    color: #BD8B49;
}

.cart-modal-body {
    padding: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: #BD8B49;
    padding: 40px;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #BD8B4930;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: #0A0B0B50;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    color: #E0BC80;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #BD8B49;
    font-size: 0.8rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-qty-btn {
    background: #BD8B49;
    color: #0A0B0B;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    background: #E0BC80;
    transform: scale(1.05);
}

.cart-qty {
    color: #E0BC80;
    font-weight: 500;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #c44;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s;
}

.cart-remove-btn:hover {
    color: #ff6666;
}

.cart-item-subtotal {
    color: #E0BC80;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-modal-footer {
    padding: 20px;
    border-top: 1px solid #BD8B4930;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total span:first-child {
    color: #E0BC80;
    font-size: 1.1rem;
}

.cart-total span:last-child {
    color: #BD8B49;
    font-size: 1.3rem;
    font-weight: bold;
}

.cart-checkout-btn {
    width: 100%;
    background: #BD8B49;
    color: #0A0B0B;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-checkout-btn:hover {
    background: #E0BC80;
    transform: scale(1.02);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px #25D36640;
    transition: all 0.3s;
    z-index: 100;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #128C7E;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px #25D36640; }
    50% { box-shadow: 0 4px 30px #25D36680; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .catalogo-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-line {
        margin: 20px auto;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
    .newsletter-wrapper {
        grid-template-columns: 1fr;
    }
    .newsletter-decoration {
        display: none;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .quote-content p {
        font-size: 1.3rem;
    }
    .families-mosaic {
        gap: 16px;
    }
    .mosaic-item {
        padding: 20px 12px;
    }
    .product-img {
        width: 130px;
        height: 130px;
    }
    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .catalogo-header {
        padding: 50px 0 40px;
    }
    .catalogo-header h1 {
        font-size: 2rem;
    }
    .catalogo-header p {
        font-size: 0.85rem;
        padding: 0 16px;
    }
    .catalogo-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .filtros-catalogo {
        gap: 10px;
    }
    .filtro-btn {
        padding: 6px 15px;
        font-size: 0.7rem;
    }
    .product-img-detalle .product-img {
        width: 120px;
        height: 120px;
    }
    .product-title-detalle {
        font-size: 1rem;
    }
    .product-price-detalle {
        font-size: 1.2rem;
    }
    .btn-wa-detalle, .btn-buy-detalle, .btn-cart {
        padding: 8px;
        font-size: 0.7rem;
        min-width: 70px;
    }
    .cantidad-control {
        padding: 3px 8px;
        gap: 6px;
    }
    .cantidad-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .cantidad-display {
        min-width: 25px;
        font-size: 0.8rem;
    }
    footer {
        margin-top: 40px;
        padding: 40px 0 20px;
    }
    .cart-modal-content {
        width: 95%;
    }
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item-subtotal {
        width: 100%;
        text-align: right;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .product-img {
        width: 110px;
        height: 110px;
    }
    .catalogo-header h1 {
        font-size: 1.5rem;
    }
    .back-home {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }
}