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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #e74c3c;
    text-decoration: none;
}

/* URGENCY BANNER */
.urgency-banner {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease;
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="5" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="8" fill="white" opacity="0.05"/><circle cx="90" cy="90" r="6" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.hero-product {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease;
    width: 100%;
    max-width: 400px;
}

.product-image-wrapper {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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


.hero-content {
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.main-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
}

.headline-offer {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.headline-offer p {
    font-size: 1.8rem;
    font-weight: bold;
}

.headline-offer del {
    opacity: 0.7;
    font-size: 1.4rem;
    margin-left: 10px;
}

.cta-button {
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

.cta-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.8);
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.cta-button:not(.primary) {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button:not(.primary):hover {
    background: white;
    color: #667eea;
}

.cta-button.large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-icon {
    display: inline-block;
    margin-right: 5px;
    animation: bounce 1s ease-in-out infinite;
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* PROBLEMS SECTION */
.problems {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.problems h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.problem-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-svg {
    width: 100%;
    height: 100%;
    animation: float 3s ease-in-out infinite;
}

.problem-item:nth-child(2) .problem-svg {
    animation-delay: 0.2s;
}

.problem-item:nth-child(3) .problem-svg {
    animation-delay: 0.4s;
}

.problem-item:nth-child(4) .problem-svg {
    animation-delay: 0.6s;
}

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

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.problem-item p {
    color: #666;
    font-size: 0.95rem;
}

/* SOLUTION SECTION */
.solution {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.solution-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.solution-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefits-list {
    display: grid;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #333;
}

.check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .product-image-wrapper {
        max-width: 300px;
    }

    .main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .solution-container {
        grid-template-columns: 1fr;
    }

    .product-image-wrapper {
        max-width: 250px;
    }

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

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

/* INGREDIENTS SECTION */
.ingredients {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.ingredients h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.ingredients-showcase {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.ingredients-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s ease;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.ingredient:hover {
    transform: translateY(-5px);
}

.ingredient h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ingredient p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* RESULTS SECTION */
.results {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.results h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.results-showcase {
    margin-bottom: 60px;
}

.results-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s ease;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial strong {
    color: #333;
    font-size: 1rem;
}

/* GUARANTEE SECTION */
.guarantee {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
}

.guarantee h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.guarantee p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.guarantee-subtext {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 40px;
}

.certifications-showcase {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.certifications-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.8s ease;
    background: white;
    padding: 20px;
}

/* PRICING SECTION */
.pricing {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    transform: scale(1.05);
}

.best-deal {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 2.2rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 5px;
}

.price del {
    font-size: 1.4rem;
    color: #999;
    opacity: 0.7;
    margin-left: 10px;
}

.supply {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bonus {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* FAQ SECTION */
.faq {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* FINAL CTA SECTION */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.countdown-container {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 25px 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 110px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.counter:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.counter span {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter p {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-button.persuasive {
    padding: 18px 50px;
    font-size: 1.15rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse-button 2s ease-in-out infinite;
}

.cta-button.persuasive:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button.persuasive .bolt {
    font-size: 1.3rem;
    animation: bounce 1s ease-in-out infinite;
}

.cta-button.persuasive .arrow {
    font-size: 1.2rem;
    animation: slide-arrow 1.5s ease-in-out infinite;
}

.urgency-text {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    animation: fadeInUp 0.8s ease;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    }
}

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

@keyframes slide-arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ORDER FORM SECTION */
.order-form {
    padding: 80px 20px;
    background: white;
}

.order-form h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-container button {
    width: 100%;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* FOOTER */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer a {
    color: #e74c3c;
}

.footer a:hover {
    text-decoration: underline;
}

/* ANIMATIONS */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .main-subtitle {
        font-size: 1.1rem;
    }

    .hero {
        min-height: auto;
        padding: 50px 20px;
    }

    .problems h2,
    .ingredients h2,
    .results h2,
    .pricing h2,
    .faq h2,
    .final-cta h2,
    .order-form h2 {
        font-size: 1.8rem;
    }

    .solution-content h2 {
        font-size: 1.6rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .form-container {
        padding: 30px 20px;
    }

    .counter span {
        font-size: 2rem;
    }

    .trust-badges {
        gap: 10px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* PLACEHOLDER IMAGES */
.placeholder-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.results-image svg {
    max-height: 350px;
}

.ingredients-image svg {
    max-height: 300px;
}

.certifications-image svg {
    max-height: 250px;
}

/* COOKIE CONSENT BANNER - MODAL */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.5s ease;
}

.cookie-content {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.cookie-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
    color: #333;
    font-weight: bold;
}

.cookie-banner p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 30px 0;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.cookie-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-btn.decline {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-btn.decline:hover {
    background: #e8e8e8;
}

.cookie-banner.hidden {
    display: none;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .cookie-banner p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }

    .main-subtitle {
        font-size: 0.95rem;
    }

    .headline-offer p {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .countdown {
        gap: 15px;
    }

    .counter {
        padding: 15px 20px;
    }

    .counter span {
        font-size: 1.8rem;
    }

    .cookie-banner {
        padding: 15px;
    }

    .cookie-content {
        gap: 15px;
    }
}
