/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Custom Properties for elegant color scheme */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --dark-gold: #996515;
    --cream-white: #FEFCF3;
    --warm-gray: #F7F5F3;
    --medium-gray: #8B8680;
    --dark-gray: #2C2A27;
    --charcoal: #1A1917;
    --pure-white: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-small: 8px;
}

/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream-white);
    color: var(--dark-gray);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: var(--pure-white);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 2px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

.logo img {
    filter: drop-shadow(0 2px 8px var(--shadow-light));
    transition: var(--transition-smooth);
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px var(--shadow-medium));
}

.nav-toggle {
    font-size: 1.5rem;
    display: block;
    color: var(--primary-gold);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: var(--border-radius-small);
    transition: var(--transition-smooth);
    background: transparent;
    border: 2px solid transparent;
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.nav-links {
    display: none;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-gray);
    padding: 0.75rem 1.25rem;
    display: block;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: var(--border-radius-small);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.nav-links li a:hover::before {
    left: 100%;
}

.nav-links li a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

/* Hero Section - Elegant Carousel */
.hero {
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(26, 25, 23, 0.3) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(26, 25, 23, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 400%; /* Default for 4 images, adjusted dynamically via JS */
    position: relative;
}

.slides img {
    display: block;
    width: 25%; /* Default for 4 images, adjusted dynamically via JS */
    height: 100%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition-smooth);
    position: relative;
    top: 0;
}

.slides img.active-slide {
    animation: slowVerticalScroll 18s ease-in-out infinite alternate;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark-gray);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.prev:hover, .next:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px var(--shadow-heavy);
}

.prev { 
    left: 2rem; 
}

.next { 
    right: 2rem; 
}

/* Carousel indicators */
.carousel::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 3;
}

.placeholder {
    padding: 2rem;
    text-align: center;
}

/* Novedades Section - Elegant Layout */
.novedades-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream-white) 100%);
    position: relative;
    overflow: hidden;
}

.novedades-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Animación de scroll vertical para las imágenes del carousel */
@keyframes slowVerticalScroll {
    0% { 
        object-position: center top;
    }
    25% {
        object-position: center 25%;
    }
    50% {
        object-position: center center;
    }
    75% {
        object-position: center 75%;
    }
    100% { 
        object-position: center bottom;
    }
}

.novedades-section h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 2rem auto 0;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: 2rem auto 0;
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 499px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

.product-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--primary-gold);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.product-card .content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-card h3 {
    margin: 0 0 0.75rem 0;
    color: var(--charcoal);
    font-size: 1.25rem;
    line-height: 1.4;
}

.product-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-card .price {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--pure-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--dark-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.inventory-link {
    margin-top: 2rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #b29a5a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
    display: none;
}

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

.error {
    color: #666;
}

/* Ubicacion Section - Elegant Location */
.ubicacion-section {
    padding: 4rem 2rem;
    background: var(--pure-white);
    color: var(--dark-gray);
    position: relative;
}

.ubicacion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.ubicacion-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
}

.ubicacion-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-medium);
    transition: var(--transition-smooth);
    margin: 0;
}

.map-container.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px var(--shadow-heavy);
}

.map-container iframe {
    display: block;           /* Elimina el gap de inline elements */
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1.2);
}

.info-container {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--pure-white) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px var(--shadow-light);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}

.info-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.info-container p {
    position: relative;
    z-index: 1;
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.info-container a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.info-container a:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

.info-container strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.directions-btn {
    margin-top: 1.5rem;
    align-self: flex-start;
}

@media(max-width: 768px) {
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ubicacion-content {
        padding: 2rem 1rem;
    }
    
    .ubicacion-section {
        padding: 3rem 0;
    }
    
    .info-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
}

/* Testimonios Section */
.testimonios-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--cream-white) 0%, var(--warm-gray) 100%);
    text-align: center;
}

.testimonios-section h2 {
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto 2.5rem;
}

.testimonio-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.testimonio-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.testimonio-rating .stars {
    color: #fbbc04;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonio-rating .google-logo {
    height: 18px;
    opacity: 0.7;
}

.testimonio-text {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonio-author .author-name {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.testimonios-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1100px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonios-section {
        padding: 3rem 1rem;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonio-card {
        padding: 1.5rem;
    }
}

/* Larger screens - Desktop Optimizations */
@media(min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    .nav-links li a {
        padding: 0.75rem 1.25rem;
    }
    .slides img {
        /* Width is set dynamically via JS based on image count */
        height: 70vh;
        min-height: 500px;
        object-fit: cover;
        object-position: center top;
        position: relative;
        top: 0;
    }
    
    .slides img.active-slide {
        animation: slowVerticalScroll 20s ease-in-out infinite alternate;
    }
    
    /* Parallax effect for hero */
    .carousel {
        transform-style: preserve-3d;
    }
    
    /* Enhanced hover effects for larger screens */
    .product-card:hover {
        transform: translateY(-12px) scale(1.03);
    }
    
    .blog-card:hover {
        transform: translateY(-12px) scale(1.03);
    }
}

/* Extra large screens */
@media(min-width: 1200px) {
    .header {
        padding: 1rem 3rem;
    }
    
    .novedades-section, .blog-section {
        padding: 5rem 3rem;
    }
    
    .ubicacion-section {
        padding: 5rem 3rem;
    }
    
    .ubicacion-content {
        max-width: 1400px;
        padding: 4rem 3rem;
    }
    
    .info-container {
        max-width: 450px;
    }
}

/* Extra extra large screens */
@media(min-width: 1600px) {
    .ubicacion-content {
        max-width: 1600px;
        padding: 5rem 3rem;
    }
    
    .info-container {
        max-width: 500px;
    }
}

/* Mobile optimizations */
@media(max-width: 767px) {
    .header {
        padding: 1rem;
    }
    
    .carousel {
        height: 50vh;
        min-height: 400px;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev { left: 1rem; }
    .next { right: 1rem; }
    
    .novedades-section, .blog-section {
        padding: 3rem 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}

/* Footer - Premium Design */
.footer {
    background: var(--charcoal);
    color: var(--pure-white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

.footer-section {
    position: relative;
}

/* Footer Brand */
.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--pure-white);
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

/* Footer Navigation */
.footer-section h4 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

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

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--primary-gold);
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact address p {
    margin: 0;
}

.footer-schedule {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-schedule p {
    margin: 0;
}

.footer-schedule strong {
    color: var(--pure-white);
}

/* Footer Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-newsletter form {
    display: flex;
    gap: 0;
}

.footer-newsletter input[type="email"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--pure-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 0;
}

.footer-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter button {
    padding: 0.875rem 1rem;
    background: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 0 8px 8px 0;
    color: var(--pure-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter button:hover {
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
}

.footer-newsletter button svg {
    width: 18px;
    height: 18px;
}

.newsletter-message {
    font-size: 0.85rem;
    margin-top: 0.75rem;
    min-height: 1.2em;
}

.newsletter-message.success {
    color: #4ade80;
}

.newsletter-message.error {
    color: #f87171;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
}

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

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
        text-align: center;
    }

    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .footer-nav li {
        margin: 0;
    }

    .footer-nav a:hover {
        transform: none;
    }

    .footer-newsletter form {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Blog Section - Elegant Layout */
.blog-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--cream-white);
    position: relative;
}

.blog-section h2 {
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.blog-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

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

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--primary-gold);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.blog-card .content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.blog-card h3 {
    margin: 0 0 1rem 0;
    color: var(--charcoal);
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card .summary {
    flex-grow: 1;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Smaller, more subtle buttons for cards */
.product-card .btn,
.blog-card .btn {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    background: transparent;
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-gold);
    text-transform: none;
    letter-spacing: 0.2px;
    font-weight: 500;
    box-shadow: none;
}

.product-card .btn::before,
.blog-card .btn::before {
    display: none;
}

.product-card .btn:hover,
.blog-card .btn:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

/* Inventario */
.inventory-main {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.breadcrumbs a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-gold);
}

/* Inventory Controls - Two Row Design */
.inventory-controls {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.inventory-controls *,
.inventory-controls *::before,
.inventory-controls *::after {
    box-sizing: border-box;
}

/* Search Row */
.search-row {
    margin-bottom: 1.25rem;
}

.search-wrapper {
    position: relative;
    max-width: 100%;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    pointer-events: none;
    transition: color 0.2s ease;
}

.search-wrapper:focus-within .search-icon {
    color: var(--primary-gold);
}

.search-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--warm-gray);
    border-radius: var(--border-radius-small);
    background: var(--cream-white);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.search-wrapper input::placeholder {
    color: var(--medium-gray);
}

/* Filters Row */
.filters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: end;
    width: 100%;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 2px solid var(--warm-gray);
    border-radius: var(--border-radius-small);
    background: var(--cream-white);
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Price Range Group */
.price-range .price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range input {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.95rem;
    border: 2px solid var(--warm-gray);
    border-radius: var(--border-radius-small);
    background: var(--cream-white);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.price-range input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.price-range input::placeholder {
    color: var(--medium-gray);
}

.price-separator,
.date-separator {
    color: var(--medium-gray);
    font-weight: 300;
}

/* Date Range Group */
.date-range .date-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-range input {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.95rem;
    border: 2px solid var(--warm-gray);
    border-radius: var(--border-radius-small);
    background: var(--cream-white);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.date-range input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Filter Button */
.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-white);
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: fit-content;
    align-self: end;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.filter-btn:active {
    transform: translateY(0);
}

/* Responsive Filters */
@media (max-width: 900px) {
    .filters-row {
        grid-template-columns: 1fr 1fr;
    }

    .price-range,
    .date-range {
        grid-column: 1 / -1;
    }

    .filter-btn {
        grid-column: 1 / -1;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 500px) {
    .inventory-main {
        padding: 1rem;
    }

    .inventory-controls {
        padding: 1rem;
    }

    .filters-row {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        grid-column: span 1;
        width: 100%;
    }

    .search-wrapper input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
}

/* Smart Pagination - No overflow */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem 1rem;
}

.pagination button {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: var(--pure-white);
    color: var(--dark-gray);
    cursor: pointer;
    border-radius: var(--border-radius-small);
    transition: var(--transition-smooth);
    font-weight: 500;
    min-width: 44px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pagination button:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.pagination button.active {
    background: var(--primary-gold);
    color: var(--pure-white);
    border-color: var(--primary-gold);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination .ellipsis {
    padding: 0.75rem 0.5rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
        padding: 0.5rem;
    }
    
    .pagination button {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        min-width: 40px;
    }
    
    .pagination .ellipsis {
        padding: 0.5rem 0.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        justify-content: space-between;
        gap: 0.125rem;
    }
    
    .pagination button {
        padding: 0.5rem;
        font-size: 0.8rem;
        min-width: 36px;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.modal-content {
    background: #fff;
    max-width: 500px;
    width: 100%;
    padding: 1rem;
    position: relative;
}
#modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}
.modal-content img {
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Blog listing controls */
.blog-main {
    padding: 2rem;
}
.blog-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.blog-controls input,
.blog-controls select {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Blog detail */
.blog-detail-main {
    padding: 2rem;
}
.blog-post img {
    width: 100%;
    margin: 1rem 0;
}
.share {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.share-btn {
    background: #b29a5a;
    color: #fff;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
}
.share-btn:hover {
    background: #a2874e;
}

/* Product Detail Page - Elegant Layout */
.product-detail-main {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px var(--shadow-light);
    overflow: hidden;
    position: relative;
}

.product-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 50%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.product-image-section {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream-white) 100%);
}

.main-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow-medium);
    transition: var(--transition-smooth);
}

.main-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

.main-image {
    display: block;           /* Elimina el gap de inline elements */
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-info-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.product-header {
    margin-bottom: 2rem;
}

.product-header h1 {
    color: var(--charcoal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.product-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--primary-gold);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item label {
    font-weight: 600;
    color: var(--dark-gray);
}

.detail-item span {
    color: var(--medium-gray);
    font-weight: 500;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-description p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--pure-white);
    flex: 1;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '📱';
    margin-right: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    flex: 1;
    text-align: center;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
}

.error-container {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--warm-gray);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.error-content h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .product-image-section {
        padding: 2rem 2rem 1rem;
    }
    
    .product-info-section {
        padding: 1rem 2rem 2rem;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-detail-main {
        padding: 1rem;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .product-price .price {
        font-size: 1.75rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .main-image {
        height: 300px;
    }

    .product-image-section {
        padding: 1.5rem;
    }

    .product-info-section {
        padding: 1.5rem;
    }
}

/* ========================================
   PREMIUM VISUAL ENHANCEMENTS
   ======================================== */

/* Hero Tagline Overlay */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 3;
    text-align: center;
}

.hero-tagline {
    color: var(--pure-white);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.75rem;
    }

    .hero-overlay {
        padding: 2rem 1rem;
    }
}

/* Premium Image Treatment */
.product-card .product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f6f3 0%, #ebe8e4 100%);
}

.product-card .product-image-wrapper img {
    display: block;           /* Elimina el gap de inline elements */
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(1.02) contrast(1.05) saturate(1.1);
    transition: transform 0.4s var(--ease-premium), filter 0.4s var(--ease-premium);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.08) saturate(1.15);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Price with Discount Styling */
.price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: var(--medium-gray);
    font-size: 0.9em;
    font-weight: 400;
}

.final-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.15em;
}

/* Product Detail Discount Styling */
.product-price .original-price {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.product-price .final-price {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.product-price .discount-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.75rem;
    vertical-align: middle;
}

/* Ofertas Section */
.ofertas-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--cream-white) 0%, var(--warm-gray) 100%);
    position: relative;
    overflow: hidden;
}

.ofertas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.ofertas-section h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.offers-link {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* Skeleton Loader Styles */
.skeleton-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .skeleton-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .skeleton-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    .skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 499px) {
    .skeleton-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.skeleton-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.skeleton-image {
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-title {
    height: 1.25rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    width: 80%;
}

.skeleton-price {
    height: 1rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    width: 40%;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Scroll Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
.product-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.product-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.product-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.product-grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }
.product-grid [data-reveal]:nth-child(5) { transition-delay: 0.4s; }
.product-grid [data-reveal]:nth-child(6) { transition-delay: 0.5s; }
.product-grid [data-reveal]:nth-child(7) { transition-delay: 0.6s; }
.product-grid [data-reveal]:nth-child(8) { transition-delay: 0.7s; }

/* Premium Card Transitions */
.product-card {
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
