/* Archivo CSS para páginas públicas (sin autenticación) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aura-primary: #234137;
    --aura-secondary: #f8f6f0;
    --aura-accent: #d4af37;
    --aura-accent-alt: #bfa133;
    --aura-light: #ffffff;
    --aura-beige: #f5f5dc;
    --aura-green-light: #b7c7b0;
    --aura-text: #234137;
    --aura-text-light: #6b7280;
    --aura-border: #b7c7b0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--aura-text);
    background-color: var(--aura-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(35,65,55,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid var(--aura-accent);
    box-shadow: 0 2px 20px rgba(35,65,55,0.3);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--aura-accent);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--aura-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--aura-accent);
}

/* Dropdown Menu Styles */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--aura-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.dropdown-trigger:hover {
    color: var(--aura-accent);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aura-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    z-index: 1000;
    border: 1px solid var(--aura-border);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-container {
    padding: 2rem;
    min-width: 600px;
}

.dropdown-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-section {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--aura-accent);
    color: var(--aura-primary);
}

.category-title a {
    color: var(--aura-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: var(--aura-accent);
}

.subcategory-list {
    list-style: none;
    padding: 0;
}

.subcategory-list li {
    margin-bottom: 0.5rem;
}

.subcategory-list a {
    color: var(--aura-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.subcategory-list a:hover {
    color: var(--aura-accent);
    transform: translateX(5px);
}

/* Mobile Menu Styles */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--aura-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--aura-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-20px);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-dropdown-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--aura-light);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-trigger.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-dropdown-content.active {
    max-height: 500px;
    padding: 1rem 0;
}

.mobile-category-section {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.mobile-category-title {
    display: block;
    color: var(--aura-accent);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.mobile-subcategory-link {
    display: block;
    color: var(--aura-light);
    text-decoration: none;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-subcategory-link:hover {
    color: var(--aura-accent);
    border-left-color: var(--aura-accent);
}

.mobile-nav-link {
    display: block;
    color: var(--aura-light);
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--aura-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .top-nav {
        padding: 1rem;
    }
    
    .nav-content {
        padding: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .dropdown-container {
        min-width: 500px;
    }
    
    .dropdown-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--aura-primary) 0%, var(--aura-green-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--aura-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--aura-beige);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--aura-accent);
    color: var(--aura-primary);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--aura-accent);
    border-radius: 0.8rem;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--aura-accent);
    transform: translateY(-2px);
    border-color: var(--aura-accent);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--aura-light);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--aura-light);
    margin-left: 1rem;
    border-radius: 0.8rem;
}

.btn-outline:hover {
    background-color: var(--aura-light);
    color: var(--aura-primary);
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--aura-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 40%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-element:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 1s; }

/* Sections */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--aura-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--aura-text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Presentation Sections */
.featured-presentation-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.featured-presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-presentation-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-presentation-media img,
.featured-presentation-media video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-presentation-text {
    padding: 2rem 0;
}

.featured-presentation-text h2 {
    font-size: 3rem;
    color: var(--aura-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.featured-presentation-text p {
    color: var(--aura-text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-presentation-text .btn-primary {
    margin-top: 1rem;
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-card {
    background: var(--aura-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-image {
    width: 100%;
    height: 300px;
    background: var(--aura-secondary);
    position: relative;
    overflow: hidden;
}

.featured-image img,
.featured-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image img,
.featured-card:hover .featured-image video {
    transform: scale(1.05);
}

.featured-content {
    padding: 2rem;
}

.featured-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--aura-primary);
}

.featured-description {
    color: var(--aura-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-link {
    color: var(--aura-accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.featured-link:hover {
    color: var(--aura-primary);
    transform: translateX(5px);
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--aura-green-light);
    padding: 2rem;
    text-align: center;
    border-radius: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--aura-accent);
    transform: translateY(-3px);
    background: var(--aura-light);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--aura-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aura-light);
    font-size: 1.5rem;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--aura-primary);
}

.category-link {
    color: var(--aura-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--aura-accent);
}

/* Featured Products Carousel (Welcome Page) */
.featured-products-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    padding: 0 4rem;
}

.featured-products-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    min-height: 600px;
}

.featured-products-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    align-items: stretch;
    cursor: grab;
    user-select: none;
}

.featured-products-carousel-track:active {
    cursor: grabbing;
}

.featured-products-carousel-track.dragging {
    transition: none;
}

.featured-product-card {
    background: var(--aura-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--aura-border);
    flex: 0 0 calc(33.333% - 1.33rem);
    box-sizing: border-box;
    min-width: 320px;
    max-width: 380px;
    min-height: 550px;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--aura-accent);
}

.featured-product-card .product-image {
    width: 100%;
    height: 350px;
    background: var(--aura-secondary);
    position: relative;
    overflow: hidden;
}

.featured-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-product-card:hover .product-image img {
    transform: scale(1.08);
}

.featured-product-card .product-content {
    padding: 1.5rem;
}

.featured-product-card .product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--aura-primary);
    font-weight: 600;
}

.featured-product-card .product-description {
    color: var(--aura-text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.featured-product-card .product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--aura-accent);
    margin-bottom: 1rem;
}

.featured-product-card .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--aura-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.featured-product-card .product-link:hover {
    color: var(--aura-accent);
    border-bottom-color: var(--aura-accent);
    transform: translateX(5px);
}

.product-link {
    color: var(--aura-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-link:hover {
    color: var(--aura-accent);
    transform: translateX(5px);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--aura-accent);
    color: var(--aura-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

/* Carousel Navigation */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--aura-primary);
    color: var(--aura-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-nav-btn:hover {
    background: var(--aura-accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-nav-btn.prev {
    left: 0;
}

.carousel-nav-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--aura-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--aura-accent);
    transform: scale(1.2);
}

/* Animations */
.fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fadeInUp.visible {
    opacity: 1;
    transform: translateY(0);
}

.media-placeholder {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--aura-primary);
    color: var(--aura-light);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--aura-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--aura-light);
    text-decoration: none;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--aura-accent);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0.8;
}

/* ======================
   Cabecera pública reutilizable
   ====================== */
.public-page-hero {
    background: linear-gradient(135deg, var(--aura-primary) 0%, var(--aura-green-light) 100%);
    padding: 120px 0 80px;
    color: var(--aura-light);
    position: relative;
    overflow: hidden;
}
.public-page-hero::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="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}
.public-page-hero-content {
    position: relative;
    z-index: 2;
}
.public-page-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}
.public-page-breadcrumb .breadcrumb-link {
    color: var(--aura-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.public-page-breadcrumb .breadcrumb-link:hover {
    color: var(--aura-accent);
}
.public-page-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    opacity: 0.7;
}
.public-page-breadcrumb .breadcrumb-current {
    color: var(--aura-light);
    font-weight: 500;
}
.public-page-title-section {
    max-width: 800px;
}
.public-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--aura-light);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}
.public-page-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1rem;
        height: auto;
        min-height: 100vh;
    }
    
    .btn-primary, .btn-outline {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 1rem auto;
        text-align: center;
    }
    
    .btn-outline {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .hero-buttons a {
        margin: 0 !important;
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section:has(.featured-products-carousel) .container {
        padding: 0 !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    
    .section:has(.featured-products-carousel) {
        padding: 3rem 0 !important;
    }
    
    .section:has(.featured-products-carousel) .section-title,
    .section:has(.featured-products-carousel) .section-subtitle {
        padding: 0 5% !important;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-presentation-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .featured-presentation-section {
        min-height: auto !important;
        padding: 3rem 1rem !important;
    }
    
    .featured-presentation-text {
        order: 2;
        padding: 1rem 0 !important;
    }
    
    .featured-presentation-media {
        order: 1;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .featured-products-carousel {
        padding: 0 1rem !important;
        margin: 0 auto !important;
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .featured-products-carousel-wrapper {
        min-height: 520px !important;
        overflow: hidden !important;
        border-radius: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    .featured-products-carousel-track {
        gap: 0 !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    .featured-product-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        min-height: 480px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .featured-product-card .product-image {
        height: 280px !important;
        flex-shrink: 0;
    }
    
    .featured-product-card .product-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.5rem;
    }
    
    .carousel-nav-btn {
        display: none;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .carousel-indicator {
        width: 14px;
        height: 14px;
    }
    
    .product-image {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .top-nav {
        padding: 0.8rem 1rem;
        background: rgba(35,65,55,0.95);
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        font-size: 1.3rem;
        color: var(--aura-accent);
    }
    
    .nav-link {
        font-size: 0.9rem;
        color: var(--aura-light);
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-primary, .btn-outline {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        max-width: 240px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-presentation-content {
        gap: 3rem;
    }
    
    .featured-product-card {
        flex: 0 0 calc(50% - 1rem) !important;
        min-width: 280px;
        max-width: 350px;
    }
    
    .featured-products-carousel {
        padding: 0 2rem;
    }
    
    .featured-presentation-text {
        order: 2;
        padding: 1rem 0 !important;
    }
    
    .featured-presentation_media {
        order: 1;
    }
    
    .featured-products-carousel {
        padding: 0 2rem;
    }
    
    .featured-product-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-height: 480px;
    }
    
    .carousel-nav-btn {
        display: none !important;
    }
}

/* ==========================================
   CATALOG STYLES - ESPECÍFICOS
   ========================================== */

/* Grid de productos del catálogo */
.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.catalog-products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.catalog-products-list .catalog-item-card {
    display: flex;
    align-items: stretch;
    max-width: none;
}

.catalog-products-list .catalog-image-container {
    flex: 0 0 250px;
    height: 200px;
}

.catalog-products-list .catalog-info {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-item-card {
    background: var(--aura-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: fit-content;
}

.catalog-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.catalog-item-card .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-item-card .product-badge.featured {
    background: var(--aura-accent);
    color: var(--aura-primary);
}

.catalog-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.catalog-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f6f0, #e8e6e0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--aura-text-light);
    text-align: center;
    gap: 1rem;
}

.catalog-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 80%;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 65, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-item-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-item-card:hover .catalog-image {
    transform: scale(1.05);
}

.catalog-quick-view {
    color: var(--aura-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-info {
    padding: 1.5rem;
}

.catalog-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.catalog-category {
    background: var(--aura-secondary);
    color: var(--aura-text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.catalog-name {
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.catalog-name a {
    color: var(--aura-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.catalog-name a:hover {
    color: var(--aura-accent);
}

.catalog-description {
    color: var(--aura-text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.catalog-price {
    margin-bottom: 1.5rem;
}

.catalog-price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--aura-accent);
}

.catalog-actions {
    margin-top: auto;
}

.btn-catalog-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--aura-primary);
    color: var(--aura-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--aura-primary);
}

.btn-catalog-detail:hover {
    background: transparent;
    color: var(--aura-primary);
    transform: translateY(-2px);
}

.btn-catalog-detail svg {
    transition: transform 0.3s ease;
}

.btn-catalog-detail:hover svg {
    transform: translateX(3px);
}

/* Responsive para catálogo específico */
@media (max-width: 768px) {
    .catalog-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .catalog-products-list .catalog-item-card {
        flex-direction: column;
    }
    
    .catalog-products-list .catalog-image-container {
        flex: none;
        height: 200px;
    }
}

/* Catalog Header */
.catalog-header {
    background: linear-gradient(135deg, var(--aura-primary) 0%, var(--aura-green-light) 100%);
    padding: 120px 0 80px;
    color: var(--aura-light);
    position: relative;
    overflow: hidden;
}

.catalog-header::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="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.catalog-header-content {
    position: relative;
    z-index: 2;
}

.catalog-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.catalog-breadcrumb a {
    color: var(--aura-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.catalog-breadcrumb a:hover {
    color: var(--aura-accent);
}

.catalog-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.catalog-title-section {
    max-width: 800px;
}

.catalog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--aura-light);
}

.catalog-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.catalog-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.products-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Catalog Filters */
.catalog-filters {
    background: var(--aura-light);
    padding: 2rem 0;
    border-bottom: 1px solid var(--aura-border);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filters-left,
.filters-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--aura-text);
    white-space: nowrap;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--aura-border);
    border-radius: 8px;
    background: var(--aura-light);
    color: var(--aura-text);
    font-size: 0.9rem;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--aura-accent);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--aura-secondary);
    border-radius: 8px;
    padding: 4px;
}

.view-btn {
    padding: 0.5rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    color: var(--aura-text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    background: var(--aura-light);
    color: var(--aura-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Products Grid */
.catalog-products {
    padding: 3rem 0;
    background: var(--aura-secondary);
    min-height: 60vh;
}

/* Products Grid - Solo para otros usos, no catálogo */

/* Estilos generales eliminados para evitar conflictos con el catálogo */

/* =================================
   PRODUCTO DETALLES
   ================================= */

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--aura-accent);
    color: var(--aura-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Pagination */
.catalog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.catalog-pagination .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-pagination .page-item {
    border-radius: 8px;
    overflow: hidden;
}

.catalog-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: var(--aura-light);
    color: var(--aura-text);
    text-decoration: none;
    border: 1px solid var(--aura-border);
    transition: all 0.3s ease;
    min-width: 44px;
    height: 44px;
}

.catalog-pagination .page-link:hover,
.catalog-pagination .page-item.active .page-link {
    background: var(--aura-accent);
    color: var(--aura-primary);
    border-color: var(--aura-accent);
}

/* Related Categories */
.related-categories {
    background: var(--aura-light);
    padding: 3rem 0;
}

.related-title {
    text-align: center;
    font-size: 2rem;
    color: var(--aura-primary);
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.related-card {
    background: var(--aura-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--aura-text);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.related-card:hover {
    background: var(--aura-light);
    border-color: var(--aura-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    color: var(--aura-primary);
}

.related-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.related-card span {
    color: var(--aura-accent);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .catalog-header {
        padding: 100px 0 60px;
    }
    
    .catalog-title {
        font-size: 2rem;
    }
    
    .catalog-subtitle {
        font-size: 1rem;
    }
    
    .filters-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filters-left,
    .filters-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-select {
        min-width: 120px;
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-list .catalog-product-card {
        flex-direction: column;
    }
    
    .products-list .product-image-container {
        flex: none;
        height: 200px;
    }
    
    .catalog-filters {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================
   PRODUCTO DETALLES
   ================================= */

/* Breadcrumb del producto */
.product-breadcrumb {
    background: var(--aura-secondary);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--aura-border);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: var(--aura-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--aura-primary);
}

.breadcrumb-separator {
    color: var(--aura-text-light);
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: var(--aura-primary);
    font-weight: 500;
}

/* Detalle del producto */
.product-detail {
    padding: 4rem 0;
    background: var(--aura-light);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header móvil del producto */
.product-info-mobile-header {
    display: none;
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid var(--aura-border);
    margin-bottom: 1.5rem;
}

/* Clases de visibilidad */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Galería de imágenes */
.product-gallery {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.main-image-container {
    position: relative;
    background: var(--aura-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--aura-text-light);
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-badge-detail {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--aura-accent);
    color: var(--aura-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail {
    flex: 0 0 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--aura-accent);
}

.thumbnail.active {
    border-color: var(--aura-primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Información del producto */
.product-info {
    padding: 2rem 0;
}

.product-header {
    margin-bottom: 3rem;
}

.product-collection {
    margin-bottom: 1rem;
}

.collection-link {
    color: var(--aura-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.collection-link:hover {
    color: var(--aura-accent-alt);
}

.product-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--aura-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-price-detail {
    margin-bottom: 2rem;
}

.product-price-detail .price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--aura-primary);
    letter-spacing: -0.5px;
}

/* Acciones del producto */
.product-actions {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--aura-border);
}

.btn-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--aura-primary);
    color: var(--aura-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
}

.btn-inquiry:hover {
    background: var(--aura-accent);
    color: var(--aura-primary);
    transform: translateY(-2px);
}

.contact-info {
    color: var(--aura-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.phone-link {
    color: var(--aura-primary);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: var(--aura-accent);
    text-decoration: underline;
}

/* Descripción del producto */
.product-description,
.product-specs,
.product-experience {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--aura-border);
}

.description-title,
.specs-title,
.experience-title {
    font-size: 1.25rem;
    color: var(--aura-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.description-content p,
.experience-description {
    color: var(--aura-text);
    line-height: 1.8;
    font-size: 1rem;
}

.specs-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-label {
    color: var(--aura-text-light);
    font-weight: 500;
    min-width: 120px;
}

.spec-value {
    color: var(--aura-text);
    font-weight: 400;
}

/* Productos relacionados */
.related-products {
    padding: 4rem 0;
    background: var(--aura-secondary);
}

.related-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--aura-primary);
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background: var(--aura-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.related-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-info {
    padding: 1.5rem;
}

.related-name {
    margin-bottom: 0.75rem;
}

.related-name a {
    color: var(--aura-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-name a:hover {
    color: var(--aura-accent);
}

.related-price {
    color: var(--aura-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* Modal de consulta */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.inquiry-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 65, 55, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--aura-light);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.inquiry-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--aura-border);
}

.modal-title {
    color: var(--aura-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--aura-text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--aura-secondary);
    color: var(--aura-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: var(--aura-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-info {
    color: var(--aura-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--aura-secondary);
    border-radius: 8px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-modal-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--aura-primary);
    color: var(--aura-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-modal-phone:hover {
    background: var(--aura-accent);
    color: var(--aura-primary);
    transform: translateY(-2px);
}

.btn-modal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    text-decoration: none;
}

.btn-modal-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.btn-modal-cancel {
    background: transparent;
    color: var(--aura-text-light);
    border: 1px solid var(--aura-border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-modal-cancel:hover {
    background: var(--aura-secondary);
    color: var(--aura-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-gallery {
        position: static;
        order: 2;
    }
    
    .product-info {
        order: 3;
        padding: 0;
    }
    
    /* En tablet, mostrar solo la versión desktop */
    .product-info-mobile-header {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 2rem 0;
    }
    
    .product-detail-wrapper {
        gap: 0;
        display: flex;
        flex-direction: column;
    }
    
    /* Mostrar header móvil y ocultar desktop */
    .product-info-mobile-header {
        display: block;
        order: 1;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Galería va después del título */
    .product-gallery {
        order: 2;
        position: static;
        margin-bottom: 2rem;
    }
    
    /* Info del producto va al final */
    .product-info {
        order: 3;
        padding: 0;
    }
    
    .main-image-container {
        margin-bottom: 1rem;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .product-header {
        margin-bottom: 2rem;
    }
    
    .product-actions {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .btn-inquiry {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-modal-whatsapp,
    .btn-modal-phone,
    .btn-modal-cancel {
        width: 100%;
        flex: none;
    }
    
    .breadcrumb-nav {
        font-size: 0.8rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.25rem;
    }
}

@media (max-width: 480px) {
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .filters-left,
    .filters-right {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .view-toggle {
        align-self: center;
    }
}
