/* assets/css/style.css */
:root {
    --primary-snack: #f59e0b;
    --dark-snack: #18181b;
    --accent-red: #ef4444;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.main-navbar {
    background-color: #111827 !important;
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 1.25rem;
}

/* Product Cards */
.card-product {
    border: none;
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    overflow: hidden;
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15) !important;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #f1f5f9;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

/* Quantity Stepper Buttons */
.qty-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.15s ease;
}

.qty-btn:hover {
    background: #f1f5f9;
}

.qty-input {
    width: 55px;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-weight: 600;
}

/* Floating Cart Badge */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #f59e0b;
    border-radius: 50%;
    z-index: 999;
    transition: transform 0.2s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
}

.floating-cart-counter {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.75rem;
}

/* Payment Badges */
.payment-badges .badge {
    padding: 6px 10px;
    font-size: 0.75rem;
}

/* Printable Packaging Label */
@media print {
    body * {
        visibility: hidden;
    }
    #print-shipping-label, #print-shipping-label * {
        visibility: visible;
    }
    #print-shipping-label {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .no-print {
        display: none !important;
    }
}