/*
Theme Name: Ecommerce Acelerator
Description: Custom theme tailored for WebEcommerceAcelerator migrating from GSAP/Tailwind HTML.
Author: Assistant
Version: 1.0.0
*/

html,
body {
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
    overflow-x: hidden !important;
}

body {
    background-color: #0A0F0D;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 150, 136, 0.08), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 181, 0.05), transparent 50%);
    color: #E6FDFB;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
.font-secular {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.glass-panel {
    background: rgba(17, 24, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(121, 255, 222, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 240, 181, 0.02),
        0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #00F0B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(0, 240, 181, 0.4);
    border: 1px solid #79FFDE;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 240, 181, 0.8), inset 0 0 10px rgba(0, 240, 181, 0.4);
    transform: scale(1.02);
    background-color: #00F0B5;
    color: #0A0F0D;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    will-change: transform;
}

/* CUSTOM NEON CURSOR */
*,
*::before,
*::after {
    cursor: none !important;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #00F0B5;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
    mix-blend-mode: difference;
}

.custom-cursor.expand {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 240, 181, 0.2);
    border-color: rgba(0, 240, 181, 0.4);
    backdrop-filter: blur(2px);
}

/* PREMIUM SERVICES STYLES */
:root {
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --logo-2: #00F0B5;
    --text-light-muted: rgba(255, 255, 255, 0.6);
}

.services-premium {
    position: relative;
    background: transparent;
    overflow: visible;
    padding: 120px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: none;
}

.services-premium__wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-premium__bg {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    margin-bottom: -100vh;
}

.services-premium__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.6) contrast(1.05);
    transform: scale(1);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.services-premium__bg-img.is-active {
    opacity: 1;
    transform: scale(1);
}

.services-premium__content {
    position: relative;
    z-index: 30;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 24px;
}

.services-premium__header {
    margin-bottom: 120px;
    text-align: center;
    z-index: 20;
    position: relative;
}

.services-premium__list {
    display: flex;
    flex-direction: column;
}

.service-large {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 16px;
    perspective: 1000px;
}

@media (min-width: 900px) {
    .service-large {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 50px 0;
    }

    .service-large__left {
        flex: 0 0 45%;
        padding-right: 40px;
    }

    .service-large__right-content {
        flex: 0 0 50%;
    }
}

.service-large:hover {
    padding-left: 15px;
    border-bottom-color: var(--logo-2);
}

.service-large__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.5;
    transition: color 0.4s var(--ease);
    letter-spacing: -0.03em;
    margin: 0;
    transform-style: preserve-3d;
}

.service-large__desc {
    max-width: 450px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light-muted);
    opacity: 0.5;
    transition: all 0.4s var(--ease);
    transform: translateY(10px);
}

@media (max-width: 899px) {
    .service-large__desc {
        max-width: 100%;
    }
}

.service-large:hover .service-large__desc {
    opacity: 1;
    color: #fff;
    transform: translateY(0) translateX(-10px);
}

.service-large__num {
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    color: var(--logo-2);
    margin-bottom: 8px;
    display: block;
    opacity: 0.7;
    font-weight: 700;
}

.service-large__tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
}

.service-large:hover .service-large__tags {
    opacity: 1;
    transform: translateY(0);
}

.service-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--logo-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

/* BACKGROUND BLOBS (From AdsNext) */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.65;
    animation: float-blobs 10s infinite alternate ease-in-out;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    max-width: 450px;
    max-height: 450px;
    background: var(--logo-2);
    top: -5%;
    left: -5%;
}

.blob-2 {
    width: 55vw;
    height: 55vw;
    max-width: 500px;
    max-height: 500px;
    background: var(--logo-2);
    bottom: -10%;
    right: -5%;
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes float-blobs {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(25vw, 15vw, 0) scale(1.4); }
}

@keyframes fade-in-down {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
