/* ============================================
   MACUN MED - COMPLETE CSS STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary: #9b0200;
    --primary-dark: #7a0100;
    --primary-light: #b50301;
    --secondary: #f5f0e8;
    --accent: #d4af37;
    --text: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --background: #faf8f4;
    --background-light: #f5f0e8;
    --border: #e5e5e5;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Tangerine', cursive;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    border-radius: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    gap: var(--spacing-md);
}

.nav__logo {
    flex-shrink: 0;
}

.nav__logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav__menu {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    flex-wrap: nowrap;
}

.nav__item {
    list-style: none;
    flex-shrink: 0;
}

.nav__link {
    color: var(--white);
    font-weight: 400;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: block;
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    min-height: 70vh;
    background-image: url('img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.6), 
                inset 0 0 100px rgba(0, 0, 0, 0.4),
                inset 0 0 50px rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero__symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero__symbol--male {
    color: #4a90e2;
}

.hero__symbol--female {
    color: #e24a90;
}

.hero__symbol--heart {
    color: var(--primary);
}

.hero__symbol--small {
    font-size: 1.5rem;
}

.hero__symbol--medium {
    font-size: 2.5rem;
}

.hero__symbol--large {
    font-size: 3.5rem;
}

.hero__symbol--xlarge {
    font-size: 4.5rem;
}

.hero__symbol--xsmall {
    font-size: 1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) translateX(20px) rotate(3deg);
    }
}

@keyframes floatProducts {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    20% {
        transform: translateY(-50px) translateX(30px) rotate(8deg);
    }
    40% {
        transform: translateY(-60px) translateX(-25px) rotate(-8deg);
    }
    60% {
        transform: translateY(-40px) translateX(40px) rotate(5deg);
    }
    80% {
        transform: translateY(-30px) translateX(-20px) rotate(-5deg);
    }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.hero__content {
    z-index: 2;
    position: relative;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero__cta .btn {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__cta .btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero__cta .btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 2, 0, 0.3);
}

.hero__cta .btn--secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero__cta .btn--secondary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero__image {
    text-align: center;
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    text-align: center;
    width: 100%;
}

.hero__trust-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.hero__trust-item::before {
    content: '✔';
    color: var(--accent);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero__image--mobile {
    display: none;
}

.hero__image--desktop {
    display: block;
}

.hero__img {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: heroImageFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

a.btn {
    text-decoration: none;
    color: inherit;
}

.btn--primary {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border: none !important;
}

.btn--primary:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}

.btn--secondary {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn--secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn--block {
    width: 100%;
    display: block;
}

/* Floating Symbols */
.floating-symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.floating-symbol--male {
    color: #4a90e2;
}

.floating-symbol--female {
    color: #e24a90;
}

.floating-symbol--heart {
    color: var(--primary);
}

.floating-symbol--small {
    font-size: 1.5rem;
}

.floating-symbol--medium {
    font-size: 2.5rem;
}

.floating-symbol--large {
    font-size: 3.5rem;
}

.floating-symbol--xlarge {
    font-size: 4.5rem;
}

.floating-symbol--xsmall {
    font-size: 1rem;
}

/* Section Separator */
.section-separator {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(155, 2, 0, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    margin: 0;
    z-index: 10;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 50%, 
        transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(155, 2, 0, 0.5);
}

.section-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xxl) 0;
    background-image: url('img/benefit-bg1.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.benefits__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-md);
}

.benefits__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.3) 0%, rgba(155, 2, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffcccc;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 204, 204, 0.3);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.2);
}

.benefits__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    position: relative;
}

.benefits__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.benefits__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.8;
    font-family: var(--font-body);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.benefits__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-item__icon-wrapper {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(155, 2, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-item__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(155, 2, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit-item__icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.benefit-item__content {
    flex: 1;
}

.benefit-item__number {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.benefit-item__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-item__description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Floating symbols for benefits section */
.benefits .floating-symbol {
    opacity: 0.12;
    animation: float 12s ease-in-out infinite;
    z-index: 1;
}

.benefits .floating-symbol--heart {
    opacity: 0.15;
}

/* Special Section */
.special {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.special__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-md);
}

.special__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.15) 0%, rgba(155, 2, 0, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(155, 2, 0, 0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.15);
}

.special__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.special__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.special__intro-text {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    font-family: var(--font-body);
}

.special__ingredients {
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.ingredient-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(155, 2, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.ingredient-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ingredient-badge:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(155, 2, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(155, 2, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.ingredient-badge:hover::before {
    opacity: 1;
}

.ingredient-badge__icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.ingredient-badge:hover .ingredient-badge__icon {
    transform: scale(1.15) rotate(5deg);
}

.ingredient-badge__content {
    flex: 1;
}

.ingredient-badge__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.ingredient-badge__description {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

/* Floating symbols for special section */
.special .floating-symbol {
    opacity: 0.08;
    animation: float 14s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.special .floating-symbol--heart {
    opacity: 0.1;
    color: var(--primary);
}

.special .floating-symbol--male {
    opacity: 0.08;
    color: #4a90e2;
}

.special .floating-symbol--female {
    opacity: 0.08;
    color: #e24a90;
}

/* Products Section */
.products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Floating symbols for products section */
.products .floating-symbol {
    opacity: 0.08;
    animation: floatProducts 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.products .floating-symbol--heart {
    opacity: 0.1;
    color: var(--primary);
}

.products .floating-symbol--male {
    opacity: 0.08;
    color: #4a90e2;
}

.products .floating-symbol--female {
    opacity: 0.08;
    color: #e24a90;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(155, 2, 0, 0.12);
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(155, 2, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(155, 2, 0, 0.35);
    background: rgba(255, 255, 255, 1);
}

.product-card:hover::before {
    opacity: 1;
}

.products__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-md);
}

.products__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.15) 0%, rgba(155, 2, 0, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(155, 2, 0, 0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.15);
}

.products__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.products__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.products__subtitle {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    font-family: var(--font-body);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.products__empty {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

/* Product Card - Modern styles already defined above */

.product-card__badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.product-card__image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #fbfbfb;
    position: relative;
}

.product-card__image::before {
    display: none;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-card__content {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: transparent;
}

.product-card__header {
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(155, 2, 0, 0.15);
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-card__description-wrapper {
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.product-card__description {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.9rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.product-card__read-more {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: var(--spacing-xs);
}

.product-card__read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateX(3px);
}

.product-card__packages-table-wrapper {
    margin: var(--spacing-md) calc(var(--spacing-xl) * -1) var(--spacing-md);
    overflow-x: auto;
}

.product-card__packages-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: var(--white);
    border: 1px solid rgba(155, 2, 0, 0.15);
}

.product-card__packages-table thead {
    background: var(--white);
    color: var(--text);
}

.product-card__packages-table th {
    padding: 8px 10px;
    text-align: left;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(155, 2, 0, 0.2);
    border-right: 1px solid rgba(155, 2, 0, 0.1);
    white-space: nowrap;
    color: var(--text);
}

.product-card__packages-table th:last-child {
    border-right: none;
}

.product-card__packages-table th:first-child {
    padding-left: var(--spacing-xl);
}

.product-card__packages-table th:last-child {
    padding-right: var(--spacing-xl);
    text-align: right;
}

.product-card__packages-table tbody tr {
    border-bottom: 1px solid rgba(155, 2, 0, 0.08);
    transition: background-color 0.2s ease;
}

.product-card__packages-table tbody tr:hover {
    background-color: rgba(155, 2, 0, 0.03);
}

.product-card__packages-table tbody tr:last-child {
    border-bottom: none;
}


.product-card__packages-table td {
    padding: 8px 10px;
    color: var(--text);
    font-size: 0.8rem;
    vertical-align: middle;
    white-space: nowrap;
}

.product-card__packages-table td:first-child {
    padding-left: var(--spacing-xl);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.75rem;
}

.product-card__packages-table td:nth-child(2) {
    white-space: nowrap;
    font-size: 0.8rem;
}

.product-card__packages-table td:last-child {
    padding-right: var(--spacing-xl);
    text-align: right;
    white-space: nowrap;
    font-size: 0.75rem;
}

.product-card__packages-table td strong {
    color: var(--primary);
    font-weight: 700;
}

.product-card__packages-bonus {
    display: inline-block;
    padding: 1px 4px;
    background: #28a745;
    color: var(--white);
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1.2;
}

.product-card__packages-savings-cell {
    text-align: right !important;
}

.product-card__packages-savings {
    color: #128a3a;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
}

.product-card__packages-savings-percent {
    color: #128a3a;
    font-size: 0.7rem;
    opacity: 0.85;
    margin-left: 3px;
}

.product-card__packages-cell--muted {
    color: var(--text-light);
    opacity: 0.6;
}

/* Responsive for packages table */
@media (max-width: 768px) {
    .product-card__packages-table-wrapper {
        margin: var(--spacing-md) calc(var(--spacing-lg) * -1) var(--spacing-md);
    }
    
    .product-card__packages-table {
        font-size: 0.8rem;
    }
    
    .product-card__packages-table th {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    .product-card__packages-table th:first-child {
        padding-left: var(--spacing-lg);
    }
    
    .product-card__packages-table th:last-child {
        padding-right: var(--spacing-lg);
    }
    
    .product-card__packages-table td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .product-card__packages-table td:first-child {
        padding-left: var(--spacing-lg);
    }
    
    .product-card__packages-table td:last-child {
        padding-right: var(--spacing-lg);
    }
}

.product-card__price-wrapper {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.product-card__price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card__price-unit {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-card__delivery-info {
    margin-bottom: var(--spacing-md);
}

.product-card__delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card__delivery-badge:hover {
    background: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.product-card__delivery-badge::before {
    content: '🚚';
    font-size: 1rem;
    display: inline-block;
}

.product-card__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: auto;
}

/* Usage Section */
.usage {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #430c11 0%, #71120e 50%, #400a0a 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.usage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.usage__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-md);
}

.usage__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.usage__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    position: relative;
}

.usage__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.usage__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.8;
    font-family: var(--font-body);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.usage__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.usage__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.usage__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.usage__card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.usage__number-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.usage__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(255, 100, 100, 1) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(155, 2, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.usage__card:hover .usage__number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(155, 2, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.usage__card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.usage__description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Floating symbols for usage section */
.usage .floating-symbol {
    opacity: 0.1;
    animation: floatProducts 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.usage .floating-symbol--heart {
    opacity: 0.12;
    color: rgba(255, 255, 255, 0.8);
}

.usage .floating-symbol--male {
    opacity: 0.1;
    color: rgba(200, 220, 255, 0.9);
}

.usage .floating-symbol--female {
    opacity: 0.1;
    color: rgba(255, 200, 220, 0.9);
}

/* Delivery Section */
.delivery {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 245, 240, 0.95) 50%, rgba(255, 250, 245, 0.98) 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.delivery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(155, 2, 0, 0.05) 0%, rgba(155, 2, 0, 0.02) 50%, rgba(155, 2, 0, 0.05) 100%);
    z-index: 1;
}

.delivery__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-md);
}

.delivery__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.15) 0%, rgba(155, 2, 0, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(155, 2, 0, 0.2);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.1);
}

.delivery__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(155, 2, 0, 0.15);
    line-height: 1.1;
    position: relative;
}

.delivery__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(155, 2, 0, 0.4), transparent);
    border-radius: 2px;
}

.delivery__subtitle {
    font-size: 1.2rem;
    color: rgba(155, 2, 0, 0.7);
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.8;
    font-family: var(--font-body);
    font-style: italic;
}

.delivery__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.delivery__item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(155, 2, 0, 0.15);
    box-shadow: 0 8px 30px rgba(155, 2, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.delivery__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(155, 2, 0, 0.3), transparent);
}

.delivery__item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(155, 2, 0, 0.3);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 50px rgba(155, 2, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.delivery__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.delivery__icon {
    font-size: 4.5rem;
    filter: drop-shadow(0 4px 15px rgba(155, 2, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.delivery__item:hover .delivery__icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 25px rgba(155, 2, 0, 0.3));
}

.delivery__item-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.delivery__text {
    color: rgba(155, 2, 0, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
}

.delivery__free-banner {
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.15) 0%, rgba(200, 50, 50, 0.12) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(155, 2, 0, 0.25);
    border-radius: 24px;
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(155, 2, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.delivery__free-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(155, 2, 0, 0.5), transparent);
}

.delivery__free-banner:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 2, 0, 0.35);
    box-shadow: 0 15px 50px rgba(155, 2, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.delivery__free-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 15px rgba(155, 2, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.delivery__free-content {
    flex: 1;
}

.delivery__free-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.delivery__free-text {
    color: rgba(155, 2, 0, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.delivery__free-text strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
}

.delivery__note {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 2, 0, 0.15);
    border-left: 4px solid rgba(155, 2, 0, 0.4);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(155, 2, 0, 0.1);
    text-align: center;
}

.delivery__note-text {
    color: rgba(155, 2, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Floating symbols for delivery section */
.delivery .floating-symbol {
    opacity: 0.08;
    animation: floatProducts 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.delivery .floating-symbol--heart {
    opacity: 0.1;
    color: rgba(155, 2, 0, 0.4);
}

.delivery .floating-symbol--male {
    opacity: 0.08;
    color: rgba(155, 2, 0, 0.3);
}

.delivery .floating-symbol--female {
    opacity: 0.08;
    color: rgba(155, 2, 0, 0.3);
}

/* Responsive adjustments for delivery section */
@media (max-width: 968px) {
    .delivery__title {
        font-size: 3rem;
    }
    
    .delivery__subtitle {
        font-size: 1.1rem;
    }
    
    .delivery__free-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .delivery__free-icon {
        font-size: 3.5rem;
    }
    
    .delivery__free-title {
        font-size: 1.6rem;
    }
    
    .delivery__free-text {
        font-size: 1rem;
    }
    
    .delivery__content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .delivery__item {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .delivery__icon {
        font-size: 4rem;
    }
    
    .delivery__item-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .delivery__title {
        font-size: 2.5rem;
    }
    
    .delivery__subtitle {
        font-size: 1rem;
    }
    
    .delivery__free-banner {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .delivery__free-icon {
        font-size: 3rem;
    }
    
    .delivery__free-title {
        font-size: 1.4rem;
    }
    
    .delivery__free-text {
        font-size: 0.95rem;
    }
    
    .delivery__free-text strong {
        font-size: 1.05rem;
    }
    
    .delivery__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .delivery__icon {
        font-size: 3.5rem;
    }
    
    .delivery__item-title {
        font-size: 1.2rem;
    }
    
    .delivery__text {
        font-size: 0.9rem;
    }
}

/* Reviews Section */
.reviews {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.98) 0%, rgba(120, 20, 30, 0.95) 50%, rgba(155, 2, 0, 0.98) 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.reviews .section__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.reviews .section__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.reviews__slider-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.reviews__slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
}

.reviews__slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.reviews__slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.reviews__slider-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-color: rgba(155, 2, 0, 0.2);
}

.reviews__slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.reviews__slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--spacing-lg);
}

.review-card {
    min-width: calc(50% - var(--spacing-lg) / 2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(155, 2, 0, 0.3), transparent);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(155, 2, 0, 0.3);
    box-shadow: 0 15px 40px rgba(155, 2, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.review-card__stars {
    color: #ffc107;
    font-size: 1.4rem;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.5));
    font-weight: 700;
}

.review-card__date {
    color: rgba(155, 2, 0, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.review-card__body {
    margin-bottom: var(--spacing-md);
}

.review-card__text {
    color: rgba(155, 2, 0, 0.9);
    line-height: 1.9;
    font-size: 1.05rem;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: var(--spacing-lg);
    font-family: var(--font-body);
    font-weight: 400;
}

.review-card__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: rgba(155, 2, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card__footer {
    border-top: 1px solid rgba(155, 2, 0, 0.15);
    padding-top: var(--spacing-sm);
}

.review-card__author {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.reviews__dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews__dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.reviews__dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Floating symbols for reviews section */
.reviews .floating-symbol {
    opacity: 0.08;
    animation: floatProducts 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.reviews .floating-symbol--heart {
    opacity: 0.1;
    color: rgba(155, 2, 0, 0.4);
}

.reviews .floating-symbol--male {
    opacity: 0.08;
    color: rgba(155, 2, 0, 0.3);
}

.reviews .floating-symbol--female {
    opacity: 0.08;
    color: rgba(155, 2, 0, 0.3);
}

/* Responsive adjustments for reviews section */
@media (min-width: 1400px) {
    .review-card {
        min-width: calc(33.333% - var(--spacing-lg) * 2 / 3);
    }
}

@media (min-width: 968px) and (max-width: 1399px) {
    .review-card {
        min-width: calc(50% - var(--spacing-lg) / 2);
    }
}

@media (max-width: 968px) {
    .reviews .section__title {
        font-size: 3rem;
    }
    
    .reviews__slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .review-card {
        min-width: calc(50% - var(--spacing-lg) / 2);
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .reviews .section__title {
        font-size: 2.5rem;
    }
    
    .reviews__slider-wrapper {
        gap: 6px;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .reviews__slider-container {
        padding: 0;
        margin: 0;
        width: calc(100% - 92px);
        flex: 1;
        overflow: hidden;
        max-width: calc(100% - 92px);
        box-sizing: border-box;
    }
    
    .reviews__slider-track {
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
    }
    
    .reviews__slider-btn {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        position: relative;
        z-index: 10;
        padding: 0;
        margin: 0;
    }
    
    .reviews__slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .review-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: var(--spacing-md) var(--spacing-sm);
        margin: 0;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .review-card__header {
        margin-bottom: var(--spacing-sm);
    }
    
    .review-card__body {
        margin-bottom: var(--spacing-sm);
    }
    
    .review-card__text {
        font-size: 0.9rem;
        line-height: 1.7;
        padding-left: var(--spacing-sm);
    }
    
    .review-card__text::before {
        font-size: 2rem;
        top: -5px;
    }
    
    .review-card__stars {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .review-card__date {
        font-size: 0.8rem;
    }
    
    .review-card__author {
        font-size: 0.95rem;
    }
}

/* FAQ Section - Modern Design */
.faq {
    padding: calc(var(--spacing-xxl) * 1.5) 0;
    background: linear-gradient(135deg, 
        rgba(255, 250, 245, 0.98) 0%, 
        rgba(255, 245, 240, 0.95) 50%, 
        rgba(255, 250, 245, 0.98) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(155, 2, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 2, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq__header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    position: relative;
    z-index: 2;
}

.faq__label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.1) 0%, rgba(155, 2, 0, 0.15) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 2, 0, 0.2);
    transition: all 0.3s ease;
}

.faq__label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 2, 0, 0.15);
}

.faq__title {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(155, 2, 0, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq__subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(155, 2, 0, 0.08);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(155, 2, 0, 0.6) 100%);
    transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0 0 4px 4px;
}

.faq-item:hover {
    border-color: rgba(155, 2, 0, 0.2);
    box-shadow: 
        0 8px 30px rgba(155, 2, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item.active {
    box-shadow: 
        0 12px 40px rgba(155, 2, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(155, 2, 0, 0.3);
    transform: translateY(-2px);
}

.faq-item.active::before {
    height: 100%;
}

.faq-item__question {
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-item__question:hover {
    background-color: rgba(155, 2, 0, 0.02);
}

.faq-item__question:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    background-color: rgba(155, 2, 0, 0.05);
}

.faq-item__question:focus:not(:focus-visible) {
    outline: none;
}

.faq-item__question-text {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-item__question-text {
    color: rgba(155, 2, 0, 0.9);
}

.faq-item.active .faq-item__question-text {
    color: var(--primary);
    font-weight: 700;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.1) 0%, rgba(155, 2, 0, 0.15) 100%);
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-item__icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover .faq-item__icon {
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.2) 0%, rgba(155, 2, 0, 0.25) 100%);
    transform: scale(1.1);
}

.faq-item.active .faq-item__icon {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(155, 2, 0, 0.9) 100%);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.3);
}

.faq-item.active .faq-item__icon svg {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease 0.1s, 
                padding 0.4s ease;
    opacity: 0;
    padding: 0 var(--spacing-xl);
}

.faq-item.active .faq-item__answer {
    max-height: 2000px;
    opacity: 1;
    padding-top: 0;
    padding-bottom: var(--spacing-xl);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease 0.1s, 
                padding 0.5s ease;
}

.faq-item__answer-content {
    padding-top: var(--spacing-sm);
    color: var(--text);
    line-height: 1.8;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.faq-item__answer-content p {
    margin-bottom: var(--spacing-md);
}

.faq-item__answer-content p:last-child {
    margin-bottom: 0;
}

.faq-item__answer-content ul,
.faq-item__answer-content ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.faq-item__answer-content li {
    margin-bottom: var(--spacing-xs);
}

.faq__empty {
    padding: var(--spacing-xl);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Animated Floating Symbols for FAQ */
.faq-floating-symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: faqFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    filter: blur(0.5px);
    will-change: transform, opacity;
}

.faq-floating-symbol--heart {
    color: rgba(155, 2, 0, 0.15);
    animation-name: faqFloatHeart;
}

.faq-floating-symbol--male {
    color: rgba(74, 144, 226, 0.12);
    animation-name: faqFloatMale;
}

.faq-floating-symbol--female {
    color: rgba(226, 74, 144, 0.12);
    animation-name: faqFloatFemale;
}

.faq-floating-symbol--xsmall {
    font-size: 1.2rem;
    opacity: 0.08;
}

.faq-floating-symbol--small {
    font-size: 1.8rem;
    opacity: 0.1;
}

.faq-floating-symbol--medium {
    font-size: 2.5rem;
    opacity: 0.12;
}

.faq-floating-symbol--large {
    font-size: 3.5rem;
    opacity: 0.15;
}

.faq-floating-symbol--xlarge {
    font-size: 4.5rem;
    opacity: 0.18;
}

@keyframes faqFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(30px, -50px) rotate(180deg) scale(1.1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(60px, -100px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes faqFloatHeart {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(-40px, -60px) rotate(-180deg) scale(1.15);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-80px, -120px) rotate(-360deg) scale(1);
        opacity: 0;
    }
}

@keyframes faqFloatMale {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(50px, -40px) rotate(180deg) scale(1.1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -80px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes faqFloatFemale {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(-30px, -70px) rotate(-180deg) scale(1.2);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-60px, -140px) rotate(-360deg) scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments for FAQ section */
@media (max-width: 968px) {
    .faq {
        padding: var(--spacing-xxl) 0;
    }
    
    .faq__title {
        font-size: 2.5rem;
    }
    
    .faq__subtitle {
        font-size: 1.1rem;
        padding: 0 var(--spacing-md);
    }
    
    .faq-item__question {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .faq-item__answer {
        padding: 0 var(--spacing-lg);
    }
    
    .faq-item.active .faq-item__answer {
        padding-bottom: var(--spacing-lg);
    }
    
    .faq-floating-symbol {
        font-size: 1.5rem;
    }
    
    .faq-floating-symbol--large {
        font-size: 2.5rem;
    }
    
    .faq-floating-symbol--xlarge {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .faq__title {
        font-size: 2rem;
    }
    
    .faq-item__question-text {
        font-size: 1.1rem;
    }
    
    .faq-item__icon {
        width: 36px;
        height: 36px;
    }
    
    .faq-item__icon svg {
        width: 18px;
        height: 18px;
    }
}

/* FAQ Section - Print Styles */
@media print {
    .faq-floating-symbol {
        display: none;
    }
    
    .faq-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .faq-item.active .faq-item__answer {
        max-height: none;
        opacity: 1;
    }
}

/* Contact Section */
/* Contact Section - Modern Design */
.contact {
    padding: calc(var(--spacing-xxl) * 1.5) 0;
    background: linear-gradient(135deg, 
        rgba(255, 250, 245, 0.98) 0%, 
        rgba(255, 245, 240, 0.95) 50%, 
        rgba(255, 250, 245, 0.98) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(155, 2, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 2, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact__header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    position: relative;
    z-index: 2;
}

.contact__label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.1) 0%, rgba(155, 2, 0, 0.15) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 2, 0, 0.2);
    transition: all 0.3s ease;
}

.contact__label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 2, 0, 0.15);
}

.contact__title {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(155, 2, 0, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact__subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    position: relative;
    z-index: 2;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact__item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(155, 2, 0, 0.08);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(155, 2, 0, 0.6) 100%);
    transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0 0 4px 4px;
}

.contact__item:hover {
    border-color: rgba(155, 2, 0, 0.2);
    box-shadow: 
        0 8px 30px rgba(155, 2, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.contact__item:hover::before {
    height: 100%;
}

.contact__icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.1) 0%, rgba(155, 2, 0, 0.15) 100%);
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.contact__item:hover .contact__icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(155, 2, 0, 0.9) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.3);
}

.contact__icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact__details {
    flex: 1;
}

.contact__item-label {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact__link {
    color: var(--text);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.contact__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(155, 2, 0, 0.6) 100%);
    transition: width 0.3s ease;
}

.contact__link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.contact__link:hover::after {
    width: 100%;
}

.contact__text {
    color: var(--text);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
}

.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: calc(var(--spacing-xl) * 1.5);
    border-radius: 24px;
    box-shadow: 
        0 8px 30px rgba(155, 2, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(155, 2, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact__form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(155, 2, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact__form-wrapper:hover::before {
    opacity: 1;
}

.contact__form-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.contact__form-title {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact__form-subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form CAPTCHA */
.contact-form__captcha {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-form__captcha-question {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.1) 0%, rgba(155, 2, 0, 0.15) 100%);
    border-radius: 8px;
    border: 2px solid rgba(155, 2, 0, 0.2);
}

.contact-form__message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 12px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form__message--error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.contact-form__message--info {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
    color: #4a90e2;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.contact-form__message--success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.3);
}

/* Animated Floating Symbols for Contact Section */
.contact-floating-symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: contactFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    filter: blur(0.5px);
    will-change: transform, opacity;
}

.contact-floating-symbol--heart {
    color: rgba(155, 2, 0, 0.15);
    animation-name: contactFloatHeart;
}

.contact-floating-symbol--male {
    color: rgba(74, 144, 226, 0.12);
    animation-name: contactFloatMale;
}

.contact-floating-symbol--female {
    color: rgba(226, 74, 144, 0.12);
    animation-name: contactFloatFemale;
}

.contact-floating-symbol--xsmall {
    font-size: 1.2rem;
    opacity: 0.08;
}

.contact-floating-symbol--small {
    font-size: 1.8rem;
    opacity: 0.1;
}

.contact-floating-symbol--medium {
    font-size: 2.5rem;
    opacity: 0.12;
}

.contact-floating-symbol--large {
    font-size: 3.5rem;
    opacity: 0.15;
}

.contact-floating-symbol--xlarge {
    font-size: 4.5rem;
    opacity: 0.18;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(30px, -50px) rotate(180deg) scale(1.1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(60px, -100px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes contactFloatHeart {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(-40px, -60px) rotate(-180deg) scale(1.15);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-80px, -120px) rotate(-360deg) scale(1);
        opacity: 0;
    }
}

@keyframes contactFloatMale {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(50px, -40px) rotate(180deg) scale(1.1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -80px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes contactFloatFemale {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(-30px, -70px) rotate(-180deg) scale(1.2);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-60px, -140px) rotate(-360deg) scale(1);
        opacity: 0;
    }
}

/* Contact Section - Print Styles */
@media print {
    .contact-floating-symbol {
        display: none;
    }
    
    .contact__item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Forms */
.contact-form,
.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid rgba(155, 2, 0, 0.15);
    border-radius: 12px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.form-input:hover,
.form-textarea:hover {
    border-color: rgba(155, 2, 0, 0.25);
    box-shadow: 0 4px 12px rgba(155, 2, 0, 0.08);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 
        0 0 0 4px rgba(155, 2, 0, 0.1),
        0 4px 16px rgba(155, 2, 0, 0.15);
    background: var(--white);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    display: none;
}

.form-error.active {
    display: block;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal__content {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal__close:hover {
    background-color: var(--background);
    color: var(--primary);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

/* Order Price Section */
.order-price-section {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.order-price-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border);
}

.order-price-row:last-child {
    border-bottom: none;
}

.order-price-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-price-value {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.order-price-total {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.order-price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-price-discount {
    color: var(--success);
    font-weight: 600;
    font-size: 1rem;
}

.order-price-discount-percent {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: var(--spacing-xs);
}

.order-price-package {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.delivery-info {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border);
}

.delivery-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.delivery-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.delivery-cost {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.delivery-free-banner {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid var(--success);
    border-radius: var(--radius-md);
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
}

.delivery-free-banner i {
    font-size: 1.25rem;
    color: var(--success);
}

.delivery-progress {
    margin-top: var(--spacing-sm);
}

.delivery-progress-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.delivery-progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.delivery-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.3s ease;
}

/* Footer */
.footer {
    background-color: #1a0000;
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer__subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.footer__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
}

.footer__text a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer__text a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer__social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer__social-link:hover {
    color: var(--white);
    padding-left: var(--spacing-xs);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Video Section */
.video-section {
    position: relative;
    padding: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-section__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.video-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
}

.video-section__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-section__description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 2, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta__description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.cta__features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta__feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
}

.cta__feature-icon {
    font-size: 1.5rem;
}

.cta__feature-text {
    font-size: 1rem;
    font-weight: 500;
}

.cta__note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

/* Disclaimer Section */
.disclaimer {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(60, 15, 25, 0.98) 0%, rgba(80, 20, 30, 0.95) 50%, rgba(60, 15, 25, 0.98) 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.disclaimer__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.disclaimer__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.disclaimer__icon {
    font-size: 5rem;
    text-align: center;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.disclaimer__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    position: relative;
}

.disclaimer__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.disclaimer__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.disclaimer__item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.disclaimer__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.disclaimer__item:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.disclaimer__item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.disclaimer__item:hover .disclaimer__item-icon {
    transform: scale(1.15) rotate(5deg);
}

.disclaimer__item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    flex: 1;
}

/* Floating symbols for disclaimer section */
.disclaimer .floating-symbol {
    opacity: 0.1;
    animation: floatProducts 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.disclaimer .floating-symbol--heart {
    opacity: 0.12;
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer .floating-symbol--male {
    opacity: 0.1;
    color: rgba(200, 220, 255, 0.9);
}

.disclaimer .floating-symbol--female {
    opacity: 0.1;
    color: rgba(255, 200, 220, 0.9);
}

/* Responsive adjustments for disclaimer section */
@media (max-width: 968px) {
    .disclaimer__title {
        font-size: 2.5rem;
    }
    
    .disclaimer__icon {
        font-size: 4rem;
    }
    
    .disclaimer__item {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .disclaimer__item-icon {
        font-size: 1.8rem;
    }
    
    .disclaimer__item p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .disclaimer__title {
        font-size: 2rem;
    }
    
    .disclaimer__icon {
        font-size: 3.5rem;
    }
    
    .disclaimer__item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .disclaimer__item-icon {
        font-size: 1.6rem;
        margin: 0 auto;
    }
    
    .disclaimer__item p {
        font-size: 0.95rem;
    }
}

/* Usage Disclaimer */
.usage__disclaimer {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.usage__disclaimer-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    text-align: center;
}

/* Responsive adjustments for usage section */
@media (max-width: 968px) {
    .usage__title {
        font-size: 3rem;
    }
    
    .usage__subtitle {
        font-size: 1.1rem;
    }
    
    .usage__content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .usage__card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .usage__number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .usage__card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .usage__title {
        font-size: 2.5rem;
    }
    
    .usage__subtitle {
        font-size: 1rem;
    }
    
    .usage__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .usage__number {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .usage__card-title {
        font-size: 1.2rem;
    }
    
    .usage__description {
        font-size: 0.9rem;
    }
}

/* Other Products Section */
.other-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background);
}

.other-products__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.other-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.other-product-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.other-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.other-product-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--spacing-md);
}

.other-product-card__content {
    padding: var(--spacing-md);
    text-align: center;
}

.other-product-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.other-product-card__price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

/* Ingredient Detail Modal */
.ingredient-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.ingredient-detail-modal.active {
    display: flex;
}

.ingredient-detail-modal__content {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.ingredient-detail-modal__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.ingredient-detail-modal__close:hover {
    background-color: var(--background);
    color: var(--primary);
}

.ingredient-detail-modal__icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.ingredient-detail-modal__name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.ingredient-detail-modal__description {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
    padding: calc(70px + var(--spacing-md)) var(--spacing-md) var(--spacing-md);
    background-color: var(--background-light);
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-nav__item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.breadcrumb-nav__item::after {
    content: '>';
    color: var(--text-light);
    margin-left: var(--spacing-xs);
    margin-right: var(--spacing-xs);
    font-weight: 600;
}

.breadcrumb-nav__item:last-child::after {
    display: none;
}

.breadcrumb-nav__link {
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.breadcrumb-nav__link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.breadcrumb-nav__current {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        padding: 10px var(--spacing-md);
    }
    
    .nav__logo .logo-img {
        height: 80px !important;
        max-width: 350px !important;
    }
    
    .nav__menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--primary);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__link {
        display: block;
        padding: var(--spacing-md) 0;
        width: 100%;
        font-size: 1rem;
        text-align: left;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 150px 0 50px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }
    
    .hero__description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 2.25rem;
    }
    
    .hero__cta {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero__cta .btn {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .hero__cta .btn--primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    
    .hero__cta .btn--primary:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(155, 2, 0, 0.3);
    }
    
    .hero__cta .btn--secondary {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .hero__cta .btn--secondary:hover {
        background: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }
    
    .hero__trust {
        gap: 0.625rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
    }
    
    .hero__trust-item {
        font-size: 0.85rem;
    }
    
    .hero__trust {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }
    
    .hero__trust-item {
        font-size: 0.88rem;
    }
    
    .hero__img {
        max-width: 280px;
        max-height: 280px;
    }
    
    .hero__image--mobile {
        display: flex;
        margin: var(--spacing-md) 0;
        justify-content: center;
    }
    
    .hero__image--desktop {
        display: none;
    }
    
    .benefits__title {
        font-size: 2.8rem;
    }
    
    .benefits__subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
    
    .benefit-item:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .benefits__list,
    .ingredients-grid,
    .products__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact {
        padding: var(--spacing-xxl) 0;
    }
    
    .contact__title {
        font-size: 2.5rem;
    }
    
    .contact__subtitle {
        font-size: 1.1rem;
        padding: 0 var(--spacing-md);
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact__item {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .contact__icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .contact__icon {
        width: 20px;
        height: 20px;
    }
    
    .contact__form-wrapper {
        padding: var(--spacing-xl);
    }
    
    .contact-floating-symbol {
        font-size: 1.5rem;
    }
    
    .contact-floating-symbol--large {
        font-size: 2.5rem;
    }
    
    .contact-floating-symbol--xlarge {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .contact__title {
        font-size: 2rem;
    }
    
    .contact__item {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .contact__icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .contact__form-wrapper {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .nav {
        padding: 8px var(--spacing-md);
    }
    
    .nav__logo .logo-img {
        height: 75px !important;
        max-width: 320px !important;
    }
    
    .nav__menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .hero {
        padding: 140px 0 30px;
        min-height: auto;
    }
    
    .hero__container {
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .hero__content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero__title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        padding: 0;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
        line-height: 1.4;
        opacity: 0.95;
        padding: 0;
    }
    
    .hero__description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 100%;
        padding: 0;
    }
    
    .hero__img {
        max-width: 180px;
        max-height: 180px;
        margin: 0 auto;
    }
    
    .hero__cta {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .hero__cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
        font-weight: 600;
        text-align: center;
        display: inline-block;
        text-decoration: none;
        border-radius: 12px;
        letter-spacing: 0.01em;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .hero__cta .btn--primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        border: none;
    }
    
    .hero__cta .btn--primary:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(155, 2, 0, 0.3);
    }
    
    .hero__cta .btn--primary:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(155, 2, 0, 0.2);
    }
    
    .hero__cta .btn--secondary {
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary);
        border: 2px solid var(--primary);
        backdrop-filter: blur(10px);
    }
    
    .hero__cta .btn--secondary:hover {
        background: var(--white);
        color: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }
    
    .hero__cta .btn--secondary:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    }
    
    .hero__trust {
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .hero__trust-item {
        font-size: 0.8rem;
        line-height: 1.4;
        opacity: 0.9;
    }
    
    .hero__symbol {
        opacity: 0.15;
        font-size: 1.5rem;
    }
    
    .hero__symbol--small {
        font-size: 1rem;
    }
    
    .hero__symbol--medium {
        font-size: 1.5rem;
    }
    
    .hero__symbol--large {
        font-size: 2rem;
    }
    
    .hero__symbol--xlarge {
        font-size: 2.5rem;
    }
    
    .benefits__title {
        font-size: 2.2rem;
    }
    
    .benefits__subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(35px);
        -webkit-backdrop-filter: blur(35px);
        padding: var(--spacing-lg);
    }
    
    .benefit-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-8px) scale(1.01);
    }
    
    .benefit-item__description {
        font-size: 0.9rem;
    }
    
    .special__title {
        font-size: 2.2rem;
    }
    
    .special__intro-text {
        font-size: 1rem;
    }
    
    .ingredient-badge {
        padding: var(--spacing-md);
    }
    
    .ingredient-badge__icon {
        font-size: 2.5rem;
    }
    
    .ingredient-badge__name {
        font-size: 1.3rem;
    }
    
    .ingredient-badge__description {
        font-size: 0.9rem;
    }
    
    .products__title {
        font-size: 2.2rem;
    }
    
    .products__subtitle {
        font-size: 1rem;
    }
    
    .product-card__title {
        font-size: 1.2rem;
        word-break: break-word;
        hyphens: auto;
    }
    
    .product-card__content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .product-card__header {
        padding-top: var(--spacing-sm);
    }
    
    .product-card__image {
        height: 350px;
    }
    
    .product-card__description {
        font-size: 0.85rem;
    }
    
    .product-card__price {
        font-size: 1.6rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .benefits__list,
    .ingredients-grid,
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .modal__content {
        padding: var(--spacing-md);
    }
    
    .video-section {
        min-height: 300px;
    }
    
    .video-section__title {
        font-size: 2rem;
    }
    
    .video-section__description {
        font-size: 1rem;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__description {
        font-size: 1rem;
    }
    
    .disclaimer__title {
        font-size: 2rem;
    }
    
    .other-products__title {
        font-size: 2rem;
    }
    
    .other-products__grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        display: block;
    }
}

/* ============================================
   Product Detail Styles - Original Layout
   ============================================ */
.product-detail {
    padding: var(--spacing-xl) 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 50%, #faf8f4 100%);
    min-height: 100vh;
    position: relative;
    width: 100%;
}

.product-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
    box-sizing: border-box;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.product-detail__image-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: sticky;
    top: 100px;
}

.product-detail__image-wrapper:hover {
    box-shadow: 0 20px 60px rgba(155, 2, 0, 0.25);
    transform: translateY(-5px);
}

.product-detail__image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-detail__image-wrapper:hover .product-detail__image {
    transform: scale(1.05);
}

.product-detail__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.product-detail__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.product-detail__price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-detail__price-unit {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.product-detail__description {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.product-detail__description p {
    margin-bottom: 16px;
    color: var(--text);
}

.product-detail__description p:last-child {
    margin-bottom: 0;
}

.product-detail__actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.product-detail__tabs {
    margin-top: 80px;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-detail__tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 3px solid var(--border);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-detail__tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.product-detail__tab-btn:hover {
    color: var(--primary);
    background: rgba(155, 2, 0, 0.05);
}

.product-detail__tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(155, 2, 0, 0.05);
}

.product-detail__tab-content {
    display: none;
    opacity: 0;
}

.product-detail__tab-content.active {
    display: block !important;
    opacity: 1;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-detail__tab-panel {
    line-height: 1.9;
    color: var(--text);
    font-size: 1.05rem;
}

.product-detail__tab-panel h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-detail__tab-panel p {
    margin-bottom: 18px;
    color: var(--text);
}

.product-detail__tab-panel p:last-child {
    margin-bottom: 0;
}

.product-detail__tab-panel ul,
.product-detail__tab-panel ol {
    margin: 20px 0;
    padding-left: 25px;
}

.product-detail__tab-panel ul li,
.product-detail__tab-panel ol li {
    padding: 8px 0;
    color: var(--text);
    line-height: 1.8;
}

.product-detail__tab-panel strong {
    color: var(--primary);
    font-weight: 600;
}

.free-delivery-banner-product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #28a745;
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.95rem;
}

.free-delivery-banner-product i {
    font-size: 1.25rem;
    color: #28a745;
}

/* Responsive for Product Detail */
@media (max-width: 968px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .product-detail__image-wrapper {
        position: relative;
        top: 0;
        min-height: 400px;
        padding: 30px;
        border-radius: 16px;
    }
    
    .product-detail__image {
        max-height: 400px;
        max-width: 100%;
        width: auto;
        height: auto;
    }
    
    .product-detail__title {
        font-size: 2.3rem;
    }
    
    .product-detail__price {
        font-size: 2rem;
    }
    
    .product-detail__tabs {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .product-detail {
        padding: 120px 0 60px;
    }
    
    .product-detail__container {
        padding: 0 12px;
    }
    
    .product-detail__grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .product-detail__image-wrapper {
        padding: 20px;
        min-height: 300px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .product-detail__image {
        max-height: 300px;
        max-width: 100%;
        width: auto;
        height: auto;
    }
    
    .product-detail__title {
        font-size: 1.5rem;
    }
    
    .product-detail__price {
        font-size: 1.75rem;
    }
    
    .product-detail__title {
        font-size: 1.8rem;
    }
    
    .product-detail__price {
        font-size: 1.8rem;
    }
    
    .product-detail__price-unit {
        font-size: 0.95rem;
    }
    
    .product-detail__description {
        padding: 20px;
        font-size: 1rem;
    }
    
    .product-detail__actions {
        flex-direction: column;
    }
    
    .product-detail__actions .btn {
        width: 100%;
    }
    
    .product-detail__tabs {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .product-detail__tabs-nav {
        gap: 3px;
        margin-bottom: 30px;
    }
    
    .product-detail__tab-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .product-detail__tab-panel {
        font-size: 1rem;
    }
    
    .product-detail__tab-panel h4 {
        font-size: 1.3rem;
    }
}

/* ============================================
   Product Detail V2 Styles - Better Layout Organization (KEPT FOR REFERENCE)
   ============================================ */
.product-detail-v2 {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 50%, #faf8f4 100%);
    min-height: 100vh;
    position: relative;
    width: 100%;
}

.product-detail-v2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
    box-sizing: border-box;
}

/* Image Section - Centered Top */
.product-detail-v2__image-section {
    text-align: center;
    margin-bottom: 50px;
}

.product-detail-v2__image-wrapper {
    display: inline-block;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-v2__image-wrapper:hover {
    box-shadow: 0 20px 60px rgba(155, 2, 0, 0.25);
    transform: translateY(-5px);
}

.product-detail-v2__image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Content Section */
.product-detail-v2__content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail-v2__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.product-detail-v2__price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.product-detail-v2__price-unit {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Packages Section */
.product-detail-v2__packages {
    width: 100%;
    margin: 30px 0;
}

.product-packages-section {
    margin: 0;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-packages-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-align: center;
}

/* Packages table as divs */
.packages-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ead9d9;
}

/* rows as grid */
.packages-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr; /* količina, cena/pack, ukupno, ušteda */
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #f1e5e5;
}

.packages-row:last-child { 
    border-bottom: none; 
}

.cell {
    padding: 16px 18px;
    font-size: 15px;
}

.muted { 
    opacity: .55; 
}

/* header row */
.packages-head {
    background: #6b0000; /* tamno crvena */
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.packages-head .cell {
    padding: 18px;
    font-size: 13px;
}

/* savings style */
.savings { 
    color: #128a3a; 
    font-weight: 600; 
}

.savings-percent { 
    opacity: .85; 
    font-weight: 600; 
    margin-left: 6px; 
}

.savings-amount {
    color: #128a3a;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.savings-percent {
    color: #128a3a;
    font-size: 0.85rem;
    display: inline-block;
}

/* best deal row highlight */
.best-deal {
    background: #fff7e6;
    position: relative;
}

.best-deal::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: #f0b429; /* žuta traka */
    border-radius: 6px;
}

.bonus {
    color: #128a3a;
    font-weight: 700;
    margin-left: 6px;
}

/* Responsive for packages table */
@media (max-width: 768px) {
    .packages-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }
    
    .packages-head {
        display: none;
    }
    
    .cell {
        padding: 8px 0;
        border-bottom: 1px solid #f1e5e5;
    }
    
    .cell:last-child {
        border-bottom: none;
    }
    
    .cell::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--primary);
        display: inline-block;
        min-width: 120px;
    }
}

/* Delivery Banner */
.product-detail-v2__delivery-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #28a745;
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.product-detail-v2__delivery-banner i {
    font-size: 1.25rem;
    color: #28a745;
}

/* Actions */
.product-detail-v2__actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-detail-v2__actions .btn {
    min-width: 200px;
}

/* Tabs Section */
.product-detail-v2__tabs {
    margin-top: 80px;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-detail-v2__tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 3px solid var(--border);
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-detail-v2__tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.product-detail-v2__tab-btn:hover {
    color: var(--primary);
    background: rgba(155, 2, 0, 0.05);
}

.product-detail-v2__tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(155, 2, 0, 0.05);
}

.product-detail-v2__tab-content {
    display: none;
    opacity: 0;
    animation: fadeIn 0.4s ease;
}

.product-detail-v2__tab-content.active {
    display: block !important;
    opacity: 1;
}

.product-detail-v2__tab-panel {
    line-height: 1.9;
    color: var(--text);
    font-size: 1.05rem;
}

.product-detail-v2__tab-panel h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-detail-v2__tab-panel p {
    margin-bottom: 18px;
    color: var(--text);
}

.product-detail-v2__tab-panel p:last-child {
    margin-bottom: 0;
}

.product-detail-v2__tab-panel ul,
.product-detail-v2__tab-panel ol {
    margin: 20px 0;
    padding-left: 25px;
}

.product-detail-v2__tab-panel ul li,
.product-detail-v2__tab-panel ol li {
    padding: 8px 0;
    color: var(--text);
    line-height: 1.8;
}

.product-detail-v2__tab-panel strong {
    color: var(--primary);
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design for V2 */
@media (max-width: 968px) {
    .product-detail-v2 {
        padding: 100px 0 60px;
    }
    
    .product-detail-v2__container {
        padding: 0 20px;
    }
    
    .product-detail-v2__image-wrapper {
        padding: 30px;
        max-width: 100%;
    }
    
    .product-detail-v2__image {
        max-height: 400px;
    }
    
    .product-detail-v2__title {
        font-size: 2.3rem;
    }
    
    .product-detail-v2__price {
        font-size: 2rem;
    }
    
    .product-detail-v2__tabs {
        padding: 30px 20px;
    }
    
    .product-detail-v2__tabs-nav {
        gap: 3px;
        margin-bottom: 30px;
    }
    
    .product-detail-v2__tab-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .product-detail-v2__actions {
        flex-direction: column;
    }
    
    .product-detail-v2__actions .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .product-detail-v2 {
        padding: 80px 0 40px;
    }
    
    .product-detail-v2__container {
        padding: 0 15px;
    }
    
    .product-detail-v2__image-wrapper {
        padding: 20px;
    }
    
    .product-detail-v2__image {
        max-height: 300px;
    }
    
    .product-detail-v2__title {
        font-size: 1.8rem;
    }
    
    .product-detail-v2__price {
        font-size: 1.8rem;
    }
    
    .product-detail-v2__price-unit {
        font-size: 0.95rem;
    }
    
    .product-detail-v2__tabs {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .product-detail-v2__tabs-nav {
        gap: 2px;
        margin-bottom: 25px;
    }
    
    .product-detail-v2__tab-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .product-detail-v2__tab-panel {
        font-size: 1rem;
    }
    
    .product-detail-v2__tab-panel h4 {
        font-size: 1.3rem;
    }
}

/* ============================================
   Product Reviews Section
   ============================================ */
.product-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 50%, #faf8f4 100%);
}

.product-reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.product-reviews__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0;
}

.product-reviews__summary {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.product-reviews__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-reviews__rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-reviews__stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.product-reviews__count {
    color: var(--text-light);
    font-size: 1rem;
}

.product-reviews__form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
}

.product-reviews__form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.product-reviews__form-group {
    margin-bottom: var(--spacing-lg);
}

.product-reviews__label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text);
}

.product-reviews__input,
.product-reviews__textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.product-reviews__input:focus,
.product-reviews__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 2, 0, 0.1);
}

.product-reviews__textarea {
    resize: vertical;
    min-height: 120px;
}

.product-reviews__rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.product-reviews__rating-input input[type="radio"] {
    display: none;
}

.product-reviews__rating-input .rating-star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.product-reviews__rating-input .rating-star:hover,
.product-reviews__rating-input .rating-star.active {
    color: #ffc107;
    transform: scale(1.1);
}

.product-reviews__rating-input input[type="radio"]:checked ~ .rating-star,
.product-reviews__rating-input input[type="radio"]:checked + .rating-star {
    color: #ffc107;
}

.product-reviews__form-actions {
    margin-top: var(--spacing-lg);
}

.product-reviews__message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.product-reviews__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.product-reviews__message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.product-reviews__message--info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.product-reviews__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.product-review-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-review-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-review-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.product-review-item__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-review-item__author strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.product-review-item__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.product-review-item__rating {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.product-review-item__date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-review-item__content {
    color: var(--text);
    line-height: 1.7;
    white-space: pre-wrap;
}

.product-reviews__empty {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
    font-style: italic;
}

/* Review Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: #28a745;
    color: white;
}

.badge.bg-info {
    background: #17a2b8;
    color: white;
}

.badge.bg-warning {
    background: #ffc107;
    color: #212529;
}

.badge.bg-danger {
    background: #dc3545;
    color: white;
}

.badge.bg-secondary {
    background: #6c757d;
    color: white;
}

/* Rating Stars Animation */
.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

.rating-stars:hover {
    transform: scale(1.05);
}

/* CAPTCHA Styles */
.product-reviews__captcha {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-reviews__captcha-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--background-light);
    border-radius: var(--radius-md);
    min-width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-reviews__captcha-question span {
    display: inline-block !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 1.2rem;
}

.product-reviews__captcha input[type="number"] {
    max-width: 100px;
}

/* Responsive for Product Reviews */
@media (max-width: 768px) {
    .product-reviews {
        padding: 60px 0;
    }
    
    .product-reviews__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-reviews__title {
        font-size: 2rem;
    }
    
    .product-reviews__form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .product-review-item__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-reviews__rating-input .rating-star {
        font-size: 1.5rem;
    }
    
    .product-reviews__captcha {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-reviews__captcha-question {
        width: 100%;
    }
}

/* Spin animation for CAPTCHA refresh */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Professional Enhancements for Product Detail Page */
.product-detail {
    position: relative;
}

.product-detail__container {
    position: relative;
    z-index: 1;
}

/* Ensure navbar is consistent across all pages */
.header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav__link {
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: calc(100% - 20px);
}

/* Improve button styling consistency */
.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(155, 2, 0, 0.3);
    transition: all 0.3s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 2, 0, 0.4);
}

.btn--outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Improve product detail image wrapper */
.product-detail__image-wrapper {
    overflow: hidden;
}

/* Better spacing for product info */
.product-detail__info > * {
    margin-bottom: var(--spacing-md);
}

.product-detail__info > *:last-child {
    margin-bottom: 0;
}

/* Improve packages table appearance */
.packages-table {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.packages-row:not(.packages-head):hover {
    background-color: rgba(155, 2, 0, 0.02);
    transition: background-color 0.2s ease;
}

/* Breadcrumb styling is already defined above */

/* Ensure consistent container padding */
.product-detail__container,
.other-products .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Improve other products section */
.other-products {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
    padding: var(--spacing-xxl) 0;
}

.other-product-card {
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.other-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Ensure main content has proper spacing */
main {
    min-height: calc(100vh - 200px);
}

/* Improve review section */
.product-reviews {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Professional polish - smooth transitions */
* {
    transition-property: color, background-color, border-color, transform, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Ensure proper z-index layering */
.header {
    z-index: 1000;
}

.product-detail__image-wrapper {
    z-index: 1;
}

/* Improve mobile responsiveness */
@media (max-width: 768px) {
    .product-detail {
        padding: 120px 0 40px;
    }
    
    .product-detail__title {
        font-size: 2rem;
    }
    
    .product-detail__price {
        font-size: 2rem;
    }
    
    .nav__menu {
        background: var(--primary);
        padding: var(--spacing-md);
    }
}

/* Validation Message Banner */
.validation-message-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--error);
    color: var(--white);
    padding: var(--spacing-md) 0;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.validation-message-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

#validationMessageText {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.validation-message-close {
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.validation-message-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .validation-message-banner {
        padding: var(--spacing-sm) 0;
    }
    
    #validationMessageText {
        font-size: 0.9rem;
    }
    
    .validation-message-content {
        gap: var(--spacing-sm);
    }
}