/* =============================================================================
   IMPORTS Y FUENTES
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =============================================================================
   VARIABLES GLOBALES Y RESET
   ============================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --bg-color: #fff;
    --main-color: #d1d1d1;
    --text-color: #010101;
    --c2-color: #434343;
    --other-color: #666666;
    --tc-color: #1beff5;
    --accent-green: #fbe5e5;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --footer-text-secondary: #888888;
    --h1-font: 5rem;
    --h2-font: 2.3rem;
    --p-font: 1.3rem;
    --hf-font-size: 15px;
    --hf-font-weight: 400;
}

html { 
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--bg-color);
}

ol, ul {
    padding-left: 0rem !important;
    margin-top: 0;
    margin-bottom: 0rem;
}

dl, ol, ul {
    margin-top: 0;
    padding-left: 0rem !important;
}

/* =============================================================================
   HEADER Y NAVEGACIÓN
   ============================================================================= */

/* Sub-header */
.sub-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 8px 0;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    background-color: black;
    color: white;
    z-index: 999;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Header principal */
header {
    position: fixed;
    width: 100%;
    top: 30px;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 10%);
    display: flex;
    justify-content: space-between;
    padding: 0px 14%;
    transition: top 0.5s ease;
    font-size: var(--hf-font-size);
    font-weight: var(--hf-font-weight);
}

/* Logo */
.logo img {
    width: 180px;
    height: auto;
}

/* Navegación principal */
.navbar-f {
    display: flex;
    align-items: center;
}

.navbar-f a {
    display: flex;
    color: var(--text-color);
    font-size: var(--hf-font-size);
    font-weight: var(--hf-font-weight);
    margin: 20px 22px;
    text-decoration: none;
    width: 100%;
}

.navbar-f li {
    width: 100%;
    white-space: nowrap;
}

.navbar-f a.navbar-a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.navbar-f a.navbar-a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 0;
    height: 3px;
    background-color: #fbe5e5;
    transition: width 0.3s ease-in-out;
}

.navbar-f a.navbar-a:hover::after {
    width: 100%;
}

/* Dropdown de productos */
.productos-item {
    position: relative;
}

.productos-hover {
    padding: 0 14%;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-sizing: border-box;
    z-index: 999;
    box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.productos-item:hover .productos-hover,
.productos-hover:hover {
    display: flex;
}

.productos-hover .column {
    margin: 0px;
}

.column {
    flex: 0.250;
}

.promo-column {
    flex-shrink: 0;
    margin-left: auto;
}

.column li .name-p {
    font-weight: bold;
    position: relative;
    text-decoration: none;
}

.column ul {
    list-style: none;
    margin: 0;
    margin-bottom: 0px;
}

.column ul li a {
    font-size: 0.8rem;
    display: block;
    color: #000000;
    text-decoration: none;
    margin-left: 10px;
    margin-bottom: 0px;
    transition: color 0.3s ease;
}

/* Columna promocional */
.promo-column .promo-link {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    width: 350px;
    height: 250px;
    background-image: url('/imagenes/almohadones.jpg');
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.promo-column .promo-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.promo-column .promo-content p {
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

.promo-column .promo-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.promo-column .promo-btn:hover {
    background: #fff;
    color: #000;
}

/* Iconos del header */
.h-icons {
    display: flex;
    align-items: center;
}

.h-icons i {
    font-size: 25px;
    color: var(--text-color);
    margin-left: 5px;
    margin-right: 20px;
}

.menu-br {
    font-size: 25px;
    color: var(--text-color);
    margin-left: 5px;
    margin-right: 20px;
}

#menu-icon {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

/* =============================================================================
   CONTENIDO PRINCIPAL
   ============================================================================= */
.main-content {
    width: 100%;
    overflow-x: hidden;
    margin-top: 40px;
}

/* =============================================================================
   SECCIÓN HERO
   ============================================================================= */
.hero-section {
    background: linear-gradient(135deg, #f1b0b3 0%, #dc5764 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #fdf3f3, #fbe5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #e9838a, #dc5764);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 87, 100, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 87, 100, 0.4);
}

.btn-primary:focus {
    outline: 2px solid #dc5764;
    outline-offset: 2px;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.image-container video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover video {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.floating-card p {
    color: #666;
    font-size: 14px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fdf3f3, #f7d4d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    opacity: 0.8;
    font-size: 16px;
}

/* =============================================================================
   SECCIÓN COLECCIONES
   ============================================================================= */
.collections-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.collections-section::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(220,87,100,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.collections-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.collections-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.collections-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.view-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f1b0b3, #dc5764);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 87, 100, 0.3);
}

.view-more-btn:hover {
    color: rgb(24, 21, 21) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 87, 100, 0.4);
}

.view-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(3px);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.collection-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px;
    animation: fadeInUp 0.6s ease forwards;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-card:nth-child(1) { animation-delay: 0.1s; }
.collection-card:nth-child(2) { animation-delay: 0.2s; }
.collection-card:nth-child(3) { animation-delay: 0.3s; }

.card-content {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.collection-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.collection-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-video {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .card-video video {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    pointer-events: none;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.modern-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: auto;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--accent-green);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-green) 0%, #f5d5d5 50%, var(--accent-green) 100%);
    opacity: 0.1;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.newsletter-header {
    color: var(--footer-bg);
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
    max-width: 400px;
}

.newsletter-form {
    min-width: 400px;
}

.input-container {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 500px;
}

#email {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    color: var(--footer-bg);
    background: transparent;
    outline: none;
}

#email::placeholder {
    color: #666;
    font-weight: 400;
}

.subscribe-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--footer-bg);
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.privacy-text {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--footer-bg);
    opacity: 0.7;
}

.privacy-link {
    color: var(--footer-bg);
    text-decoration: underline;
    font-weight: 500;
}

/* Main Footer Content */
.footer-content {
    padding: 4rem 0 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 4rem;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--footer-text);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    font-size: 1rem;
    color: var(--footer-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    color: var(--footer-text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: var(--footer-text);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--accent-green);
    color: var(--footer-bg);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.links-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--footer-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.links-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.links-column ul li a {
    color: var(--footer-text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.links-column ul li a:hover {
    color: var(--accent-green);
}

/* Logo Section */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    padding: 1rem;
}

.logo-image {
    width: 280px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.logo-image:hover svg {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
    transform: scale(1.05);
}

.logo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: logoShine 4s infinite;
    pointer-events: none;
}

/* Copyright */
.copyright {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    text-align: center;
    background: var(--footer-bg);
}

.copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--footer-text-secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* =============================================================================
   ANIMACIONES Y KEYFRAMES
   ============================================================================= */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}

/* =============================================================================
   CONFIGURACIONES DE ACCESIBILIDAD
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   MEDIA QUERIES RESPONSIVE
======================================== */

/* ===== PANTALLAS GRANDES - 1328px ===== */
@media screen and (max-width: 1328px) {
    .navbar-f {
        display: none;
    }
    #menu-icon {
        display: flex;
        font-size: 30px;
        cursor: pointer;
    }
    .h-icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-f.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: flex-start;
        transform: translateX(0);
    }
    .productos-hover {
        display: none !important;
    }
    .productos-item:hover .productos-hover {
        display: none !important;
    }
    a {
        color: black;
        text-decoration: none;
    }
    a:hover {
        color: black;
        text-decoration: none;
    }
}

/* ===== TABLETS - 1024px ===== */
@media (max-width: 1024px) {
    
     header {
        padding: 0px 0%; 
        height: 70px;
    
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    .footer-logo {
        text-align: center;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .newsletter-form {
        min-width: auto;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== TABLETS MEDIANAS - 960px ===== */
@media screen and (max-width: 960px) {
    header {
        padding: 0px 0%;
    }
}

/* ===== TABLETS - 780px ===== */
@media (max-width: 780px) {
    .main-content {
        margin-top: 70px;
    }
    .hero-section {
        padding: 60px 0 80px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-container {
        padding: 0 30px;
    }
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    .btn-primary {
        padding: 12px 24px;
        font-size: 15px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 60px;
    }
    .stat-item h3 {
        font-size: 28px;
    }
    .stat-item p {
        font-size: 14px;
    }
    .image-container {
        height: 300px;
    }
    .floating-card {
        bottom: 15px;
        right: 15px;
        padding: 15px;
    }
    .floating-card h3 {
        font-size: 20px;
    }
    .floating-card p {
        font-size: 12px;
    }
}

/* ===== TABLETS - 768px ===== */
@media (max-width: 768px) {
    .collections-section {
        padding: 60px 0;
    }
    .collections-container {
        padding: 0 15px;
    }
    .collections-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .collection-card {
        height: 350px;
    }
    .card-header {
        padding: 20px;
    }
    .collection-name {
        font-size: 1.5rem;
    }
    .view-more-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .newsletter-section {
        padding: 2rem 0;
    }
    .newsletter-title {
        font-size: 2rem;
    }
    .footer-content {
        padding: 3rem 0 2rem;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    .social-icons {
        justify-content: center;
    }
    .input-container {
        flex-direction: column;
            min-width: 300px;
    }
    .subscribe-btn {
        padding: 1.2rem 2rem;
    }
    .logo-image {
        width: 220px;
    }
}

/* ===== MÓVILES GRANDES - 480px ===== */
@media screen and (max-width: 480px) {
    /* Header */
    .navbar-f.active {
        top: 58px;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        z-index: 1100;
    }
    .logo img {
        width: 120px;
        transition: width 0.3s ease-in-out;
    }
    body.scrolled .logo img {
        width: 100px;
    }
    .h-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 10px;
        left: 0;
        padding: 0 10px;
        z-index: 1100;
    }
    .h-icons i {
        margin-top: 10px;
        font-size: 20px;
    }
    #menu-icon {
        margin-right: 5px;
        margin-top: 7px;
        font-size: 24px;
    }
    .navbar-f a.navbar-a {
        font-size: 0.7rem;
    }

    /* Hero Section */
    header {
        height: 60px;
    }
    .main-content {
        margin-top: 60px;
    }
    .hero-section {
        padding: 40px 0 60px;
    }
    .hero-container {
        padding: 0 20px;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    .hero-content {
        margin-bottom: 0px;
    }
    .hero-stats {
        gap: 25px;
        margin-top: 40px;
        text-align: center;
    }
    .stat-item h3 {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .stat-item p {
        font-size: 15px;
    }
    .image-container {
        border-radius: 15px;
    }
    .floating-card {
        bottom: 10px;
        right: 10px;
        padding: 12px;
    }
    .floating-card h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }
    .floating-card p {
        font-size: 11px;
    }
    .hero-badge {
        padding: 6px 16px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    /* Collections */
    .collections-section {
        padding: 40px 0;
    }
    .collection-card {
        height: 300px;
    }
    .card-header {
        padding: 15px;
    }
    .collection-name {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    .collection-subtitle {
        font-size: 0.8rem;
    }
    .collections-title {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer */
    .newsletter-container,
    .footer-grid {
        padding: 0px 2rem;
    }
    .newsletter-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .input-container {
        flex-direction: column;
        width: 100%;
    }
    #email {
        font-size: 0.6rem;
    }
    .subscribe-btn {
        font-size: 0.6rem;
    }
    .brand-title {
        font-size: 1.5rem;
    }
    .footer-grid {
        gap: 2rem;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-links {
        text-align: left;
    }
}

/* ===== MÓVILES PEQUEÑOS - 360px ===== */
@media (max-width: 360px) {
    /* Header */
    header {
        height: 60px;
    }
    .main-content {
        margin-top: 75px;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 0 50px;
    }
    .hero-content {
        margin-bottom: 0px;
    }
    .hero-container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        margin-bottom: 12px;
        line-height: 1.1;
    }
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    .hero-buttons {
        gap: 10px;
    }
    .btn-primary {
        width: 100%;
        max-width: 250px;
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 40px;
    }
    .hero-stats {
        gap: 20px;
        margin-top: 35px;
    }
    .stat-item h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .stat-item p {
        font-size: 13px;
    }
    .image-container {
        border-radius: 12px;
    }
    .floating-card {
        display: none;
    }
    .hero-badge {
        padding: 5px 14px;
        font-size: 11px;
        margin-bottom: 12px;
    }
}

/* ===== ACCESIBILIDAD - REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




















.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección principal de pestañas */
.product-tabs-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-green) 0%, #f5d5d5 50%, var(--accent-green) 100%);
    min-height: 100vh;
}

/* Navegación de pestañas */
.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-button:hover {
    background: #000000;
    border-color: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tab-button.active {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.tab-button i {
    font-size: 18px;
}

/* Contenido de pestañas */
.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid de productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   
    padding: 20px 0;
    justify-items: center;
}

/* Cards de productos */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.6);
    width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

/* Imagen del producto */
.product-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: #f8f9fa;
    border-radius: 14px;
    margin: 14px 14px 0 14px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 14px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Badges de productos */
.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.product-badge.new {
    background: rgba(239, 154, 154, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-badge.bestseller {
    background: rgba(255, 183, 77, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Información del producto */
.product-info {
    padding: 18px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
    /*min-height: 44px; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Precios */
.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #e53e3e;
}

.old-price {
    font-size: 16px;
    color: #a0aec0;
    font-weight: 400;
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #fbbf24;
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Características del producto */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.feature-tag {
    padding: 4px 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

/* Botón agregar al carrito */
.add-to-cart {
    width: 100%;
    padding: 12px 18px;
    background: #ef9a9a;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.add-to-cart:hover {
    background: #e57373;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 154, 154, 0.4);
}

.add-to-cart i {
    font-size: 16px;
}
@media (max-width: 1030px) {
 .products-grid {
        gap: 20px;
        margin-bottom: 20px;
        justify-items: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .product-tabs-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .tabs-navigation {
        gap: 15px;
        margin-bottom: 30px;
    }

    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .products-grid {
        gap: 20px;
        justify-items: center;
    }

    .product-card {
        width: 340px;
        height: 400px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 18px 20px 20px 20px;
    }

    .product-name {
        font-size: 16px;
        min-height: 40px;
    }

    .product-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tabs-navigation {
        flex-direction: column;
        align-items: center;
    }
    .fa-fire {
        margin-bottom: 2px;
    }
    .tab-button {
        width: 300px;
        justify-content: center;
    }

    .products-grid {
        gap: 12px;
    }

    .product-card {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        height: 190px;
        border-radius: 16px;
    }

    .product-image {
        width: 140px;
        min-width: 140px;
        height: 100%;
        margin: 0;
        border-radius: 16px 0 0 16px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px 0 0 16px;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 12px;
    }

    .product-info {
        flex: 1;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-category {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .product-name {
        font-size: 10px;
        margin-bottom: 6px;
        min-height: auto;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }

    .product-price {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .old-price {
        font-size: 12px;
    }

    .product-rating {
        margin-bottom: 8px;
        gap: 4px;
    }

    .stars i {
        font-size: 12px;
    }

    .rating-text {
        font-size: 11px;
    }

    .product-features {
        margin-bottom: 8px;
        gap: 4px;
    }

    .feature-tag {
        padding: 2px 6px;
        font-size: 9px;
        border-radius: 10px;
    }

    .add-to-cart {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 12px;
        gap: 4px;
    }

    .add-to-cart i {
        font-size: 12px;
    }

    /* Ocultar algunas características en móvil para ahorrar espacio */
    .product-features .feature-tag:nth-child(n+3) {
        display: none;
    }
}

/* Animaciones adicionales */
.product-card {
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay en animaciones para efecto cascada */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* Efectos de hover adicionales */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(143, 188, 143, 0.05), rgba(245, 213, 213, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}
