:root {
    --color-bg: #03030b;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-primary: #ff0055;
    --color-secondary: #00e5ff;
    --color-accent: #7000ff;
    --color-text: #ffffff;
    --color-text-muted: #a0a0ba;

    --font-main: 'Outfit', sans-serif;

    --spacing-container: 2rem;
    --border-radius: 20px;

    --shadow-glow: 0 0 20px rgba(255, 0, 85, 0.3);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.2;
}

body::before {
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

body::after {
    background: var(--color-secondary);
    bottom: -100px;
    right: -100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #fff 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.highlight {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2), inset 0 0 20px rgba(255, 0, 85, 0.1);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    z-index: -1;
    transition: 0.4s;
}

.btn--primary:hover {
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.6);
    transform: translateY(-3px) scale(1.02);
    border-color: transparent;
}

.btn--outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn--buy {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), #ff5500);
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.3);
    border-radius: 50px;
    color: white;
    transition: 0.3s;
}

.btn--buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
    background: linear-gradient(135deg, #ff5500, var(--color-primary));
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: 0.4s;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(3, 3, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
}

.nav {
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    border: var(--glass-border);
    backdrop-filter: blur(10px);
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--color-secondary);
}

.nav__link:hover {
    color: white;
}

.nav__link:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.15);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 3, 11, 0.4) 0%, rgba(3, 3, 11, 0.95) 90%);
    z-index: -1;
}

.hero__content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero__title {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 1;
}

.hero__subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.5s, bounce 2s infinite 2s;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.arrow-down {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-secondary), transparent);
}

/* Catalog */
.section {
    padding: 8rem 0;
    position: relative;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 229, 255, 0.1) 100%);
    opacity: 0;
    transition: 0.3s ease-out;
    z-index: 1;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 229, 255, 0.1);
}

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

.card__image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover .card__image {
    transform: scale(1.1);
}

.card__content {
    padding: 1.2rem;
    position: relative;
    z-index: 2;
}

.card__title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: white;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: auto;
}

.card__price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* Benefits */
.benefits {
    background: linear-gradient(180deg, transparent 0%, rgba(112, 0, 255, 0.05) 50%, transparent 100%);
    position: relative;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    text-align: center;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 2.5rem;
    border-radius: var(--border-radius);
    border: var(--glass-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    display: inline-block;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 40px var(--color-primary));
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    width: 100%;
    color: white;
}

.benefit-item p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Contacts */
.contacts__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 6rem;
    border-radius: 40px;
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.contacts__container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.contacts__info h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contacts__info h2::after {
    margin: 1.5rem 0 0;
}

.contacts__list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.3rem;
}

.contacts__list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form__group {
    margin-bottom: 2.5rem;
}

.form__input {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    font-family: var(--font-main);
}

.form__input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

/* Footer */
.footer {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    background: linear-gradient(0deg, #020205 0%, transparent 100%);
    position: relative;
    z-index: 10;
}

.logo--small {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    display: inline-block;
    opacity: 0.8;
}

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Noise Texture Overlay */
/* body::after ruleset removed as it was empty and causing lints */

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, rgba(112, 0, 255, 0.1) 0%, rgba(3, 3, 11, 0.8) 50%, rgba(112, 0, 255, 0.1) 100%);
    border-top: 1px solid rgba(112, 0, 255, 0.3);
    border-bottom: 1px solid rgba(112, 0, 255, 0.3);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.promo-banner__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

.promo-icon {
    font-size: 1.4rem;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Cart Styles */
.cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
}

.cart-btn:hover {
    transform: scale(1.1);
    background: #ff2266;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg);
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal__content {
    width: 100%;
    max-width: 450px;
    background: var(--color-bg);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: 0.3s;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal.active .cart-modal__content {
    transform: translateX(0);
}

.cart-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-modal__body {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1rem;
    border-radius: 12px;
}

.cart-item__info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cart-item__price {
    color: var(--color-secondary);
    font-weight: 700;
}

.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-mini {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    cursor: pointer;
}

.cart-modal__footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-form input {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-main);
}

/* Mobile */
@media (max-width: 900px) {
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .header {
        padding: 1rem 0;
    }

    .nav {
        display: none;
    }

    .hero__title {
        font-size: clamp(3rem, 10vw, 5rem);
        letter-spacing: -1px;
    }

    .contacts__container {
        grid-template-columns: 1fr;
        padding: 2rem;
        border-radius: 20px;
    }

    .contacts__info,
    .form {
        padding: 1.5rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }
}
}