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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary: 255, 0, 0;
    --secondary: 187, 134, 252;
    --accent: 255, 50, 50;
    --neon-blue: #00b4ff;
    --neon-red: #800000;
    --white: #ffffff;
    --gray: #888888;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, rgb(var(--primary)), rgb(var(--secondary)), rgb(var(--accent))) 1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #ff3232;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.logo-text:hover {
    transform: translateY(-2px) scale(1.02);
    letter-spacing: 6px;
}

.logo-text::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff3232;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text:hover::before {
    width: 100%;
}

.logo-text::after {
    content: 'URBAN';
    position: absolute;
    top: 0;
    left: 0;
    color: #ff3232;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(10px);
}

.logo-text:hover::after {
    opacity: 0.5;
    transform: translateY(-30px);
    filter: blur(20px);
}

.accent {
    background: linear-gradient(to right, #ff3232, #ff3232, #ff3232);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(128, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(to right, #800000, #800000, #800000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(var(--primary), 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #800000, #800000, #800000);

}

.nav-link:hover::after {
    width: 100%;
}

/* Корзина */
.cart-icon-wrapper {
    position: relative;
    margin-left: 30px;
    padding: 10px;
    margin-right: -10px;
}

.cart-button {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 50, 50, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.cart-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.cart-button:hover::before {
    transform: scale(1);
}

.cart-button:hover {
    transform: translateY(-2px);
    border-color: #ff3232;
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.4),
    0 0 40px rgba(255, 50, 50, 0.2);
}

.cart-icon {
    width: 24px;
    height: 24px;
    color: #ff3232;
    transition: all 0.3s ease;
    z-index: 1;
}

.cart-button:hover .cart-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 50, 50, 0.8));
}

.cart-count {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff0040, #ff0080);
    color: white;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 0, 64, 0.5);
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    border: 2px solid #0a0a0a;
}

.cart-count:not(:empty) {
    transform: scale(1);
}

.cart-count:empty {
    display: none;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cart-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ff3232;
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cart-button:active {
    transform: scale(0.95);
}

.cart-button.pulse-animation {
    animation: cart-pulse 0.6s ease-out;
}

@keyframes cart-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 50, 50, 0.4),
        0 0 40px rgba(255, 50, 50, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 50, 50, 0.6),
        0 0 60px rgba(255, 50, 50, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 50, 50, 0.4),
        0 0 40px rgba(255, 50, 50, 0.2);
    }
}

/* Главный экран */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary), 0.1) 0%, rgba(var(--secondary), 0.1) 50%, rgba(var(--accent), 0.1) 100%);
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch1 2.5s infinite;
    color: var(--neon-red);
    z-index: -1;
}

.glitch::after {
    animation: glitch2 2.5s infinite;
    background: linear-gradient(to right, #800000, #800000, #800000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(20% 0 60% 0); }
    40% { clip-path: inset(60% 0 20% 0); }
    60% { clip-path: inset(40% 0 40% 0); }
    80% { clip-path: inset(80% 0 10% 0); }
}

@keyframes glitch2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(30% 0 50% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 30% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, -2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(2px, 2px); }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 40px;
}

.cta-button, .btn-secondary {
    padding: 24px 48px;
    background: transparent;
    color: #ff3232;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid #ff3232;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(255, 50, 50, 0.3);
}

.cta-button:hover, .btn-secondary:hover {
    background: rgba(255, 50, 50, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.5), 0 0 25px rgba(255, 50, 50, 0.3);
}

.floating-vape {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background-color: #000000; /* Цвет фона круга - измените здесь */
    background-image: url('src/logo.jpg');
    background-size: contain;
    background-position: center center; /* Измените эти значения для регулировки позиции */
    background-repeat: no-repeat;
    box-shadow: 0 0 50px rgba(255, 50, 50, 0.5), 0 0 100px rgba(255, 50, 50, 0.3);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-image {
    position: relative;
    animation: levitate 6s ease-in-out infinite;
}

@keyframes levitate {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.02);
    }
    50% {
        transform: translateY(-10px) scale(1.01);
    }
    75% {
        transform: translateY(-30px) scale(1.03);
    }
}

/* Продукты */
.products {
    padding: 100px 0;
    background: var(--secondary-black);
}

/* Категории продуктов */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid #ff3232;
    color: #ff3232;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}


.category-btn:hover {
    background: rgba(255, 50, 50, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.5), 0 0 25px rgba(255, 50, 50, 0.3);
}

.category-btn.active {
    background: rgba(255, 50, 50, 0.1);
    border: 2px solid #ff3232;
    color: #ff3232;
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.5), 0 0 25px rgba(255, 50, 50, 0.3);
}

.category-icon {
    font-size: 20px;
}

/* Фильтры продуктов */
.product-filters {
    margin-bottom: 20px;
    min-height: 50px;
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeIn 0.3s ease;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 50, 50, 0.3);
    color: #ff3232;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: rgba(255, 50, 50, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.5), 0 0 25px rgba(255, 50, 50, 0.3);
}

.filter-btn.active {
    background: rgba(255, 50, 50, 0.1);
    color: #ff3232;
    border-color: #ff3232;
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.5), 0 0 25px rgba(255, 50, 50, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Удалены старые стили карточек для избежания конфликтов */

/* Обновленные стили карточек продуктов - High Tech стиль */
.product-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #151515 100%);
    border: 1px solid rgba(255, 50, 50, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
    isolation: isolate;
}

/* Создаем контейнер для свечения с правильным обрезанием */
.product-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg,
    rgba(255, 50, 50, 0.8),
    rgba(0, 180, 255, 0.8),
    rgba(187, 134, 252, 0.8)
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

/* Внутренний градиент для эффекта глубины */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0a0a0a 0%, #151515 100%);
    border-radius: 19px;
    z-index: -1;
}

/* Дополнительный элемент для анимированного блика */
.product-card .shimmer-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 50, 50, 0.1) 50%,
            transparent 70%
    );
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 50, 50, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.product-card:hover .shimmer-effect {
    transform: rotate(45deg) translateY(100%);
    opacity: 1;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.9), rgba(0, 180, 255, 0.9));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 50, 50, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-badge.hot {
    background: linear-gradient(135deg, #ff0040, #ff5a5f);
    box-shadow: 0 4px 12px rgba(255, 0, 64, 0.4);
}

/* Product Flavors */
.product-flavors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.flavor-tag {
    padding: 4px 12px;
    background: rgba(var(--primary), 0.1);
    color: #ff3232;
    font-size: 12px;
    border-radius: 15px;
    border: 1px solid rgba(var(--primary), 0.3);
}

.product-card.featured {
    border-color: var(--neon-red);
}

.product-card.featured:hover::before {
    background: linear-gradient(135deg,
    rgba(255, 0, 64, 0.5),
    rgba(255, 90, 95, 0.5),
    rgba(255, 0, 64, 0.5)
    );
}

/* Product Image with 3D effect */
.product-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    position: relative;
    perspective: 1000px;
}

.product-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(255, 50, 50, 0.4) 0%,
            rgba(0, 180, 255, 0.3) 25%,
            rgba(187, 134, 252, 0.2) 50%,
            transparent 70%
    );
    border-radius: 50%;
    filter: blur(40px);
    position: absolute;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.product-3d-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 15px;
    box-shadow:
            20px 20px 60px #080808,
            -20px -20px 60px #1c1c1c,
            inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-3d-effect img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.3));
    transition: all 0.3s ease;
    padding: 10px;
}

.product-card:hover .product-3d-effect img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 50, 50, 0.5));
}

.product-card:hover .product-3d-effect {
    transform: translate(-50%, -50%) rotateY(15deg) rotateX(-10deg);
    box-shadow:
            25px 25px 75px #080808,
            -25px -25px 75px #1c1c1c,
            inset 1px 1px 3px rgba(255, 255, 255, 0.15);
}

/* Product Name and Model */
.product-name {
    font-size: 28px;
    margin-bottom: 5px;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #cccccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-model {
    font-size: 18px;
    color: #ff3232;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--secondary)));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.product-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #800000, #800000, #800000);
    opacity: 0.3;
}

.product-desc {
    color: #999;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Flavor Selector */
.flavor-selector {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 50, 50, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.flavor-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flavor-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.flavor-options.scrollable {
    max-height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
    position: relative;
}

.flavor-options.scrollable::-webkit-scrollbar {
    width: 4px;
}

.flavor-options.scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.flavor-options.scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 50, 50, 0.3);
    border-radius: 2px;
}

.flavor-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.flavor-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 50, 50, 0.1);
    transition: width 0.3s ease;
}

.flavor-option:hover::before {
    width: 100%;
}

.flavor-option:hover {
    border-color: rgba(255, 50, 50, 0.3);
}

.flavor-option.active {
    background: rgba(255, 50, 50, 0.1);
    border-color: rgba(255, 50, 50, 0.5);
}

.flavor-option.active::after {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    color: #ff3232;
    font-weight: bold;
}

.flavor-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.flavor-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Updated Product Button */
.product-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.1), rgba(0, 180, 255, 0.1));
    color: #ff3232;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 50, 50, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

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

.product-button:hover {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.2), rgba(0, 180, 255, 0.2));
    transform: translateY(-2px);
    border-color: rgba(255, 50, 50, 0.6);
    box-shadow: 0 8px 25px rgba(255, 50, 50, 0.3),
    0 0 50px rgba(255, 50, 50, 0.1);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-button:hover .button-icon {
    transform: translateX(5px);
}

.product-button:active {
    transform: scale(0.98);
}

.product-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 50, 50, 0.2);
}

/* О нас */
.about {
    padding: 100px 0;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 50, 50, 0.5), transparent);
}

/* Статистика */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 50, 50, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 50, 50, 0.05);
    border-color: rgba(255, 50, 50, 0.3);
    box-shadow: 0 20px 40px rgba(255, 50, 50, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(to right, #800000, #800000, #800000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.3));
}

/* Основная информация */
.about-info {
    text-align: center;
}

.about-main-text {
    font-size: 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: 300;
}

/* Фичи */
.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 80px;
    position: relative;
}

/* Для планшетов - 2 колонки */
@media (max-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Для мобильных - 1 колонка */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.about-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 50, 50, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Добавляем цифровую сетку для high-tech эффекта */
.about-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(rgba(255, 50, 50, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 50, 50, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-feature-card:hover::after {
    opacity: 1;
    animation: grid-flow 20s linear infinite;
}

@keyframes grid-flow {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 20px, 20px 20px; }
}

.about-feature-card {
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid transparent;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #00ffff);
    background-size: 400% 400%;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.05) 0%, rgba(0, 180, 255, 0.05) 100%);
    border-color: rgba(255, 50, 50, 0.5);
    box-shadow:
            0 20px 40px rgba(255, 50, 50, 0.2),
            0 0 80px rgba(255, 50, 50, 0.1),
            inset 0 0 20px rgba(255, 50, 50, 0.05);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: conic-gradient(from 180deg at 50% 50%, #00ffff 0deg, #ff00ff 120deg, #00ff00 240deg, #00ffff 360deg);
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    animation: rotate 8s linear infinite;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #0a0a0a;
    border-radius: 50%;
    z-index: 1;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 50%, #00ffff 0deg, #ff00ff 120deg, #00ff00 240deg, #00ffff 360deg);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-icon-wrapper .feature-icon {
    font-size: 40px;
    filter: none;
    position: relative;
    z-index: 2;
    display: none;
}

.feature-icon-svg {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2;
    fill: #ff3232;
    filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.5));
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-icon-svg {
    fill: #00ffff;
    filter: drop-shadow(0 0 20px rgba(255, 50, 50, 0.8));
    transform: scale(1.1);
}

.about-feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.about-feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff3232, transparent);
}

.about-feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 20px;
}

/* CTA секция */
.about-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.about-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Контакты - Telegram секция */
.contact {
    padding: 100px 0;
    background: var(--secondary-black);
}

.telegram-section {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
}

.telegram-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
    width: 400px;
    justify-content: center;
}

.telegram-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.telegram-button:hover::before {
    width: 300%;
    height: 300%;
}

.telegram-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.telegram-button:hover::after {
    transform: translateX(100%);
}

.telegram-button:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 50, 50, 0.3);
    background: rgba(255, 50, 50, 0.1);
    box-shadow: 0 20px 40px rgba(255, 50, 50, 0.2),
    0 0 80px rgba(255, 50, 50, 0.1),
    inset 0 0 20px rgba(255, 50, 50, 0.05);
}

.telegram-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}

.telegram-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.telegram-icon path:first-child {
    fill: #ff3232;
    transition: all 0.3s ease;
}

.telegram-icon path:last-child {
    fill: var(--primary-black);
}

.telegram-button:hover .telegram-icon {
    transform: scale(1.1) rotate(15deg);
    filter: drop-shadow(0 0 20px rgba(255, 50, 50, 0.6));
}

.telegram-button:hover .telegram-icon path:first-child {
    fill: #ff3232;
}

.telegram-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 50, 50, 0.4);
    animation: telegram-pulse 2s ease-out infinite;
}

@keyframes telegram-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.telegram-button-text {
    font-weight: 600;
    white-space: nowrap;
}

.telegram-arrow {
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.telegram-button:hover .telegram-arrow {
    transform: translateX(8px);
    opacity: 1;
}

.telegram-button.admin-button {
    margin-bottom: 50px;
}

.telegram-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 50, 50, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 50, 50, 0.05);
    border-color: rgba(255, 50, 50, 0.3);
    box-shadow: 0 10px 30px rgba(255, 50, 50, 0.1);
}

.benefit-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.3));
}

.benefit-item span:last-child {
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Футер */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.warning {
    color: var(--neon-red);
    margin-top: 10px;
    font-size: 14px;
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 50, 50, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: #ff3232;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    border-color: #ff3232;
    transform: scale(1.05);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Адаптивность - планшеты */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .floating-vape {
        width: 350px;
        height: 350px;
    }
}

/* Адаптивность - мобильные устройства */
@media (max-width: 768px) {
    /* Навигация */
    .navbar {
        padding: 15px 0;
    }

    .logo-text {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(255, 50, 50, 0.3);
    }

    .nav-links.active {
        transform: translateX(0);
    }

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

    .cart-icon-wrapper {
        margin-left: 15px;
    }

    .cart-button {
        width: 45px;
        height: 45px;
    }

    /* Главный экран */
    .hero {
        margin-top: 60px;
        min-height: 100vh;
        padding: 40px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cta-button, .btn-secondary {
        padding: 18px 36px;
        font-size: 14px;
    }

    .floating-vape {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    /* Продукты */
    .products {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .product-categories {
        gap: 10px;
        margin-bottom: 30px;
    }

    .category-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .category-icon {
        font-size: 16px;
    }

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

    .product-card {
        padding: 25px;
    }

    .product-image {
        width: 180px;
        height: 180px;
    }

    .product-3d-effect {
        width: 130px;
        height: 130px;
    }

    .product-3d-effect img {
        width: 100px;
    }

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

    .product-model {
        font-size: 16px;
    }

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

    .flavor-selector {
        padding: 15px;
        margin-bottom: 20px;
    }

    .flavor-options {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .flavor-options.scrollable {
        max-height: 150px;
        padding-right: 3px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .flavor-option {
        padding: 8px 10px;
        gap: 10px;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .flavor-option:hover {
        transform: none;
    }

    .flavor-name {
        font-size: 11px;
        max-width: 100%;
    }

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

    /* О нас */
    .about {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px 0;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-icon {
        font-size: 24px;
    }

    .about-main-text {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-feature-card {
        padding: 25px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-icon-wrapper .feature-icon {
        font-size: 30px;
    }

    .about-feature-card h3 {
        font-size: 18px;
    }

    .about-feature-card p {
        font-size: 13px;
    }

    /* Контакты */
    .contact {
        padding: 60px 0;
    }

    .telegram-text {
        font-size: 20px;
    }

    .telegram-button {
        padding: 18px 30px;
        font-size: 14px;
        gap: 12px;
        width: 100%;
        max-width: 350px;
    }

    .telegram-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .telegram-icon {
        width: 35px;
        height: 35px;
    }

    .telegram-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-icon {
        font-size: 24px;
    }

    /* Футер */
    .footer {
        padding: 30px 0;
    }

    .warning {
        font-size: 12px;
    }
}

/* Адаптивность - маленькие мобильные устройства */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 20px;
    }

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

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

    .floating-vape {
        width: 240px;
        height: 240px;
    }

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

    .product-categories {
        flex-direction: column;
        width: 100%;
    }

    .category-btn {
        width: 100%;
    }

    .product-card {
        padding: 20px;
    }

    .product-image {
        width: 160px;
        height: 160px;
    }

    .product-3d-effect {
        width: 120px;
        height: 120px;
    }

    .product-3d-effect img {
        width: 90px;
        animation: float-mobile 3s ease-in-out infinite;
    }

    @keyframes float-mobile {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    .product-name {
        font-size: 22px;
    }

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

    .product-button {
        padding: 12px 16px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .telegram-button {
        padding: 16px 24px;
        font-size: 13px;
        gap: 10px;
        width: 100%;
        max-width: 300px;
    }

    .telegram-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .telegram-icon {
        width: 30px;
        height: 30px;
    }

    .telegram-arrow {
        font-size: 18px;
    }
}

/* Адаптивность - очень маленькие устройства */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    .floating-vape {
        width: 200px;
        height: 200px;
    }

    .product-image {
        width: 140px;
        height: 140px;
    }

    .product-3d-effect {
        width: 100px;
        height: 100px;
    }

    .product-3d-effect img {
        width: 80px;
        animation: float-mobile 3s ease-in-out infinite;
    }

    .telegram-button {
        padding: 14px 20px;
        font-size: 12px;
        gap: 8px;
        width: 100%;
        max-width: 280px;
    }

    .telegram-icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .telegram-icon {
        width: 28px;
        height: 28px;
    }

    .telegram-arrow {
        font-size: 16px;
    }

    .telegram-button-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* Состояние "Нет в наличии" */
.product-card.out-of-stock {
    opacity: 0.7;
    position: relative;
}

.product-card.out-of-stock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    border: 2px solid #ff0000;
}

.product-card.out-of-stock .product-button {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card.out-of-stock .product-button:hover {
    transform: none;
    box-shadow: none;
}

.product-card.out-of-stock .product-button .button-text {
    text-decoration: line-through;
}

.flavor-option.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(100, 100, 100, 0.1);
}

.flavor-option.out-of-stock .flavor-name {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.flavor-option.out-of-stock::after {
    content: 'Нет';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    color: #ff4444;
    font-weight: bold;
}

/* Адаптивность для бейджа "Нет в наличии" */
@media (max-width: 768px) {
    .out-of-stock-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* Оптимизация для сенсорных устройств */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }

    .product-3d-effect {
        transform: translate(-50%, -50%) !important;
    }

    .product-card:hover .product-3d-effect img {
        transform: none;
        filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.3));
    }

    .cta-button:hover,
    .btn-secondary:hover,
    .product-button:hover,
    .category-btn:hover,
    .filter-btn:hover {
        transform: none;
    }

    .nav-link::after,
    .logo-text::before {
        display: none;
    }
}
