/*
  BOLD BBQ PALETTE
  Dark & bold design with striking orange accents
*/

:root {
    --gradient-header: linear-gradient(
        135deg,
        #1a1a1a 0%,
        #2d2d2d 50%,
        #1a1a1a 100%
    );
    --gradient-footer: linear-gradient(
        135deg,
        #0f0f0f 0%,
        #1a1a1a 50%,
        #2d2d2d 100%
    );

    --color-primary: #ff6b35;
    --color-primary-dark: #e55a2b;
    --color-primary-darker: #cc4922;
    --color-primary-light: #ff8a5b;
    --color-primary-lighter: #ffa87d;
    --color-bg-light: #ffe4cc;
    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-border: #ff6b35;
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 8px 24px rgba(255, 107, 53, 0.15);

    /* Header Colors */
    --topbar-bg: #1a1a1a;
    --topbar-border: #0f0f0f;
    --topbar-text: #ffffff;
    --topbar-text-secondary: rgba(255, 255, 255, 0.8);
    --topbar-link-hover: #ff6b35;

    --header-bg: #2d2d2d;
    --header-border: #1a1a1a;
    --header-text: #ffffff;
    --header-text-secondary: #ff8a5b;
    --header-link: #ffffff;
    --header-link-hover: #ff6b35;

    --cart-badge-bg: #ff6b35;
    --mobile-menu-hover: rgba(255, 107, 53, 0.15);
    --offerte-btn-bg: #ff6b35;
    --offerte-btn-text: #ffffff;
    --offerte-btn-hover: #ff8a5b;
    --offerte-btn-border: #ff6b35;
}

/* Header Navigation Styling */
header {
    background: var(--gradient-header);
    color: var(--color-text-light);
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Subtle animated background effect */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    z-index: 0;
    pointer-events: none;
}

header > * {
    position: relative;
    z-index: 1;
}

header a {
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header a:hover {
    color: var(--color-bg-light);
}

/* Logo/Home link */
header > div > div > div > a {
    font-size: 1.5em;
    letter-spacing: 1px;
    color: #ffffff !important;
}

header > div > div > div > a:hover {
    color: var(--color-bg-light) !important;
    text-shadow: 0 4px 12px rgba(248, 187, 208, 0.4);
}

/* Nav links */
header nav a:hover {
    color: var(--color-bg-light) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

header button {
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border-radius: 8px;
}

header button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Cart button */
header a[href*="winkelwagen"]:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05);
}

/* Mobile Menu Search Input */
header input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

header input {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

header input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--color-bg-light);
    box-shadow: 0 0 0 3px rgba(240, 98, 146, 0.3);
}

/* Footer Styling */
footer {
    background: var(--gradient-footer);
    color: var(--color-text-light);
    border: none;
    box-shadow: 0 -8px 24px rgba(233, 30, 99, 0.15);
    position: relative;
    overflow: hidden;
}

footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

footer h3 {
    color: var(--color-bg-light) !important;
}

footer p {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    line-height: 1.6;
}

footer a {
    color: var(--color-bg-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

footer a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

footer a:hover::after {
    width: 100%;
}

footer .border-t {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Sitemap Styling */
.min-h-screen {
    background: linear-gradient(135deg, #ffe4cc 0%, #fff 50%, #ffe4cc 100%);
}

.sitemap-page h1 {
    color: var(--color-text-dark) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sitemap-page h2 {
    color: #000 !important;
    font-size: 18px;
}

.sitemap-page a {
    color: var(--color-primary-dark) !important;
}

/* Section headers border */
.border-b-2 {
    border-color: var(--color-primary) !important;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-primary-light)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Main page heading */
h1 {
    color: var(--color-text-dark) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Page description */
.text-lg3 {
    color: var(--color-primary-dark) !important;
    font-weight: 500;
}

/* CTA Section Styling */
.cta {
    background: var(--gradient-header) !important;
    box-shadow: var(--shadow-md);
}

.cta h2 {
    color: var(--color-text-light);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Primary Button (White with Pink Text) */
.cta a {
    background: var(--color-text-light) !important;
    color: var(--color-primary-dark) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.cta a:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* CTA Secondary Button (Dark Pink) */
.cta a[href*="offerte"] {
    background: var(--color-primary-darker) !important;
    color: var(--color-text-light) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta a[href*="offerte"]:hover {
    background: var(--color-primary) !important;
    color: var(--color-text-light) !important;
    border-color: var(--color-text-light);
    transform: translateY(-2px);
}

/* Aanbod Page Styling */
/* Sidebar */
.aanbod-sidebar {
    background: rgba(233, 30, 99, 0.05) !important;
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 12px;
}

.aanbod-sidebar h3 {
    color: var(--color-text-dark);
    font-weight: 700;
}

/* Category Button Styling */
.category-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    font-weight: 500;
}

.category-btn.active {
    background: var(--gradient-header) !important;
    color: var(--color-text-light) !important;
    box-shadow: var(--shadow-md);
}

.category-btn.inactive {
    color: #4b5563;
}

.category-btn.inactive:hover {
    background: rgba(233, 30, 99, 0.1) !important;
    color: var(--color-text-dark);
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(233, 30, 99, 0.3);
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #ff8a5b,
        #ff6b35
    );
}

.product-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3),
        transparent
    );
    z-index: 1;
}

.product-card-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-card-price {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-card-link-text {
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-card-link-text {
    transform: translateX(4px);
}

/* Animations */
@keyframes shimmer {
    0%,
    100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Product Page Styling */
.product-page {
    background: linear-gradient(to bottom, rgba(255, 228, 204, 0.3), #ffffff);
}

.product-page h1 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-page a {
    color: var(--color-primary-dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-page a:hover {
    color: var(--color-primary);
}

/* Product Gallery */
.product-gallery {
    border-radius: 14px;
    overflow: hidden;
}

.product-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbnails button {
    border-color: rgba(233, 30, 99, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.product-gallery-thumbnails button:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 12px rgba(233, 30, 99, 0.3);
}

/* Price Box */
.product-price-box {
    background: rgba(252, 228, 236, 0.6);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.product-price {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 2.25em;
}

.product-price-info {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95em;
}

/* Quantity Control */
.product-quantity-control {
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.product-quantity-btn {
    background: rgba(233, 30, 99, 0.1);
    color: var(--color-text-dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.product-quantity-btn:hover {
    background: rgba(233, 30, 99, 0.2);
    color: var(--color-primary-dark);
}

.product-quantity-input {
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--color-text-dark);
}

.product-quantity-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(233, 30, 99, 0.3);
}

/* Form Controls */
.product-form-label {
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 0.95em;
}

.product-form-select,
.product-form-input {
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    background: #ffffff;
    color: var(--color-text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-form-select:hover,
.product-form-input:hover {
    border-color: rgba(233, 30, 99, 0.4);
}

.product-form-select:focus,
.product-form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.product-radio,
.product-checkbox {
    accent-color: var(--color-primary);
}

.product-radio:focus,
.product-checkbox:focus {
    outline: 2px solid rgba(233, 30, 99, 0.3);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Add to Cart Button */
.product-add-to-cart {
    background: var(--gradient-header) !important;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: none;
}

.product-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
}

.product-add-to-cart:active {
    transform: translateY(0);
}

/* Content Page Styling */
.content-page {
    color: var(--color-text-dark);
    line-height: 1.8;
}

.content-page p {
    margin-bottom: 1rem;
    color: #333;
}

.content-page h2 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    border-bottom: 3px solid var(--color-bg-light);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    line-height: 1.2;
}

.content-page h3 {
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-page strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.content-page em {
    color: var(--color-primary);
    font-style: italic;
}

/* Webshop Category Page */
.webshop-category-page {
    position: relative;
}

.webshop-category-page h1 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.webshop-category-page h2 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.2;
}

/* Related Products Section */
.related-products-section {
    background: linear-gradient(
        135deg,
        rgba(255, 228, 204, 0.5),
        rgba(255, 255, 255, 0.8)
    );
    border-top: 2px solid rgba(255, 107, 53, 0.15);
}

.related-products-section h2 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.related-product-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.related-product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(233, 30, 99, 0.3);
}

.related-product-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #ff8a5b,
        #ff6b35
    );
}

.related-product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3),
        transparent
    );
    z-index: 0;
    pointer-events: none;
}

.related-product-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.related-product-price {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.related-product-link-text {
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.related-product-card:hover .related-product-link-text {
    transform: translateX(4px);
}

/* Footer Sitemap Links */
.footer-sitemap-links h4 {
    color: var(--color-bg-light) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-sitemap-links a {
    color: rgba(248, 187, 208, 0.85);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-sitemap-links a::after {
    content: "";
    width: 0;
    height: 1px;
    background: var(--color-primary-light);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-sitemap-links a:hover::after {
    width: 100%;
}

/* Blog Detail Page */
.blog-detail-page {
    background: linear-gradient(to bottom, #ffffff, #fdf9fa);
}

.blog-detail-page h1 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.blog-detail-page .flux\:card {
    border: 1px solid rgba(233, 30, 99, 0.1);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98),
        rgba(252, 228, 236, 0.5)
    );
}

/* Blog CTA Section */
.blog-cta-section {
    background: var(--gradient-header);
    color: var(--color-text-light);
    padding: 3rem 1rem;
    margin-top: 3rem;
}

.blog-cta-section h2 {
    color: var(--color-text-light);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
}

.blog-cta-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.blog-cta-button {
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    margin: 0 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.blog-cta-button-primary {
    background: var(--color-text-light);
    color: var(--color-primary-dark);
}

.blog-cta-button-primary:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-cta-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.blog-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Related Articles Section */
.blog-related-articles {
    background: linear-gradient(to bottom, #ffe4cc, #ffffff);
    padding: 4rem 1rem;
}

.blog-related-articles h2 {
    color: var(--color-text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.2;
}

.blog-article-card {
    background: var(--color-text-light);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-article-card:hover {
    box-shadow: 0 12px 24px rgba(233, 30, 99, 0.15);
    transform: translateY(-4px);
}

.blog-article-card-header {
    height: 10rem;
    background: linear-gradient(
        135deg,
        #ff6b35 0%,
        #ff8a5b 100%
    );
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.blog-article-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.blog-article-card-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.5)
    );
    z-index: 1;
}

.blog-article-card-header h3 {
    color: var(--color-text-light);
    font-size: 1.125rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.blog-article-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-article-card-body p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-article-card-footer {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.blog-article-card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.blog-article-card:hover .blog-article-card-link {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

/* Blog Overview Page */
.blog-overview-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a5b 50%, #ffa87d 100%);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem;
}

.blog-overview-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.blog-overview-hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(204, 73, 34, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

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

.blog-overview-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.blog-overview-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .blog-overview-hero h1 {
        font-size: 2.25rem;
    }
}

.blog-overview-hero p {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.blog-overview-grid {
    background: #ffffff;
    padding: 4rem 1rem;
}

.blog-overview-grid-container {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

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

.blog-overview-article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-overview-article-card:hover {
    box-shadow: 0 16px 32px rgba(233, 30, 99, 0.2);
    transform: translateY(-8px);
}

.blog-overview-article-card-image {
    position: relative;
    height: 200px;
    background: var(--gradient-header);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-overview-article-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3),
        transparent
    );
    z-index: 1;
}

.blog-overview-article-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-overview-article-card-title {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-overview-article-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-overview-article-card-body p {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* Home Page Styling */
.home-hero {
    background: var(--gradient-header);
    position: relative;
    overflow: hidden;
    padding: 8rem 1rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.home-hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(204, 73, 34, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.home-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    color: white;
}

.home-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.home-hero-highlight {
    background: linear-gradient(135deg, #ff6b35, #ff8a5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.home-hero p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.home-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero-button-primary {
    padding: 1rem 2rem;
    background-color: white;
    color: #ff6b35;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.home-hero-button-primary:hover {
    background-color: #ffe4cc;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.home-hero-button-secondary {
    padding: 1rem 2rem;
    background-color: #cc4922;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #ff8a5b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.home-hero-button-secondary:hover {
    background-color: #ff8a5b;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .home-hero {
        padding: 4rem 1rem;
        min-height: auto;
    }

    .home-hero h1 {
        font-size: 2.25rem;
    }

    .home-hero p {
        font-size: 1rem;
    }

    .home-hero-buttons {
        flex-direction: column;
    }

    .home-hero-button-primary,
    .home-hero-button-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Home Section Containers */
.home-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.home-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.home-section-header p {
    font-size: 1.125rem;
    color: #666;
    font-weight: 500;
}

.home-section-cta {
    text-align: center;
    margin-top: 3rem;
}

.home-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-header);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.home-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.25);
}

/* Products Section */
.home-products-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #ffe4cc 0%, #ffccaa 100%);
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Categories Section */
.home-categories-section {
    padding: 4rem 1rem;
    background: white;
}

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

.home-category-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.home-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.15);
}

.home-category-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gradient-header);
    position: relative;
}

.home-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-header);
}

.home-category-card-content {
    padding: 1.5rem;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-category-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.home-category-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.home-category-card:hover .home-category-link {
    color: var(--color-primary-dark);
}

/* Blog Section */
.home-blog-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #ffe4cc 0%, #ffccaa 100%);
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ============================================
   HEADER COMPONENT CLASSES
   ============================================ */

/* Topbar */
.topbar {
    background-color: var(--topbar-bg);
    border-bottom-color: var(--topbar-border);
    color: var(--topbar-text);
}

.topbar-text {
    color: var(--topbar-text);
}

.topbar-text-secondary {
    color: var(--topbar-text-secondary);
}

.topbar-link {
    color: var(--topbar-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.topbar-divider {
    color: var(--topbar-text-secondary);
}

/* Header Main */
.header-main {
    background-color: var(--header-bg);
    border-bottom-color: var(--header-border);
    color: var(--header-text);
}

.header-logo {
    color: var(--header-text);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-logo:hover {
    color: var(--header-link-hover);
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-link {
    color: var(--header-link);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-link:hover {
    color: var(--header-link-hover);
    opacity: 0.9;
}

.header-link-secondary {
    color: var(--header-text-secondary);
}

.header-link-secondary:hover {
    color: var(--header-link);
}

/* Cart Badge */
.cart-badge {
    background-color: var(--cart-badge-bg);
    color: #ffffff;
    font-weight: bold;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    background-color: transparent;
    color: var(--header-text);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--mobile-menu-hover);
}

.mobile-menu {
    display: none;
    background-color: var(--header-bg);
    border-top-color: var(--header-border);
}

.mobile-menu-link {
    color: var(--header-link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: var(--mobile-menu-hover);
    color: var(--header-link-hover);
}

/* Header Form Elements */
.header-input {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--header-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-input::placeholder {
    color: var(--topbar-text-secondary);
}

.header-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--header-link-hover);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Offerte Button */
.offerte-btn {
    background-color: #ff6b35;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.offerte-btn:hover {
    background-color: #ffa87d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.home-category-card:hover .home-category-link {
    color: var(--color-primary-dark);
}

/* Blog Section */
.home-blog-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #ffe4cc 0%, #ffccaa 100%);
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
