@font-face {
  font-family: 'Nunito';
  src: url('font/Nunito-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('font/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Enhanced */
.header {
    background: linear-gradient(135deg, #2d8659 0%, #34a065 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.logo {
    max-width: 140px;
    margin-bottom: 0.25em;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    font-size: 14px;
    font-weight: 600;
}

.trust-item {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Hero Section Enhanced */
.hero.enhanced {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero.enhanced::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0f2e7" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0f2e7" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23e0f2e7" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5); }
}

.award-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.award-text {
    font-weight: 700;
    color: #2d5016;
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2d8659 0%, #1a5233 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2d8659;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #2d8659;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.1);
    border-left: 4px solid #2d8659;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 134, 89, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #2d8659;
    border: 2px solid #2d8659;
}

.cta-button.secondary:hover {
    background: #2d8659;
    color: white;
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 18px;
}

.cta-button.mega {
    padding: 25px 50px;
    font-size: 20px;
    font-weight: 800;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.urgency-alert {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    animation: urgencyPulse 3s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.alert-icon {
    font-size: 20px;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-sizes {
    margin-top: 30px;
}

.sizes-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Innovation Award Section */
.innovation-award {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    position: relative;
}

.award-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.large-award {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.2));
}

.award-text h2 {
    font-size: 42px;
    font-weight: 900;
    color: #2d5016;
    margin-bottom: 25px;
    line-height: 1.2;
}

.award-text p {
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 20px;
    line-height: 1.6;
}

.award-benefits {
    margin-top: 30px;
}

.benefit {
    background: rgba(255,255,255,0.3);
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #2d5016;
    backdrop-filter: blur(10px);
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background: white;
}

.product-showcase h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: #2d8659;
}

.product-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.main-product {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.quality-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quality-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8fffe;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #2d8659;
}

.quality-point .icon {
    font-size: 24px;
    margin-top: 5px;
}

.quality-point strong {
    font-size: 18px;
    font-weight: 700;
    color: #2d8659;
    display: block;
    margin-bottom: 5px;
}

.quality-point p {
    color: #666;
    font-size: 16px;
}

.package-options {
    text-align: center;
}

.package-options h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2d8659;
}

.packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.package {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e0f2e7;
    position: relative;
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.package.featured {
    border-color: #2d8659;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.package h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
}

.package p {
    margin-bottom: 10px;
    color: #666;
}

.package-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2d8659 0%, #34a065 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

/* Founders Section */
.founders {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5f0 0%, #f8fffe 100%);
}

.founders h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #2d8659;
}

.founders-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    font-weight: 600;
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.founders-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.founders-story h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 25px;
}

.founders-story p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.founder-credentials {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-credentials h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 25px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cred-icon {
    font-size: 20px;
    margin-top: 5px;
}

.credential strong {
    font-size: 16px;
    font-weight: 700;
    color: #2d8659;
    display: block;
    margin-bottom: 5px;
}

.credential p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.personal-guarantee {
    background: linear-gradient(135deg, #2d8659 0%, #34a065 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.personal-guarantee h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.personal-guarantee blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.personal-guarantee cite {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-style: normal;
}

/* Benefits Comprehensive */
.benefits-comprehensive {
    padding: 80px 0;
    background: white;
}

.benefits-comprehensive h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: #2d8659;
}

.benefits-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.benefit-category h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card.enhanced {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e0f2e7;
    transition: all 0.3s ease;
}

.benefit-card.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #2d8659;
}

.benefit-card.enhanced .benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card.enhanced h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
}

.benefit-card.enhanced p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.preparation-guide {
    background: linear-gradient(135deg, #2d8659 0%, #34a065 100%);
    color: white;
    padding: 60px;
    border-radius: 25px;
    margin-top: 60px;
}

.preparation-guide h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.prep-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prep-step {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #2d8659;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.prep-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.prep-step p {
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonials Enhanced */
.testimonials-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5f0 0%, #f8fffe 100%);
}

.testimonials-enhanced h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #2d8659;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #2d8659;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.testimonials-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #2d8659;
}

.testimonial.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-left-color: #2d5016;
}

.testimonial.professional {
    background: linear-gradient(135deg, #e8f5f0 0%, #d4f4dd 100%);
}

.testimonial .stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.testimonial cite {
    font-weight: 600;
    color: #2d8659;
    font-style: normal;
}

.guarantees {
    text-align: center;
}

.guarantees h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 40px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guarantee-icon {
    font-size: 32px;
    margin-top: 5px;
}

.guarantee-item strong {
    font-size: 18px;
    font-weight: 700;
    color: #2d8659;
    display: block;
    margin-bottom: 10px;
}

.guarantee-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ GEO */
.faq-geo {
    padding: 80px 0;
    background: white;
}

.faq-geo h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #2d8659;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #2d8659;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Final CTA Enhanced */
.final-cta-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d8659 0%, #34a065 100%);
    color: white;
    text-align: center;
}

.urgency-section {
    margin-bottom: 40px;
}

.urgency-alert.major {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    padding: 25px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    animation: urgencyPulse 3s infinite;
}

.alert-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.alert-content p {
    font-size: 16px;
    margin: 0;
}

.final-cta-enhanced h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.final-guarantees {
    margin-bottom: 40px;
}

.guarantee-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-weight: 600;
    font-size: 16px;
}

.guarantee-row span {
    background: rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.risk-free {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.risk-free h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffd700;
}

.risk-free p {
    font-size: 18px;
    margin: 0;
}

/* Footer Enhanced */
.footer.enhanced {
    background: linear-gradient(135deg, #1a5233 0%, #2d8659 100%);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 5px;
}

.disclaimer.enhanced {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.mobile-only {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .award-content,
    .product-grid,
    .founders-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .packages {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-row {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-alert.major {
        flex-direction: column;
        text-align: center;
    }
}



.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2d8659;
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-banner button#reject-cookies {
  background: white;
  color: #2d8659;
  border: 1px solid #ffd700;
}

.cookie-banner button {
    background: #ffd700;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 20px;
    cursor: pointer;
    flex-shrink: 0;
}


.sticky-cart {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideUp 0.5s ease-in-out;
}

.sticky-cart-close {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    font-weight: bold;
}

.sticky-cart-close:hover {
    color: #333;
}

@media (max-width: 768px) {
    .sticky-cart .cta-button {
        font-size: 16px;
        padding: 14px 24px;
    }
}


