:root {
    --poh-black: #111111;
    --poh-dark: #1a1a1a;
    --poh-orange: #ff9800;
    --poh-orange-dark: #e68900;
    --poh-white: #ffffff;
    --poh-bg: #efefef;
    --poh-text: #111111;
    --poh-muted: #666666;
    --poh-border: #d9d9d9;
    --poh-danger: #ff3b30;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--poh-bg);
    color: var(--poh-text);
    font-family: Arial, Helvetica, sans-serif;
}

.navbar-brand,
.menu-hero h1,
.product-card h5 {
    font-family: 'Bebas Neue', sans-serif;
}

/* NAVBAR */
.navbar {
    background: var(--poh-black) !important;
    border-bottom: 4px solid var(--poh-orange);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    padding-top: 14px;
    padding-bottom: 14px;
}

.navbar-brand {
    color: var(--poh-white) !important;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-brand:hover {
    color: var(--poh-white) !important;
}

.navbar .me-2 {
    color: var(--poh-white);
    font-weight: 700;
}

.navbar .btn,
.product-card .btn,
.cart-controls .btn {
    transition: all 0.18s ease;
}

.navbar .btn:active,
.product-card .btn:active,
.cart-controls .btn:active {
    transform: scale(0.96);
}

.navbar .btn-dark,
.navbar .btn-outline-dark {
    background: var(--poh-orange);
    border: 2px solid var(--poh-orange);
    color: var(--poh-white);
    font-weight: 800;
    border-radius: 10px;
    padding: 7px 14px;
}

.navbar .btn-dark:hover,
.navbar .btn-outline-dark:hover {
    background: var(--poh-orange-dark);
    border-color: var(--poh-orange-dark);
    color: var(--poh-white);
}

#cart-count {
    background: var(--poh-danger) !important;
    color: #fff;
    font-weight: 900;
    font-size: 0.72rem;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
}

/* HERO */
.menu-hero {
    padding: 26px 0 22px;
    background: var(--poh-black);
    color: var(--poh-white);
    margin-bottom: 26px;
    border-top: 4px solid var(--poh-orange);
    border-bottom: 4px solid var(--poh-orange);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* FEATURED / IZDVAJAMO */
.featured-section {
    padding: 26px 0 14px;
}

.featured-header {
    margin-bottom: 18px;
}

.featured-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--poh-orange);
    margin-bottom: 8px;
}

.featured-header h2 {
    margin: 0 0 8px 0;
    font-size: 2.3rem;
    line-height: 1;
    color: var(--poh-black);
    text-transform: uppercase;
    font-weight: 900;
}

.featured-header p {
    margin: 0;
    font-size: 1rem;
    color: var(--poh-muted);
    font-weight: 700;
}

/* Main promo card */
.featured-main-card {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 2px solid rgba(255, 152, 0, 0.18);
}

.featured-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.65) 45%, rgba(17,17,17,0.18) 100%);
    z-index: 1;
}

.featured-main-content {
    position: relative;
    z-index: 2;
    padding: 34px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
}

.featured-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--poh-orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.featured-main-content h3 {
    margin: 0 0 12px 0;
    color: #fff;
    font-size: 3.2rem;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-main-content p {
    margin: 0 0 22px 0;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    font-weight: 700;
    max-width: 460px;
}

.featured-main-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-featured-primary,
.btn-featured-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.18s ease;
}

.btn-featured-primary {
    background: var(--poh-orange);
    color: #fff;
    border: 2px solid var(--poh-orange);
}

.btn-featured-primary:hover {
    background: var(--poh-orange-dark);
    border-color: var(--poh-orange-dark);
    color: #fff;
}

.btn-featured-secondary {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}

.btn-featured-secondary:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

/* Side cards */
.featured-side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.featured-side-card {
    background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
    color: #fff;
    border-radius: 20px;
    padding: 22px 20px;
    min-height: 109px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,152,0,0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.featured-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.featured-side-badge {
    flex: 0 0 auto;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--poh-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-side-text h4 {
    margin: 0 0 6px 0;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-side-text p {
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.35;
}

/* Better section spacing under featured */
#menu-list {
    padding-top: 8px;
}

/* MOBILE */
@media (max-width: 991px) {
    .featured-header h2 {
        font-size: 1.9rem;
    }

    .featured-main-card {
        min-height: 320px;
    }

    .featured-main-content {
        min-height: 320px;
        padding: 26px;
        max-width: 460px;
    }

    .featured-main-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .featured-section {
        padding: 20px 0 8px;
    }

    .featured-header {
        margin-bottom: 14px;
    }

    .featured-header h2 {
        font-size: 1.55rem;
    }

    .featured-header p {
        font-size: 0.93rem;
    }

    .featured-main-card {
        min-height: 280px;
        border-radius: 20px;
    }

    .featured-main-content {
        min-height: 280px;
        padding: 20px;
    }

    .featured-main-content h3 {
        font-size: 2rem;
    }

    .featured-main-content p {
        font-size: 0.92rem;
        margin-bottom: 16px;
    }

    .btn-featured-primary,
    .btn-featured-secondary {
        min-height: 42px;
        padding: 0 14px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    .featured-side-card {
        min-height: auto;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .featured-side-badge {
        min-width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 0.72rem;
    }

    .featured-side-text h4 {
        font-size: 1rem;
    }

    .featured-side-text p {
        font-size: 0.88rem;
    }
}

/* CART PAGE */
.cart-page {
    background: var(--poh-bg);
    min-height: calc(100vh - 80px);
}

.cart-page-header {
    margin-bottom: 10px;
}

.cart-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--poh-orange);
    margin-bottom: 8px;
}

.cart-page-header h1 {
    margin: 0 0 8px 0;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--poh-black);
}

.cart-page-header p {
    margin: 0;
    color: var(--poh-muted);
    font-size: 1rem;
    font-weight: 700;
}

.cart-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 2px solid var(--poh-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: 0.2s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cart-item-image-wrap {
    flex: 0 0 180px;
    max-width: 180px;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.cart-item-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 700;
}

.cart-item-content {
    flex: 1;
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.cart-item-category {
    display: inline-block;
    background: rgba(255, 152, 0, 0.14);
    color: var(--poh-orange-dark);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.cart-item-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--poh-black);
}

.cart-remove-btn {
    border: none;
    background: #f3f3f3;
    color: #222;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: 0.18s ease;
    flex: 0 0 auto;
}

.cart-remove-btn:hover {
    background: #111;
    color: #fff;
}

.cart-item-bottom {
    margin-top: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--poh-black);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--poh-black);
}

.cart-line-total {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--poh-orange-dark);
}

.cart-summary-card {
    position: sticky;
    top: 20px;
    background: linear-gradient(180deg, #111111 0%, #1d1d1d 100%);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 152, 0, 0.16);
}

.cart-summary-kicker {
    display: inline-block;
    color: var(--poh-orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cart-summary-head h2 {
    margin: 0 0 18px 0;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.96rem;
}

.cart-summary-row strong {
    color: #fff;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 900;
}

.cart-summary-total strong {
    color: var(--poh-orange);
    font-size: 1.25rem;
}

.checkout-form .form-label {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    margin-bottom: 6px;
}

.checkout-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 14px;
    min-height: 46px;
    padding: 10px 14px;
}

.checkout-form .form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

.checkout-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,152,0,0.55);
    box-shadow: 0 0 0 0.2rem rgba(255,152,0,0.12);
    color: #fff;
}

.btn-checkout-main {
    background: var(--poh-orange);
    border: 2px solid var(--poh-orange);
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    min-height: 50px;
    transition: 0.18s ease;
}

.btn-checkout-main:hover {
    background: var(--poh-orange-dark);
    border-color: var(--poh-orange-dark);
    color: #fff;
}

.empty-cart-state {
    background: #fff;
    border: 2px dashed var(--poh-border);
    border-radius: 24px;
    padding: 50px 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.empty-cart-state h2 {
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--poh-black);
}

.empty-cart-state p {
    margin: 0 0 20px 0;
    color: var(--poh-muted);
    font-weight: 700;
}

@media (max-width: 991px) {
    .cart-summary-card {
        position: static;
    }

    .cart-page-header h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        gap: 0;
    }

    .cart-item-image-wrap {
        max-width: 100%;
        flex: none;
    }

    .cart-item-image {
        min-height: 200px;
    }

    .cart-item-content {
        padding: 16px;
    }

    .cart-item-title {
        font-size: 1.2rem;
    }

    .cart-item-price {
        font-size: 1.25rem;
    }

    .cart-line-total {
        font-size: 1.05rem;
    }

    .cart-summary-card {
        border-radius: 20px;
        padding: 20px;
    }

    .cart-summary-head h2 {
        font-size: 1.55rem;
    }
}

.hero-badge {
    background: var(--poh-orange);
    color: #fff;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* GRID SPACE */
.container.pb-5 {
    padding-bottom: 40px !important;
}

/* PRODUCT CARD */
.product-card {
    background: var(--poh-white);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--poh-border);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #dcdcdc;
}

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

/* CATEGORY BADGE */
.category-badge {
    display: inline-block;
    background: var(--poh-orange);
    color: var(--poh-white);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
}

/* PRODUCT TITLE */
.product-card h5 {
    font-size: 1.45rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--poh-black);
    margin: 0 0 14px 0;
    line-height: 1.1;
    min-height: 48px;
}

/* PRICE + ACTIONS */
.product-price-row,
.mt-3.d-flex.justify-content-between.align-items-center {
    margin-top: auto !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price,
.product-price-row strong,
.mt-3.d-flex.justify-content-between.align-items-center strong {
    font-size: 2rem;
    font-weight: 900;
    color: var(--poh-black);
    line-height: 1;
    letter-spacing: -0.5px;
}

/* CONTROLS */
.cart-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart-controls > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card .btn-dark,
.cart-controls .btn-dark {
    background: var(--poh-orange);
    border: 2px solid var(--poh-orange);
    color: var(--poh-white);
    font-weight: 900;
    border-radius: 12px;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    box-shadow: none;
}

.product-card .btn-dark:hover,
.cart-controls .btn-dark:hover {
    background: var(--poh-orange-dark);
    border-color: var(--poh-orange-dark);
    color: var(--poh-white);
}

.cart-controls .btn-outline-dark {
    background: var(--poh-white);
    border: 2px solid #cfcfcf;
    color: var(--poh-black);
    font-weight: 900;
    border-radius: 12px;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
}

.cart-controls .btn-outline-dark:hover {
    background: #f5f5f5;
    border-color: #999999;
    color: var(--poh-black);
}

.item-qty {
    min-width: 28px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--poh-black);
}

/* EMPTY STATE */
.alert.alert-secondary {
    border: none;
    border-radius: 14px;
    background: #fff;
    color: #333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 991px) {
    .menu-hero h1 {
        font-size: 2.4rem;
    }

    .product-card h5 {
        font-size: 1.25rem;
        min-height: auto;
    }

    .product-price,
    .product-price-row strong,
    .mt-3.d-flex.justify-content-between.align-items-center strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.45rem;
    }

    .menu-hero {
        padding: 42px 0 26px;
        margin-bottom: 24px;
    }

    .menu-hero h1 {
        font-size: 2rem;
    }

    .menu-hero p {
        font-size: 0.98rem;
    }

    .product-image {
        height: 190px;
    }

    .card-body {
        padding: 16px;
    }

    .category-badge {
        font-size: 0.72rem;
        padding: 6px 10px;
    }

    .product-card h5 {
        font-size: 1.1rem;
    }

    .product-price,
    .product-price-row strong,
    .mt-3.d-flex.justify-content-between.align-items-center strong {
        font-size: 1.3rem;
    }

    .product-card .btn-dark,
    .cart-controls .btn-dark,
    .cart-controls .btn-outline-dark {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .menu-hero {
        padding: 34px 0 22px;
    }

    .menu-hero h1 {
        font-size: 1.7rem;
    }

    .product-image {
        height: 180px;
    }

    .product-price-row,
    .mt-3.d-flex.justify-content-between.align-items-center {
        gap: 10px;
    }

    .item-qty {
        min-width: 24px;
        font-size: 1rem;
    }
}
/* CART PAGE */
.cart-page {
    background: var(--poh-bg);
    min-height: calc(100vh - 80px);
}

.cart-page-header {
    margin-bottom: 10px;
}

.cart-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--poh-orange);
    margin-bottom: 8px;
}

.cart-page-header h1 {
    margin: 0 0 8px 0;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--poh-black);
}

.cart-page-header p {
    margin: 0;
    color: var(--poh-muted);
    font-size: 1rem;
    font-weight: 700;
}

.cart-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 2px solid var(--poh-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: 0.2s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cart-item-image-wrap {
    flex: 0 0 180px;
    max-width: 180px;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.cart-item-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 700;
}

.cart-item-content {
    flex: 1;
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.cart-item-category {
    display: inline-block;
    background: rgba(255, 152, 0, 0.14);
    color: var(--poh-orange-dark);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.cart-item-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--poh-black);
}

.cart-remove-btn {
    border: none;
    background: #f3f3f3;
    color: #222;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: 0.18s ease;
    flex: 0 0 auto;
}

.cart-remove-btn:hover {
    background: #111;
    color: #fff;
}

.cart-item-bottom {
    margin-top: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--poh-black);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--poh-black);
}

.cart-line-total {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--poh-orange-dark);
}

.cart-summary-card {
    position: sticky;
    top: 20px;
    background: linear-gradient(180deg, #111111 0%, #1d1d1d 100%);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 152, 0, 0.16);
}

.cart-summary-kicker {
    display: inline-block;
    color: var(--poh-orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cart-summary-head h2 {
    margin: 0 0 18px 0;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.96rem;
}

.cart-summary-row strong {
    color: #fff;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 900;
}

.cart-summary-total strong {
    color: var(--poh-orange);
    font-size: 1.25rem;
}

.checkout-form .form-label {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    margin-bottom: 6px;
}

.checkout-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 14px;
    min-height: 46px;
    padding: 10px 14px;
}

.checkout-form .form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

.checkout-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,152,0,0.55);
    box-shadow: 0 0 0 0.2rem rgba(255,152,0,0.12);
    color: #fff;
}

.btn-checkout-main {
    background: var(--poh-orange);
    border: 2px solid var(--poh-orange);
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    min-height: 50px;
    transition: 0.18s ease;
}

.btn-checkout-main:hover {
    background: var(--poh-orange-dark);
    border-color: var(--poh-orange-dark);
    color: #fff;
}

.empty-cart-state {
    background: #fff;
    border: 2px dashed var(--poh-border);
    border-radius: 24px;
    padding: 50px 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.empty-cart-state h2 {
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--poh-black);
}

.empty-cart-state p {
    margin: 0 0 20px 0;
    color: var(--poh-muted);
    font-weight: 700;
}

@media (max-width: 991px) {
    .cart-summary-card {
        position: static;
    }

    .cart-page-header h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        gap: 0;
    }

    .cart-item-image-wrap {
        max-width: 100%;
        flex: none;
    }

    .cart-item-image {
        min-height: 200px;
    }

    .cart-item-content {
        padding: 16px;
    }

    .cart-item-title {
        font-size: 1.2rem;
    }

    .cart-item-price {
        font-size: 1.25rem;
    }

    .cart-line-total {
        font-size: 1.05rem;
    }

    .cart-summary-card {
        border-radius: 20px;
        padding: 20px;
    }

    .cart-summary-head h2 {
        font-size: 1.55rem;
    }
}

.checkout-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.checkout-box input {
    border-radius: 10px;
    padding: 10px;
}

.cart-summary-delivery {
    margin: 18px 0 8px;
}

.delivery-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.delivery-option {
    flex: 1;
    min-width: 140px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: 0.2s ease;
    color: #fff;
    font-weight: 700;
}

.delivery-option input {
    display: none;
}

.delivery-option.active {
    border-color: rgba(255,152,0,0.55);
    background: rgba(255,152,0,0.14);
}

.free-delivery-note {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.95;
}

.free-delivery-row {
    color: #ffcc66;
}

/* AUTH */
.auth-page {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 152, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
}

.auth-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 152, 0, 0.18);
}

.brand-logo {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff9800 0%, #e68900 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 22px rgba(255, 152, 0, 0.28);
}

.auth-title {
    text-align: center;
    margin-bottom: 6px;
    font-size: 2rem;
    font-weight: 900;
    color: #111111;
    text-transform: uppercase;
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 24px;
    color: #666666;
    font-weight: 600;
    font-size: 0.96rem;
}

.auth-card .form-label {
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
}

.auth-card .form-control {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid #d8d8d8;
    padding: 12px 14px;
    box-shadow: none;
}

.auth-card .form-control:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.12);
}

.btn-main {
    background: #ff9800;
    border: 2px solid #ff9800;
    color: #ffffff;
    font-weight: 900;
    border-radius: 14px;
    min-height: 50px;
    transition: 0.18s ease;
}

.btn-main:hover {
    background: #e68900;
    border-color: #e68900;
    color: #ffffff;
}

.auth-links a {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.auth-links a:hover {
    color: #e68900;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .auth-title {
        font-size: 1.6rem;
    }

    .brand-logo {
        width: 64px;
        height: 64px;
        font-size: 1.7rem;
    }
}
.custom-toggler {
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: none;
}

.custom-toggler span {
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        background: #fff;
        margin-top: 12px;
        padding: 14px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .navbar .navbar-collapse .btn {
        width: 100%;
        justify-content: center;
    }
}

.navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.2s ease;
}

.cart-icon-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.cart-icon {
    font-size: 18px;
    line-height: 1;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.custom-toggler {
    border: none;
    background: #111;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.custom-toggler span {
    font-size: 20px;
    line-height: 1;
}

.navbar-collapse {
    width: 100%;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 14px;
        background: #fff;
        border-radius: 16px;
        padding: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .navbar-collapse .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .cart-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .cart-item-image-wrap {
        flex: 0 0 60px !important;
        width: 60px !important;
        height: 60px !important;
        overflow: hidden;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }

    .cart-item-content {
        flex: 1;
        min-width: 0;
    }

    .cart-item-title {
        font-size: 15px !important;
        margin-bottom: 4px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .cart-item-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 6px;
        width: 100%;
    }

    .cart-qty-controls button {
        padding: 2px 8px;
        font-size: 14px;
    }

    .cart-line-total {
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .cart-item img {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .cart-item {
        border-radius: 16px;
    }

    .cart-remove-btn {
        padding: 4px 8px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .cart-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 14px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .cart-item-image-wrap {
        flex: 0 0 72px !important;
        width: 72px !important;
        max-width: 72px !important;
        height: 72px !important;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 72px !important;
        height: 72px !important;
        min-width: 72px !important;
        max-width: 72px !important;
        min-height: 72px !important;
        max-height: 72px !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 12px !important;
    }

    .cart-item-content {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .cart-item-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .cart-item-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .cart-item-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
        width: 100% !important;
    }

    .cart-item-title {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    .cart-item-price,
    .cart-line-total {
        margin: 0 !important;
    }

    .cart-remove-btn {
        margin: 0 !important;
        flex: 0 0 auto !important;
    }
}


@media (max-width: 768px) {
    .cart-items-wrap .cart-item * {
        align-self: auto;
    }

    .cart-items-wrap .cart-item-content > * {
        margin-bottom: 0 !important;
    }
}

.menu-categories-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.menu-categories-scroll::-webkit-scrollbar {
    display: none;
}

.menu-category-chip {
    white-space: nowrap;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
    flex: 0 0 auto;
}

.menu-category-chip:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.menu-section {
    scroll-margin-top: 90px;
    margin-bottom: 48px;
}

.menu-section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .menu-categories-bar {
        padding: 10px 0;
    }

    .menu-category-chip {
        padding: 9px 14px;
        font-size: 13px;
    }

    .menu-section-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .menu-section {
        margin-bottom: 36px;
    }
}

.hero-v2-section {
    padding: 28px 0 18px;
}

.hero-v2-card {
    background: linear-gradient(135deg, #fff8ef 0%, #ffffff 100%);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.hero-v2-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff7a00;
    margin-bottom: 14px;
}

.hero-v2-title {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 16px;
    color: #111;
    max-width: 580px;
}

.hero-v2-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 560px;
    margin-bottom: 24px;
}

.hero-v2-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-v2-image-wrap {
    position: relative;
}

.hero-v2-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
    .hero-v2-card {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-v2-title {
        font-size: 34px;
    }

    .hero-v2-text {
        font-size: 16px;
    }

    .hero-v2-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-v2-section {
        padding-top: 18px;
    }

    .hero-v2-title {
        font-size: 28px;
    }

    .hero-v2-actions .btn {
        width: 100%;
    }

    .hero-v2-image {
        height: 220px;
    }
}
.featured-side-stack {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-side-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
/* HERO DESNA STRANA */
.featured-side-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
}

.featured-side-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
}

.featured-side-card h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.featured-side-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-side-text h4 {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.featured-side-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}

.featured-side-card .fw-bold {
    font-size: 15px;
    color: #111;
}

.featured-side-card .cart-controls {
    flex: 0 0 auto;
}

.featured-side-card .btn-dark.btn-sm {
    min-width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    padding: 0 12px;
}

@media (max-width: 991px) {
    .featured-side-stack {
        position: static;
        top: auto;
        margin-top: 6px;
    }

    .featured-side-card {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .featured-side-text h4 {
        font-size: 16px;
    }
}
/* PRODUCT CARD REDESIGN */

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    border: 1px solid #f1f1f1;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 13px;
    color: #777;
    min-height: 36px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: 15px;
}

.btn-add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 0;
    transition: 0.2s;
}

.btn-add:hover {
    background: #ff9900;
}
.product-img {
    height: 180px;
    object-fit: cover;
}

.price {
    font-weight: bold;
    color: #28a745;
}

.store-hero {
    background: #f4f4f4;
    padding-bottom: 20px;
}

.store-hero-cover {
    height: 260px;
    overflow: hidden;
    background: #d9d9d9;
}

.store-hero-cover-img,
.store-hero-cover-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-hero-card {
    background: #fff;
    border-radius: 28px;
    margin-top: -46px;
    position: relative;
    z-index: 2;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.store-hero-head {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.store-hero-logo {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex: 0 0 88px;
}

.store-hero-title {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 8px;
}

.store-hero-subtitle {
    color: #666;
    margin-bottom: 10px;
}

.store-hero-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #555;
    font-size: 0.95rem;
}

.store-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.store-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6fb;
    color: #1693db;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 600;
}

.store-pill-btn.active {
    background: #dff0fb;
    color: #0e8ad3;
}

.menu-tabs-wrap {
    position: sticky;
    top: 72px;
    z-index: 20;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #ececec;
}

.menu-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 10px 16px;
}

.menu-tab:hover {
    color: #0e8ad3;
    background: #e7f3fb;
}

.section-head {
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.offer-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.offer-card {
    background: #eaf7fd;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-height: 120px;
}

.offer-card-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d8f1fb;
    color: #0ea5e9;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
}

.offer-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.offer-card-text {
    color: #5d6773;
    font-size: 0.92rem;
    line-height: 1.45;
}

.menu-product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-product-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 22px;
    padding: 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.menu-product-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.menu-product-text {
    flex: 1;
    min-width: 0;
}

.menu-product-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1f1f1f;
}

.menu-product-desc {
    color: #6c757d;
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0 0 14px;
}

.menu-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.menu-product-price {
    font-weight: 700;
    font-size: 1.15rem;
    color: #ef4444;
}

.menu-product-image-wrap {
    width: 170px;
    min-width: 170px;
    height: 130px;
    border-radius: 20px;
    overflow: hidden;
    background: #f2f2f2;
}

.menu-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 700;
}

.menu-add-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: #dff0fb;
    color: #0e8ad3;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-add-btn:hover {
    background: #0e8ad3;
    color: #fff;
}

.product-modal-content {
    border-radius: 24px;
    border: none;
}

.modal-price-line {
    font-size: 1rem;
}

.modal-add-btn {
    border-radius: 16px;
    min-height: 52px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .store-hero-cover {
        height: 180px;
    }

    .store-hero-card {
        margin-top: -28px;
        border-radius: 24px;
        padding: 18px;
    }

    .store-hero-title {
        font-size: 2rem;
    }

    .offer-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .store-hero-logo {
        width: 72px;
        height: 72px;
        font-size: 28px;
        border-radius: 18px;
        flex-basis: 72px;
    }

    .store-hero-title {
        font-size: 1.8rem;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }

    .menu-product-card {
        padding: 14px;
        border-radius: 18px;
    }

    .menu-product-content {
        gap: 12px;
    }

    .menu-product-title {
        font-size: 1.1rem;
    }

    .menu-product-desc {
        font-size: 0.9rem;
    }

    .menu-product-image-wrap {
        width: 110px;
        min-width: 110px;
        height: 90px;
        border-radius: 16px;
    }

    .menu-product-price {
        font-size: 1rem;
    }

    .menu-add-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 24px;
    }

    .menu-tabs-wrap {
        top: 64px;
    }
}

/* ===== BRANDING SYSTEM ===== */

/* NAVBAR */
.navbar {
    background-color: var(--primary-color) !important;
}

/* HERO DUGMAD */
.mp-btn-dark {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
}

.mp-btn-dark:hover {
    opacity: 0.9;
}

.mp-btn-light {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.mp-btn-light:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* DODAJ DUGMAD */
.mp-row-add-btn,
.mp-mini-add-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.mp-row-add-btn:hover,
.mp-mini-add-btn:hover {
    opacity: 0.9;
}

/* STICKY HEADER */
.mp-sticky-header {
    border-bottom: 2px solid var(--primary-color);
}

/* BADGE / AKCENTI */
.mp-mini-badge {
    background-color: var(--secondary-color);
    color: #fff;
}