/* 
 * Zontravia - 10 Dage Uden Sukker
 * Hovedstilark
 * Designet til zontravia.shop
 */

/* -----------------------------------------
   1. Base Styles & Reset
----------------------------------------- */
:root {
    /* Color Variables */
    --primary-color: #65b32e;
    --primary-dark: #4a8a1f;
    --primary-light: #8fd25e;
    --secondary-color: #3a86ff;
    --accent-color: #ff6b6b;
    --dark-color: #2d3142;
    --dark-medium: #4f5d75;
    --medium-color: #767c88;
    --light-color: #f8f9fa;
    --background-color: #ffffff;
    --background-alt: #f5f7f9;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    
    /* Typography Variables */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
    
    /* Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--spacing-sm);
}

/* -----------------------------------------
   2. Utility Classes
----------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--medium-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--light-color);
}

.section-header.light h2:after {
    background-color: var(--light-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #2b6cd9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.subheading {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

/* -----------------------------------------
   3. Header & Navigation
----------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-list li {
    margin: 0 var(--spacing-sm);
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-social {
    display: flex;
}

.header-social a {
    color: var(--medium-color);
    margin-left: var(--spacing-sm);
    font-size: 1.1rem;
    transition: color var(--transition-normal);
}

.header-social a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: all var(--transition-normal);
}

/* Scrolled Header */
.main-header.scrolled {
    background-color: white;
    box-shadow: var(--shadow-md);
}

.main-header.scrolled .header-wrapper {
    padding: 10px 0;
}

.main-header.scrolled .logo img {
    height: 40px;
}

/* -----------------------------------------
   4. Hero Section
----------------------------------------- */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #65b32e 0%, #8fd25e 100%);
    color: white;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 500px;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* -----------------------------------------
   5. Features Section
----------------------------------------- */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--medium-color);
    margin-bottom: 0;
}

/* -----------------------------------------
   6. About Section
----------------------------------------- */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-alt);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-stats {
    display: flex;
    margin: var(--spacing-md) 0;
    gap: var(--spacing-md);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--medium-color);
    font-weight: 500;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* -----------------------------------------
   7. Program Section
----------------------------------------- */
.program {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #3a86ff 0%, #4f9aff 100%);
    color: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: var(--spacing-md) 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 34px;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 25px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.timeline-content h3 {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.program-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* -----------------------------------------
   8. Recipes Section
----------------------------------------- */
.recipes {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.recipes-slider {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--spacing-sm);
}

.recipes-slider::-webkit-scrollbar {
    display: none;
}

.recipe-card {
    flex: 0 0 calc(33.333% - var(--spacing-md));
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-content {
    padding: var(--spacing-md);
}

.recipe-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-xs);
}

.recipe-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.recipe-content p {
    color: var(--medium-color);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.recipe-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.recipe-link i {
    margin-left: 5px;
    transition: transform var(--transition-normal);
}

.recipe-link:hover i {
    transform: translateX(5px);
}

.recipes-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius-circle);
    background-color: var(--medium-color);
    opacity: 0.3;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    opacity: 1;
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

.dot:hover {
    opacity: 0.7;
}

/* -----------------------------------------
   9. Testimonials Section
----------------------------------------- */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    background-color: var(--primary-color);
    color: white;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    line-height: 1;
    font-family: serif;
    color: rgba(0, 0, 0, 0.05);
}

.testimonial-card.featured:before {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-card.featured .testimonial-content p {
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-card.featured .testimonial-author h4 {
    color: white;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--medium-color);
    margin-bottom: 0;
}

.testimonial-card.featured .testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
}

/* -----------------------------------------
   10. Pricing Section
----------------------------------------- */
.pricing {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.premium {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-bottom-left-radius: var(--border-radius-md);
}

.pricing-header {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.price {
    margin: var(--spacing-sm) 0;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    vertical-align: top;
    margin-right: 3px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--medium-color);
    margin-bottom: 0;
}

.pricing-features {
    list-style: none;
    padding: var(--spacing-md);
    margin-bottom: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.pricing-features li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.pricing-features li.not-included {
    color: var(--medium-color);
    opacity: 0.7;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: var(--error-color);
}

.btn-pricing {
    display: block;
    margin: 0 var(--spacing-md) var(--spacing-md);
    background-color: var(--dark-color);
    color: white;
}

.btn-pricing:hover {
    background-color: var(--dark-medium);
    color: white;
}

.btn-pricing-featured {
    display: block;
    margin: 0 var(--spacing-md) var(--spacing-md);
    background-color: var(--primary-color);
    color: white;
}

.btn-pricing-featured:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* -----------------------------------------
   11. FAQ Section
----------------------------------------- */
.faq {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-alt);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-circle);
    transition: all var(--transition-normal);
}

.faq-toggle i {
    font-size: 0.8rem;
    color: var(--dark-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
}

.faq-item.active .faq-toggle i {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* -----------------------------------------
   12. Blog Section
----------------------------------------- */
.blog {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card.featured-post {
    grid-column: span 2;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card.featured-post .blog-image {
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.blog-date,
.blog-category {
    font-size: 0.8rem;
    color: var(--medium-color);
}

.blog-category {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 3px 10px;
    border-radius: var(--border-radius-sm);
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.blog-card.featured-post .blog-content h3 {
    font-size: 1.5rem;
}

.blog-content p {
    color: var(--medium-color);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.blog-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: transform var(--transition-normal);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* -----------------------------------------
   13. CTA Section
----------------------------------------- */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c8c 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.form-group {
    position: relative;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius-md);
    border: none;
    font-size: 1rem;
    font-family: var(--body-font);
}

.cta-form input::placeholder {
    color: var(--medium-color);
}

.cta-form select {
    color: var(--medium-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23767c88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.cta-terms {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-terms a {
    color: white;
    text-decoration: underline;
}

.cta-terms a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------
   14. Comments Section
----------------------------------------- */
.comments {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-alt);
}

.comments-container {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.comment {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.comment.reply {
    margin-left: 60px;
    position: relative;
}

.comment.reply:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 25px;
    width: 2px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}

.comment.reply:after {
    content: '';
    position: absolute;
    top: -20px;
    left: 25px;
    width: 25px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.comment-header h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--medium-color);
}

.comment-content p {
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.comment-reply {
    background: none;
    border: none;
    font-size: 0.85rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    font-weight: 600;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-likes {
    font-size: 0.85rem;
    color: var(--medium-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-likes i {
    color: var(--accent-color);
}

.add-comment {
    max-width: 800px;
    margin: 0 auto;
}

.add-comment h3 {
    margin-bottom: var(--spacing-md);
}

.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.comment-form .form-group:nth-child(3) {
    grid-column: span 2;
}

.comment-form .form-group:nth-child(4) {
    grid-column: span 2;
    justify-self: start;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: var(--body-font);
}

.comment-form textarea {
    resize: vertical;
}

/* -----------------------------------------
   15. Contact Section
----------------------------------------- */
.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    color: var(--medium-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-social h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-circle);
    background-color: var(--dark-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.contact-form .form-group:nth-child(3),
.contact-form .form-group:nth-child(4) {
    grid-column: span 2;
}

.contact-form .form-group:nth-child(5) {
    grid-column: span 2;
    justify-self: start;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: var(--body-font);
}

.contact-form textarea {
    resize: vertical;
}

/* -----------------------------------------
   16. Map Section
----------------------------------------- */
.map {
    height: 450px;
    position: relative;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map iframe {
    filter: grayscale(1);
    transition: filter var(--transition-normal);
}

.map iframe:hover {
    filter: grayscale(0);
}

/* -----------------------------------------
   17. Categories Section
----------------------------------------- */
.categories {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-alt);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary-color);
    color: white;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    background-color: white;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-normal);
}

.category-card:hover h3 {
    color: white;
}

.category-card p {
    color: var(--medium-color);
    margin-bottom: 0;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------
   18. Newsletter Section
----------------------------------------- */
.newsletter {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    background-color: var(--dark-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.newsletter-container:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-circle);
}

.newsletter-container:after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-circle);
}

.newsletter-content {
    color: white;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.newsletter-benefits {
    list-style: none;
    margin-bottom: 0;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-benefits li i {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    padding: 15px;
    border-radius: var(--border-radius-md);
    border: none;
    font-size: 1rem;
    font-family: var(--body-font);
}

.btn-newsletter {
    background-color: var(--primary-color);
    color: white;
}

.btn-newsletter:hover {
    background-color: var(--primary-dark);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.newsletter-privacy a {
    color: white;
    text-decoration: underline;
}

.newsletter-privacy a:hover {
    color: var(--primary-color);
}

/* -----------------------------------------
   19. Footer
----------------------------------------- */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: var(--spacing-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    margin-bottom: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------
   20. Back to Top Button
----------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    color: white;
}

/* -----------------------------------------
   21. Cookie Consent
----------------------------------------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-md);
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-settings {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-cookie-settings:hover {
    background-color: var(--background-alt);
}

/* -----------------------------------------
   22. Responsive Styles
----------------------------------------- */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .blog-card.featured-post {
        grid-column: span 1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .header-social {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px var(--spacing-md) var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: var(--spacing-sm) 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment {
        flex-direction: column;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }
    
    .timeline:before {
        left: 24px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .recipe-card {
        flex: 0 0 calc(100% - var(--spacing-md));
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .comment {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .comment.reply {
        margin-left: 30px;
    }
    
    .comment-form,
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .comment-form .form-group:nth-child(3),
    .contact-form .form-group:nth-child(3),
    .contact-form .form-group:nth-child(4) {
        grid-column: span 1;
    }
    
    .pricing-grid {
        gap: var(--spacing-lg);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}