/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Banner Promocional */
.promo-banner {
    background-color: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.promo-banner p {
    display: inline-block;
    margin: 0;
    animation: scroll-text 20s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Sección Nosotros */
.about-section {
    background-color: #fff;
    padding: 50px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #000;
}

.about-logo {
    text-align: center;
    margin-bottom: 15px;
}

.about-logo-image {
    height: 260px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .about-logo-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .about-logo-image {
        height: 120px;
    }
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-right {
    display: flex;
    gap: 20px;
}

.nav-icon {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: #666;
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin-top: 0;
}

.collections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.collection-item {
    position: relative;
    overflow: hidden;
}

.collection-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-image img {
    transform: none;
    filter: none;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    gap: 15px;
}

.collection-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.view-more-btn {
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.6);
}



/* WhatsApp Flotante */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #128C7E;
}

.whatsapp-icon i {
    font-size: 28px;
    color: #fff;
}

/* Enlace de dirección */
.address-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Nueva Sección */
.new-section {
    padding: 80px 0;
    background: #000;
}

.new-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.new-section-text {
    padding-right: 20px;
}

.new-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.new-section-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: #d4af37;
}

.feature-item i {
    font-size: 2rem;
    color: #d4af37;
    min-width: 50px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.95rem;
}

.new-section-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.new-section-image iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* Responsive para nueva sección */
@media (max-width: 768px) {
    .new-section {
        padding: 40px 0;
    }
    
    .new-section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .new-section-text {
        padding-right: 0;
        text-align: center;
    }
    
    .new-section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .new-section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        min-width: auto;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .new-section-image iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .new-section {
        padding: 30px 0;
    }
    
    .new-section-title {
        font-size: 1.5rem;
    }
    
    .new-section-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .new-section-image iframe {
        height: 200px;
    }
}

/* Menú hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 30px;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
}

.mobile-nav-link:hover {
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
}

.mobile-menu-icons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.mobile-nav-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-icon:hover {
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
        position: relative;
    }
    
    .nav-left {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo {
        margin: 0;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .collections-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .collection-image {
        min-height: 300px;
    }
    
    .collection-text h3 {
        font-size: 18px;
    }
    
    .collection-overlay {
        padding: 15px;
    }
    
    .collection-title {
        font-size: 1.3rem;
    }
    
    .view-more-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 12px;
    }
    
    .select-options-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .company-info-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .company-logo-image {
        height: 80px;
    }
    
    .closet-image {
        height: 200px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 20px;
    }
    
    .footer-container {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo-image {
        height: 60px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Categorías responsive */
    .categories-section {
        padding: 30px 0;
    }
    
    .categories-container {
        padding: 5px;
        gap: 5px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .categories-grid {
        gap: 15px;
        padding: 0 5px;
        justify-content: flex-start;
    }
    
    .category-card {
        flex: 0 0 250px;
        height: 180px;
        min-width: 250px;
    }
    
    .category-overlay .category-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .category-overlay .category-link {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 8px 10px;
    }
    
    .nav-left {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    /* Categorías para móviles muy pequeños */
    .categories-section {
        padding: 25px 0;
    }
    
    .categories-container {
        padding: 3px;
        gap: 3px;
        max-width: 100%;
    }
    
    .categories-grid {
        gap: 10px;
        padding: 0 3px;
    }
    
    .category-card {
        flex: 0 0 220px;
        height: 160px;
        min-width: 220px;
    }
    
    .category-overlay .category-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .category-overlay .category-link {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 10px;
    }
    
    .collection-image {
        min-height: 250px;
    }
    
    .collection-title {
        font-size: 1.1rem;
    }
    
    .view-more-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 11px;
    }
    
    .select-options-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .company-logo-image {
        height: 60px;
    }
    
    .closet-image {
        height: 150px;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-icon i {
        font-size: 18px;
    }
    
    .footer-container {
        padding: 30px 15px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
}

/* Breakpoint específico para pantallas muy pequeñas (iPhone SE, etc.) */
@media (max-width: 375px) {
    .nav {
        padding: 5px 8px;
    }
    
    .nav-left {
        gap: 6px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 3px 5px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .nav-icon {
        width: 30px;
        height: 30px;
    }
    
    .nav-icon i {
        font-size: 14px;
    }
    
    /* Categorías para pantallas muy pequeñas */
    .categories-section {
        padding: 20px 0;
    }
    
    .categories-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .categories-container {
        padding: 2px;
        gap: 2px;
        max-width: 100%;
    }
    
    .categories-grid {
        gap: 8px;
        padding: 0 2px;
    }
    
    .category-card {
        flex: 0 0 200px;
        height: 140px;
        min-width: 200px;
    }
    
    .category-overlay .category-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .category-overlay .category-link {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 9px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .products-grid {
        gap: 8px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 10px;
    }
    
    .select-options-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-left {
        order: 2;
        gap: 15px;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-right {
        order: 3;
        gap: 15px;
    }
    
    .promo-banner {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .collection-text h3 {
        font-size: 18px;
    }
}

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

.collection-item {
    animation: fadeInUp 0.8s ease-out;
}

.collection-item:nth-child(2) {
    animation-delay: 0.2s;
}


/* Sección LO MÁS NUEVO */
.new-products-section {
    padding: 0;
    background-color: #fff;
    width: 100%;
    margin-top: 0;
}

.container {
    width: 100%;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.products-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
}


.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.select-options-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-options-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.scroll-arrow:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.scroll-arrow i {
    font-size: 18px;
    color: #666;
    transition: color 0.3s ease;
}

.scroll-arrow:hover i {
    color: #fff;
}

/* Responsive para productos */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .new-products-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        padding: 0 5px;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .scroll-arrow {
        align-self: center;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Sección de Categorías */
.categories-section {
    padding: 40px 0 40px;
    background-color: #000;
    width: 100%;
    margin-top: 0;
    position: static;
    z-index: auto;
}

.categories-title-container {
    padding: 40px 20px 20px;
    text-align: center;
}

.categories-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.categories-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.categories-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 0 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    justify-content: flex-start;
}

.categories-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-card {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 280px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.category-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.category-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.category-link:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

.scroll-arrow-left,
.scroll-arrow-right {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.scroll-arrow-left:hover,
.scroll-arrow-right:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
    transform: scale(1.1);
}

.scroll-arrow-left i,
.scroll-arrow-right i {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.scroll-arrow-left:hover i,
.scroll-arrow-right:hover i {
    color: #fff;
}

/* Responsive para categorías */
@media (max-width: 1024px) {
    .categories-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .categories-grid {
        gap: 15px;
        padding: 0 5px;
    }
    
    .category-card {
        flex: 0 0 250px;
        height: 200px;
        min-width: 250px;
    }
    
    .category-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 30px 0;
    }
    
    .categories-container {
        padding: 5px;
        gap: 5px;
    }
    
    .categories-grid {
        gap: 15px;
        padding: 0 5px;
    }
    
    .category-card {
        flex: 0 0 250px;
        height: 180px;
        min-width: 250px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 30px;
        height: 30px;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 20px 0;
    }
    
    .categories-container {
        padding: 3px;
        gap: 3px;
    }
    
    .categories-grid {
        gap: 10px;
        padding: 0 3px;
    }
    
    .category-card {
        flex: 0 0 220px;
        height: 160px;
        min-width: 220px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 25px;
        height: 25px;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 10px;
    }
}

@media (max-width: 375px) {
    .categories-section {
        padding: 15px 0;
    }
    
    .categories-container {
        padding: 2px;
        gap: 2px;
    }
    
    .categories-grid {
        gap: 8px;
        padding: 0 2px;
    }
    
    .category-card {
        flex: 0 0 200px;
        height: 140px;
        min-width: 200px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 20px;
        height: 20px;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .categories-title {
        font-size: 28px;
    }
    
    .categories-title-container {
        padding: 30px 20px 15px;
    }
    
    .categories-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .categories-grid {
        gap: 10px;
    }
    
    .category-card {
        flex: 0 0 200px;
        height: 220px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .category-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .categories-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .categories-grid {
        width: 100%;
        gap: 15px;
    }
    
    .category-card {
        flex: 0 0 100%;
        height: 200px;
    }
    
    .scroll-arrow-left,
    .scroll-arrow-right {
        align-self: center;
    }
}

/* Sección de Métodos de Pago */
.payment-methods-section {
    background-color: #fff;
    padding: 80px 0;
    width: 100%;
}

.payment-methods-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-method-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #d2691e;
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-icon {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    transform: scale(1.1);
}

.payment-icon i {
    font-size: 2rem;
    color: #fff;
}

.payment-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.payment-icon-binance-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-icon-binance-container {
    transform: scale(1.1);
}

.payment-icon-zelle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-icon-zelle-container {
    transform: scale(1.1);
}

.zelle-logo-standalone {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    filter: none !important;
    transition: all 0.3s ease;
}

.binance-logo-standalone {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    filter: none !important;
    transition: all 0.3s ease;
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.payment-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive para métodos de pago */
@media (max-width: 1024px) {
    .payment-methods-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 900px;
    }
    
    .payment-method-card {
        padding: 30px 15px;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .payment-icon i {
        font-size: 1.5rem;
    }
    
    .payment-icon img {
        width: 30px;
        height: 30px;
    }
    
    .zelle-logo-standalone {
        width: 60px !important;
        height: 60px !important;
    }
    
    .binance-logo-standalone {
        width: 60px !important;
        height: 60px !important;
    }
    
    .payment-title {
        font-size: 1.2rem;
    }
    
    .payment-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .payment-methods-section {
        padding: 60px 0;
    }
    
    .payment-methods-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .payment-method-card {
        padding: 25px 15px;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .payment-icon i {
        font-size: 1.3rem;
    }
    
    .payment-icon img {
        width: 25px;
        height: 25px;
    }
    
    .zelle-logo-standalone {
        width: 50px !important;
        height: 50px !important;
    }
    
    .binance-logo-standalone {
        width: 50px !important;
        height: 50px !important;
    }
    
    .payment-title {
        font-size: 1.1rem;
    }
    
    .payment-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .payment-methods-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-method-card {
        padding: 20px 10px;
    }
    
    .payment-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .payment-icon i {
        font-size: 1.1rem;
    }
    
    .payment-icon img {
        width: 22px;
        height: 22px;
    }
    
    .zelle-logo-standalone {
        width: 45px !important;
        height: 45px !important;
    }
    
    .binance-logo-standalone {
        width: 45px !important;
        height: 45px !important;
    }
    
    .payment-title {
        font-size: 1rem;
    }
    
    .payment-description {
        font-size: 0.75rem;
    }
}

/* Sección de Información de la Empresa */
.company-info-section {
    background-color: #f5f5f5;
    padding: 60px 0 0;
    width: 100%;
}

.company-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 400px;
}

.company-content {
    flex: 1;
    max-width: 600px;
}

.company-logo {
    text-align: center;
    margin-bottom: 30px;
}

.company-logo-image {
    height: 200px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
}

.order-info, .policy-info, .contact-info {
    margin-bottom: 25px;
}

.order-info p, .policy-info p, .contact-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin: 0;
}

.policy-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 30px 0 20px;
    letter-spacing: 2px;
}

.contact-info p {
    font-weight: 600;
    color: #333;
}

.company-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.closet-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

@keyframes swing {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

/* Footer Principal */
.main-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.4);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d2691e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 14px;
}

.contact-item i {
    color: #d2691e;
    width: 16px;
    font-size: 16px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #444, transparent);
    margin: 30px 0;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-bottom-left p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 25px;
}

.footer-bottom-link {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #d2691e;
}

.footer-credit {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-credit p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.footer-credit strong {
    color: #d2691e;
}

/* Responsive para la sección de empresa */
@media (max-width: 1024px) {
    .company-info-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .company-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .company-logo-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 40px 0 0;
    }
    
    .company-logo-image {
        height: 120px;
    }
    
    .policy-title {
        font-size: 20px;
    }
    
    .order-info p, .policy-info p, .contact-info p {
        font-size: 14px;
    }
    
    .clothing-rack {
        width: 150px;
        height: 250px;
    }
    
    .hanger {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .company-logo-image {
        height: 100px;
    }
    
    .policy-title {
        font-size: 18px;
    }
    
    .clothing-rack {
        width: 120px;
        height: 200px;
    }
    
    .hanger {
        width: 20px;
        height: 20px;
    }
}

/* Responsive para el footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo-image {
        height: 70px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-link, .contact-item {
        font-size: 13px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Estilos para páginas de categorías */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.category-header {
    padding: 0;
    position: relative;
}

.category-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.category-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.category-logo {
    margin-bottom: 20px;
}

.category-logo-image {
    height: 250px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-description {
    font-size: 1rem;
    color: white;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.filters-section {
    padding: 30px 0;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
}

.filters {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    min-width: 150px;
}

.filter-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.products-section {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4af37;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quick-view-btn,
.wishlist-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-btn:hover,
.wishlist-btn:hover {
    background: #d4af37;
    color: #fff;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.select-options-btn {
    width: 100%;
    padding: 12px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-options-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Responsive para páginas de categorías */
@media (max-width: 768px) {
    .category-title {
        font-size: 2.5rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-group select {
        min-width: auto;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
