body {
    background: #e9fbe5;
    font-family: "Segoe UI", Arial, sans-serif;
}

.navbar,
.footer {
    background: #218838 !important;
}

.hero-bg {
    background: linear-gradient(120deg, #b6f7c1 0%, #e9fbe5 100%);
    background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    color: #155724;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(33, 136, 56, 0.08);
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(33, 136, 56, 0.1);
    max-width: 600px;
    margin: auto;
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff !important;
}

.nav-link.active,
.nav-link:focus,
.nav-link:hover {
    color: #b6f7c1 !important;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8rem;
}

.product-card {
    transition:
        box-shadow 0.3s,
        transform 0.2s;
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(33, 136, 56, 0.08);
    overflow: hidden;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(33, 136, 56, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.product-img {
    height: 210px;
    object-fit: cover;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}

.card-body {
    padding-bottom: 1.5rem;
}

.product-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #218838;
    margin-bottom: 0.5rem;
}

.product-card .card-text {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 0.7rem;
}

.product-card .fw-bold.text-success {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.product-card small.text-muted {
    font-size: 0.95rem;
    color: #7abf8e !important;
    font-weight: 500;
}

.badge-stock {
    background: linear-gradient(90deg, #b6f7c1 0%, #e9fbe5 100%);
    color: #218838;
    font-size: 0.93rem;
    font-weight: 600;
    border-radius: 0.7rem;
    padding: 0.38em 1em 0.38em 0.9em;
    margin-top: 0.3em;
    box-shadow: 0 1px 4px rgba(33, 136, 56, 0.07);
    width: fit-content;
}

.btn-primary,
.btn-outline-primary {
    border-color: #28a745;
    background-color: #28a745;
    color: #fff;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: #218838;
    border-color: #218838;
    color: #fff;
}

.footer {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}
