/* ============================================
   BORIŠA PREMIUM HONEY BRAND DESIGN SYSTEM
   Premium, modern, bee-inspired e-commerce
   ============================================ */

/* Color Palette - Boriša Identity */
:root {
    /* Primary Colors */
    --color-black: #0b0b09;
    --color-dark: #11100d;
    --color-brown: #2b1608;
    --color-gold: #d99a16;
    --color-honey: #f5b82e;
    --color-amber: #c77b12;
    
    /* Neutrals */
    --color-cream: #fff8ea;
    --color-beige: #f3e3bd;
    --color-text: #1f1b16;
    --color-muted: #6d6255;
    
    /* Accent */
    --color-success: #15803d;
    --color-danger: #dc2626;
    
    /* Legacy - for compatibility */
    --color-dark-brown: #2b1608;
    --color-honey-gold: #d99a16;
    --color-amber: #c77b12;
    --color-white: #ffffff;
    --color-green: #15803d;
}



/* Global Styles */
* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-honey);
    text-decoration: underline;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
    border-bottom: 3px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
}

.navbar-brand {
    color: var(--color-cream) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    line-height: 1;
    padding: 0.25rem 0;
}

.navbar-brand-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 36px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.35));
}

.navbar-brand-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar-brand-title {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    color: var(--color-cream);
    text-transform: uppercase;
}

.navbar-brand-subtitle {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: rgba(255, 238, 205, 0.9);
}

.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    color: var(--color-cream) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--color-honey) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: var(--color-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(217,154,22,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.cart-nav-link {
    align-items: center;
    display: inline-flex;
    min-width: 2.5rem;
    justify-content: center;
    position: relative;
    color: var(--color-honey) !important;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.cart-nav-link:hover {
    color: var(--color-cream) !important;
}

.cart-count-badge {
    font-size: 0.7rem;
    font-weight: 800;
    position: absolute;
    top: -5px;
    right: 5px;
    background: var(--color-honey) !important;
    color: var(--color-black) !important;
    border: 2px solid var(--color-dark);
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Language Selector */
.navbar-nav .form-select {
    background-color: var(--color-dark) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d99a16' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    border: 1.5px solid var(--color-gold) !important;
    color: var(--color-cream) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .form-select:hover {
    border-color: var(--color-honey) !important;
    background-color: rgba(17, 16, 13, 0.9) !important;
}

.navbar-nav .form-select:focus {
    border-color: var(--color-honey) !important;
    box-shadow: 0 0 0 0.25rem rgba(217, 154, 22, 0.25) !important;
    background-color: var(--color-dark) !important;
}

.navbar-nav .form-select option {
    background-color: var(--color-dark);
    color: var(--color-cream);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-band {
    background:
        linear-gradient(100deg, rgba(11, 11, 9, 0.92) 0%, rgba(11, 11, 9, 0.78) 34%, rgba(11, 11, 9, 0.52) 56%, rgba(11, 11, 9, 0.44) 100%),
        linear-gradient(180deg, rgba(11, 11, 9, 0.22) 0%, rgba(11, 11, 9, 0.72) 100%),
        url('../images/queen-bee-hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--color-cream);
    padding: 80px 0 clamp(3.75rem, 5.2vw, 5.5rem);
    position: relative;
    overflow: hidden;
    margin-bottom: -2px;
}

/* Decorative background elements */
.hero-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 11, 9, 0.48) 0%, rgba(11, 11, 9, 0.16) 38%, rgba(11, 11, 9, 0.05) 100%),
        radial-gradient(circle at 76% 22%, rgba(217, 154, 22, 0.12) 0%, transparent 34%);
    pointer-events: none;
    z-index: 1;
}

/* Legacy pseudo divider disabled */
.hero-band::after {
    content: none;
}

.hero-band > .container,
.hero-band .hero-content {
    position: relative;
    z-index: 3;
}

.hero-copy {
    position: relative;
    z-index: 5;
}

.hero-band h1 {
    color: var(--color-cream);
    font-size: clamp(2rem, 8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-band h1 em {
    color: var(--color-honey);
    font-style: normal;
    font-weight: 800;
}

.hero-band .text-uppercase {
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-band .lead {
    color: #e8dcc8;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
}

/* Hero visual layer remains structural while the full hero owns the background */
.hero-visual-layer {
    position: relative;
    min-height: clamp(290px, 62vw, 430px);
    margin-bottom: 18px;
}

.hero-visual-layer::before {
    content: none;
}

.hero-info-card {
    bottom: -18px;
    right: 0;
    width: min(86%, 430px);
}

/* ============================================
   BUTTONS & CTAS
   ============================================ */

.btn-warning {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-honey) 100%);
    border: none;
    color: var(--color-black) !important;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(217, 154, 22, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 154, 22, 0.4);
    background: linear-gradient(135deg, var(--color-honey) 0%, #fac835 100%);
}

.btn-warning:active {
    transform: translateY(0);
}

.btn-outline-dark {
    border: 2px solid var(--color-text);
    color: var(--color-text);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--color-text);
    color: var(--color-cream) !important;
    border-color: var(--color-text);
}

.btn-outline-dark.btn-sm {
    padding: 6px 14px;
    font-size: 0.9rem;
}

/* ============================================
   INFO CARD / HONEY PANEL
   ============================================ */

.honey-panel {
    border-radius: 14px;
    background: var(--color-cream) !important;
    border: 1px solid #ede5d1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 32px;
    position: relative;
}

.honey-panel-bee {
    position: absolute;
    top: 14px;
    right: 16px;
    width: clamp(32px, 6vw, 48px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.honey-panel h2 {
    color: var(--color-text);
    margin-bottom: 12px;
    font-size: 1.25rem;
    padding-right: 58px;
}

.honey-panel p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.products-section {
    position: relative;
    background: #fff8ea;
    margin-top: 0;
    padding-top: 0;
}

/* ============================================
   BEE VISUAL CONTAINER
   ============================================ */

.hero-bee-container {
    position: relative;
    height: clamp(150px, 40vw, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gentle-float 3s ease-in-out infinite;
}

.hero-bee-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-title,
h2.h3 {
    color: var(--color-text);
    font-size: 1.8rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ede5d1;
    background: var(--color-cream);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.product-image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5ede0;
    flex-shrink: 0;
}

.product-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5ede0 0%, #ede5d1 100%);
    color: #8b7d6b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-placeholder {
    align-items: center;
    background: linear-gradient(135deg, #f5ede0 0%, #ede5d1 100%);
    color: #8b7d6b;
    display: flex;
    font-weight: 600;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(217, 154, 22, 0.03) 35px, rgba(217, 154, 22, 0.03) 70px);
    opacity: 0.5;
}

.product-placeholder.large {
    min-height: 320px;
}

.product-card .card-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    color: var(--color-text);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-card .card-title a {
    color: inherit;
}

.product-card .card-title a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

.product-card .card-body > p:first-child {
    font-size: 0.75rem;
    color: var(--color-amber);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
}

.product-card .card-body > p:nth-child(3) {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 6px 0;
}

.product-card .fw-semibold {
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 700;
}

.badge {
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.text-bg-success {
    background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%) !important;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge.text-bg-secondary {
    background: #c0b5a3 !important;
    color: #fff !important;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-image {
    border-radius: 12px;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-bar .badge {
    background: var(--color-beige);
    color: var(--color-amber);
}

.variant-option-group {
    margin-top: 6px;
}

.variant-option-btn {
    border-width: 2px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.88rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.variant-option-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.variant-option-btn.active,
.variant-option-btn.btn-dark {
    background: var(--color-text);
    border-color: var(--color-text);
    color: var(--color-cream) !important;
    box-shadow: 0 0 0 2px rgba(245, 184, 46, 0.45);
}

.variant-option-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
    box-shadow: none;
}

/* ============================================
   SUMMARY & SUCCESS BOXES
   ============================================ */

.summary-box,
.success-box {
    background: var(--color-cream);
    border: 2px solid #ede5d1;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.summary-box h3,
.success-box h3 {
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.summary-box table,
.success-box table {
    color: var(--color-text);
}

.summary-box .table-borderless > :not(caption) > tr > td {
    padding: 10px 0;
    border-bottom: 1px solid #f0e6d2;
    color: var(--color-muted);
}

/* ============================================
   BENEFITS / TRUST SECTION
   ============================================ */

.benefits-section {
    background: linear-gradient(180deg, #a79574 0%, #fff6e7 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(217, 154, 22, 0.2);
}

.benefits-section h3 {
    color: #2a1f15;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 12px;
}

.benefits-section p {
    color: #6a5a48;
    font-size: 0.9rem;
    margin: 0;
}

.benefits-section > .container > .row > div:nth-child(1),
.benefits-section > .container > .row > div:nth-child(2),
.benefits-section > .container > .row > div:nth-child(3),
.benefits-section > .container > .row > div:nth-child(4) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefits-section div > div:first-child {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--color-black);
    border-top: 3px solid var(--color-gold);
    color: #d4cbc0;
    padding: 30px 0 10px;
    margin-top: 60px;
}

.footer-shell {
    max-width: 1040px;
}

.footer-grid {
    justify-content: center;
}

.footer-section {
    margin-bottom: 6px;
}

footer h5 {
    color: var(--color-gold);
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer a {
    color: #d4cbc0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-honey);
    text-decoration: none;
}

footer ul li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

footer .border-top {
    border-color: rgba(217, 154, 22, 0.2) !important;
    color: #9d9186;
    font-size: 0.85rem;
}

.footer-bottom {
    padding-top: 12px;
    margin-top: 12px;
}

footer p {
    margin-bottom: 0.5rem;
    color: #9d9186;
}

/* ============================================
   FORMS
   ============================================ */

.form-control,
.form-select {
    border: 2px solid #ede5d1;
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(217, 154, 22, 0.15);
}

.form-control::placeholder {
    color: #b5a896;
}

.form-label {
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 6px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    border: none;
    border-radius: 8px;
    padding: 16px;
}

.alert-info {
    background: #e8f4f8;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--color-gold);
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid var(--color-success);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.quantity-input {
    max-width: 100px;
    border-radius: 6px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    gap: 12px;
}

.breadcrumb-item {
    color: var(--color-muted);
}

.breadcrumb-item a {
    color: var(--color-gold);
}

.breadcrumb-item.active {
    color: var(--color-text);
}

.text-muted {
    color: var(--color-muted) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .hero-band {
        background-position: 62% center;
        padding: 44px 0 2.25rem;
    }

    .hero-band .container.py-5 {
        padding-top: 1.15rem !important;
        padding-bottom: 0.75rem !important;
    }

    .hero-band .row {
        row-gap: 0.9rem !important;
    }

    .hero-band h1 {
        font-size: 1.95rem;
        margin-bottom: 0.85rem;
    }

    .hero-band .lead {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }

    .honey-panel {
        margin-top: 12px;
        padding: 18px;
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .hero-visual-col {
        margin-top: 2px;
    }

    .hero-visual-layer {
        min-height: 130px;
        margin-bottom: 0;
    }

    .hero-info-card {
        width: min(90%, 420px);
        position: relative !important;
        bottom: auto;
        right: auto;
        margin-top: 8px;
    }

    .hero-primary-cta {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-band {
        background:
            linear-gradient(110deg, rgba(11, 11, 9, 0.95) 0%, rgba(11, 11, 9, 0.84) 44%, rgba(11, 11, 9, 0.62) 100%),
            linear-gradient(180deg, rgba(11, 11, 9, 0.32) 0%, rgba(11, 11, 9, 0.82) 100%),
            url('../images/queen-bee-hero-bg.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        padding: 24px 0 1.2rem;
    }

    .hero-band .container.py-5 {
        padding-top: 0.6rem !important;
        padding-bottom: 0.2rem !important;
    }

    .hero-band .row {
        row-gap: 0.55rem !important;
    }

    .hero-band h1 {
        font-size: 1.7rem;
        margin-bottom: 0.85rem;
    }

    .hero-band .lead {
        font-size: 0.95rem;
        margin-bottom: 0.45rem;
    }

    .navbar-brand {
        font-size: 0.95rem;
    }

    .navbar-brand-title {
        font-size: 1rem;
    }

    .navbar-brand-subtitle {
        font-size: 0.58rem;
        letter-spacing: 1.1px;
    }

    .hero-visual-col {
        margin-top: 0;
    }

    .hero-visual-layer {
        display: none;
        min-height: 0;
        margin-bottom: 0;
    }

    .hero-info-card {
        position: relative !important;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .product-card {
        border-radius: 10px;
    }

    .summary-box,
    .success-box {
        padding: 20px;
    }

    .benefits-section {
        padding: 40px 0;
    }

    .benefits-section h3 {
        font-size: 1rem;
        margin-top: 0;
    }

    footer {
        padding: 24px 0 12px;
    }

    footer h5 {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero-band {
        padding: 14px 0 0.8rem;
    }

    .hero-band .container.py-5 {
        padding-top: 0.35rem !important;
        padding-bottom: 0 !important;
    }

    .hero-band h1 {
        font-size: 1.45rem;
        margin-bottom: 0.45rem;
    }

    .hero-band .text-uppercase {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .hero-band .lead {
        font-size: 0.88rem;
        margin-bottom: 0.4rem;
    }

    .hero-primary-cta {
        display: none !important;
    }

    .btn-warning {
        padding: 10px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .honey-panel {
        padding: 12px;
        margin-top: 4px;
        font-size: 0.84rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    }

    .honey-panel h2 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .honey-panel p {
        margin-bottom: 0.55rem;
        line-height: 1.45;
    }

    .honey-panel-bee {
        top: 12px;
        right: 12px;
        width: 34px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .product-card {
        margin-bottom: 12px;
    }

    .product-card .card-body > p:first-child {
        font-size: 0.7rem;
    }

    .product-card .card-title {
        font-size: 0.95rem;
    }

    .product-card .fw-semibold {
        font-size: 1rem;
    }

    .benefits-section {
        padding: 30px 0;
    }

    .benefits-section h3 {
        font-size: 0.95rem;
    }

    .benefits-section p {
        font-size: 0.85rem;
    }

    .benefits-section div > div:first-child {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .summary-box,
    .success-box {
        padding: 16px;
        margin-bottom: 16px;
    }

    .summary-box h3,
    .success-box h3 {
        font-size: 1rem;
    }

    .quantity-input {
        width: 100% !important;
        max-width: 100px;
    }

    .variant-option-group {
        gap: 0.5rem !important;
    }

    .variant-option-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 0.86rem;
    }

    .cart-count-badge {
        font-size: 0.65rem;
        min-width: 18px;
        height: 18px;
    }

    footer {
        padding: 20px 0 8px;
    }

    footer h5 {
        font-size: 0.85rem;
    }

    footer ul li {
        font-size: 0.85rem;
    }

    .table {
        font-size: 0.85rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar, footer, .hero-band::after {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: inherit;
        text-decoration: underline;
    }
}
