/* ========================================
   GLOBAL VARIABLES
   ======================================== */

:root {
    /* Colors */
    --color-primary: #f15a24;
    --color-primary-dark: #d64b1a;
    --color-primary-light: #ff7f4d;
    --color-secondary: #1e1e1e;
    --color-bg: #0c0c0c;
    --color-bg-light: #1a1a1a;
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-accent: #ffb800;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f15a24, #ff7f4d);
    --gradient-primary-reverse: linear-gradient(135deg, #ff7f4d, #f15a24);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --gradient-glow: linear-gradient(135deg, rgba(241, 90, 36, 0.2), rgba(255, 127, 77, 0.2));
    --gradient-overlay: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    
    /* Typography */
    --font-display: "Clash Display", sans-serif;
    --font-body: "Archivo", sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 24px rgba(241, 90, 36, 0.3);
    --shadow-primary-lg: 0 16px 48px rgba(241, 90, 36, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Container */
    --container-width: 1280px;
    --container-padding: 2rem;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    /* background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    display: inline-block;
    color: #f9703c;
}
.title-line span {
    position: relative;
    bottom: 8px;
}
/* ========================================
   CONTAINER
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

/* ========================================
   PRELOADER
   ======================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #172627;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    gap: 0.25rem;
    color: #ff652a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-text.small
 {
    font-size: 2em;
    top: 30px;
    position: relative;
    color: #fff;
}

.preloader-text span {
    animation: preloaderJump 1.5s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--i, 0));
}

.preloader-text .spacer {
    width: 1rem;
}

.preloader-progress {
    width: 300px;
    height: 4px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

@keyframes preloaderJump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgb(17 23 24 / 80%);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
}

.logo-crash {
    color: var(--color-primary);
    display: block;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 1.8em;
}

.logo-lavash {
    color: var(--color-text);
    font-size: 1rem;
    letter-spacing: 4px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-nav {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-nav:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at 30% 50%, rgba(241, 90, 36, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 127, 77, 0.1) 0%, transparent 50%); */
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(180deg, #132327, #1a2327);
    /* background-size: 50px 50px; */
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(60px);
    animation: float 20s infinite;
}

.floating-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    animation-delay: -5s;
}

.floating-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 30%;
    animation-delay: -10s;
}

.floating-circle:nth-child(4) {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -50px) scale(1.1); }
    50% { transform: translate(50px, 100px) scale(0.9); }
    75% { transform: translate(-50px, 50px) scale(1.05); }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(241, 90, 36, 0.1);
    border: 1px solid rgba(241, 90, 36, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: block;
    animation: revealTitle 1s var(--delay, 0s) ease forwards;
    transform: translateY(100%);
}

@keyframes revealTitle {
    to { transform: translateY(0); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    border: 2px solid var(--color-border);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

.btn-primary i {
    transition: var(--transition-base);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: white;
}

.btn-secondary:hover {
    background: rgba(241, 90, 36, 0.1);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 90, 36, 0.3) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-image-badge {
    position: absolute;
    top: 10%;
    right: 0;
    background: var(--gradient-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #1a2327, #132327);
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-tag {
    padding-left: 0;
}

.section-header.centered .section-tag::before {
    display: none;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
}

.section-tag.light {
    color: var(--color-text);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}

.product-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(44, 55, 71, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.brand-selector {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.brand-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    font-weight: 500;
}

.brand-btn:hover,
.brand-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.filter-selector {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    font-weight: 500;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 80%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(241, 90, 36, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    /* background: #f86c3866; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-primary);
}

.product-content {
    padding: 2rem;
}

.product-brand {
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-nutrition {
    display: grid;
    grid-template-columns: repeat(5, 0.5fr);
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.nutrition-item {
    text-align: center;
}

.nutrition-value {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.nutrition-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.product-composition {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-link:hover {
    background: var(--color-primary);
    transform: translateX(5px);
    color: white;
}

.load-more {
    text-align: center;
}

.btn-load-more {
    background: transparent;
    border: 2px solid var(--color-border);
    color: white;
    padding: 1rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-load-more:hover {
    border-color: var(--color-primary);
    background: rgba(241, 90, 36, 0.1);
}

.btn-load-more i {
    transition: var(--transition-base);
}

.btn-load-more:hover i {
    transform: rotate(180deg);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/media/process-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(24 37 30 / 95%) 0%, rgb(35 39 45 / 80%) 50%, rgb(24 33 26 / 95%) 100%);
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.process-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(20px);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.process-card-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-stat {
    text-align: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.process-stat:last-child {
    border-bottom: none;
}

.process-stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.process-stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #122116, #202c31);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 90, 36, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
    padding: var(--spacing-xl) 0;
    padding: var(--spacing-xl) 0;
    /* background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg)); */
    background-image: url(/media/paralax-bg.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.blur{
    top: -40px;
    bottom: -40px;
    position: absolute;
    z-index: 0;
    filter: blur(10px);
    left: -40px;
    right: -40px;
    background: linear-gradient(135deg, #122116d1, #202631ba);
    backdrop-filter: blur(20px);
}
.reviews-slider {
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition-base);
    margin-bottom: 2rem;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: var(--color-accent);
}

.review-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reviews-actions {
    text-align: center;
}

/* ========================================
   CONTACTS SECTION
   ======================================== */

.contacts {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #242e3d, var(--color-bg));
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-items {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-item:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.contact-icon {
    width: 58px;
    height: 50px;
    background: rgba(241, 90, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.contact-item:hover .contact-icon {
    background: var(--color-primary);
    color: white;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--color-text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.2rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.map-container {
    width: 100%;
    min-height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    height: 95%;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #0e151a;
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
}

.footer-brand p {
    color: var(--color-text-secondary);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-column ul li a:hover
 {
    color: #f0f0f0;
    /* padding-left: 5px; */
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    transform: scale(0.9);
    transition: var(--transition-base);
    z-index: 2;
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(241, 90, 36, 0.1);
}

.rating-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stars-input {
    display: flex;
    gap: 0.5rem;
}

.stars-input i {
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.stars-input i.active,
.stars-input i:hover {
    color: var(--color-accent);
}

.btn-full {
    width: 100%;
}

/* ========================================
   PRODUCT 3D MODAL
   ======================================== */

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 33 37 / 76%);
    backdrop-filter: blur(20px);
}

.product-modal-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(241, 90, 36, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(241, 90, 36, 0.2);
    z-index: 2;
}

.product-modal.active .product-modal-container {
    transform: scale(1);
    box-shadow: 0 0 56px #f96d3970;
}

.product-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
    border-color: var(--color-primary);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* 3D Сцена */
.product-modal-3d {
    position: relative;
    height: 600px;
    background: #0a0a0a;
    overflow: hidden;
    border-right: 1px solid rgba(241, 90, 36, 0.3);
}

.product-3d-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 5;
    color: white;
    font-size: 1rem;
    gap: 1rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(241, 90, 36, 0.3);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Информационная панель */
.product-modal-info {
    padding: 3rem;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.product-modal-info.animated {
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-info-content {
    width: 100%;
}

.product-info-brand {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    background: rgba(241, 90, 36, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(241, 90, 36, 0.3);
}

.product-info-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #f15a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Анимация для слов описания */
.product-info-description {
    margin-bottom: 2rem;
}

.desc-word {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-right: 0.3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.desc-word.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Нутриенты */
.product-info-nutrition {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.nutrition-grid .nutrition-item {
    text-align: center;
}

.nutrition-grid .nutrition-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.nutrition-grid .nutrition-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Состав */
.product-info-composition {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.composition-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.composition-text {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* Бейдж */
.product-info-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
    animation: pulse 2s infinite;
}

/* Адаптация */
@media (max-width: 992px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .product-modal-3d {
        height: 400px;
        border-right: none;
        border-bottom: 1px solid rgba(241, 90, 36, 0.3);
    }
    
    .product-modal-info {
        padding: 2rem;
    }
    
    .product-info-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .product-modal-info {
        padding: 1.5rem;
    }
    
    .product-info-title {
        font-size: 2rem;
    }
    
    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
.product-modal-3d {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #0a0a1a, #1a1a2a);
    overflow: hidden;
    border-right: 1px solid rgba(241, 90, 36, 0.3);
}

.product-3d-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10;
    color: white;
    font-size: 1rem;
    gap: 1.5rem;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(241, 90, 36, 0.2);
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(241, 90, 36, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.product-modal-3d {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent; /* Прозрачный фон */
}

.product-modal-3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    background: transparent;
}

/* Убираем фон у модального окна */
.product-modal-container {
    background: #d6dadd29;
    border: none;
    box-shadow: none;
}

.product-modal-grid {
    background: transparent;
}

@media (max-width: 992px) {
    .product-modal-3d {
        height: 400px;
    }
}

/* ========================================
   ORDER MODAL
   ======================================== */

.order-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(241, 90, 36, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

/* Стили для выбора количества */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.quantity-selector input {
    width: 80px;
    text-align: center;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Чекбокс */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Информация о доставке */
.order-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.order-info-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-info-text i {
    color: var(--color-primary);
    width: 20px;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Toast уведомление */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}
img.hero-image {
    max-height: 460px;
}
.hero-visual.aos-init.aos-animate {
    display: flex;
    justify-content: flex-end;
}
select option {
    background: #333;
}
.img_brand {
    width: 68px;
    height: 68px;
    border: 1px solid #f9703c;
    border-radius: 50%;
    padding: 2px;
    position: absolute;
    right: -28px;
    top: -68px;
    transform: rotate(0deg);
    transition-property: all;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
}
.product-link{
    transition-property: opacity, transform;
    transition-timing-function: ease-in-out;
    transition-duration: 1s;
}
.product-link:hover .img_brand {
    transform: rotate(345deg) scale(1.1);
    right: -20px;
}
#modalProductBrandLogo {
    position: absolute;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8px;
    left: 18px;
    top: 30px;
    box-sizing: border-box;
    animation: floatImage 6s ease-in-out infinite;
    box-shadow: 0 0 8px #00000066;
    transition: all 2s;
}
img.modal-brand-logo {
    width: 100%;
    height: 100%;
}
a[href^="tel:"],
a[href^="mailto:"] {
  color: #f39473;
  text-decoration: none;
  display: block;
    letter-spacing: 1px;
}
.contact-details {
    width: 100%;
}
.hr-contacts {
    background: transparent;
    height: 1px;
    width: 100%;
    border: none;
    border-top: 1px dotted;
    margin: 10px 0;
}
button.brand-btn.contacts {
    height: auto;
    display: contents;
}
/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(12, 12, 12, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-menu.active .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-container,
    .process-wrapper,
    .contacts-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
        text-align: center;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .product-filters {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .modal-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        max-width: 100vw;
        overflow-x: hidden !important;
    }
    .navbar {
        max-width: 100vw;
    }
    .navbar.scrolled {
        max-width: 100vw;
    }
    #productModal {
        max-width: 100vw;
        max-height: 100vh;
    }
    .product-modal-container {
        max-width: 95%;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-container {
        margin-bottom: 85px;
    }
    img.hero-image {
        top: 35px;
        max-height: 360px !important;
        display: block;
        position: relative;
    }
    .hero-stats.aos-init.aos-animate {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .product-filters {
        padding: 1rem;
    }
    
    .brand-selector,
    .filter-selector {
        width: 100%;
    }
    
    .brand-btn,
    .filter-btn {
        flex: 1;
        text-align: center;
    }
    .process-card {
        padding: 2em;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 2em;
        justify-items: stretch;
        align-items: stretch;
    }
    .product-modal-container {
        width: 95% !important;
        height: 95%;
        box-sizing: border-box;
        display: grid;
        justify-items: center;
        align-items: center;
    }
    .product-modal-grid {
        width: 100% !important;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }
    div#product3DScene
    {
        height: 100%;
        width: 100% !important;
        border: none;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }
    div#productModalInfo {
        font-size: 10px;
        width: 100%;
        height: fit-content;
    }
    #productModalInfo {
        padding: 4px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }
    .product-info-content {
        max-width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        height: 100%;
    }
    span#modalProductBrand {
        font-size: 1em;
        padding: 4px 4px;
        font-weight: 600;
    }
    #modalProductBrand {
        font-size: 1em;
        padding: 4px 4px;
        font-weight: 600;
        margin-bottom: 0;
    }
    div#modalProductDescription {
        margin-bottom: 4px;
        line-height: 1;
        font-size: 1em;
    }
    span.desc-word.visible {
        font-size: inherit;
        letter-spacing: 0.1em;
        font-size: 1.1em;
    }
    h2#modalProductTitle {
        margin-bottom: 4px;
        font-size: 2em;
    }
    div#modalProductNutrition {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .product-info-nutrition {
        margin-bottom: 4px;
    }
    .nutrition-label,
    .nutrition-value {
        font-size: 1.6em !important;
    }
    .product-modal-grid {
        grid-template-columns: 1fr;
        display: grid;
        justify-items: center;
        grid-template-rows: repeat(2, 1fr);
    }
    .product-link .product-nutrition {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .product-link .nutrition-value, .product-link .nutrition-label {
        font-size: 1em !important;
    }
    .product-link .nutrition-label {
        font-size: 0.8em !important;
    }
    .product-info-composition {
        margin-bottom: 4px;
        padding: 12px;
    }
    span.composition-text,
    span.composition-label {
        font-size: 0.9em;
        letter-spacing: 0.2em;
    }
    div#modalProductBadge {
        font-size: 0.8em;
        padding: 4px;
    }
    .reviews {
        overflow: hidden;
    }
}
