:root {
    --accent: #98cb40;
    --bg: #f8f0e6;
    --text: #111;
}

/* GLOBAL */
body {
    background: var(--bg);
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
}

/* TOP BAR */
.top-bar {
    background: #111;
    font-size: 13px;
    padding: 6px 0;
}
.top-bar a {
    color: #bbb;
    margin-right: 15px;
    text-decoration: none;
}
.top-bar a:hover {
    color: white;
}

/* HEADER */
.main-header {
    background: #fff;
    padding: 15px 0;
}

/* LOGO */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo {
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: bold;
}
.brand {
    font-weight: bold;
    font-size: 20px;
}

/* SEARCH */
.search-box {
    display: flex;
    flex: 1;
    max-width: 500px;
}
.search-box input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 30px 0 0 30px;
}
.search-box button {
    background: var(--accent);
    border: none;
    padding: 8px 15px;
    border-radius: 0 30px 30px 0;
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* CART */
.cart-icon {
    position: relative;
    font-size: 20px;
    color: #111;
}
.cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
}
/* Optional enhancements */

body {
    font-family: 'Inter', sans-serif;
}

/* smooth hover */
.card-hover:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
}
/* CARDS */
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    transition: .2s;
}
.product-card:hover {
    transform: translateY(-5px);
}

/* QR */
.qr-placeholder {
    width: 120px;
    height: 120px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}