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

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* GPU acceleration for animated elements */
.hero-background,
.banner-slider-track,
.mobile-menu-content {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Fade-in animation for cards (optimized) */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

:root {
    --primary-color: #4169E1;
    --primary-dark: #2952CC;
    --primary-light: #6B8FF5;
    --secondary-color: #22C55E;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --background: #f8fafc;
    --background-light: #ffffff;
    --border-color: rgba(226, 232, 240, 0.5);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    width: calc(100% - 8rem);
    max-width: 1320px;
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
}

.header-content .logo {
    flex-shrink: 0;
    z-index: 1001;
    justify-self: start;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 38px;
    width: auto;
    display: block;
}

.burger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    margin: 6px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    display: contents;
}

.nav {
    display: flex;
    gap: 2rem;
    justify-self: center;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #0f172a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #059669;
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    justify-self: end;
}

.btn-request {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.btn-request:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.btn-whatsapp {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero {
    padding: 12rem 0 6rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Bento Grid Layout */
.hero.hero-bento {
    padding: 10rem 0 4rem;
    text-align: left;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   BENTO GRID LAYOUT - Hero Section
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    min-height: 500px;
}

/* Главный блок с текстом - занимает 2 ряда слева */
.bento-main {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-main .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.bento-main .hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.bento-main .hero-actions {
    margin-bottom: 0;
    justify-content: flex-start;
}

/* Карточки Bento */
.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Большая карточка - справа сверху */
.bento-large {
    grid-column: 2 / 4;
    grid-row: 1;
    min-height: 220px;
}

/* Маленькие карточки */
.bento-small {
    min-height: 140px;
}

.bento-small:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
}

.bento-small:nth-of-type(3) {
    grid-column: 3;
    grid-row: 2;
}

/* Изображения в карточках */
.bento-card-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.bento-card-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.bento-card:hover .bento-card-image img {
    transform: scale(1.08);
}

/* Overlay с текстом */
.bento-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 2;
}

.bento-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-card-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bento-card-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.25rem 0 0;
}

/* Статистика внизу */
.bento-stats {
    grid-column: 1 / 4;
    grid-row: 3;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.bento-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.bento-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.bento-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 15px rgba(94, 234, 212, 0.5);
    line-height: 1.2;
}

.bento-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 24px rgba(94, 234, 212, 0.8);
}

.timeline-item:nth-child(odd):hover .timeline-dot {
    transform: translateX(50%) scale(1.2);
}

.timeline-item:nth-child(even):hover .timeline-dot {
    transform: translateX(-50%) scale(1.2);
}

.timeline-content {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 140px;
    flex-shrink: 0;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 15px rgba(94, 234, 212, 0.5);
    white-space: nowrap;
}

.timeline-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.hero-badge svg {
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3),
        0 4px 40px rgba(20, 184, 166, 0.4),
        0 8px 60px rgba(45, 212, 191, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.highlight {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(94, 234, 212, 0.7),
        0 4px 30px rgba(45, 212, 191, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 15px rgba(45, 212, 191, 0.6),
        0 4px 25px rgba(20, 184, 166, 0.4);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.catalog-categories {
    padding: 2rem 0 2rem;
    background: #f8fafc;
    position: relative;
}

/* Simple Hero Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content-center .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* Hero Split Layout - Text left, Image right */
.hero.hero-split {
    padding: 10rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-content-left {
    text-align: left;
}

.hero-content-left .hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-content-left .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-content-left .hero-actions {
    justify-content: flex-start;
    margin-bottom: 2.5rem;
}

.hero-content-left .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 100%;
    margin: 0;
}

.hero-content-left .hero-stat {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.hero-content-left .hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.hero-content-left .hero-stat:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.hero-content-left .hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hero-content-left .hero-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-banner-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    background: #f8fafc;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-banner-img {
    transform: scale(1.02);
}

/* SVG connector lines */
.hero-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.connector-line {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
}

.line-home {
    stroke: #3b82f6;
    animation: drawLine 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.line-horeca {
    stroke: #8b5cf6;
    animation: drawLine 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.line-relax {
    stroke: #f59e0b;
    animation: drawLine 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

.line-garden {
    stroke: #10b981;
    animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    40% {
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.65;
    }
}

/* Static labels with dots */
.hero-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
}

.label-home {
    animation: fadeInLabel 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.label-horeca {
    animation: fadeInLabel 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.label-relax {
    animation: fadeInLabel 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.label-garden {
    animation: fadeInLabel 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

@keyframes fadeInLabel {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    60% {
        transform: translateY(-2px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.label-text {
    color: #374151;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.label-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px currentColor;
}

/* Label positions - логично расположены по предметам */
.label-home {
    top: 10%;
    left: -24%;
}

.label-home .label-dot {
    background: #3b82f6;
    color: #3b82f6;
}

.label-horeca {
    top: 10%;
    right: -18%;
}

.label-horeca .label-dot {
    background: #8b5cf6;
    color: #8b5cf6;
}

.label-relax {
    bottom: 20%;
    left: -28%;
}

.label-relax .label-dot {
    background: #f59e0b;
    color: #f59e0b;
}

.label-garden {
    bottom: 20%;
    right: -20%;
}

.label-garden .label-dot {
    background: #10b981;
    color: #10b981;
}

/* Tablet - Hero Split */
@media (max-width: 1024px) {
    .hero.hero-split {
        padding: 8rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-content-left .hero-title {
        font-size: 2.5rem;
    }

    .hero-content-left .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content-left .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .hero-content-left .hero-stat {
        padding: 1rem 0.75rem;
        border-radius: 14px;
    }

    .hero-content-left .hero-stat-value {
        font-size: 1.3rem;
    }

    .hero-content-left .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-banner-img {
        max-width: 340px;
        border-radius: 20px;
    }

    .hero-label {
        font-size: 0.7rem;
    }

    .label-text {
        padding: 0.35rem 0.65rem;
    }

    .label-dot {
        width: 8px;
        height: 8px;
    }

    .label-home {
        left: -18%;
    }

    .label-horeca {
        right: -14%;
    }

    .label-relax {
        left: -22%;
    }

    .label-garden {
        right: -16%;
    }

    .hero-connectors {
        display: none;
    }
}

/* Mobile - Hero Split (stack vertically) */
@media (max-width: 768px) {
    .hero.hero-split {
        padding: 7rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
    }

    .hero-content-left {
        text-align: left;
        padding-top: 3.5rem;
    }

    .hero-content-left .hero-title {
        font-size: 2rem;
    }

    .hero-content-left .hero-subtitle {
        text-align: left;
        font-size: 0.95rem;
    }

    .hero-content-left .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 1.5rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .hero-content-left .hero-actions .btn-primary,
    .hero-content-left .hero-actions .btn-secondary {
        padding: 0.65rem 1.1rem;
        font-size: 0.8rem;
        border-radius: 10px;
        width: auto;
        flex-shrink: 0;
    }

    .hero-content-left .hero-actions .btn-primary svg {
        width: 14px;
        height: 14px;
    }

    .hero-content-left .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        max-width: 100%;
        margin: 0;
    }

    .hero-stats .hero-stat:nth-child(4) {
        display: none !important;
    }

    .hero-content-left .hero-stat {
        padding: 0.5rem 0.3rem;
        border-radius: 8px;
        gap: 0.15rem !important;
    }

    .hero-content-left .hero-stat-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 0.1rem;
    }

    .hero-content-left .hero-stat-value {
        font-size: 0.85rem;
    }

    .hero-content-left .hero-stat-label {
        font-size: 0.5rem;
    }

    .hero-image-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero.hero-split {
        padding: 6rem 0 2rem;
    }

    .hero-content-left .hero-title {
        font-size: 1.6rem;
    }

    .hero-content-left .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero-content-left .hero-actions {
        gap: 0.5rem;
    }

    .hero-content-left .hero-actions .btn-primary,
    .hero-content-left .hero-actions .btn-secondary {
        padding: 0.55rem 0.9rem;
        font-size: 0.75rem;
    }

    .hero-content-left .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 0.35rem;
    }

    .hero-content-left .hero-stat {
        padding: 0.45rem 0.25rem;
        border-radius: 6px;
    }

    .hero-content-left .hero-stat-icon {
        width: 16px;
        height: 16px;
    }

    .hero-content-left .hero-stat-value {
        font-size: 0.75rem;
    }

    .hero-content-left .hero-stat-label {
        font-size: 0.45rem;
    }
}

@media (max-width: 360px) {
    .hero-content-left .hero-title {
        font-size: 1.4rem;
    }

    .hero-content-left .hero-actions {
        flex-direction: row;
        gap: 0.4rem;
    }

    .hero-content-left .hero-actions .btn-primary,
    .hero-content-left .hero-actions .btn-secondary {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .hero-content-left .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 0.25rem;
    }

    .hero-content-left .hero-stat {
        padding: 0.4rem 0.2rem;
        border-radius: 5px;
    }

    .hero-content-left .hero-stat-icon {
        width: 14px;
        height: 14px;
    }

    .hero-content-left .hero-stat-value {
        font-size: 0.7rem;
    }

    .hero-content-left .hero-stat-label {
        font-size: 0.4rem;
    }
}

/* Rotating Text Animation */
.hero-title {
    overflow: visible !important;
}

.rotating-text {
    display: inline-block;
    min-width: 300px;
    text-align: center;
    overflow: visible;
    position: relative;
    height: 1.2em;
    vertical-align: bottom;
}

.rotating-text .word {
    display: inline-flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.hero-content-left .rotating-text {
    text-align: left !important;
}

.hero-content-left .rotating-text .word {
    left: 0 !important;
    transform: translateX(0) !important;
}

.rotating-text .char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.rotating-text .char.visible {
    transform: translateY(0);
    opacity: 1;
}

.rotating-text .char.exit {
    transform: translateY(-100%);
    opacity: 0;
}

.rotating-text .space {
    width: 0.25em;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .hero-content-center .hero-title {
        font-size: 2rem;
    }

    .rotating-text {
        min-width: 180px;
    }

    /* Fix rotating text on mobile - left align */
    .hero-content-left .rotating-text {
        text-align: left;
        min-width: 100%;
    }

    .hero-content-left .rotating-text .word {
        left: 0;
        transform: translateX(0);
    }

    .hero-content-left .hero-title {
        line-height: 1.3;
    }
}

/* Анимированный бейдж */
.animated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    contain: layout style;
}

/* Увеличенный бейдж для Hero секции */
.hero-animated-badge {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.hero-animated-badge .badge-icon {
    width: 22px;
    height: 22px;
}

.hero-animated-badge .badge-text {
    min-width: 140px;
    height: 1.3em;
}

.hero-animated-badge .badge-words span {
    height: 1.3em;
    line-height: 1.3em;
}

.animated-badge .badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    animation: pulse 3s ease-in-out infinite;
    will-change: opacity;
}

.animated-badge .badge-text {
    position: relative;
    overflow: hidden;
    height: 1.2em;
    min-width: 100px;
}

.animated-badge .badge-words {
    display: flex;
    flex-direction: column;
    animation: rotateWords 10s ease-in-out infinite;
    will-change: transform;
}

.animated-badge .badge-words span {
    height: 1.2em;
    line-height: 1.2em;
    white-space: nowrap;
}

@keyframes rotateWords {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-1.2em);
    }

    50%,
    70% {
        transform: translateY(-2.4em);
    }

    75%,
    95% {
        transform: translateY(-3.6em);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.catalog-categories .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Catalog Hero Block - Clean Minimal Style */
.catalog-hero-block {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Subtle top highlight */
.catalog-hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%);
    pointer-events: none;
}

/* Анимации для текста */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.catalog-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.catalog-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.catalog-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-hero-block .animated-badge {
    flex-shrink: 0;
}

.catalog-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f172a;
}

.catalog-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Download catalog button - Liquid Glass Style */
.catalog-download-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #0f172a;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(255, 255, 255, 0.8) inset,
        0 -1px 2px rgba(0, 0, 0, 0.05) inset;
    border: 1px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.catalog-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.25) 0%,
            rgba(99, 102, 241, 0.2) 50%,
            rgba(139, 92, 246, 0.15) 100%);
    border-radius: inherit;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.catalog-download-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(59, 130, 246, 0.25),
        0 1px 3px rgba(255, 255, 255, 0.9) inset,
        0 -1px 3px rgba(0, 0, 0, 0.08) inset;
    border-color: rgba(255, 255, 255, 0.8);
}

.catalog-download-btn:hover::before {
    opacity: 1;
}

.catalog-download-btn svg,
.catalog-download-btn span {
    position: relative;
    z-index: 1;
}

.catalog-download-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .catalog-download-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .catalog-download-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .catalog-download-btn span {
        display: none;
    }

    .catalog-download-btn {
        padding: 0.6rem;
        border-radius: 10px;
    }
}

/* Преимущества справа */
.catalog-hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.hero-feature-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Цвета для каждой иконки */
.hero-feature:nth-child(1) .hero-feature-icon-wrap {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.hero-feature:nth-child(2) .hero-feature-icon-wrap {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-feature:nth-child(3) .hero-feature-icon-wrap {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.hero-feature:nth-child(4) .hero-feature-icon-wrap {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.hero-feature-icon {
    width: 16px;
    height: 16px;
    stroke: white;
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .catalog-hero-block {
        flex-direction: row;
        gap: 1rem;
    }

    .catalog-hero-content {
        text-align: left;
    }

    .catalog-hero-block .block-description {
        display: none;
    }

    .catalog-hero-features {
        display: none;
    }

    .hero-feature:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .catalog-hero-block {
        padding: 0.875rem 1rem;
        border-radius: 14px;
    }

    .catalog-hero-block .block-title {
        font-size: 1.35rem;
    }

    .catalog-hero-block .block-description {
        display: none;
    }

    .animated-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

    /* Hero badge stays larger on tablet */
    .hero-animated-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .hero-animated-badge .badge-icon {
        width: 18px;
        height: 18px;
    }

    .hero-animated-badge .badge-text {
        min-width: 120px;
    }
}

@media (max-width: 640px) {
    .catalog-hero-content {
        text-align: left;
        gap: 0.75rem;
    }

    .catalog-hero-block .block-description {
        display: none;
    }
}

@media (max-width: 480px) {

    /* Compact section headers on mobile */
    .catalog-hero-block,
    .popular-hero-block {
        padding: 0.75rem 1rem;
        border-radius: 12px;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .catalog-hero-content,
    .popular-hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
    }

    .catalog-hero-block .block-title,
    .popular-hero-block .block-title {
        font-size: 0.95rem;
        margin: 0;
        white-space: nowrap;
    }

    .catalog-hero-block .block-description,
    .popular-hero-block .block-description {
        display: none;
    }

    .animated-badge {
        padding: 0.35rem 0.65rem;
        font-size: 0.6rem;
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .animated-badge .badge-icon {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .animated-badge .badge-text {
        display: block;
        overflow: hidden;
        min-width: 70px;
    }

    .animated-badge .badge-words span {
        font-size: 0.6rem;
    }

    /* Hero badge stays larger on mobile */
    .hero-animated-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .hero-animated-badge .badge-icon {
        width: 16px;
        height: 16px;
    }

    .hero-animated-badge .badge-text {
        min-width: 100px;
    }

    .hero-animated-badge .badge-words span {
        font-size: 0.8rem;
    }
}



.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 0.5rem;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(16, 185, 129, 0.25);
}

.category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 2;
    white-space: nowrap;
}

.category-image {
    padding: 1.5rem 1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: white;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.06);
}

.category-info {
    padding: 0.5rem 1rem 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    text-decoration: none;
}

.category-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    transition: all 0.25s ease;
    margin-top: auto;
}

.category-card:hover .category-link {
    gap: 0.5rem;
    color: #047857;
}

.category-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s;
}

.category-card:hover .category-link svg {
    transform: translateX(2px);
}

.category-card--coming {
    opacity: 0.8;
}

.category-card--coming .category-image img {
    filter: grayscale(15%);
}

.recommendations {
    padding: 0 0 2rem;
    background: #f8fafc;
    position: relative;
}

/* Popular Hero Block - Same style as Catalog */
.popular-hero-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.popular-badge-hot {
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%) !important;
    border: 1.5px solid rgba(249, 115, 22, 0.25) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15) !important;
    color: #c2410c !important;
    /* Dark orange text for visibility */
}

.popular-badge-hot .badge-icon {
    color: #f97316 !important;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
}

/* Removed popular-hero-right and rating-box styles */


.popular-hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%);
    pointer-events: none;
}

.popular-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.popular-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popular-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.popular-hero-block .animated-badge {
    flex-shrink: 0;
}

.popular-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f172a;
}

.popular-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.recommendations::before {
    display: none;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.recommendations .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15),
        0 8px 32px rgba(5, 150, 105, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.product-badge.new {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(52, 211, 153, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.product-badge.discount {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(248, 113, 113, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.product-info {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: auto;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.25rem 0 1rem;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-order-product {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 0.875rem 1rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-order-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 0.5s;
}

.btn-order-product:hover::before {
    left: 100%;
}

.btn-order-product:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-order-product:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
}

.btn-details {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: #059669;
    padding: 0.875rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(5, 150, 105, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(5, 150, 105, 0.1) 50%,
            transparent 100%);
    transition: left 0.5s;
}

.btn-details:hover::before {
    left: 100%;
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(5, 150, 105, 0.5);
    transform: translateY(-2px);
    color: #047857;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-details:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.1);
}


/* How It Works Section */
.how-it-works-section {
    padding: 0 0 5rem;
    background: #f8fafc;
    position: relative;
}

.how-it-works-section .container {
    max-width: 1400px;
}

.process-hero-block {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 0 0 3rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.process-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-badge-static {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.process-badge-static .badge-icon {
    width: 16px;
    height: 16px;
}

/* Timeline Styling */
.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0 0;
}

/* The connecting horizontal line */
.timeline-line {
    position: absolute;
    top: 30px;
    /* Aligned with marker centers */
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #e2e8f0 10%,
            #e2e8f0 90%,
            transparent 100%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    width: 22%;
    /* 4 items with space */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.timeline-marker {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-marker {
    border-color: #059669;
    background: #f0fdf4;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.1);
}

.marker-icon {
    width: 24px;
    height: 24px;
    color: #64748b;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-icon {
    color: #059669;
    transform: scale(1.1);
}

.marker-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #059669;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.25rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.timeline-item:hover .timeline-card {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.timeline-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    .timeline-line {
        left: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .process-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .process-hero-block {
        padding: 1.25rem;
    }

    /* Switch to Vertical Timeline */
    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
    }

    .timeline-line {
        width: 2px;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 40px;
        /* Align with marker center */
        right: auto;
        background: linear-gradient(180deg,
                transparent 0%,
                #e2e8f0 5%,
                #e2e8f0 95%,
                transparent 100%);
    }

    .timeline-item {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 2rem;
    }

    .timeline-marker {
        margin-right: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .timeline-card {
        margin-top: 0;
        width: calc(100% - 80px);
    }
}

@media (max-width: 480px) {
    .process-header-row {
        flex-direction: row;
        align-items: center;
    }

    .process-hero-block .block-title {
        font-size: 1.1rem;
    }

    .process-badge-static {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }

    .process-badge-static span {
        display: none;
        /* Icon only on very small screens if needed, or keep text short */
    }

    .process-badge-static span:after {
        content: "Процесс";
    }

    .timeline-container {
        padding-left: 0;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }

    .timeline-card {
        padding: 1rem;
        width: calc(100% - 70px);
    }
}

/* ============================================
   FOOTER - Liquid Glass Style
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: block;
    margin-bottom: 1.25rem;
}

.footer-logo-image {
    height: 45px;
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #059669;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.social-link:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: #059669;
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-contacts li:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
}

.footer-contacts svg {
    color: #059669;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-label {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.8rem;
}

.footer-contacts a,
.footer-contacts span {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-contacts a:hover {
    color: #059669;
}

.footer-bottom {
    padding-top: 2rem;
}

/* Desktop only - border and glass effect */
@media (min-width: 1025px) {
    .footer-bottom {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .footer-bottom-content {
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-legal-links a:hover {
    color: #059669;
}

/* ===============================================
   RESPONSIVE - Tablet/Small Desktop (1280px)
   Mobile header: burger + cart + search
   =============================================== */
@media (max-width: 1280px) {
    .header {
        top: 0.75rem;
        width: calc(100% - 3rem);
        padding: 1rem 1.5rem;
        border-radius: 20px;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
        gap: 0;
        width: 100%;
    }

    .header-content .logo {
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }

    .header .container {
        padding: 0;
    }

    .nav {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
    }

    .header-actions .btn-request {
        display: none;
    }

    .header-actions .city-selector {
        display: none;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 46px;
        height: 46px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        margin: 0;
        margin-left: 1rem;
        padding: 0;
        flex-shrink: 0;
    }

    .burger-menu:hover {
        background: rgba(0, 0, 0, 0.08);
    }

    .burger-menu span {
        width: 22px;
        height: 2px;
        background: #0f172a;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

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

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

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

    .logo-image {
        height: 38px;
    }

    .btn-cart,
    .btn-search {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .btn-cart svg,
    .btn-search svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 1024px) {
    .header {
        width: calc(100% - 2.5rem);
        padding: 0.875rem 1.25rem;
        border-radius: 22px;
    }

    .header-actions {
        gap: 0.875rem;
    }

    .logo-image {
        height: 36px;
    }

    .burger-menu,
    .btn-cart,
    .btn-search {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .burger-menu {
        margin-left: 0.875rem;
    }

    .btn-cart svg,
    .btn-search svg {
        width: 20px;
        height: 20px;
    }

    .burger-menu span {
        width: 20px;
        margin: 2.5px 0;
    }

    /* Remove footer border on tablets */
    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom-content {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .bento-main {
        grid-column: 1 / 3;
        grid-row: 1;
        padding: 1.5rem;
    }

    .bento-main .hero-title {
        font-size: 2.25rem;
    }

    .bento-large {
        grid-column: 1 / 3;
        grid-row: 2;
        min-height: 180px;
    }

    .bento-small:nth-of-type(2) {
        grid-column: 1;
        grid-row: 3;
    }

    .bento-small:nth-of-type(3) {
        grid-column: 2;
        grid-row: 3;
    }

    .bento-stats {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .bento-stat-value {
        font-size: 1.5rem;
    }

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

    .category-image {
        height: 110px;
    }

    .category-image img {
        max-height: 90px;
    }

    .category-card h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0.75rem;
        width: calc(100% - 3.5rem);
        padding: 0.875rem 1.125rem;
        border-radius: 20px;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .logo-image {
        height: 34px;
    }

    .burger-menu,
    .btn-cart,
    .btn-search {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .burger-menu {
        margin-left: 0.75rem;
    }

    .btn-cart svg,
    .btn-search svg {
        width: 19px;
        height: 19px;
    }

    .burger-menu span {
        width: 19px;
        margin: 2.5px 0;
    }

    .hero {
        padding: 9rem 0 4rem;
    }

    .hero.hero-bento {
        padding: 7rem 0 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        min-height: auto;
    }

    .bento-main {
        grid-column: 1;
        grid-row: 1;
        padding: 1rem;
        text-align: center;
    }

    .bento-main .hero-title {
        font-size: 1.75rem;
    }

    .bento-main .hero-subtitle {
        text-align: center;
        font-size: 0.85rem;
    }

    .bento-main .hero-actions {
        justify-content: center;
        flex-direction: row;
        gap: 0.5rem;
    }

    .bento-main .btn-primary,
    .bento-main .btn-secondary {
        flex: 1;
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }

    .bento-main .btn-primary svg {
        width: 16px;
        height: 16px;
    }

    .bento-large {
        grid-column: 1;
        grid-row: 2;
        min-height: 160px;
    }

    .bento-small {
        min-height: 120px;
    }

    .bento-small:nth-of-type(2),
    .bento-small:nth-of-type(3) {
        grid-column: 1;
    }

    .bento-small:nth-of-type(2) {
        grid-row: 3;
    }

    .bento-small:nth-of-type(3) {
        grid-row: 4;
    }

    .bento-stats {
        grid-column: 1;
        grid-row: 5;
        flex-wrap: wrap;
    }

    .bento-stat {
        flex: 1 1 45%;
        padding: 0.75rem;
    }

    .bento-stat-value {
        font-size: 1.25rem;
    }

    .bento-stat-label {
        font-size: 0.65rem;
    }

    .bento-card-overlay h3 {
        font-size: 0.95rem;
    }

    .bento-card-overlay p {
        font-size: 0.7rem;
    }

    /* Remove footer border on tablets and mobile */
    .footer-bottom {
        border-top: none !important;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-actions {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .btn-primary svg {
        width: 18px;
        height: 18px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

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

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        border-radius: 12px;
    }

    .category-badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }

    .category-image {
        height: 90px;
        padding: 0.75rem 0.75rem 0.25rem;
    }

    .category-image img {
        max-height: 70px;
    }

    .category-info {
        padding: 0.5rem 0.75rem 1rem;
    }

    .category-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }

    .category-card p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .category-link {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

    .category-link svg {
        width: 14px;
        height: 14px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {

    /* Hero actions - compact horizontal layout */
    .hero-actions {
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }

    .btn-primary svg {
        width: 16px;
        height: 16px;
    }

    .header {
        top: 0.5rem;
        width: calc(100% - 3rem);
        padding: 0.75rem 1rem;
        border-radius: 18px;
    }

    .logo-image {
        height: 30px;
    }

    .header-actions {
        gap: 0.625rem;
    }

    .btn-cart,
    .btn-search,
    .burger-menu {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .burger-menu {
        margin-left: 0.625rem;
    }

    .burger-menu span {
        width: 18px;
        margin: 2px 0;
    }

    .btn-cart svg,
    .btn-search svg {
        width: 18px;
        height: 18px;
    }

    .cart-count {
        width: 15px;
        height: 15px;
        min-width: 15px;
        font-size: 0.55rem;
        top: -4px;
        right: -4px;
    }
}

/* Extra small screens - ultra compact */
@media (max-width: 400px) {

    /* Hero actions - ultra compact horizontal */
    .hero-actions {
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }

    .btn-primary svg {
        width: 15px;
        height: 15px;
    }

    .header {
        top: 0.5rem;
        width: calc(100% - 2.5rem);
        padding: 0.625rem 0.875rem;
        border-radius: 16px;
    }

    .logo-image {
        height: 28px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .btn-cart,
    .btn-search,
    .burger-menu {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .burger-menu {
        margin-left: 0.5rem;
    }

    .burger-menu span {
        width: 17px;
        margin: 2px 0;
    }

    .btn-cart svg,
    .btn-search svg {
        width: 17px;
        height: 17px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .categories-grid {
        gap: 0.5rem;
    }

    .category-card {
        border-radius: 10px;
    }

    .category-badge {
        top: 0.35rem;
        left: 0.35rem;
        padding: 0.15rem 0.4rem;
        font-size: 0.55rem;
        border-radius: 25px;
    }

    .category-image {
        height: 70px;
    }

    .category-image img {
        max-height: 60px;
    }

    .category-info {
        padding: 0.4rem 0.5rem 0.75rem;
    }

    .category-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }

    .category-card p {
        font-size: 0.6rem;
        margin-bottom: 0.35rem;
        line-height: 1.25;
    }

    .category-link {
        font-size: 0.6rem;
        gap: 0.2rem;
    }

    .category-link svg {
        width: 12px;
        height: 12px;
    }

    /* Popular section compact */
    .popular-hero-block {
        padding: 0.6rem 0.75rem;
        border-radius: 12px;
    }

    .popular-hero-block .block-title {
        font-size: 1.25rem;
    }

    .popular-hero-block .block-description {
        font-size: 0.75rem;
    }

    .popular-grid {
        gap: 0.375rem;
    }

    .popular-card {
        border-radius: 10px;
    }

    .popular-badge {
        padding: 2px 6px;
        font-size: 0.5rem;
    }

    .popular-category {
        padding: 2px 6px;
        font-size: 0.5rem;
    }

    .popular-info {
        padding: 0.5rem 0.6rem;
    }

    .popular-info h3 {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }

    .popular-info p {
        font-size: 0.55rem;
        margin-bottom: 0.3rem;
        -webkit-line-clamp: 1;
    }

    .popular-price {
        font-size: 0.7rem;
    }
}

/* Hide legal section on desktop */
.footer-legal-section {
    display: none;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-logo-image {
        height: 38px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom-content {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-copyright {
        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0;
    }
}

/* Footer responsive for mobile devices */
@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Show legal section on mobile */
    .footer-legal-section {
        display: block;
    }

    .footer-about {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 0.75rem;
    }

    .footer-logo-image {
        height: 32px;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start;
        gap: 0.6rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        justify-content: flex-start;
    }

    .footer-contacts li {
        padding: 0.6rem 0.75rem;
        border-radius: 10px;
        gap: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .footer-contacts svg {
        width: 18px;
        height: 18px;
    }

    .contact-label {
        font-size: 0.75rem;
    }

    .footer-contacts a,
    .footer-contacts span {
        font-size: 0.8rem;
    }

    /* Footer bottom - no border, just small text */
    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom-content {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: row;
        justify-content: flex-start;
    }

    /* Hide legal links in footer-bottom on mobile (they're in separate section) */
    .footer-bottom-content .footer-legal-links {
        display: none;
    }

    .footer-copyright {
        font-size: 0.65rem;
        color: #64748b;
        font-weight: 400;
        text-align: left;
        margin: 0;
        line-height: 1.4;
        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0;
    }
}

@media (max-width: 400px) {
    .footer {
        padding: 2rem 0 1.25rem;
        margin-top: 2rem;
    }

    .footer-content {
        gap: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .footer-logo-image {
        height: 28px;
    }

    .footer-description {
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: left;
    }

    .footer-socials {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .social-link {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
        text-align: left;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links a {
        font-size: 0.8rem;
        justify-content: flex-start;
    }

    .footer-contacts li {
        padding: 0.5rem 0.65rem;
        border-radius: 9px;
        gap: 0.5rem;
        margin-bottom: 0.625rem;
    }

    .footer-contacts svg {
        width: 16px;
        height: 16px;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .footer-contacts a,
    .footer-contacts span {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
    }

    .footer-bottom-content {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .footer-copyright {
        font-size: 0.6rem;
        line-height: 1.5;
        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.active {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

.mobile-menu-content {
    position: relative;
    width: 100%;
    max-width: 360px;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.mobile-menu.active .mobile-menu-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.mobile-menu-header .logo-image {
    height: 28px;
    filter: none;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 1rem 1.25rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(34, 197, 94, 0.1);
    transition: width 0.3s ease;
    border-radius: 14px;
}

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

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #047857;
}

.mobile-nav-link .nav-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: #047857;
}

.mobile-nav-link:hover .nav-icon,
.mobile-nav-link.active .nav-icon {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.05);
}

.mobile-nav-link svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-actions {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.btn-request-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(4, 120, 87, 0.95) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-request-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    color: #047857;
    border: 1.5px solid #22c55e;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-whatsapp-mobile:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.2);
}

.mobile-menu-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    flex-shrink: 0;
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animation for menu items */
.mobile-menu.active .mobile-nav-link {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

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

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

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@media (max-width: 400px) {
    .mobile-menu {
        padding: 0.5rem;
    }

    .mobile-menu-content {
        max-height: 90vh;
        border-radius: 20px;
    }

    .mobile-nav {
        padding: 1rem;
    }

    .mobile-menu-actions {
        padding: 1rem;
    }
}

/* Hide mobile menu on desktop (1281px+) */
@media (min-width: 1281px) {
    .mobile-menu {
        display: none;
    }

    .burger-menu {
        display: none !important;
    }
}

/* ============================================
   SEARCH & CART STYLES - Premium Glass Effect
   ============================================ */

/* Search Container */
.search-container {
    position: relative;
    z-index: 100;
}

.btn-search {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
}

.btn-search svg {
    stroke: #475569;
}

.btn-search:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-container.active .btn-search {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    overflow: hidden;
}

.search-container.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(248, 250, 252, 0.5);
}

.search-icon {
    color: #94a3b8;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-clear {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-container.has-value .search-clear {
    display: flex;
}

.search-clear:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Search Results */
.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.search-result-item:hover {
    background: rgba(16, 185, 129, 0.06);
}

.search-result-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.15rem;
}

.search-result-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #059669;
}

.search-no-results {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #94a3b8;
}

.search-no-results svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.search-no-results p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.search-no-results span {
    font-size: 0.8rem;
}

/* Cart Button - Light Glass */
.btn-cart {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: visible;
}

.btn-cart svg {
    stroke: #475569;
}

.btn-cart::before {
    display: none;
}

.btn-cart:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-icon-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    z-index: 2;
    animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Search */
@media (max-width: 1024px) {
    .search-dropdown {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .search-container {
        position: static;
    }

    .search-container.active {
        z-index: 1200;
    }

    .btn-search {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        position: relative;
        z-index: 1;
    }

    .btn-search svg {
        width: 18px;
        height: 18px;
    }

    .search-dropdown {
        position: fixed;
        top: 80px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        z-index: 10001;
    }

    .btn-cart {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .btn-cart svg {
        width: 18px;
        height: 18px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        min-width: 16px;
        font-size: 0.55rem;
        top: -4px;
        right: -4px;
    }
}

/* Cart Modal Styles */
.cart-modal-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(5, 150, 105, 0.1) 100%);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-modal {
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.88) 40%,
            rgba(240, 253, 250, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow:
        0 40px 80px rgba(5, 150, 105, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-modal-overlay.active .cart-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.cart-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(5, 150, 105, 0.95) 0%,
            rgba(16, 185, 129, 0.9) 50%,
            rgba(5, 150, 105, 0.95) 100%);
    color: white;
    border-radius: 28px 28px 0 0;
}

.cart-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-header h3 svg {
    width: 22px;
    height: 22px;
    color: white;
}

.cart-count-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    margin-left: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cart-close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg) scale(1.05);
}

.cart-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.cart-empty h4 {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-color {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #059669;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: #ef4444;
    color: white;
}

.cart-item-remove svg {
    width: 14px;
    height: 14px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 0.25rem;
}

.cart-item-qty button {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-qty button:hover {
    background: #3b82f6;
    color: white;
}

.cart-item-qty span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(248, 250, 252, 0.95);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-total-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.cart-checkout-btn {
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
}

.cart-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}

.cart-checkout-btn svg {
    width: 16px;
    height: 16px;
}

.cart-whatsapp-btn {
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    text-decoration: none;
}

.cart-whatsapp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cart-whatsapp-btn svg {
    width: 16px;
    height: 16px;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10001;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-notification svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .cart-modal-overlay {
        padding: 0.75rem;
    }

    .cart-modal {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 24px;
    }

    .cart-header {
        padding: 1rem 1.25rem;
        border-radius: 24px 24px 0 0;
    }

    .cart-header h3 {
        font-size: 1.05rem;
    }
}

/* ==========================================
   ORDER MODAL STYLES - Liquid Glass Premium
   ========================================== */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(5, 150, 105, 0.1) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}

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

.order-modal {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 40%,
            rgba(240, 253, 250, 0.88) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-radius: 32px;
    max-width: 900px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 40px 80px rgba(5, 150, 105, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(5, 150, 105, 0.08);
    position: relative;
}

.order-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
            rgba(5, 150, 105, 0.03) 0%,
            transparent 100%);
    pointer-events: none;
    border-radius: 32px 32px 0 0;
}

.order-modal-overlay.active .order-modal {
    transform: scale(1) translateY(0);
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(135deg,
            rgba(5, 150, 105, 0.95) 0%,
            rgba(16, 185, 129, 0.9) 50%,
            rgba(5, 150, 105, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}

.order-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: -100%;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 100%);
    animation: headerShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerShine {

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

    50% {
        transform: translateX(50%);
    }
}

.order-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.order-modal-close {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.order-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.order-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
}

.order-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Modal Left Column (Order Items) */
.order-modal-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Modal Right Column (Form) */
.order-modal-right {
    display: flex;
    flex-direction: column;
}

/* Single Product Card (for product page modal) */
.order-product-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(240, 253, 250, 0.7) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}

.order-product-image {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.order-product-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.order-product-color {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
    margin: 0;
}

.order-product-price {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .order-product-card {
        padding: 16px;
        gap: 14px;
    }

    .order-product-image {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }

    .order-product-details h4 {
        font-size: 1rem;
    }

    .order-product-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .order-product-card {
        padding: 14px;
        gap: 12px;
        border-radius: 16px;
    }

    .order-product-image {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .order-product-details h4 {
        font-size: 0.95rem;
    }

    .order-product-color {
        font-size: 0.8rem;
    }

    .order-product-price {
        font-size: 1.1rem;
    }
}

/* Order Items Section (Left) */
.order-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-section-title svg {
    width: 18px;
    height: 18px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}

.order-items::-webkit-scrollbar {
    width: 6px;
}

.order-items::-webkit-scrollbar-track {
    background: rgba(5, 150, 105, 0.05);
    border-radius: 10px;
}

.order-items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.3), rgba(16, 185, 129, 0.3));
    border-radius: 10px;
}

.order-items::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.5), rgba(16, 185, 129, 0.5));
}

.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(240, 253, 250, 0.6) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.order-item:hover {
    transform: translateX(4px);
    border-color: rgba(5, 150, 105, 0.2);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.order-item-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-color {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.order-item-qty {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.order-item-total {
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Order Total Row */
.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: linear-gradient(135deg,
            rgba(5, 150, 105, 0.08) 0%,
            rgba(16, 185, 129, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 16px;
    margin-bottom: 0;
}

.order-total-row span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}

.order-total-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Order Form (Right) */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-form .form-row {
    width: 100%;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 14px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-sizing: border-box;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(240, 253, 250, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: rgba(5, 150, 105, 0.4);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 0 0 4px rgba(5, 150, 105, 0.08),
        0 8px 20px rgba(5, 150, 105, 0.08);
    transform: translateY(-1px);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: #94a3b8;
    font-size: 0.9rem;
}

.order-form textarea {
    resize: none;
    min-height: 80px;
}

/* Privacy Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg,
            rgba(241, 245, 249, 0.9) 0%,
            rgba(240, 253, 250, 0.7) 100%);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.form-checkbox:hover {
    border-color: rgba(5, 150, 105, 0.2);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: #059669;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.form-checkbox label a:hover {
    color: #047857;
    text-decoration: underline;
}

/* Submit Button */
.order-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.order-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 0.5s ease;
}

.order-submit-btn:hover::before {
    left: 100%;
}

.order-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(5, 150, 105, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-submit-btn:active {
    transform: translateY(-1px);
}

.order-submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .order-modal-overlay {
        padding: 16px;
    }

    .order-modal {
        max-width: 480px;
        border-radius: 24px;
    }

    .order-modal-header {
        padding: 18px 22px;
        border-radius: 24px 24px 0 0;
    }

    .order-modal-header h3 {
        font-size: 1.1rem;
    }

    .order-modal-body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .order-items {
        max-height: 180px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .order-modal-overlay {
        padding: 12px;
    }

    .order-modal {
        max-height: 92vh;
        border-radius: 20px;
    }

    .order-modal::before {
        border-radius: 20px 20px 0 0;
    }

    .order-modal-header {
        padding: 16px 18px;
        border-radius: 20px 20px 0 0;
    }

    .order-modal-header h3 {
        font-size: 1rem;
    }

    .order-modal-close {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .order-modal-close svg {
        width: 18px;
        height: 18px;
    }

    .order-modal-body {
        padding: 18px;
        gap: 20px;
    }

    .order-section-title {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .order-items {
        max-height: 150px;
        gap: 10px;
    }

    .order-item {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 12px;
    }

    .order-item-image {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .order-item-name {
        font-size: 0.85rem;
    }

    .order-item-total {
        font-size: 0.9rem;
    }

    .order-total-row {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .order-total-price {
        font-size: 1.25rem;
    }

    .order-form {
        gap: 12px;
    }

    .order-form input,
    .order-form textarea {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .form-checkbox {
        padding: 12px 14px;
        border-radius: 12px;
        gap: 10px;
    }

    .form-checkbox label {
        font-size: 0.75rem;
    }

    .order-submit-btn {
        padding: 14px 20px;
        border-radius: 14px;
        font-size: 0.95rem;
    }
}


/* ============================================
   VARIANTS SECTION
   ============================================ */
.variants-section {
    padding: 0 0 2rem;
    background: #f8fafc;
}

.variants-section .container {
    max-width: 1400px;
}

.variants-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.variants-hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%);
}

.variants-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.variants-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.variants-counter {
    background: rgba(13, 148, 136, 0.12);
    color: #0d9488;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.variants-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

.variants-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.variants-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.variants-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%);
}

.variants-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(13, 148, 136, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 148, 136, 0.2);
}

.variants-image-wrap {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.variants-image {
    width: 100%;
    height: auto;
    min-height: 150px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Card Info */
.variants-card-info {
    padding: 1.25rem 0.5rem 0.5rem;
}

.variants-card-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
}

.variants-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #475569;
}

.feature-item svg {
    width: 18px;
    height: 18px;
    stroke: #0d9488;
    flex-shrink: 0;
}

.variants-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Chart */
.variants-chart {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.variants-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%);
}

.chart-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.chart-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.chart-title svg {
    width: 20px;
    height: 20px;
    stroke: #0d9488;
}

.chart-total-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.chart-total-badge span {
    font-size: 0.75rem;
    color: #64748b;
}

.chart-total-badge strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0d9488;
}

/* Trading Chart */
.trading-chart {
    position: relative;
    padding: 1rem 0;
}

.chart-grid {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
}

.chart-line-svg {
    width: 100%;
    height: 120px;
    display: block;
}

.chart-dot {
    filter: drop-shadow(0 2px 4px rgba(13, 148, 136, 0.3));
    transition: r 0.2s ease;
}

.chart-line-svg:hover .chart-dot {
    r: 8;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.chart-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.label-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d9488;
}

.label-name {
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
}

/* Variants Card Dark */
.variants-card-dark {
    background: linear-gradient(135deg,
            rgba(253, 251, 247, 0.95) 0%,
            rgba(250, 245, 235, 0.85) 100%);
    border-color: rgba(180, 160, 130, 0.15);
}

.variants-card-dark::before {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(210, 190, 160, 0.2) 50%,
            transparent 100%);
}

/* Glass Info Style */
.glass-info {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.25) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 1rem 1.25rem !important;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.info-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.info-header .variants-badge {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* Colored Badges */
.variants-badge.orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.variants-badge.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.variants-badge.pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.variants-badge.teal {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

/* Glass Features */
.glass-features {
    display: flex;
    gap: 0.5rem;
}

.glass-feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.glass-feature:hover {
    transform: translateY(-2px);
}

.glass-feature .feature-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.glass-feature .feature-text {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.25rem;
    text-align: center;
}

.glass-feature.teal {
    border-color: rgba(91, 138, 138, 0.3);
}

.glass-feature.teal .feature-num {
    color: #5b8a8a;
}

.glass-feature.indigo {
    border-color: rgba(107, 127, 168, 0.3);
}

.glass-feature.indigo .feature-num {
    color: #6b7fa8;
}

.glass-feature.amber {
    border-color: rgba(154, 138, 107, 0.3);
}

.glass-feature.amber .feature-num {
    color: #9a8a6b;
}

.glass-feature.pink {
    border-color: rgba(154, 122, 138, 0.3);
}

.glass-feature.pink .feature-num {
    color: #9a7a8a;
}

.glass-feature.violet {
    border-color: rgba(123, 107, 139, 0.3);
}

.glass-feature.violet .feature-num {
    color: #7b6b8b;
}

.glass-feature.cyan {
    border-color: rgba(91, 122, 138, 0.3);
}

.glass-feature.cyan .feature-num {
    color: #5b7a8a;
}

/* Variants Summary */
.variants-summary {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-top: 1rem;
}

.summary-center {
    text-align: center;
    padding: 0.5rem 1.75rem 0.5rem 0.5rem;
    border-right: 2px solid rgba(0, 0, 0, 0.06);
}

.summary-big-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.summary-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.4rem;
    letter-spacing: 0.01em;
}

.summary-items {
    display: flex;
    flex: 1;
    gap: 0.5rem;
    justify-content: center;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 70px;
}

.summary-item:hover {
    transform: translateY(-2px);
    background: #f1f5f9;
}

.summary-item .sum-num {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: #334155;
}

.summary-item .sum-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.3rem;
}

.summary-item.pink {
    border-color: rgba(154, 122, 138, 0.3);
    background: rgba(154, 122, 138, 0.06);
}

.summary-item.pink .sum-num {
    color: #9a7a8a;
}

.summary-item.indigo {
    border-color: rgba(107, 127, 168, 0.3);
    background: rgba(107, 127, 168, 0.06);
}

.summary-item.indigo .sum-num {
    color: #6b7fa8;
}

.summary-item.teal {
    border-color: rgba(91, 138, 138, 0.3);
    background: rgba(91, 138, 138, 0.06);
}

.summary-item.teal .sum-num {
    color: #5b8a8a;
}

.summary-item.amber {
    border-color: rgba(154, 138, 107, 0.3);
    background: rgba(154, 138, 107, 0.06);
}

.summary-item.amber .sum-num {
    color: #9a8a6b;
}

.summary-item.violet {
    border-color: rgba(123, 107, 139, 0.3);
    background: rgba(123, 107, 139, 0.06);
}

.summary-item.violet .sum-num {
    color: #7b6b8b;
}

/* Liquid Glass Icons */
.liquid-glass-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.liquid-glass-icon.teal {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(20, 184, 166, 0.25) 100%);
    border: 1px solid rgba(13, 148, 136, 0.3);
    stroke: #0d9488;
}

.liquid-glass-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(244, 114, 182, 0.25) 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
    stroke: #ec4899;
}

.liquid-glass-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.25) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    stroke: #8b5cf6;
}

.liquid-glass-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.25) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    stroke: #3b82f6;
}

.liquid-glass-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.25) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    stroke: #f97316;
}

/* Variants Bars Chart */
.variants-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.variant-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.variant-bar-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bar-icon-wrap {
    flex-shrink: 0;
}

.bar-icon-wrap .liquid-glass-icon {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 12px;
}

.bar-content {
    flex: 1;
    min-width: 0;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.bar-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.bar-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.bar-track {
    height: 8px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.8s ease;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 100px 100px 0 0;
}

.bar-fill.teal {
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 100%);
}

.bar-fill.pink {
    background: linear-gradient(90deg, #ec4899 0%, #f472b6 100%);
}

.bar-fill.purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.bar-fill.blue {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.bar-fill.orange {
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
}

/* Variants Section Responsive */
@media (max-width: 768px) {
    .variants-summary {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 16px;
    }

    .summary-center {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0 0 0.75rem 0;
        width: 100%;
    }

    .summary-big-number {
        font-size: 1.75rem;
    }

    .summary-label {
        font-size: 0.7rem;
    }

    .summary-items {
        flex-wrap: wrap;
        gap: 0.35rem;
        justify-content: center;
        width: 100%;
    }

    .summary-item {
        padding: 0.45rem 0.6rem;
        min-width: 55px;
        flex: 0 0 auto;
    }

    .summary-item .sum-num {
        font-size: 1rem;
    }

    .summary-item .sum-text {
        font-size: 0.55rem;
    }

    .glass-features {
        gap: 0.4rem;
    }

    .glass-feature {
        padding: 0.5rem 0.35rem;
    }

    .glass-feature .feature-num {
        font-size: 1.25rem;
    }

    .info-header {
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 0.75rem;
    }

    .info-header h4 {
        font-size: 0.9rem;
        margin: 0;
    }

    .info-header .variants-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
        vertical-align: middle;
        transform: translateY(-1px);
    }

    .banner-slider-section {
        display: none !important;
    }

    .variants-hero-block {
        padding: 1rem 1.25rem;
        border-radius: 18px;
    }

    .variants-hero-block .block-title {
        font-size: 1.35rem;
    }

    .variants-hero-block .block-description {
        display: none;
    }

    .variants-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .variants-card {
        border-radius: 20px;
    }

    .variants-image-wrap {
        border-radius: 16px;
    }

    .variants-card-info h4 {
        font-size: 1rem;
    }

    .variants-chart {
        border-radius: 20px;
    }

    .variant-bar-item {
        padding: 0.6rem 0.875rem;
        gap: 0.75rem;
    }

    .bar-icon-wrap .liquid-glass-icon {
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .bar-name {
        font-size: 0.85rem;
    }

    .bar-value {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .variants-hero-block {
        padding: 0.75rem 1rem;
        border-radius: 14px;
    }

    .variants-hero-block .block-title {
        font-size: 1.1rem;
    }

    .variants-card {
        padding: 0.875rem;
        border-radius: 16px;
    }

    .variants-image-wrap {
        border-radius: 14px;
    }

    .variants-card-info {
        padding: 1rem 0.25rem 0.25rem;
    }

    .variants-summary {
        padding: 0.6rem;
        border-radius: 12px;
        gap: 0.4rem;
    }

    .summary-center {
        padding: 0 0 0.4rem 0;
    }

    .summary-big-number {
        font-size: 1.35rem;
    }

    .summary-label {
        font-size: 0.6rem;
    }

    .summary-items {
        gap: 0.25rem;
    }

    .summary-item {
        padding: 0.35rem 0.4rem;
        min-width: 45px;
        border-radius: 8px;
    }

    .summary-item .sum-num {
        font-size: 0.85rem;
    }

    .summary-item .sum-text {
        font-size: 0.5rem;
    }

    .glass-info {
        padding: 0.75rem 1rem !important;
        border-radius: 12px;
    }

    .glass-feature {
        padding: 0.4rem 0.25rem;
        border-radius: 8px;
    }

    .glass-feature .feature-num {
        font-size: 1rem;
    }

    .glass-feature .feature-text {
        font-size: 0.6rem;
    }

    .variants-card-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .feature-item svg {
        width: 16px;
        height: 16px;
    }

    .variants-chart {
        padding: 1rem;
        border-radius: 16px;
    }

    .chart-title {
        font-size: 0.9rem;
    }

    .variant-bar-item {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .bar-icon-wrap .liquid-glass-icon {
        width: 32px;
        height: 32px;
        padding: 6px;
        border-radius: 8px;
    }

    .bar-name {
        font-size: 0.8rem;
    }

    .bar-value {
        font-size: 0.7rem;
    }

    .bar-track {
        height: 6px;
    }

    .variants-bars {
        gap: 0.75rem;
        margin-top: 1rem;
    }
}

/* Variants Image Click */
.variants-image-wrap {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.variants-image-wrap:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

/* ===============================================
   SECTION TITLES RESPONSIVE STYLES
   Advantages, FAQ, Contacts Hero Blocks
   =============================================== */

/* Base styles for Advantages Hero Block */
.advantages-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.advantages-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.advantages-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advantages-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.advantages-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Advantages Counter Badge */
.section-counter.advantages-counter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Base styles for FAQ Hero Block */
.faq-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.faq-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.faq-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* FAQ Counter Badge */
.section-counter.faq-counter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Base styles for Contacts Hero Block */
.contacts-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.contacts-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contacts-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contacts-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.contacts-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Contacts Counter Badge */
.section-counter.contacts-counter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Variants Counter Badge */
.section-counter.variants-counter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

/* ===============================================
   RESPONSIVE - TABLET (768px)
   =============================================== */
@media (max-width: 768px) {

    .advantages-hero-block,
    .faq-hero-block,
    .contacts-hero-block {
        padding: 1rem 1.25rem;
        border-radius: 18px;
        margin-bottom: 1.5rem;
    }

    .advantages-hero-block .block-title,
    .faq-hero-block .block-title,
    .contacts-hero-block .block-title {
        font-size: 1.35rem;
    }

    .advantages-hero-block .block-description,
    .faq-hero-block .block-description,
    .contacts-hero-block .block-description {
        font-size: 0.8rem;
    }

    .section-counter.advantages-counter,
    .section-counter.faq-counter,
    .section-counter.contacts-counter,
    .section-counter.variants-counter {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

    .advantages-hero-block .section-hero-top,
    .faq-hero-block .section-hero-top,
    .contacts-hero-block .section-hero-top {
        gap: 0.75rem;
    }
}

/* ===============================================
   RESPONSIVE - MOBILE (480px)
   All Section Titles Unified Compact Style
   =============================================== */
@media (max-width: 480px) {

    /* Unified compact style for ALL section hero blocks */
    .advantages-hero-block,
    .faq-hero-block,
    .contacts-hero-block,
    .popular-hero-block {
        padding: 0.6rem 0.85rem;
        border-radius: 12px;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .advantages-hero-block .section-hero-left,
    .faq-hero-block .section-hero-left,
    .contacts-hero-block .section-hero-left {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .advantages-hero-block .section-hero-top,
    .faq-hero-block .section-hero-top,
    .contacts-hero-block .section-hero-top {
        gap: 0.5rem;
    }

    .advantages-hero-block .block-title,
    .faq-hero-block .block-title,
    .contacts-hero-block .block-title,
    .popular-hero-block .block-title {
        font-size: 0.95rem;
        margin: 0;
        white-space: nowrap;
    }

    /* Hide descriptions on mobile */
    .advantages-hero-block .block-description,
    .faq-hero-block .block-description,
    .contacts-hero-block .block-description {
        display: none;
    }

    /* Compact badges on mobile */
    .section-counter.advantages-counter,
    .section-counter.faq-counter,
    .section-counter.contacts-counter,
    .section-counter.variants-counter {
        padding: 0.35rem 0.65rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }
}

/* ===============================================
   ADDITIONAL MOBILE IMPROVEMENTS (480px and below)
   =============================================== */
@media (max-width: 480px) {

    /* Advantages section improvements */
    .advantages {
        padding: 0 0 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .advantage-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .advantage-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.875rem;
    }

    .advantage-icon svg {
        width: 24px;
        height: 24px;
    }

    .advantage-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .advantage-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* FAQ section improvements */
    .faq-section {
        padding: 0 0 1.5rem;
    }

    .faq-grid {
        gap: 0.75rem;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-question svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Contacts section improvements */
    .contacts-section {
        padding: 0 0 1.5rem;
    }

    .contacts-cards-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .contact-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.875rem;
    }

    .contact-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-card-links {
        gap: 0.5rem;
    }

    .contact-card-links a,
    .contact-card-links span {
        font-size: 0.85rem;
    }

    .contact-card-links small {
        font-size: 0.7rem;
    }

    /* Maps improvements */
    .maps-row {
        gap: 0.875rem;
    }

    .map-card {
        border-radius: 14px;
    }

    .map-header {
        padding: 0.875rem 1rem;
    }

    .map-header h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .map-header span {
        font-size: 0.8rem;
    }

    .map-wrapper {
        height: 220px;
        border-radius: 0 0 14px 14px;
    }

    /* CTA Card improvements - horizontal layout on mobile */
    .contacts-cta-wrapper {
        margin-top: 1.25rem;
    }

    .cta-card {
        flex-direction: row;
        padding: 1rem 1.25rem;
        gap: 1rem;
        border-radius: 14px;
        align-items: center;
    }

    .cta-content {
        text-align: left;
        flex: 1;
    }

    .cta-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin: 0;
    }

    .cta-action {
        flex-shrink: 0;
    }

    .btn-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .cta-features {
        display: none;
    }
}

/* Ultra small devices - 400px and below */
@media (max-width: 400px) {
    .advantage-card {
        padding: 1rem;
    }

    .advantage-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }

    .advantage-icon svg {
        width: 22px;
        height: 22px;
    }

    .advantage-card h3 {
        font-size: 0.95rem;
    }

    .advantage-card p {
        font-size: 0.8rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }

    .faq-question svg {
        width: 18px;
        height: 18px;
    }

    .faq-answer p {
        padding: 0 1rem 0.875rem;
        font-size: 0.8rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card h4 {
        font-size: 0.95rem;
    }

    .contact-card-links a,
    .contact-card-links span {
        font-size: 0.8rem;
    }

    .map-wrapper {
        height: 200px;
    }

    .cta-card {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .cta-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .cta-content p {
        font-size: 0.7rem;
    }

    .btn-cta {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
}