/* ============================================
   Insektenhotel.be - Modern Nature Theme
   Warm greens, earthy tones, organic feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,700&display=swap');

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-500: #4a7c3f;
    --green-600: #3d6b34;
    --green-700: #2e5a28;
    --green-800: #1e3d1a;
    --green-900: #14280f;

    --amber-400: #fbbf24;
    --amber-500: #e8a838;
    --amber-600: #d4962e;

    --sand-50: #fdfcfa;
    --sand-100: #f8f5ef;
    --sand-200: #f0ebe2;
    --sand-300: #e0d8cc;

    --text: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --border: #e5e5e5;

    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
    --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 8px 10px rgba(0,0,0,.04);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --max-w: 1180px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--sand-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-700); }
ul { list-style: none; }
button { font-family: var(--font); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
    background: var(--green-800);
    color: var(--green-100);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
}
.announce-bar strong { color: var(--amber-400); }

/* ===== UNDER CONSTRUCTION BANNER ===== */
.construction-bar {
    background: repeating-linear-gradient(45deg, #f59e0b, #f59e0b 14px, #1f2937 14px, #1f2937 28px);
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-shadow: 0 1px 2px rgba(0,0,0,.55);
}
.construction-bar strong { color: #fde68a; text-decoration: underline; }
.cart-badge { display:inline-block; min-width:18px; padding:0 5px; margin-left:2px; background:var(--amber-400,#fbbf24); color:#1f2937; border-radius:9px; font-size:12px; font-weight:700; line-height:18px; text-align:center; }
@media (max-width: 600px) { .construction-bar { font-size: 11px; padding: 7px 10px; } }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.95);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--green-700);
    flex-shrink: 0;
}
.site-logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}
.site-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.2;
}
.site-logo-text small {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .03em;
}

/* Desktop Nav */
.site-nav { display: flex; gap: 4px; }
.site-nav a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all .2s var(--ease);
}
.site-nav a:hover,
.site-nav a.active {
    background: var(--green-50);
    color: var(--green-700);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--green-500);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all .2s var(--ease);
}
.header-cart:hover { background: var(--green-600); color: var(--white); transform: translateY(-1px); }
.header-cart svg { width: 18px; height: 18px; }
.cart-count {
    background: var(--amber-500);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .2s var(--ease);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, var(--green-700) 0%, var(--green-500) 60%, #6a9e5c 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.15);
}
.hero h2 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}
.hero p {
    font-size: 17px;
    opacity: .88;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 420px;
}
.hero-visual-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: transform .3s var(--ease);
}
.hero-visual-card:hover { transform: translateY(-4px); }
.hero-visual-card:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.hero-visual-icon { font-size: 48px; margin-bottom: 8px; }
.hero-visual-label { font-size: 13px; font-weight: 600; opacity: .9; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all .2s var(--ease);
    border: none;
    text-align: center;
    line-height: 1;
}
.btn-primary {
    background: var(--amber-500);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,168,56,.35);
}
.btn-primary:hover {
    background: var(--amber-600);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,168,56,.45);
}
.btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); color: var(--white); }
.btn-outline {
    background: var(--white);
    color: var(--green-700);
    border: 2px solid var(--green-500);
}
.btn-outline:hover {
    background: var(--green-500);
    color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.trust-icon {
    width: 36px;
    height: 36px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--sand-100); }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--green-800);
    margin-bottom: 12px;
    letter-spacing: -.01em;
}
.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .25s var(--ease);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}
.cat-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--sand-100), var(--sand-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--green-800);
    margin-bottom: 6px;
}
.cat-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex: 1;
}
.cat-card-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-600);
    background: var(--green-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-self: flex-start;
}
.cat-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}
.cat-card:hover .cat-card-link { gap: 10px; }

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all .25s var(--ease);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}
.product-card-img {
    height: 200px;
    background: var(--sand-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}
.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    z-index: 2;
}
.badge-new { background: var(--green-500); color: var(--white); }
.badge-promo { background: #ef4444; color: var(--white); }

.product-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--green-600);
    font-weight: 700;
    margin-bottom: 4px;
}
.product-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 8px;
}
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--green-600); }
.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}
.product-card-price .current {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-800);
}
.product-card-price .old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-card-stock {
    font-size: 12px;
    color: var(--green-600);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-card-stock::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}
.product-card-footer {
    padding: 0 16px 16px;
}
.product-card-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: var(--radius);
}

/* ===== INFO SECTION ===== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.info-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sand-200);
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-img img { width: 100%; height: 100%; object-fit: cover; }
.info-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--green-800);
    margin-bottom: 16px;
}
.info-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}
.info-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}
.info-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}
.info-feature::before {
    content: '\2713';
    color: var(--green-500);
    font-weight: 800;
    font-size: 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}
.cta-banner p {
    opacity: .88;
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,.7);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.site-footer h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: rgba(255,255,255,.6); font-size: 14px; }
.site-footer ul a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer-payments { display: flex; gap: 6px; }
.footer-payments span {
    background: rgba(255,255,255,.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

/* ===== PAGE HEADER ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 8px;
}
.page-hero p { opacity: .85; font-size: 16px; max-width: 500px; margin: 0 auto; }
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb .sep { margin: 0 8px; opacity: .4; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color .2s var(--ease);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(74,124,63,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--green-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-card h4 { font-size: 15px; margin-bottom: 4px; color: var(--text); }
.contact-card p { font-size: 14px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero h2 { font-size: 38px; }
    .hero .container { gap: 40px; }
}

@media (max-width: 768px) {
    .announce-bar { font-size: 12px; }
    .site-header .container { height: 60px; }
    .site-nav { display: none; }
    .site-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        z-index: 99;
    }
    .site-nav.open a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }
    .menu-toggle { display: flex; }
    .hero { padding: 48px 0 56px; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero h2 { font-size: 32px; }
    .hero p { margin: 0 auto 28px; }
    .hero-cta { justify-content: center; }
    .hero-visual { display: none; }
    .cat-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
    .info-img { display: none; }
    .trust-bar .container { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 32px 0; }
    .page-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero h2 { font-size: 28px; }
    .trust-bar .container { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
