/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
    /* Color Palette */
    --color-primary: #00e5ff;
    --color-primary-dark: #006dff;
    --color-secondary: #ff2bd6;
    --color-bg-main: #070b18;
    --color-bg-gradient-start: #0b1022;
    --color-bg-gradient-end: #101a3d;
    --color-bg-card: rgba(16, 24, 42, 0.86);
    --color-text-primary: #f4f7ff;
    --color-text-secondary: #9ba8c7;
    --color-border: rgba(0, 229, 255, 0.22);

    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 8px 24px rgba(0, 229, 255, 0.12);
    --shadow-md: 0 14px 36px rgba(0, 109, 255, 0.18);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 36px rgba(0, 229, 255, 0.16);
}

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    background:
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 43, 214, 0.035) 1px, transparent 1px),
        linear-gradient(145deg, #070b18 0%, #0b1022 46%, #111a36 100%);
    background-size: 72px 72px, 72px 72px, auto;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

button:active,
.btn-primary:active,
.btn-cta:active {
    transform: scale(0.98);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 11, 24, 0.82);
    backdrop-filter: blur(18px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header-content {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.logo img {
    width: 60px;
    height: auto;
}

.logo svg {
    color: var(--color-primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.search-input {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    font-size: 0.9rem;
    width: 200px;
    transition: var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    width: 250px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

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

/* ==========================================
   BUTTONS & LINKS
   ========================================== */
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary,
.btn-cta,
.btn-product,
.btn-buy-large,
.btn-hayati,
.btn-vozol,
.btn-spaceman,
.btn-load-more,
.btn-subscribe,
.show-more-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: var(--transition-normal);
    cursor: pointer;
    text-align: center;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #06101f;
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(0, 229, 255, 0.06);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 22px;
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.16);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-hero-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 52%, var(--color-secondary) 100%);
    color: #06101f;
    font-size: 16px;
    box-shadow: 0 0 26px rgba(0, 229, 255, 0.28);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 229, 255, 0.32), 0 0 30px rgba(255, 43, 214, 0.22);
}

.btn-hero-secondary {
    padding: 14px 32px;
    background: rgba(16, 24, 42, 0.58);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 16px;
    transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
    background: rgba(0, 229, 255, 0.14);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #06101f;
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.24);
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 28px rgba(255, 43, 214, 0.24);
}

.btn-product {
    padding: 10px 20px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-product:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #06101f;
}

.btn-buy-large {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    font-size: 18px;
}

.btn-buy-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-hayati {
    background: linear-gradient(135deg, #ffb6c1 0%, #dda0dd 100%);
    color: white;
}

.btn-hayati:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.5);
}

.btn-vozol {
    background: var(--color-primary);
    color: white;
    padding: 12px 30px;
}

.btn-vozol:hover {
    background: var(--color-primary-dark);
}

.btn-spaceman {
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
    color: white;
}

.btn-spaceman:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.5);
}

/* Nav Links Styling */
.nav-link {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    padding: 5px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-md);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    margin-top: 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(0, 229, 255, 0.10) 0%, transparent 32%),
        linear-gradient(245deg, rgba(255, 43, 214, 0.10) 0%, transparent 34%),
        linear-gradient(180deg, var(--color-bg-gradient-start) 0%, var(--color-bg-main) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 43, 214, 0.06) 1px, transparent 1px);
    background-size: 96px 96px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: var(--spacing-xxl);
    padding: var(--spacing-xxl) 0;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.10);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    animation: pulseBadge 3s infinite;
    box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.08);
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.35);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

.hero-badge .icon {
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.hero-title {
    font-size: 5rem;
    font-weight: var(--font-weight-bold);
    line-height: 0.95;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #f4f7ff 0%, var(--color-primary) 42%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0;
    text-shadow: 0 0 34px rgba(0, 229, 255, 0.18);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
    max-width: 50px;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.18) 0%, rgba(255, 43, 214, 0.10) 100%);
    z-index: -1;
    filter: blur(50px);
}

.hero-right img {
    width: 110%;
    max-width: none;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    filter: drop-shadow(20px 40px 60px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 28px rgba(0, 229, 255, 0.14));
    transition: var(--transition-slow);
}

.hero-right:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: rgba(0, 229, 255, 0.08);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(0, 229, 255, 0.28);
    transition: var(--transition-normal);
}

.tag:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.24) 0%, rgba(255, 43, 214, 0.18) 100%);
    color: white;
    transform: translateY(-2px);
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.brand-icon:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.brand-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ==========================================
   NEW ITEMS / PRODUCTS SECTION
   ========================================== */
.new-items {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-gradient-start) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.product-card {
    background: linear-gradient(180deg, rgba(16, 24, 42, 0.92) 0%, rgba(9, 14, 29, 0.96) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(14px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 229, 255, 0.48);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: #06101f;
    z-index: 10;
    text-transform: uppercase;
}

.card-tag {
    display: inline-block;
    background: rgba(0, 229, 255, 0.10);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-number {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    z-index: 10;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(0, 229, 255, 0.14) 0%, rgba(255, 43, 214, 0.12) 100%),
        #0b1022;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: var(--transition-slow);
}

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

.product-info {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(0, 229, 255, 0.14);
}

.product-name {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.product-price {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-bottom: 4px;
}

.product-price span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-normal);
    margin-left: var(--spacing-xs);
}

.product-stock {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.load-more-wrapper {
    text-align: center;
}

.btn-load-more {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-load-more:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Header & Actions */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.section-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.section-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.filter-btn {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 24px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    transition: var(--transition-normal);
    text-decoration: none;
}

.filter-btn:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #06101f;
    box-shadow: var(--shadow-sm);
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.sellers-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.seller-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.seller-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.seller-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #00e5ff 0%, #006dff 100%);
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-info h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

.seller-info p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ==========================================
   JOIN COMMUNITY SECTION
   ========================================== */
.join-community {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.join-community .section-title {
    color: white;
}

.community-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.btn-subscribe {
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    transition: var(--transition-normal);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   AGE VERIFICATION MODAL
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.modal-content {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: white;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content h2 {
    margin-bottom: var(--spacing-lg);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.modal-content button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
}

#yesBtn {
    background: white;
    color: var(--color-primary);
}

#yesBtn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#noBtn {
    background: var(--color-secondary);
    color: white;
}

#noBtn:hover {
    background: rgba(255, 63, 129, 0.8);
}

/* ==========================================
   WARNING BANNER
   ========================================== */
.warn {
    font-size: 12px;
    background: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    display: block;
    line-height: 1.2;
}

.header.scrolled .warn,
.header.menu-open .warn {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

/* ==========================================
   HEADER UPDATES
   ========================================== */
.header-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

/* ==========================================
   FEATURED SECTION (MerryMi)
   ========================================== */
.featured {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-main);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
}

.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    cursor: pointer;
    grid-row: span 2;
}

.featured-card.large,
.featured-card.medium {
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
}

.card-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.card-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.card-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* ==========================================
   SAME SECTION (Title Sections)
   ========================================== */
.same-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.same-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.same-header .section-title {
    margin-bottom: 0;
}

.subtitle {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ==========================================
   SMALL PRODUCTS SECTION
   ========================================== */
.small-products {
    padding: var(--spacing-xl) 0;
}

.small-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.small-product {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    cursor: pointer;
}

.small-product:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.small-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.small-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.small-product:hover .small-product-image img {
    transform: scale(1.1);
}

.small-product-label {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background: rgba(0, 229, 255, 0.90);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: white;
}

.small-product-info {
    padding: var(--spacing-md);
    text-align: center;
}

.small-product-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.small-product-buchow {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

/* ==========================================
   PRODUCT DETAIL SECTION (Blur)
   ========================================== */
.product-detail {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-gradient-start) 100%);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.breadcrumb {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

.detail-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
}

.detail-main-image {
    width: 100%;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.detail-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.detail-thumbnails img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-fast);
}

.detail-thumbnails img:hover {
    border-color: var(--color-primary);
}

.detail-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
}

.rating-text {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.detail-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.detail-specs {
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
}

.spec-value {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.btn-buy-large {
    display: block;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
    text-decoration: none;
}

.btn-buy-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.delivery-info {
    display: block;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* ==========================================
   HAYATI SECTION
   ========================================== */
.hayati-section {
    padding: var(--spacing-xxl) 0;
}

.hayati-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.hayati-card {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(221, 160, 221, 0.1) 100%);
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
}

.hayati-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.3);
}

.hayati-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.hayati-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hayati-card:hover .hayati-image img {
    transform: scale(1.1);
}

.hayati-badge {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, #ffb6c1 0%, #dda0dd 100%);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: white;
}

.hayati-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.hayati-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.hayati-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.btn-hayati {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffb6c1 0%, #dda0dd 100%);
    color: white;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    transition: var(--transition-normal);
}

.btn-hayati:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

/* ==========================================
   VOZOL SECTION
   ========================================== */
.vozol-section {
    padding: var(--spacing-xxl) 0;
}

.vozol-wide-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.vozol-wide-item.reversed {
    grid-template-columns: 1fr 1fr;
}

.vozol-wide-item.reversed .vozol-image {
    order: 2;
}

.vozol-wide-item.reversed .vozol-info {
    order: 1;
}

.vozol-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.vozol-tag {
    display: inline-block;
    background: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--spacing-md);
}

.vozol-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.vozol-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.vozol-specs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.vozol-specs span {
    background: var(--color-bg-card);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.btn-vozol {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-vozol:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   SPACEMAN SECTION
   ========================================== */
.spaceman-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.spaceman-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.spaceman-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--spacing-md);
}

.spaceman-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.spaceman-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.spaceman-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.s-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.s-feature .icon {
    font-size: 32px;
}

.s-feature .text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.s-feature .text p {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.spaceman-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.btn-spaceman {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
    color: white;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-spaceman:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.price-tag {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.spaceman-visual {
    position: relative;
}

.spaceman-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.spaceman-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

/* ==========================================
   DESCRIPTION SECTION
   ========================================== */
.description-section {
    padding: var(--spacing-xxl) 0;
}

.section-header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin: var(--spacing-md) auto var(--spacing-xl);
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.description-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: var(--transition-normal);
}

.description-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.description-card h3 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.description-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.description-card.hidden {
    display: none;
}

.show-more-container {
    text-align: center;
}

.show-more-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    position: relative;
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 100px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    padding: 35px 20px;
    padding-top: 20px;
    margin-right: 40px;
}

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 26px;
    gap: 80px;
    padding-bottom: 35px;
    border-bottom: 2px solid gray;
    position: relative;
}

.foot-cont-one {
    display: flex;
    gap: 80px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid gray;

    color: rgb(168, 167, 167);
}

footer svg {
    fill: rgba(255, 255, 255, 0.842);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    width: 40px;
}

.city {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.cont-col {
    display: flex;
    flex-direction: column;
}

.cont-col:first-child {
    color: rgb(168, 167, 167);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 20px;
}

.foot-cont-three p:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.foot-cont-three p {
    position: relative;
    padding-right: 16px;
}

.foot-cont-three p::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    border-bottom: 2px solid gray;
}

/* ==========================================
   FUTURISTIC THEME REFINEMENTS
   ========================================== */
.products,
.products-2,
.description-section {
    background:
        linear-gradient(180deg, rgba(7, 11, 24, 0.96) 0%, rgba(11, 16, 34, 0.98) 100%);
}

.section-title {
    color: var(--color-text-primary);
    text-shadow: 0 0 24px rgba(0, 229, 255, 0.14);
}

.product-title,
.card-title,
.small-product-title,
.hayati-title,
.vozol-title,
.spaceman-title {
    color: var(--color-text-primary);
}

.product-description,
.small-product-buchow,
.hayati-desc,
.description-card p {
    color: var(--color-text-secondary);
}

.description-card {
    background: linear-gradient(180deg, rgba(16, 24, 42, 0.82) 0%, rgba(9, 14, 29, 0.94) 100%);
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.description-card:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: var(--shadow-md);
}

.description-card h3 {
    color: var(--color-primary);
}

.warn {
    background: linear-gradient(90deg, #06101f 0%, #0b2039 50%, #06101f 100%);
    color: var(--color-primary);
    border-bottom: 1px solid rgba(0, 229, 255, 0.28);
}

.mobile-menu {
    background: rgba(7, 11, 24, 0.96);
    border-left: 1px solid var(--color-border);
}

.mobile-nav-link {
    color: var(--color-text-primary);
}

footer {
    background:
        linear-gradient(180deg, #070b18 0%, #030611 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.24);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.38);
}

.footer-cont,
.social,
.copyright {
    border-color: rgba(0, 229, 255, 0.24);
}

.cont-col:first-child,
.copyright {
    color: var(--color-text-secondary);
}

footer a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) and (min-width: 320px) {
    footer {
        align-items: center;
        padding: 40px 40px;
    }

    .vozol-specs {
        flex-direction: column;
    }

    .card-description {
        color: #4f46e5;
    }

    .product-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .warn {
        font-size: 10px !important;
    }

    .footer-logo {
        margin-right: 0;
    }

    .social {
        gap: 0;
    }

    .footer-logo img {
        object-fit: cover;
        width: 70px;
    }

    .footer-cont {
        font-size: 18px;
        flex-direction: column;
    }

    .foot-cont-two {
        padding-top: 35px;
        border-top: 2px solid gray;
    }

    .foot-cont-three {
        flex-direction: column;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-desc {
        font-size: 0.9rem;
    }

    .featured-btns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .featured-btns a {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Laptop & Tablet L (1024px) */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-card.large {
        grid-column: span 2;
    }

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

    .vozol-wide-item,
    .spaceman-card {
        grid-template-columns: 1fr;
    }

    .vozol-wide-item.reversed .vozol-image,
    .vozol-wide-item.reversed .vozol-info {
        order: unset;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {

    .nav-desktop,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-xl) 0;
    }

    .hero-badge {
        justify-content: center;
        margin: 0 auto var(--spacing-md);
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto var(--spacing-xl);
    }

    .hero-right {
        justify-content: center;
    }

    .hero-right img {
        width: 100%;
        transform: none !important;
    }

    .featured-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-lg) !important;
    }

    .small-products-grid,
    .hayati-grid,
    .description-grid,
    .sellers-grid {
        grid-template-columns: 1fr !important;
    }

    .featured-card {
        grid-row: auto !important;
        height: auto !important;
        width: 100% !important;
        aspect-ratio: auto !important;
    }

    .featured-card img {
        height: 300px !important;
        width: 100% !important;
        object-fit: contain !important;
    }

    .card-content {
        position: relative !important;
        background: var(--color-bg-card) !important;
        padding: var(--spacing-md) !important;
    }

    .card-title {
        color: var(--color-text-primary) !important;
    }

    /* Mobile Menu Backdrop */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

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

    .footer-cont {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .foot-cont-two div {
        justify-content: center;
    }

    .spaceman-title {
        font-size: 32px;
    }

    .vozol-wide-item,
    .vozol-wide-item.reversed {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }

    .vozol-wide-item.reversed .vozol-image,
    .vozol-wide-item.reversed .vozol-info {
        order: unset;
    }

    .vozol-specs {
        justify-content: center;
    }

    .spaceman-card {
        grid-template-columns: 1fr;
        padding: var(--spacing-xl) var(--spacing-lg);
        text-align: center;
    }

    .spaceman-features {
        align-items: center;
    }

    .spaceman-actions {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .detail-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-icons {
        gap: var(--spacing-sm);
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-menu {
        width: 100%;
    }
}

/* Extra small mobile (320px+) */
@media (max-width: 375px) {
    :root {
        --font-size-base: 14px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .mobile-actions .btn-primary {
        display: none;
    }
}

/* Mobile Menu Enhanced Styling */
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl);
    gap: var(--spacing-md);
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-primary);
    padding-left: 10px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.mobile-actions .btn-primary,
.mobile-actions .btn-secondary {
    width: 100%;
    padding: 15px;
}

/* ==========================================
   PREMIUM VISUAL REDESIGN OVERRIDES
   Visual layer only: keeps existing HTML/JS hooks intact.
   ========================================== */
:root {
    --color-primary: #16c7b9;
    --color-primary-dark: #0e7c86;
    --color-secondary: #ff7a59;
    --color-accent: #d7b46a;
    --color-bg-main: #f7f4ed;
    --color-bg-gradient-start: #fffdf8;
    --color-bg-gradient-end: #eaf8f6;
    --color-bg-card: rgba(255, 255, 255, 0.76);
    --color-text-primary: #12151c;
    --color-text-secondary: #5f6672;
    --color-border: rgba(18, 21, 28, 0.1);
    --font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --transition-fast: 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-normal: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-slow: 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-sm: 0 10px 28px rgba(20, 24, 32, 0.08);
    --shadow-md: 0 18px 46px rgba(20, 24, 32, 0.12);
    --shadow-lg: 0 30px 80px rgba(20, 24, 32, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--color-text-primary);
    background:
        radial-gradient(circle at 12% 12%, rgba(22, 199, 185, 0.16), transparent 30vw),
        radial-gradient(circle at 88% 8%, rgba(255, 122, 89, 0.14), transparent 28vw),
        radial-gradient(circle at 74% 58%, rgba(215, 180, 106, 0.12), transparent 24vw),
        linear-gradient(180deg, #fffdf8 0%, #f7f4ed 46%, #eef7f4 100%);
    background-attachment: fixed;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(18, 21, 28, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 21, 28, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

.container {
    max-width: 1180px;
    padding-inline: clamp(18px, 4vw, 32px);
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(22, 199, 185, 0.34);
    outline-offset: 4px;
}

.header {
    background: rgba(255, 253, 248, 0.72);
    border-bottom: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 16px 42px rgba(18, 21, 28, 0.08);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.header.scrolled {
    background: rgba(255, 253, 248, 0.88);
}

.warn {
    padding: 9px 14px;
    color: #fffdf8;
    background:
        linear-gradient(90deg, #12151c 0%, #1f3d3d 46%, #12151c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.header-content {
    min-height: 74px;
    padding: 12px 0;
}

.logo {
    width: 54px;
    height: 54px;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.nav-desktop {
    gap: clamp(18px, 3vw, 34px);
}

.nav-link {
    color: rgba(18, 21, 28, 0.68);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

.nav-link::after,
.nav-link.active::after {
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.header-actions {
    gap: 10px;
}

.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary,
.btn-cta,
.btn-product,
.filter-btn,
.btn-load-more,
.show-more-btn,
.modal-content button {
    border-radius: 999px;
    font-weight: 720;
    letter-spacing: 0;
    text-transform: none;
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        background var(--transition-normal),
        border-color var(--transition-normal),
        color var(--transition-normal);
}

.btn-primary,
.btn-hero-primary,
.btn-product:hover,
.filter-btn:hover,
.show-more-btn {
    color: #fffdf8;
    background:
        linear-gradient(135deg, #12151c 0%, #173f42 44%, #16c7b9 100%);
    box-shadow: 0 14px 30px rgba(18, 21, 28, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.btn-primary:hover,
.btn-hero-primary:hover,
.btn-product:hover,
.filter-btn:hover,
.show-more-btn:hover {
    color: #fffdf8;
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(18, 21, 28, 0.22);
}

.btn-secondary,
.btn-hero-secondary,
.btn-product,
.filter-btn {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(18, 21, 28, 0.1);
    box-shadow: 0 10px 24px rgba(18, 21, 28, 0.06);
}

.btn-secondary:hover,
.btn-hero-secondary:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(22, 199, 185, 0.34);
    transform: translateY(-3px);
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 28px;
    font-size: 15px;
}

.hamburger {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 21, 28, 0.1);
    box-shadow: var(--shadow-sm);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    background: rgba(18, 21, 28, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    top: 0;
    right: 0;
    width: min(420px, 88vw);
    height: 100dvh;
    padding-top: 112px;
    background: rgba(255, 253, 248, 0.88);
    border-left: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: -28px 0 70px rgba(18, 21, 28, 0.16);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    transform: translateX(105%);
    transition: transform var(--transition-normal);
}

.mobile-menu.active {
    right: 0;
    transform: translateX(0);
}

.mobile-nav {
    padding: clamp(24px, 6vw, 42px);
}

.mobile-nav-link {
    color: var(--color-text-primary);
    border-bottom: 1px solid rgba(18, 21, 28, 0.08);
    font-size: 1.1rem;
    letter-spacing: 0;
    text-transform: none;
}

.hero {
    min-height: clamp(640px, 86vh, 860px);
    margin-top: 0;
    padding-top: 126px;
    background:
        radial-gradient(circle at 74% 34%, rgba(22, 199, 185, 0.2), transparent 26vw),
        radial-gradient(circle at 28% 22%, rgba(255, 122, 89, 0.14), transparent 24vw),
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(234, 248, 246, 0.4));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 100px clamp(18px, 5vw, 70px) 24px;
    z-index: 0;
    border: 1px solid rgba(18, 21, 28, 0.08);
    border-radius: clamp(28px, 5vw, 54px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32)),
        linear-gradient(120deg, rgba(22, 199, 185, 0.1), rgba(255, 122, 89, 0.08));
    box-shadow: 0 34px 100px rgba(18, 21, 28, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-content {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
    gap: clamp(28px, 4.6vw, 62px);
    padding: clamp(54px, 8vw, 92px) 0 clamp(34px, 5vw, 54px);
}

.hero-left {
    max-width: 680px;
}

.hero-badge {
    padding: 8px 14px;
    color: #173f42;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(22, 199, 185, 0.24);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    animation: premiumBadge 4s ease-in-out infinite;
    letter-spacing: 0;
}

.hero-badge .icon {
    color: var(--color-secondary);
}

.hero-title {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--color-text-primary);
    background: linear-gradient(105deg, #12151c 0%, #173f42 48%, #0e7c86 100%);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0;
    line-height: 0.98;
    text-shadow: none;
    font-size: clamp(3rem, 6vw, 4.75rem);
}

.hero-buttons {
    margin-bottom: clamp(28px, 4vw, 42px);
}

.hero-subtitle {
    color: rgba(18, 21, 28, 0.56);
    letter-spacing: 0.08em;
}

.hero-subtitle::after {
    background: linear-gradient(90deg, rgba(22, 199, 185, 0.5), transparent);
}

.hero-tags {
    gap: 10px;
}

.tag {
    color: #173f42;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 21, 28, 0.08);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(18, 21, 28, 0.06);
}

.tag:hover {
    color: #fffdf8;
    background: linear-gradient(135deg, #173f42, #16c7b9);
    border-color: rgba(22, 199, 185, 0.4);
    transform: translateY(-2px);
}

.hero-right {
    min-height: 460px;
    align-items: center;
    justify-content: center;
    border-radius: clamp(26px, 5vw, 46px);
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.86), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
}

.hero-right::after {
    width: 82%;
    height: 82%;
    background:
        radial-gradient(circle, rgba(22, 199, 185, 0.26) 0%, rgba(255, 122, 89, 0.14) 42%, transparent 70%);
    filter: blur(42px);
}

.hero-right img {
    width: min(112%, 620px);
    filter: drop-shadow(0 34px 42px rgba(18, 21, 28, 0.18));
    animation: productFloat 6s ease-in-out infinite;
}

.hero-right:hover img {
    transform: translateY(-8px) scale(1.03);
}

.products,
.products-2,
.description-section {
    position: relative;
    padding: clamp(72px, 9vw, 118px) 0;
    background: transparent;
}

.products::before,
.description-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.section-header {
    align-items: end;
    gap: 20px;
    margin-bottom: clamp(28px, 5vw, 52px);
}

.section-header .section-title,
.section-title {
    color: var(--color-text-primary);
    text-align: left;
    text-shadow: none;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.section-header-line {
    width: 86px;
    height: 3px;
    margin: 18px 0 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 28px);
}

.product-card,
.description-card {
    overflow: hidden;
    border: 1px solid rgba(18, 21, 28, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transform: translateZ(0);
}

.product-card::before,
.description-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(22, 199, 185, 0.14), rgba(255, 122, 89, 0.1), rgba(215, 180, 106, 0.12));
    transition: opacity var(--transition-normal);
}

.product-card:hover,
.description-card:hover {
    border-color: rgba(22, 199, 185, 0.28);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-card:hover::before,
.description-card:hover::before {
    opacity: 1;
}

.product-image {
    aspect-ratio: 1.08;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.64) 42%, transparent 70%),
        linear-gradient(145deg, rgba(22, 199, 185, 0.13), rgba(255, 122, 89, 0.1) 52%, rgba(215, 180, 106, 0.11));
}

.product-image::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 16px;
    height: 20px;
    border-radius: 999px;
    background: rgba(18, 21, 28, 0.12);
    filter: blur(14px);
}

.product-image img {
    position: relative;
    z-index: 1;
    padding: clamp(16px, 3vw, 28px);
    filter: drop-shadow(0 22px 26px rgba(18, 21, 28, 0.14));
}

.product-card:hover .product-image img {
    transform: translateY(-8px) scale(1.045);
}

.product-badge {
    top: 16px;
    left: 16px;
    color: #12151c;
    background: linear-gradient(135deg, #f2dfac, #ffb98f);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(215, 180, 106, 0.28);
    letter-spacing: 0.06em;
}

.product-info {
    position: relative;
    z-index: 1;
    padding: 22px;
    border-top: 1px solid rgba(18, 21, 28, 0.08);
}

.product-title {
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-size: clamp(1.12rem, 2vw, 1.32rem);
    line-height: 1.18;
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: 18px;
    font-size: 0.94rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-price {
    color: #173f42;
    margin: 0;
    font-weight: 780;
    white-space: nowrap;
}

.btn-product {
    padding: 10px 17px;
    font-size: 13px;
    white-space: nowrap;
}

.description-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 28px);
}

.description-card {
    position: relative;
    padding: clamp(24px, 4vw, 34px);
}

.description-card h3 {
    position: relative;
    z-index: 1;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    font-size: 1.12rem;
    line-height: 1.28;
}

.description-card h3::before {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.description-card p {
    position: relative;
    z-index: 1;
    color: var(--color-text-secondary);
    font-size: 0.96rem;
    line-height: 1.72;
}

.description-section .container > .description-card {
    max-width: 680px;
    margin-top: 18px;
}

.modal {
    background:
        radial-gradient(circle at 50% 20%, rgba(22, 199, 185, 0.18), transparent 34vw),
        rgba(18, 21, 28, 0.62);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.modal-content {
    width: min(88vw, 460px);
    padding: clamp(30px, 6vw, 46px);
    color: var(--color-text-primary);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 255, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 30px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.modal-content h2 {
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.buttons {
    gap: 12px;
}

#yesBtn {
    color: #fffdf8;
    background: linear-gradient(135deg, #12151c, #173f42);
}

#noBtn {
    color: var(--color-text-primary);
    background: rgba(18, 21, 28, 0.08);
}

#yesBtn:hover,
#noBtn:hover {
    transform: translateY(-2px);
}

footer {
    gap: 30px;
    padding: clamp(52px, 7vw, 84px) clamp(18px, 6vw, 88px);
    color: rgba(255, 253, 248, 0.84);
    background:
        radial-gradient(circle at 18% 0%, rgba(22, 199, 185, 0.16), transparent 26vw),
        radial-gradient(circle at 90% 20%, rgba(255, 122, 89, 0.11), transparent 28vw),
        linear-gradient(180deg, #171a22 0%, #0d1016 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

footer a:hover {
    color: #58dfd2;
}

.social,
.footer-cont,
.copyright {
    width: min(100%, 1180px);
    border-color: rgba(255, 255, 255, 0.12);
}

.social {
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 26px;
}

.social > div:not(.footer-logo) a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.social > div:not(.footer-logo) a:hover {
    transform: translateY(-3px);
    background: rgba(22, 199, 185, 0.16);
}

footer svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.footer-logo {
    padding: 0;
    margin-right: 18px;
}

.footer-logo .logo {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-cont {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    gap: clamp(34px, 6vw, 82px);
    padding-bottom: 34px;
    font-size: 1rem;
}

.foot-cont-one {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 66px);
}

.cont-col {
    gap: 10px;
}

.cont-col:first-child,
.copyright {
    color: rgba(255, 253, 248, 0.58);
}

.cont-col:first-child a:first-child,
.cont-col .active {
    color: #fffdf8;
}

.foot-cont-two {
    gap: 16px;
}

.foot-cont-two div {
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
    flex: 0 0 auto;
}

.foot-cont-three {
    width: min(100%, 1180px);
    gap: 9px;
    color: rgba(255, 253, 248, 0.76);
    font-size: 0.92rem;
}

.city {
    justify-content: flex-start;
    font-size: 1rem;
    font-weight: 720;
    color: #fffdf8;
}

.foot-cont-three a {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    padding-top: 26px;
}

@keyframes premiumBadge {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 26px rgba(18, 21, 28, 0.07);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(22, 199, 185, 0.14);
    }
}

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

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

@keyframes softGradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@supports (animation-timeline: view()) {
    .description-card,
    .section-header,
    footer .social,
    footer .footer-cont {
        animation: revealUp both;
        animation-timeline: view();
        animation-range: entry 0% cover 26%;
    }

    @keyframes revealUp {
        from {
            opacity: 0;
            transform: translateY(28px);
        }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: none;
    }

    .hero-buttons,
    .hero-tags {
        justify-content: center;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-subtitle::after {
        display: none;
    }

    .hero-right {
        min-height: 360px;
    }

    .products-grid,
    .description-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 768px) {
    .header-content {
        min-height: 66px;
    }

    .hero {
        padding-top: 116px;
    }

    .hero::before {
        inset: 92px 12px 16px;
        border-radius: 30px;
    }

    .hero-content {
        padding-top: 42px;
    }

    .hero-title {
        font-size: clamp(2.45rem, 12vw, 4.2rem);
    }

    .hero-buttons {
        width: 100%;
        max-width: 360px;
    }

    .hero-right {
        min-height: 300px;
    }

    .hero-right img {
        width: min(104%, 480px);
    }

    .section-header,
    .section-header .section-title,
    .section-title {
        text-align: left;
    }

    .products-grid,
    .description-grid {
        grid-template-columns: 1fr !important;
    }

    .product-footer {
        flex-direction: row;
        align-items: center;
    }

    .footer-cont,
    .foot-cont-one {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .foot-cont-two div {
        justify-content: flex-start;
    }

    .foot-cont-three {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 16px;
    }

    .warn {
        font-size: 10px !important;
    }

    .logo {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .logo img {
        width: 34px;
        height: 34px;
    }

    .hero {
        padding-top: 108px;
    }

    .hero-content {
        padding-bottom: 34px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .hero-tags {
        justify-content: flex-start;
    }

    .tag {
        font-size: 12px;
        padding: 7px 12px;
    }

    .product-card,
    .description-card {
        border-radius: 22px;
    }

    .modal-content {
        width: min(84vw, 340px);
        padding: 28px 22px;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .product-info,
    .description-card {
        padding: 20px;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-product {
        width: 100%;
    }

    footer {
        padding-inline: 18px;
    }

    .social {
        flex-wrap: wrap;
    }
}

/* ==========================================
   PREMIUM MOTION LAYER
   CSS-only motion: no functional or JS changes.
   ========================================== */
.header {
    animation: headerDrop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero::before {
    background-size: 180% 180%;
    animation: glassAura 14s ease-in-out infinite;
}

.hero-badge,
.hero-title,
.hero-buttons,
.hero-subtitle,
.hero-tags,
.hero-right {
    animation: heroReveal 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-badge {
    animation-delay: 120ms;
}

.hero-title {
    animation-delay: 220ms;
}

.hero-buttons {
    animation-delay: 340ms;
}

.hero-subtitle {
    animation-delay: 460ms;
}

.hero-tags {
    animation-delay: 540ms;
}

.hero-right {
    animation-delay: 300ms;
}

.hero-right::before {
    content: "";
    position: absolute;
    inset: 10%;
    z-index: -1;
    border-radius: inherit;
    background: conic-gradient(from 180deg, rgba(22, 199, 185, 0.18), rgba(255, 122, 89, 0.12), rgba(215, 180, 106, 0.16), rgba(22, 199, 185, 0.18));
    filter: blur(34px);
    opacity: 0.68;
    animation: slowSpin 16s linear infinite;
}

.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary,
.btn-product,
.filter-btn,
.tag,
.social > div:not(.footer-logo) a {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.btn-hero-primary::after,
.btn-hero-secondary::after,
.btn-product::after,
.filter-btn::after,
.tag::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -80%;
    width: 48%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    transform: skewX(-18deg);
    transition: left 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-hero-primary:hover::after,
.btn-hero-secondary:hover::after,
.btn-product:hover::after,
.filter-btn:hover::after,
.tag:hover::after {
    left: 132%;
}

.product-card,
.description-card {
    transition:
        transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        background 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:nth-child(1) {
    transition-delay: 0ms;
}

.product-card:nth-child(2) {
    transition-delay: 55ms;
}

.product-card:nth-child(3) {
    transition-delay: 110ms;
}

.product-card:nth-child(4) {
    transition-delay: 165ms;
}

.product-card:nth-child(5) {
    transition-delay: 220ms;
}

.product-card:nth-child(6) {
    transition-delay: 275ms;
}

.product-card:hover {
    animation: cardLiftGlow 1.8s ease-in-out infinite;
}

.product-image::before {
    content: "";
    position: absolute;
    inset: -35%;
    background:
        linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
    transform: translateX(-45%) rotate(8deg);
    opacity: 0;
    transition: opacity 260ms ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
    animation: imageSheen 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-badge {
    animation: badgeBreath 3.2s ease-in-out infinite;
}

.description-card:hover h3::before {
    animation: linePulse 820ms ease both;
}

.modal-content {
    animation: modalBloom 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mobile-menu.active .mobile-nav-link,
.mobile-menu.active .mobile-actions {
    animation: mobileItemIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
    animation-delay: 60ms;
}

.mobile-menu.active .mobile-nav-link:nth-child(2) {
    animation-delay: 100ms;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
    animation-delay: 140ms;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
    animation-delay: 180ms;
}

.mobile-menu.active .mobile-nav-link:nth-child(5) {
    animation-delay: 220ms;
}

.mobile-menu.active .mobile-actions {
    animation-delay: 280ms;
}

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

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

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }

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

@keyframes glassAura {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cardLiftGlow {
    0%,
    100% {
        box-shadow: var(--shadow-lg);
    }

    50% {
        box-shadow: 0 34px 90px rgba(20, 24, 32, 0.2), 0 0 42px rgba(22, 199, 185, 0.16);
    }
}

@keyframes imageSheen {
    from {
        transform: translateX(-52%) rotate(8deg);
    }

    to {
        transform: translateX(58%) rotate(8deg);
    }
}

@keyframes badgeBreath {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-1px) scale(1.035);
    }
}

@keyframes linePulse {
    0% {
        width: 34px;
        opacity: 0.72;
    }

    55% {
        width: 58px;
        opacity: 1;
    }

    100% {
        width: 34px;
        opacity: 1;
    }
}

@keyframes modalBloom {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
        filter: blur(6px);
    }

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

@keyframes mobileItemIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

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