/* ========================
   HEADER (STICKY)
======================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

/* ========================
   TOP NOTICE BAR
======================== */
.header-top1 {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 4px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #686767;
}
.header-top1-inner {
    display: inline-block;
    margin: 0 1rem;
    font-size: 13px;
    font-weight: 550;
    white-space: nowrap;
}
/* ========================
   MAIN HEADER
======================== */
.header-top {
    background: #faf8e5;
    border-bottom: 1px solid #eee;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

/* Logo */
.logo img {
    width: 180px;
    height: auto;
}

/* ========================
   SEARCH BAR
======================== */
.search-bar form {
    display: flex;
    align-items: center;
    border: 1px solid #eadcba;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}

.search-bar input {
    border: none;
    padding: 12px 16px;
    min-width: 360px;
    outline: none;
    font-size: 14px;
}

.search-bar button {
    border: none;
    background: transparent;
    padding: 12px 16px;
    cursor: pointer;
}

/* ========================
   HEADER ICONS
======================== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--green);
}

/* Cart badge */
.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--accent);
    color: #222;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ========================
   NAVIGATION BAR
======================== */
.topbar {
    background: var(--green);
}

.topbar .nav {
    display: flex;
    gap: 40px;
    padding: 10px 0;
}

.topbar .nav a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
}

/* Underline hover */
.topbar .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.topbar .nav a:hover::after,
.topbar .nav a.active::after {
    width: 100%;
}

/* ========================
   RESPONSIVE HEADER
======================== */
@media (max-width: 768px) {

    .header-top-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .topbar .nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .search-bar input {
        min-width: 200px;
    }
}



/* ========================

   RESET & VARIABELEN
======================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, Arial, sans-serif;
}

:root {
    --green: #0b6b43;
    --light: #f7f5e9;
    --accent: #ffd66b;
    --muted: #f3f7f3;
}

body {
    background: #fff;
    color: #222;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover {
    background: #094d31;
    transform: translateY(-2px);
}
.btn.small {
    padding: 8px 12px;
    font-size: 14px;
}

/* ========================
   HERO / SLIDESHOW
======================== */
.hero {
    position: relative;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.mySlide {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    z-index: 1;
}

.hero-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.hero-text p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* ========================
   CATEGORIES
======================== */
.categories-section {
    margin-top: 60px;
}

.categories-section h1 {
    text-align: center;
    font-weight: 800;
    margin-bottom: 30px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category {
    flex: 1 1 200px;
    max-width: 220px;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    color: #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.category.yellow { background: #fce18a; }
.category.pink   { background: #f8cce7; }
.category.blue   { background: #cce7f8; }
.category.green  { background: #d6f8cc; }
.category.orange { background: #ffd6a8; }

/* ========================
   PRODUCTEN
======================== */
.products-section {
    margin-top: 70px;
}

.products-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.product-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 15px auto;
}

.product-card h3 {
    font-size: 16px;
    margin: 12px 0;
    min-height: 40px;
}

.price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.out-of-stock {
    color: #999;
    font-weight: 600;
}

/* ========================
   FOOTER (optioneel)
======================== */
.site-footer {
    background: var(--green);
    color: #fff;
    margin-top: 80px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--accent);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
    .hero-text {
        padding: 20px;
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .categories {
        gap: 15px;
    }

    .category {
        max-width: 100%;
    }
}
