/* ========================================
   MEJORA DE RESOLUCIÓN DE IMÁGENES
   ======================================== */

/* Optimización general de imágenes de productos y categorías */
.category-image img,
.product-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* Mejorar nitidez en categorías */
.category-card .category-image img {
    filter: contrast(1.05) brightness(1.02);
    transition: transform 0.6s ease, filter 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
    filter: contrast(1.1) brightness(1.05);
}

/* Mejorar nitidez en productos destacados */
.product-image .main-img,
.product-image .hover-img {
    filter: contrast(1.05) saturate(1.05);
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.3s ease;
}

.product-card:hover .main-img {
    transform: scale(1.08);
    filter: contrast(1.1) saturate(1.1);
}

.product-card:hover .hover-img {
    opacity: 1;
    filter: contrast(1.1) saturate(1.1);
}

/* ========================================
   PRODUCTOS DESTACADOS CON VIDEO
   ======================================== */

.productos-banner {
    position: relative;
    height: 400px;
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productos-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.productos-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.productos-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.productos-banner-content .section-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.productos-banner-content .section-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Tarjetas de Productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card:hover .main-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.08);
}

.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Badge */
.product-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-card .badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.product-card .badge.new {
    background: linear-gradient(135deg, #48A111, #3d8a0f);
    color: white;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-quick-info {
    color: white;
    text-align: center;
    max-height: 100%;
    overflow-y: auto;
}

.product-quick-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #48A111;
    margin-bottom: 0.5rem;
}

.product-rating {
    color: #f1c40f;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.product-short-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-quick-view {
    background: linear-gradient(135deg, #48A111, #3d8a0f);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-quick-view:hover {
    background: transparent;
    border-color: #48A111;
    color: #48A111;
}

/* Product Info */
.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #48A111;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.btn-add-cart {
    background: #1a1a1a;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    width: 100%;
}

.btn-add-cart:hover {
    background: #48A111;
    border-color: #48A111;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(72, 161, 17, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .productos-banner {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .productos-banner-content .section-title {
        font-size: 2rem;
    }
    
    .productos-banner-content .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   SECCIONES DE CATEGORÍAS DE PRODUCTOS
   ======================================== */

.productos-categorias {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    padding: 5rem 0;
}

.productos-categorias:nth-child(even) {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.productos-categorias .section-title {
    margin-bottom: 0.5rem;
}

.productos-categorias .section-subtitle {
    margin-bottom: 3rem;
}

/* ========================================
   NUEVO DISEÑO DE CATEGORÍAS
   ======================================== */

.categories {
    background: linear-gradient(135deg, #a8b89a 0%, #9caf8f 100%);
    padding: 4rem 0;
}

.section-title-categorias {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 1rem;
    border-left: 4px solid #48A111;
}

.categorias-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.categoria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.categoria-item:hover {
    transform: translateY(-5px);
}

.categoria-icono {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #48A111 0%, #3d8a0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 161, 17, 0.3);
}

.categoria-item:hover .categoria-icono {
    background: linear-gradient(135deg, #5ab815 0%, #48A111 100%);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(72, 161, 17, 0.4);
}

.categoria-icono svg {
    width: 55px;
    height: 55px;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    transition: all 0.3s ease;
}

.categoria-item:hover .categoria-icono svg {
    transform: scale(1.1);
    stroke-width: 3.5;
}

.categoria-nombre {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.categoria-item:hover .categoria-nombre {
    color: #3d5a3d;
}

/* Responsive para categorías */
@media (max-width: 992px) {
    .categorias-horizontal {
        justify-content: center;
    }
    
    .categoria-item {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .section-title-categorias {
        font-size: 2rem;
        text-align: center;
        border-left: none;
        border-bottom: 4px solid #48A111;
        padding-left: 0;
        padding-bottom: 1rem;
    }
    
    .categorias-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .categoria-item {
        max-width: 200px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .categoria-icono {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }
    
    .categoria-icono svg {
        width: 40px;
        height: 40px;
    }
    
    .categoria-nombre {
        text-align: left;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .categoria-item {
        max-width: 100%;
        width: 100%;
    }
    
    .categoria-icono {
        width: 70px;
        height: 70px;
    }
    
    .categoria-icono svg {
        width: 35px;
        height: 35px;
    }
}

/* ========================================
   GIANELLA GIORDANO - ENHANCEMENTS
   Mejoras de Experiencia y Diseño
   ======================================== */

/* Promo Banner */
.promo-banner {
    background: #F3F4F4;
    color: #1a1a1a;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.promo-banner strong {
    color: #cc5e07;
    font-weight: 700;
}

.promo-banner-content {
    position: relative;
    min-height: 1.5em;
}

.promo-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.promo-message.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

/* Nuevas Variables de Color */
:root {
    --color-rose-gold: #b76e79;
    --color-champagne: #f7e7ce;
    --color-blush: #ffe5e5;
    --color-gold: #d4af37;
    --color-soft-pink: #fdf2f2;
    --color-warm-gray: #f5f3f1;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-rose: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    --gradient-soft: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-elegant: linear-gradient(135deg, #d4a574 0%, #b76e79 50%, #667eea 100%);
    
    --shadow-soft: 0 4px 20px rgba(183, 110, 121, 0.15);
    --shadow-elegant: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Elementos con animación al aparecer */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll.delay-1 { animation-delay: 0.2s; }
.animate-on-scroll.delay-2 { animation-delay: 0.4s; }
.animate-on-scroll.delay-3 { animation-delay: 0.6s; }

/* ========================================
   HEADER MEJORADO
   ======================================== */

.header {
    background: #000000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: white;
}

/* Logo */
.logo img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

/* Navegación con efecto */
.nav-menu a {
    position: relative;
    overflow: hidden;
    color: white;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #b76e79);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
    background-color: #000000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
}

.dropdown-menu li a {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
}

.dropdown-icon {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    background-color: #48A111;
    color: #ffffff;
}

.dropdown-menu li a:hover .dropdown-icon {
    stroke: #ffffff;
}

/* Mobile Navigation - override white color */
@media (max-width: 768px) {
    .nav-menu a {
        color: var(--color-primary) !important;
    }

    .dropdown-menu {
        background-color: var(--color-background-alt) !important;
    }

    .dropdown-menu li a {
        color: var(--color-primary) !important;
    }

    .dropdown-menu li a:hover {
        background-color: rgba(0,0,0,0.05) !important;
        color: var(--color-primary) !important;
    }
    
    .dropdown-menu li a:hover .dropdown-icon {
        stroke: var(--color-primary) !important;
    }
    
    .dropdown-icon {
        stroke: var(--color-primary) !important;
    }
}

/* Iconos de navegación */
.nav-icons .cart-btn,
.nav-icons .search-btn,
.nav-icons .user-btn {
    position: relative;
    transition: transform 0.3s ease;
    color: white;
}

.nav-icons .cart-btn:hover,
.nav-icons .search-btn:hover,
.nav-icons .user-btn:hover {
    transform: scale(1.15) rotate(5deg);
    color: #d4a574;
}

.cart-count {
    background: linear-gradient(135deg, #d4a574, #b76e79);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(183, 110, 121, 0.4);
    animation: pulse 2s ease infinite;
}

/* Mobile Menu */
.mobile-menu-btn span {
    background-color: white;
}

.mobile-menu-btn:hover span {
    background-color: #d4a574;
}

/* ========================================
   HERO SECTION MEJORADO
   ======================================== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(183, 110, 121, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05);
}

.hero-content-overlay {
    background: transparent;
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: none;
    animation: fadeInUp 1s ease;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-img {
    animation: fadeInDown 1s ease;
    filter: brightness(0) invert(1) drop-shadow(0 4px 25px rgba(0, 0, 0, 1));
    max-width: 600px;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease 0.3s backwards;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle span {
    display: block;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s backwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #154140;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.7s backwards;
    text-transform: uppercase;
}

.hero .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 1), 0 0 40px rgba(255, 255, 255, 0.5);
    background: #ffffff;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    border-radius: 20px;
}

/* Dots de navegación */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.hero-dots .dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* ========================================
   TARJETAS DE CATEGORÍAS MEJORADAS
   ======================================== */

.categories {
    background: linear-gradient(135deg, #fff5f5 0%, #f9f3f3 100%);
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b76e79, #667eea);
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(183, 110, 121, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-float);
}

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

.category-card .category-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.category-card .category-image img {
    transition: transform 0.6s ease;
}

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

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 1.5rem 0 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #b76e79;
}

.category-card p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   TARJETAS DE PRODUCTOS PREMIUM
   ======================================== */

.products {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f9 100%);
}

.products-grid {
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(183, 110, 121, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b76e79);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(183, 110, 121, 0.25);
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Badges mejorados */
.product-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-card .badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    animation: pulse 2s ease infinite;
}

.product-card .badge.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

/* Imágenes de productos */
.product-image {
    position: relative;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    overflow: hidden;
}

.product-image .main-img,
.product-image .hover-img {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

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

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

/* Overlay de producto */
.product-overlay {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-quick-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-rating {
    color: #f1c40f;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-short-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    padding-left: 0;
}

.btn-quick-view {
    background: linear-gradient(135deg, #d4a574, #b76e79);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
}

.btn-quick-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

/* Información del producto */
.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: #b76e79;
}

.product-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1rem;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-price .current-price {
    color: #b76e79;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-add-cart {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #b76e79, #d4a574);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

/* ========================================
   SECCIÓN DE VALORES
   ======================================== */

.values {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.values .section-title {
    color: white;
    position: relative;
}

.values-grid {
    position: relative;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   SECCIÓN NOSOTROS
   ======================================== */

.nosotros {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position: relative;
}

.nosotros::before {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.nosotros::after {
    content: '🌿';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 5s ease-in-out infinite 1s;
}

.nosotros-valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.valor-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.valor-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.valor-item h4 {
    color: #b76e79;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.valor-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   SECCIÓN CONTACTO
   ======================================== */

.contacto {
    background: linear-gradient(135deg, #f9f3f3 0%, #fff 100%);
}

.contacto-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contacto-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-float);
}

.contacto-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4a574, #b76e79);
    border-radius: 50%;
    color: white;
}

.contacto-item h4 {
    color: #1a1a1a;
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.contacto-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Redes sociales */
.redes-sociales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.red-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.red-social:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.red-social.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d5bca);
    color: white;
}

.red-social.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.red-social.tiktok:hover {
    background: linear-gradient(135deg, #000, #333);
    color: white;
}

.red-social.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

/* ========================================
   BANNER DE LANZAMIENTO
   ======================================== */

.launch-banner {
    background: linear-gradient(135deg, #d4a574 0%, #b76e79 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.launch-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.banner-tag {
    display: inline-block;
    background: white;
    color: #b76e79;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.banner-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.banner-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-white {
    background: white;
    color: #b76e79;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.banner-image img {
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}

.banner-image:hover img {
    transform: rotate(0deg) scale(1.05);
}

/* ========================================
   FOOTER MEJORADO
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #b76e79, #667eea);
}

/* Footer Top */
.footer-top {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-about {
    padding-right: 1rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Footer Headings */
.footer-col h4 {
    color: #d4a574;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    font-size: 1.3rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, transparent);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
}

.link-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-links li a:hover {
    color: #d4a574;
    transform: translateX(8px);
}

.footer-links li a:hover .link-icon {
    opacity: 1;
    transform: scale(1.2);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

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

.contact-info li strong {
    display: block;
    color: #d4a574;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info li p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d5bca);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #000, #333);
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(183, 110, 121, 0.15));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    margin: 2rem 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.btn-subscribe {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4a574, #b76e79);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4a574;
}

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

/* ========================================
   WHATSAPP FLOAT
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ========================================
   MODAL DE PRODUCTO
   ======================================== */

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574, #b76e79);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.4);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.modal-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-category {
    color: #b76e79;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 1rem 0;
}

.modal-price {
    font-size: 2.5rem;
    color: #b76e79;
    font-weight: 700;
    margin: 1.5rem 0;
}

.modal-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-features {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-modal-cart,
.btn-modal-whatsapp {
    flex: 1;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-modal-cart {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

.btn-modal-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-modal-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-modal-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ========================================
   CARRITO Y CHECKOUT
   ======================================== */

.cart-page,
.checkout-page {
    background: linear-gradient(135deg, #f9f3f3 0%, #ffffff 100%);
    min-height: 80vh;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #d4a574, #b76e79);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item,
.order-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.cart-item:hover,
.order-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-float);
}

.cart-item-image img,
.order-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ========================================
   BARRA DE BÚSQUEDA
   ======================================== */

.search-bar-overlay {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.search-input {
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #b76e79;
    box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.1);
}

.search-btn-submit {
    background: linear-gradient(135deg, #d4a574, #b76e79);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.4);
}

/* ========================================
   RESPONSIVE MEJORADO
   ======================================== */

@media (max-width: 768px) {
    .hero-content-overlay {
        padding: 2rem;
    }

    .hero-title-img {
        max-width: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: var(--spacing-sm);
    }

    .banner-text h2 {
        font-size: 2.5rem;
    }
    
    .banner-image {
        order: -1;
    }
    
    .banner-image img {
        max-width: 100%;
        height: auto;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h4 {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 var(--spacing-sm);
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 50px;
    }

    .btn-subscribe {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   SCROLLBAR PERSONALIZADO
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4a574, #b76e79);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b76e79, #a05a6a);
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(183, 110, 121, 0.2);
    border-top-color: #b76e79;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ========================================
   EFECTO PARALLAX SUAVE
   ======================================== */

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ========================================
   EFECTO GRADIENTE ANIMADO
   ======================================== */

.animated-gradient {
    background: linear-gradient(-45deg, #d4a574, #b76e79, #667eea, #764ba2);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
