/* 
   ==========================================================================
   gartenstecker.at - CSS Stylesheet
   Design-Stil: Modern, elegant, naturverbunden & handwerksorientiert
   ========================================================================== 
*/

/* Fonts importieren */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Variablen & Design-Token */
:root {
    /* Farbpalette */
    --color-primary: #1c3f24;       /* Edles Waldgrün */
    --color-primary-light: #2c5636;
    --color-primary-dark: #122817;
    --color-secondary: #c86a4b;     /* Warmes Terracotta / Ton */
    --color-secondary-light: #d88063;
    --color-secondary-dark: #ae5335;
    --color-bg-warm: #fbfaf7;       /* Warmes Cremeweiß */
    --color-bg-card: #ffffff;
    --color-bg-dark: #18241b;       /* Sehr dunkles Grün für Footer */
    --color-text-main: #2c302e;     /* Sanftes Anthrazit */
    --color-text-muted: #5e6561;    /* Grau-Grün-Mischung */
    --color-text-light: #ffffff;
    --color-border: #e3e0d8;
    --color-accent-light: #f3efe6;

    /* Typografie */
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(28, 63, 36, 0.05);
    --shadow-md: 0 10px 30px rgba(28, 63, 36, 0.08);
    --shadow-lg: 0 20px 50px rgba(28, 63, 36, 0.12);
    
    /* Transition */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Basis-Stile */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-warm);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout-Hilfen */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* Typografie-Klassen */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
}

p {
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28, 63, 36, 0.25);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 106, 75, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.product-info-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    color: var(--color-text-muted);
    border: 2px solid var(--color-border);
    background-color: var(--color-accent-light);
    cursor: default;
    user-select: none;
    flex-grow: 1;
    text-align: center;
}

/* Navigation Header */
.site-header {
    background-color: rgba(251, 250, 247, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition-smooth);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-family: var(--font-headings);
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-main);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

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

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

.nav-link.active {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 77px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 77px);
        background-color: var(--color-bg-warm);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--color-text-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 40, 23, 0.85) 0%, rgba(18, 40, 23, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-title {
    color: var(--color-text-light);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e5ecd6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
    }
}

/* Info Banner / Feature Cards */
.intro-text-block {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text-block h2 {
    margin-bottom: 20px;
}

.intro-text-block p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--color-bg-card);
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-secondary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    color: var(--color-secondary);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

/* Category Grid on Landing Page */
.category-showcase {
    background-color: var(--color-accent-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

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

.category-card {
    position: relative;
    height: 380px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-end;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover .category-card-img {
    transform: scale(1.05);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(18, 40, 23, 0.9) 0%, rgba(18, 40, 23, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: var(--color-text-light);
    width: 100%;
}

.category-card-title {
    color: var(--color-text-light);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.category-card-desc {
    font-size: 0.95rem;
    color: #e5ecd6;
    margin-bottom: 16px;
    font-weight: 300;
}

/* Category Header for Individual Category Pages */
.category-header {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    margin-bottom: 60px;
}

.category-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.category-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.category-header-content h1 {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.category-header-content p {
    font-size: 1.15rem;
    color: #e5ecd6;
    font-weight: 300;
}

/* Product Cards Grid */
.products-section-title {
    margin-bottom: 40px;
    text-align: center;
}

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

.product-card {
    position: relative;
    cursor: pointer;
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 106, 75, 0.2);
}

.product-img-wrapper {
    position: relative;
    height: 300px;
    background-color: var(--color-accent-light);
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(200, 106, 75, 0.3);
    z-index: 2;
}

.product-badge.amazon {
    background-color: #232f3e;
    color: #ff9900;
}

.product-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-headings);
    transition: color 0.3s ease;
}

.product-card:hover .product-card-title {
    color: var(--color-secondary-dark);
}

.product-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-card-meta {
    list-style: none;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.product-card-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card-footer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-card-footer .btn {
    flex-grow: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* Highlight / Premium Showcase section on Home */
.premium-showcase {
    background-color: var(--color-bg-card);
}

.showcase-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-image-pane {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.showcase-image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-text-pane {
    flex: 1.2;
}

.showcase-label {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.showcase-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.showcase-quote {
    font-style: italic;
    font-family: var(--font-headings);
    color: var(--color-primary-light);
    border-left: 3px solid var(--color-secondary);
    padding-left: 20px;
    margin: 24px 0;
    font-size: 1.15rem;
}

@media (max-width: 992px) {
    .showcase-flex {
        flex-direction: column;
    }
    .showcase-image-pane {
        width: 100%;
        height: 350px;
    }
}

/* Product Detail Page Layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Image Slider Component */
.gallery-slider {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-accent-light);
}

.slider-main {
    height: 500px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .slider-main {
        height: 350px;
    }
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(251, 250, 247, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.slider-btn-prev { left: 20px; }
.slider-btn-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(251, 250, 247, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-secondary);
    transform: scale(1.2);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--color-secondary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Specs & Buying Guide */
.product-info-panel h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.product-tradition-box {
    background-color: var(--color-accent-light);
    border-left: 4px solid var(--color-secondary);
    padding: 24px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: 24px 0;
}

.product-tradition-box h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--color-secondary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-list {
    list-style: none;
    margin: 28px 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li span.label {
    font-weight: 700;
    color: var(--color-text-muted);
}

.spec-list li span.value {
    color: var(--color-text-main);
    text-align: right;
}

.warning-alert {
    background-color: #fff6f3;
    border: 1px solid #ffdcd0;
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin: 24px 0;
}

.warning-alert h4 {
    color: var(--color-secondary-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

/* Info Box Standard */
.info-section-standard {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.info-section-standard h3 {
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-accent-light);
    padding-bottom: 12px;
}

.info-section-standard p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Content Pages (Impressum, Datenschutz, AGB) */
.rich-text-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.rich-text-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.rich-text-page h2 {
    font-size: 1.8rem;
    margin: 32px 0 16px;
}

.rich-text-page h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
}

.rich-text-page p, .rich-text-page ul, .rich-text-page ol {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.rich-text-page ul, .rich-text-page ol {
    padding-left: 24px;
}

.rich-text-page li {
    margin-bottom: 8px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.legal-box {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--border-radius-md);
}

.legal-box h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-bg-dark);
    color: #e5ecd6;
    padding: 80px 0 40px;
    font-size: 0.95rem;
    border-top: 4px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-column h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-about p {
    color: #b0bfb4;
    margin-bottom: 24px;
}

.footer-disclaimer-box {
    background-color: rgba(251, 250, 247, 0.05);
    border-left: 3px solid var(--color-secondary);
    padding: 16px 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.footer-disclaimer-box p {
    color: #e5ecd6;
    font-size: 0.85rem;
    margin: 0;
}

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

.footer-link-item a {
    color: #b0bfb4;
}

.footer-link-item a:hover {
    color: var(--color-secondary-light);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #8da394;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-legal-links a {
    color: #8da394;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Privacy Info Banner */
.privacy-info-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: var(--color-bg-dark);
    color: #ffffff;
    border-left: 4px solid var(--color-secondary);
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    animation: slideUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 768px) {
    .privacy-info-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 20px;
    }
}

.privacy-banner-text {
    flex-grow: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #b0bfb4;
}

.privacy-banner-text strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.privacy-banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.privacy-banner-btn-close {
    background-color: var(--color-secondary);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.privacy-banner-btn-close:hover {
    background-color: var(--color-secondary-light);
}

@keyframes slideUp {
}

/* Blog Styles */
.blog-header {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}
.blog-header h1 { color: var(--color-text-light); }
.blog-header p { color: #e5ecd6; font-size: 1.15rem; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}
.blog-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.blog-card-img-wrapper {
    height: 240px;
    overflow: hidden;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.blog-card-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}
.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}
.blog-post-content img {
    border-radius: var(--border-radius-md);
    margin: 32px 0;
    width: 100%;
    height: auto;
}
.blog-post-content h2 { margin-top: 40px; margin-bottom: 20px; }
.blog-post-content p { font-size: 1.1rem; line-height: 1.8; color: var(--color-text-muted); }

/* FAQ Accordion */
.faq-section { margin-top: 50px; background-color: var(--color-bg-card); padding: 40px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-sm); }
.faq-section h2 { margin-bottom: 30px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 15px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--color-text); transition: color var(--transition-fast); }
.faq-question:hover { color: var(--color-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: var(--color-text-muted); line-height: 1.6; }
.faq-answer p { padding-top: 15px; margin: 0; }
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform var(--transition-fast); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 1000px; }
