/* super-novedoso.css */
/* --- NUEVA ARQUITECTURA "SUPER NOVEDOSA" 2026 --- */

html, body {
    overflow-x: hidden;
}

/* 1. Custom Cursor */
@media (pointer: fine) {
    body { cursor: none !important; }
    a, button, .btn, .card, select, input { cursor: none !important; }
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s;
    box-shadow: 0 0 20px var(--accent);
}
.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    backdrop-filter: blur(4px);
}

/* 2. Dynamic Island Header (Refined & Minimalist) */
.dynamic-island-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 720px;
    height: 60px;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dynamic-island-header.scrolled {
    width: 92%;
    max-width: 780px;
    height: 52px;
    top: 14px;
    background: rgba(10, 10, 12, 0.88);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.di-logo {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    user-select: none;
    display: inline-flex;
    align-items: center;
}

.di-logo span {
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    margin-left: 1px;
}

.di-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

.di-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.di-icon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.di-icon:hover {
    color: var(--accent, #8b5cf6);
    transform: translateY(-2px);
}

.di-cart-icon {
    position: relative;
}

.di-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent, #8b5cf6);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: bold;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--accent-glow, rgba(139, 92, 246, 0.5));
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }
    body {
        padding-bottom: 90px !important;
    }
    /* Floating Bottom Dock on Mobile */
    .dynamic-island-header {
        position: fixed !important;
        top: auto !important;
        bottom: 22px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 400px !important;
        height: 60px !important;
        padding: 0 16px !important;
        background: rgba(12, 12, 16, 0.88) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 40px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
        z-index: 99999 !important;
        justify-content: space-around !important;
    }
    .dynamic-island-header.scrolled,
    .dynamic-island-header.scrolled-down {
        top: auto !important;
        bottom: 22px !important;
        width: 90% !important;
        max-width: 400px !important;
        height: 60px !important;
        border-radius: 40px !important;
    }
    .di-logo {
        display: none !important;
    }
    .di-icons {
        width: 100% !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 0 !important;
    }
    .di-icon {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 1.25rem !important;
        padding: 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: transform 0.2s, color 0.2s !important;
    }
    .di-icon:active {
        transform: scale(0.88) !important;
        color: #ffffff !important;
    }
    .mobile-menu-btn {
        display: inline-flex !important;
    }
    .di-search-modal {
        top: 25px !important;
        width: 94% !important;
    }
}

/* 2.4 Live Search Modal 2.0 */
.di-search-modal {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 620px;
    z-index: 10001;
    animation: diSearchSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes diSearchSlideDown {
    from { opacity: 0; transform: translate(-50%, -15px) scale(0.97); }
    to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.di-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(14, 14, 19, 0.88);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(139, 92, 246, 0.25);
    padding: 6px 14px;
}

.di-search-icon {
    font-size: 1.1rem;
    color: var(--accent, #8b5cf6);
    margin-left: 8px;
    margin-right: 12px;
}

.di-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.05rem;
    padding: 12px 0;
    font-family: inherit;
}

.di-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.di-search-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.di-search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.di-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(14, 14, 19, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10002;
}

.di-search-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.2rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.25s;
}

.di-search-item:hover {
    background: rgba(139, 92, 246, 0.15);
}

.di-search-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.di-search-more-btn {
    display: block;
    padding: 0.9rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #8b5cf6);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s;
}

.di-search-more-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* 2.5 Visual Haptics (Touch Feedback) */
@media (pointer: coarse) {
    button:active, a:active, .card:active, .bento-item:active, .btn-icon:active, .wishlist-btn:active {
        transform: scale(0.94) !important;
        transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 0.8;
    }
}

/* 2.6 Fullscreen App Menu */
.mobile-nav-genial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 4, 5, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 20000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-nav-genial.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav-genial a {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    transform: translateY(30px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-genial.active a {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.mobile-nav-genial a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-genial a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-genial a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-genial a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-genial a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-genial a:nth-child(6) { transition-delay: 0.35s; }

.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20001;
}

/* 3. Massive Hero & Marquee */
.hero-super {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-massive-text {
    font-size: clamp(4rem, 18vw, 15rem);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}
.hero-massive-text span {
    /* Eliminamos el fill sólido para que sea todo un outline elegante */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

.hero-video-wrapper {
    z-index: 2 !important;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 80px rgba(139, 92, 246, 0.3);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.hero-desktop-video {
    display: block;
}
.hero-mobile-showcase {
    display: none !important;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--accent);
    color: #fff;
    padding: 20px 0;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    transform: rotate(-2deg) scale(1.05);
    margin: 6rem 0;
    box-shadow: 0 0 40px var(--accent-glow);
}
.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.marquee-content span {
    margin: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 4. Bento Box Grid */
.bento-section {
    padding: 5rem 5%;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}
.bento-item {
    background: var(--bg-card);
    border-radius: 30px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    color: white;
}
.bento-item:hover {
    transform: scale(0.97);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 30px rgba(255,255,255,0.05);
}
.bento-item img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-item:hover img {
    transform: scale(1.15);
}
.bento-item .overlay-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}
.bento-item-content {
    position: relative;
    z-index: 2;
}
.bento-item-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}
.bento-item-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large, .bento-wide { grid-column: span 2; }
    .bento-tall { grid-row: span 1; grid-column: span 1;}
}
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .bento-large, .bento-wide, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .hero-super {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 2rem;
    }
    .hero-massive-text {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        font-size: 25vw;
        letter-spacing: -2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 0.8;
    }
    .hero-desktop-video {
        display: none !important;
    }
    .hero-video-wrapper {
        position: relative;
        transform: none !important;
        width: 92%;
        max-width: 380px;
        height: 420px;
        aspect-ratio: auto;
        margin: 0 auto;
        padding: 0;
        border-radius: 32px;
        overflow: hidden;
        background: radial-gradient(circle at 50% 35%, rgba(30, 26, 44, 0.96) 0%, rgba(9, 9, 13, 0.98) 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(139, 92, 246, 0.2) !important;
    }
    .hero-mobile-showcase {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding: 20px 16px 18px;
        box-sizing: border-box;
        position: relative;
        z-index: 5;
    }
    .hero-mobile-badge {
        align-self: flex-start;
        background: rgba(236, 72, 153, 0.14);
        border: 1px solid rgba(236, 72, 153, 0.35);
        color: #f43f5e;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        padding: 5px 12px;
        border-radius: 20px;
        text-transform: uppercase;
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
    }
    .hero-shoe-stage {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        margin: 8px 0;
    }
    .hero-mobile-shoe {
        width: 88%;
        max-width: 280px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.65));
        animation: heroShoeFloat 4s ease-in-out infinite;
        will-change: transform;
    }
    .hero-shoe-shadow {
        width: 180px;
        height: 16px;
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
        border-radius: 50%;
        margin-top: -8px;
        animation: heroShoeShadow 4s ease-in-out infinite;
        will-change: transform, opacity;
    }
    .hero-mobile-label {
        text-align: center;
        margin-top: 2px;
    }
    .hero-shoe-brand {
        display: block;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent, #8b5cf6);
        font-weight: 700;
    }
    .hero-shoe-name {
        display: block;
        font-size: 0.95rem;
        font-weight: 800;
        color: #fff;
        margin-top: 2px;
        line-height: 1.25;
        letter-spacing: -0.3px;
    }
    @keyframes heroShoeFloat {
        0%, 100% {
            transform: translateY(0px) rotate(-9deg);
        }
        50% {
            transform: translateY(-10px) rotate(-7deg);
        }
    }
    @keyframes heroShoeShadow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.55;
        }
        50% {
            transform: scale(0.82);
            opacity: 0.25;
        }
    }
    .hero-buttons-container {
        position: relative !important;
        bottom: auto !important;
        margin-top: 1rem;
    }
    .bento-item {
        padding: 1.5rem;
    }
    .bento-item-content h3 {
        font-size: 1.8rem;
    }
    .bento-section {
        padding: 3rem 5%;
    }
    .marquee-container {
        margin: 3rem 0;
    }
    .marquee-content {
        font-size: 1.2rem;
    }
    .product-premium-container {
        padding: 80px 5% 3rem;
    }
}

/* 5. Scroll Reveal Utilities */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 6. Product Premium Layout */
.product-premium-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 120px 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.product-premium-gallery {
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    border-radius: 40px;
    overflow: hidden;
}
.product-premium-gallery img {
    width: 100%;
    max-width: 600px;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}
.product-premium-gallery:hover img {
    transform: scale(1.08) rotate(-2deg);
}
.product-premium-info {
    padding-top: 2rem;
}
.sticky-mobile-cart {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 992px) {
    .product-premium-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 100px;
    }
    .brand-main-title {
        font-size: 2.8rem !important;
    }
    .sticky-mobile-cart {
        position: static !important;
        margin-top: 1.5rem;
    }
}

/* Floating Sticky Buy Bar for Mobile (above bottom dock) */
.mobile-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 92px; /* Just above the bottom dock (which is at bottom: 22px) */
        left: 50%;
        transform: translate(-50%, 150%);
        width: 90%;
        max-width: 400px;
        height: 60px;
        background: rgba(12, 12, 16, 0.94);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 35px;
        padding: 6px 14px;
        align-items: center;
        gap: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.85), 0 0 25px rgba(139, 92, 246, 0.25);
        z-index: 99998;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }
    
    .mobile-sticky-bar.visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-sticky-bar img {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        object-fit: cover;
        background: #fff;
        padding: 2px;
        flex-shrink: 0;
    }
    
    .sticky-bar-text {
        flex: 1;
        min-width: 0;
    }
    
    .sticky-bar-name {
        font-size: 0.82rem;
        font-weight: 700;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .sticky-bar-price {
        font-size: 0.88rem;
        font-weight: 800;
        color: var(--accent, #8b5cf6);
    }
    
    .sticky-bar-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        font-weight: 800;
        border-radius: 20px;
        white-space: nowrap;
        background: var(--accent, #8b5cf6);
        color: #fff;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }
}

/* Hide Old Header & Navs globally */
.main-header, .bottom-nav { display: none !important; }

/* Global mobile overrides for inline paddings and typography */
@media (max-width: 768px) {
    section[style*="padding: 6rem"] {
        padding: 3rem 5% !important;
        margin-top: 2rem !important;
    }
    .section-title {
        font-size: 2.2rem !important;
    }
    .hero-video-wrapper {
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 20px rgba(139, 92, 246, 0.3) !important;
    }
    .products-section {
        padding-top: 2rem !important;
    }
}
