:root {
    --color-primary: #2D0054;
    --color-secondary: #FFB800;
    --color-accent: #00F0FF;
    --color-background: #050505;
    --color-text: #F5F5F5;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-button: 'Space Mono', monospace;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(45, 0, 84, 0.3);
    --spacing: 2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    width: 100%;
    box-sizing: border-box;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 0, 84, 0.3);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: var(--color-text);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover {
    color: var(--color-accent);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(45, 0, 84, 0.3) 0%, transparent 70%);
    z-index: -1;
}

.heartbeat-parallax {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, transparent, rgba(0, 240, 255, 0.1));
    clip-path: polygon(0 50%, 5% 45%, 10% 50%, 15% 45%, 20% 50%, 25% 45%, 30% 50%, 35% 45%, 40% 50%, 45% 45%, 50% 50%, 55% 45%, 60% 50%, 65% 45%, 70% 50%, 75% 45%, 80% 50%, 85% 45%, 90% 50%, 95% 45%, 100% 50%, 100% 100%, 0 100%);
    animation: heartbeat 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes heartbeat {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 2rem;
    font-family: var(--font-button);
    letter-spacing: 1px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(45, 0, 84, 0.3);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.badge-label {
    font-size: 0.875rem;
    color: var(--color-accent);
}

.badge-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.hero-product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.product-image-wrapper {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.3));
    transition: var(--transition);
}

.product-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(0, 240, 255, 0.5));
}

.product-info {
    text-align: center;
    width: 100%;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.rating-text {
    color: var(--color-text);
    font-weight: 600;
}

.pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.old-price {
    font-size: 1.25rem;
    color: rgba(245, 245, 245, 0.5);
    text-decoration: line-through;
}

.hero-form {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    display: none;
}

.error-message.show {
    display: block;
}

.cta-button,
.glass-pill {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), rgba(45, 0, 84, 0.8));
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    color: var(--color-text);
    font-family: var(--font-button);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

.cta-button::before,
.glass-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.glass-pill:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover,
.glass-pill:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.5);
    transform: translateY(-2px);
}

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

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-subtitle {
    text-align: center;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.feature-card:hover::before {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pulse-icon {
    background: radial-gradient(circle, var(--color-primary), transparent);
    border: 2px solid var(--color-accent);
}

.pulse-icon::after {
    content: '♥';
    font-size: 2rem;
    color: var(--color-accent);
}

.vessel-icon {
    background: radial-gradient(circle, var(--color-primary), transparent);
    border: 2px solid var(--color-accent);
}

.vessel-icon::after {
    content: '◉';
    font-size: 2rem;
    color: var(--color-accent);
}

.digest-icon {
    background: radial-gradient(circle, var(--color-primary), transparent);
    border: 2px solid var(--color-secondary);
}

.digest-icon::after {
    content: '◊';
    font-size: 2rem;
    color: var(--color-secondary);
}

.energy-icon {
    background: radial-gradient(circle, var(--color-primary), transparent);
    border: 2px solid var(--color-secondary);
}

.energy-icon::after {
    content: '✦';
    font-size: 2rem;
    color: var(--color-secondary);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.benefits-comparison {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.comparison-label {
    min-width: 200px;
    font-weight: 600;
    color: var(--color-text);
}

.comparison-bar {
    flex: 1;
    height: 30px;
    background: rgba(45, 0, 84, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius);
    transition: width 1s ease-out;
    position: relative;
}

.bar-fill.traditional {
    background: linear-gradient(90deg, var(--color-primary), rgba(45, 0, 84, 0.5));
}

.bar-fill.premium {
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.comparison-value {
    min-width: 60px;
    text-align: right;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-background);
    border-radius: 50%;
    font-weight: 800;
    flex-shrink: 0;
}

.benefit-text {
    color: var(--color-text);
    font-weight: 400;
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.description-text p {
    margin-bottom: 1.5rem;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.8;
    font-size: 1.125rem;
}

.capsule-dissection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.capsule-layer {
    padding: 1rem;
    background: rgba(45, 0, 84, 0.3);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.capsule-layer:hover::before {
    left: 100%;
}

.capsule-layer:hover {
    transform: translateX(10px);
    border-color: var(--color-accent);
}

.layer-label {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-accent);
    font-size: 1.25rem;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.step-description {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
}

.digestive-waveform {
    margin-top: 4rem;
    text-align: center;
}

.wave-svg {
    width: 100%;
    max-width: 600px;
    height: 100px;
    color: var(--color-accent);
}

.wave-path {
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { d: path("M0,50 Q100,20 200,50 T400,50"); }
    50% { d: path("M0,50 Q100,80 200,50 T400,50"); }
}

.ingredients-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    min-height: 300px;
    position: relative;
}

.ingredient-particle {
    padding: 1.5rem 2rem;
    background: rgba(45, 0, 84, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.ingredient-particle:nth-child(2n) {
    animation-delay: 0.5s;
}

.ingredient-particle:nth-child(3n) {
    animation-delay: 1s;
}

.ingredient-particle:hover {
    transform: scale(1.1);
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.particle-label {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-accent);
}

.ingredient-details {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    min-height: 100px;
    display: none;
}

.ingredient-details.active {
    display: block;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    padding: 2rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-name {
    font-weight: 600;
    color: var(--color-accent);
}

.review-rating {
    color: var(--color-secondary);
    font-size: 1.125rem;
}

.review-text {
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.6);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(45, 0, 84, 0.2);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(45, 0, 84, 0.3) 0%, transparent 70%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(245, 245, 245, 0.9);
}

.legal-disclaimer {
    padding: 3rem 0;
    background: rgba(45, 0, 84, 0.2);
    border-top: 1px solid rgba(45, 0, 84, 0.5);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer {
    padding: 4rem 0 2rem;
    background: rgba(5, 5, 5, 0.8);
    border-top: 1px solid rgba(45, 0, 84, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-text {
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 0, 84, 0.3);
    color: rgba(245, 245, 245, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    border-top: 2px solid var(--color-primary);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.accept-btn {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-background);
}

.accept-btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.reject-btn {
    background: transparent;
    border-color: var(--color-text);
    color: var(--color-text);
}

.reject-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.settings-btn {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-text);
}

.settings-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.95);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cookie-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    background: rgba(45, 0, 84, 0.3);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.cookie-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.cookie-setting-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid rgba(45, 0, 84, 0.5);
    border-radius: var(--radius);
}

.cookie-setting-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-text);
}

.cookie-setting-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.cookie-status {
    font-size: 0.875rem;
    color: var(--color-accent);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(45, 0, 84, 0.5);
        transition: right 0.3s ease-out;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1.25rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing: 1rem;
    }

    .hero {
        padding-top: 80px;
    }

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

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

    .features-grid,
    .benefits-list,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

  

    .comparison-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-label {
        min-width: auto;
        width: 100%;
    }

    .comparison-bar {
        width: 100%;
    }

    .order-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 0.8rem;
    }

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

    .current-price {
        font-size: 1.5rem;
    }

    .cookie-modal-content {
        padding: 2rem 1.5rem;
    }
}

.fade-in {
    animation: fadeInScale 0.6s ease-out;
}

@keyframes bioluminescent {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.bioluminescent-flicker {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: bioluminescent 3s ease-in-out infinite;
    pointer-events: none;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

p, span, div, li, a, label, h1, h2, h3, h4, h5, h6, button, input, textarea {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

