body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f6f6f6;
    color: #111;
}

/* Header */
.sale-banner {
    background: #000;
    color: #fff;
    padding: 8px 12px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-left {
    display: flex;
    gap: 28px;
    flex: 1;
}

.header-left a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.header-center {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 6px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right a { color: inherit; }

@media (max-width: 640px) {
    .header-center { font-size: 20px; letter-spacing: 3px; }
    .modern-header { padding: 12px 18px; }
    .header-left { gap: 12px; }
}

.search-bar input {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

/* Hero sectie */

.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(90deg, #f6f6f6 0%, #eaeaea 100%);
    position: relative;
    overflow: hidden;
}

.nofear-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #111;
    text-shadow: 0 4px 24px rgba(0,0,0,0.12);
    animation: glowTitle 2s infinite alternate;
}

.hero-lead {
    font-size: 22px;
    color: #333;
    margin: 18px 0 0 0;
    line-height: 1.7;
}

.hero-btn {
    margin-top: 32px;
    background: linear-gradient(90deg, #111 0%, #444 100%);
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(0,0,0,0.18);
}

@keyframes glowTitle {
    from { text-shadow: 0 4px 24px rgba(0,0,0,0.12); }
    to { text-shadow: 0 4px 48px #111; }
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

/* Producten */
.featured-products {
    padding: 60px 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.product {
    background: #fff;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: 0.3s cubic-bezier(.2,.9,.3,1);
    position: relative;
    overflow: hidden;
}
.product::before {
    content: "";
    position: absolute;
    top: -40px; left: -40px;
    width: 80px; height: 80px;
    background: radial-gradient(circle, #111 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}
.product:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 2px solid #111;
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.price {
    font-weight: 600;
    margin: 10px 0;
}


.btn-small {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(90deg, #111 0%, #444 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    position: relative;
    z-index: 1;
}
.btn-small:hover {
    background: linear-gradient(90deg, #444 0%, #111 100%);
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #fff;
    margin-top: 40px;
}

/* About page modern styling */
.about-hero {
    max-width: 820px;
    margin: 80px auto;
    background: linear-gradient(180deg, #ffffff, #fafafa);
    padding: 64px 48px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(12,20,30,0.08);
    text-align: left;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 600ms cubic-bezier(.2,.9,.3,1) forwards;
}

.about-hero h1 {
    font-size: 44px;
    letter-spacing: 3px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #0b0b0b;
}

.about-hero h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #111;
    margin-top: 18px;
    border-radius: 4px;
    opacity: 0.95;
}

.about-hero .lead {
    font-size: 18px;
    line-height: 1.85;
    color: #333;
    margin: 24px 0 0 0;
}

.about-hero .signature {
    display: block;
    margin-top: 28px;
    font-weight: 700;
    color: #111;
    text-align: right;
}

@keyframes fadeUp {
    to { opacity: 1; transform: none; }
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .about-hero {
        padding: 36px 22px;
        margin: 40px 18px;
        border-radius: 12px;
    }

    .about-hero h1 { font-size: 28px; letter-spacing: 1.5px; }
    .about-hero .lead { font-size: 15px; line-height: 1.7; }
    .about-hero h1::after { width: 44px; }
}

/* Cart icon */
.cart-icon {
    font-size: 22px;
    cursor: pointer;
    position: relative;
}

#cart-count {
    background: #111;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* Cart drawer */
/* Cart drawer: default is a small floating panel top-right; when .open it expands to a full-height drawer */
.cart-drawer {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 320px;
    max-height: 360px;
    height: auto;
    background: rgba(255,255,255,0.98);
    border: 1px solid #efefef;
    box-shadow: 0 8px 30px rgba(12,20,30,0.06);
    padding: 0;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.cart-drawer h2 {
    padding: 14px 16px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 6px;
    line-height: 1;
    border-radius: 8px;
}

.cart-drawer.open {
    top: 0;
    right: 0;
    width: 520px;
    height: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: -6px 0 28px rgba(0,0,0,0.14);
}

.cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 12px 14px 20px 14px; /* extra bottom padding so footer doesn't overlap */
    min-height: 0;
}

.cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 6px;
    align-items: center;
    border-radius: 8px;
    transition: background 160ms ease, transform 160ms ease;
}

.cart-item img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 72px;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.cart-item .cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item h4 { margin: 0 0 6px 0; font-size: 14px; font-weight:700; color:#111; }
.cart-item p { margin: 0; color:#666; font-size:13px; }

.cart-item:hover { background: rgba(12,20,30,0.02); transform: translateY(-2px); }

/* When expanded, make items more spacious */
.cart-drawer.open .cart-item { padding: 14px 16px; }
.cart-drawer.open .cart-item img { width: 100px; height: 100px; flex: 0 0 100px; }

.cart-footer {
    padding: 12px 14px 18px 14px;
    border-top: 1px solid #f2f2f2;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
    position: sticky;
    bottom: 0;
    z-index: 12;
}

/* Ensure items area has space so footer is visible without overlap */
.cart-drawer .cart-items { padding-bottom: 120px; }

.cart-footer .total {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

/* Coupon input inside cart */
.cart-coupon {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.cart-coupon .coupon-input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}
.cart-coupon .coupon-btn {
    padding: 8px 12px;
    border-radius: 6px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.cart-coupon .coupon-btn:hover { opacity: 0.95; }
.cart-coupon .coupon-applied {
    font-size: 13px;
    color: #111;
}

.cart-footer .breakdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}
.cart-footer .breakdown .line { display:flex; justify-content:space-between; color:#666; font-size:14px; }
.cart-footer .breakdown .line.total-line { font-weight:700; color:#111; font-size:16px; }