/* ============================================
   OLEVS PERÚ - HOMEPAGE DYNAMIC V4
   Diseño Profesional y Dinámico Premium
   ============================================ */

/* ===== RESET ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

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

    100% {
        background-position: 200% center;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(197, 165, 114, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(197, 165, 114, 0.6);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50px) translateX(-10px) scale(0.9);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-25px) translateX(20px) scale(1.05);
        opacity: 0.9;
    }
}

/* ===== HERO SECTION - ULTRA PREMIUM ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 30%, #252525 60%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
    padding: 120px 20px 80px;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(197, 165, 114, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(212, 184, 138, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(156, 125, 79, 0.05) 0%, transparent 60%);
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
}

/* Particle system */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #D4B88A, #C5A572);
    border-radius: 50%;
    animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 25%;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 80%;
    animation-delay: 3s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(6) {
    top: 80%;
    left: 40%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    top: 45%;
    left: 90%;
    animation-delay: 6s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(8) {
    top: 15%;
    left: 85%;
    animation-delay: 7s;
}

/* Decorative lines */
.hero-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(197, 165, 114, 0.4), transparent);
    z-index: 1;
}

.hero-line:nth-child(1) {
    left: 10%;
    top: 0;
    height: 100%;
    animation: shimmer 4s linear infinite;
}

.hero-line:nth-child(2) {
    left: 30%;
    top: 0;
    height: 100%;
    animation: shimmer 6s linear infinite;
}

.hero-line:nth-child(3) {
    left: 70%;
    top: 0;
    height: 100%;
    animation: shimmer 5s linear infinite;
}

.hero-line:nth-child(4) {
    left: 90%;
    top: 0;
    height: 100%;
    animation: shimmer 7s linear infinite;
}

.hero .container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
}

/* Badge pre-title */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #D4B88A;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '⭐';
    font-size: 12px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.05;
    animation: fadeInUp 0.8s ease-out 0.15s both;
    letter-spacing: -1px;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, #f5e6d3 0%, #D4B88A 25%, #C5A572 50%, #9C7D4F 75%, #C5A572 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero h1 .text-white {
    color: rgba(255, 255, 255, 0.95);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #D4B88A;
    font-weight: 600;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero .btn {
    padding: 20px 44px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 50%, #9C7D4F 100%);
    color: #1A1A1A;
    border: none;
    box-shadow:
        0 4px 15px rgba(197, 165, 114, 0.4),
        0 10px 40px rgba(197, 165, 114, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

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

.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(197, 165, 114, 0.5),
        0 15px 50px rgba(197, 165, 114, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border: 2px solid rgba(197, 165, 114, 0.4);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    background: rgba(197, 165, 114, 0.12);
    border-color: #C5A572;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 70px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    background: linear-gradient(135deg, #D4B88A, #C5A572);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== TRUST BAR / BENEFITS ===== */
.trust-bar {
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 165, 114, 0.15);
    border-bottom: 1px solid rgba(197, 165, 114, 0.15);
}

.trust-marquee {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.trust-marquee:hover {
    animation-play-state: paused;
}

.trust-items {
    display: flex;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    border-right: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(197, 165, 114, 0.05);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.15), rgba(156, 125, 79, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(197, 165, 114, 0.2);
}

/* ===== FEATURED CATEGORIES ===== */
.featured-categories {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fdfcfa 0%, #f8f6f2 100%);
    position: relative;
}

.featured-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.05), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1), rgba(197, 165, 114, 0.05));
    border: 1px solid rgba(197, 165, 114, 0.2);
    color: #9C7D4F;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-title .text-gradient-gold {
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 50%, #9C7D4F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    padding: 50px 40px;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid rgba(197, 165, 114, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    min-height: 280px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.02), rgba(197, 165, 114, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-12px);
    border-color: rgba(197, 165, 114, 0.4);
    box-shadow:
        0 20px 60px rgba(197, 165, 114, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.category-icon {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon img {
    transform: scale(1.1) rotate(5deg);
}

.category-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.category-desc {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 24px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C5A572;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.category-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link {
    color: #9C7D4F;
}

.category-card:hover .category-link svg {
    transform: translateX(6px);
}

/* ===== CATALOG SECTION ENHANCED ===== */
#catalogo {
    padding: 100px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #f8f6f2 100%);
    position: relative;
}

#catalogo h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #1A1A1A;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
}

#catalogo h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C5A572, transparent);
    border-radius: 2px;
}

.catalog-subtitle {
    text-align: center;
    color: #6B6B6B;
    font-size: 18px;
    margin-bottom: 60px;
    margin-top: 32px;
    font-weight: 400;
}

/* Enhanced Controls */
.controls {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 32px;
    background: white;
    border-radius: 24px;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.controls input,
.controls select {
    padding: 16px 22px;
    border: 2px solid #f0ece6;
    border-radius: 14px;
    font-size: 15px;
    min-width: 170px;
    transition: all 0.3s ease;
    background: #fdfcfa;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
}

.controls input:focus,
.controls select:focus {
    outline: none;
    border-color: #C5A572;
    background: white;
    box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.1);
    transform: translateY(-2px);
}

.controls input::placeholder {
    color: #a0a0a0;
}

/* Enhanced Product Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

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

@media (max-width: 540px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        /* Reducido para MAXIMIZAR espacio */
        padding: 0;
        /* SIN margen lateral - MÁXIMO espacio */
    }

    /* Mejoras para móvil - Imágenes más grandes */
    .product-card {
        border-radius: 10px;
        /* Más compacto */
        border-width: 1px;
    }

    .product-image-wrapper {
        padding: 1px !important;
        /* MÍNIMO absoluto - IMAGEN GIGANTE */
        aspect-ratio: 1 / 1;
    }

    .product-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
        padding: 0px;
        /* SIN padding - MÁXIMO tamaño */
    }

    .product-info {
        padding: 5px;
        /* Ultra compacto */
        gap: 2px;
        /* Mínimo espacio */
    }

    .product-title {
        font-size: 10.5px !important;
        /* Más pequeño */
        line-height: 1.2;
        /* Ultra compacto */
        margin-bottom: 1px;
        /* Mínimo margen */
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price {
        font-size: 18px !important;
        /* AÚN MÁS GRANDE */
        font-weight: 700;
    }

    .price-before {
        font-size: 9.5px !important;
        /* Más pequeño */
    }

    .product-btn {
        padding: 5px 7px !important;
        /* Ultra compacto */
        font-size: 9.5px !important;
        /* Más pequeño */
        border-radius: 6px !important;
    }

    .discount-badge {
        padding: 2px 4px;
        /* MÍNIMO */
        font-size: 8px;
        /* Muy pequeño */
        font-weight: 700;
        top: 3px;
        /* Pegado al borde */
        right: 3px;
        opacity: 0.8;
        /* Más transparente */
    }

    .product-price-wrapper {
        gap: 3px;
        /* Mínimo */
        margin-bottom: 3px;
        /* Mínimo */
    }
}

/* ===== ENHANCED PRODUCT CARDS ===== */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #f5f1eb;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-16px) scale(1.01);
    box-shadow:
        0 30px 60px rgba(197, 165, 114, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(197, 165, 114, 0.4);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    padding: 15px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(197, 165, 114, 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
}

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

.discount-badge {
    position: absolute;
    top: 12px;
    /* Reducido de 20px a 12px */
    right: 12px;
    /* Reducido de 20px a 12px */
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    /* Reducido de 10px 18px */
    border-radius: 50px;
    font-weight: 700;
    /* Reducido de 800 */
    font-size: 11px;
    /* Reducido de 14px */
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    /* Sombra más sutil */
    z-index: 2;
    /* animation: bounce 2.5s ease-in-out infinite; */
    /* Animación desactivada */
    letter-spacing: 0.3px;
    /* Reducido de 0.5px */
}

/* New badge */
.new-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    z-index: 2;
}

.product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    position: relative;
    background: white;
}

.product-title {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
    letter-spacing: 0.2px;
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.price-before {
    font-size: 15px;
    color: #a0a0a0;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 50%, #9C7D4F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
}

.product-btn {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 50%, #9C7D4F 100%);
    color: #1A1A1A;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 16px rgba(197, 165, 114, 0.3);
    text-decoration: none;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(197, 165, 114, 0.45);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.why-us-card:hover {
    background: rgba(197, 165, 114, 0.08);
    border-color: rgba(197, 165, 114, 0.3);
    transform: translateY(-10px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.15), rgba(156, 125, 79, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.25), rgba(156, 125, 79, 0.15));
}

.why-us-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.why-us-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 30%, #9C7D4F 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 48px;
    background: #1A1A1A;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    background: #2a2a2a;
}

/* ===== FOOTER ENHANCED ===== */
.footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
    color: white;
    padding: 80px 20px 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #D4B88A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #D4B88A;
    transform: translateX(5px);
}

.footer-logo {
    width: 160px;
    margin-bottom: 24px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(197, 165, 114, 0.15);
    border-color: #C5A572;
    transform: translateY(-4px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for grids */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .category-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        min-height: auto;
    }

    .category-icon {
        width: 120px;
        height: 120px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .controls {
        flex-direction: column;
        padding: 24px;
    }

    .controls input,
    .controls select {
        width: 100%;
        min-width: auto;
    }

    .trust-item {
        padding: 20px 30px;
        font-size: 13px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .product-info {
        padding: 20px;
    }

    .product-title {
        font-size: 14px;
        min-height: auto;
    }

    .product-price {
        font-size: 24px;
    }

    .product-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient-gold {
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 50%, #9C7D4F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}