/* ============================================================
   Mitbach HaMelech Builder - Frontend Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&family=Frank+Ruhl+Libre:wght@500;700;900&display=swap');

/* === LOADING === */
.mhb-builder-wrapper {
    direction: rtl;
}
.mhb-loading {
    text-align: center;
    padding: 80px 20px;
    color: #7a6e5d;
    font-family: 'Heebo', sans-serif;
}
.mhb-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e8dfc4;
    border-top-color: #c9a449;
    border-radius: 50%;
    animation: mhb-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes mhb-spin {
    to { transform: rotate(360deg); }
}

/* === MAIN WRAPPER === */
.mhb-catering-builder {
    --royal-black: #0f0f0f;
    --royal-black-soft: #1a1a1a;
    --royal-gold: #c9a449;
    --royal-gold-bright: #e3bf65;
    --royal-gold-deep: #a8862f;
    --royal-gold-soft: #f0dfa6;
    --royal-cream: #faf7f0;
    --royal-cream-light: #fdfbf6;
    --royal-beige: #f3ecd9;
    --royal-charcoal: #2a2520;
    --text-dark: #1f1a16;
    --text-muted: #7a6e5d;
    --border-soft: #e8dfc4;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;

    font-family: 'Heebo', -apple-system, sans-serif;
    background: var(--royal-cream);
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
    direction: rtl;
    border-radius: 16px;
}

.mhb-catering-builder * { box-sizing: border-box; }
.mhb-catering-builder h1,
.mhb-catering-builder h2,
.mhb-catering-builder h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    color: var(--royal-black);
    margin: 0;
    letter-spacing: -0.01em;
}
.mhb-catering-builder h4 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    margin: 0;
    color: var(--royal-black);
}

/* === BRAND HEADER === */
.mhb-brand-header {
    text-align: center;
    padding: 24px 0 16px;
}
.mhb-brand-logo {
    height: 80px;
    width: auto;
    max-width: 90%;
    display: block;
    margin: 0 auto 6px;
    filter: drop-shadow(0 4px 16px rgba(201, 164, 73, 0.2));
    animation: mhb-float 4s ease-in-out infinite;
}
@keyframes mhb-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.mhb-brand-name {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, var(--royal-black) 0%, var(--royal-gold-deep) 70%, var(--royal-black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mhb-brand-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 14px 0 8px;
}
.mhb-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}
.mhb-divider-diamond {
    color: var(--royal-gold);
    font-size: 10px;
    letter-spacing: 6px;
}
.mhb-brand-builder-title {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin: 0;
    font-weight: 500;
}

/* === PROGRESS BAR === */
.mhb-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px 32px;
    position: relative;
}
.mhb-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.mhb-progress-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-soft);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}
.mhb-progress-circle.active {
    background: var(--royal-black);
    border-color: var(--royal-gold);
    color: var(--royal-gold-bright);
    box-shadow: 0 0 0 4px rgba(201, 164, 73, 0.2);
}
.mhb-progress-circle.done {
    background: var(--royal-gold);
    border-color: var(--royal-gold);
    color: white;
}
.mhb-progress-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.mhb-progress-label.active {
    color: var(--royal-black);
    font-weight: 700;
}
.mhb-progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-soft);
    margin: 0 -8px;
    margin-bottom: 26px;
    z-index: 1;
}
.mhb-progress-line.done {
    background: var(--royal-gold);
}

/* === CARDS === */
.mhb-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
}
.mhb-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.mhb-card h3 { font-size: 22px; }
.mhb-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

/* === GUESTS CONTROL === */
.mhb-guests-control {
    display: flex;
    align-items: center;
    gap: 16px;
}
.mhb-guests-number {
    font-size: 56px;
    font-weight: 800;
    font-family: 'Frank Ruhl Libre', serif;
    line-height: 1;
    min-width: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--royal-black) 0%, var(--royal-gold-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mhb-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--royal-gold);
    color: var(--royal-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}
.mhb-circle-btn:hover {
    background: var(--royal-black);
    color: var(--royal-gold-bright);
    transform: scale(1.05);
    border-color: var(--royal-gold-bright);
}
.mhb-circle-btn-label {
    position: absolute;
    bottom: -18px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

/* === COUPON === */
.mhb-coupon-card {
    background: linear-gradient(135deg, var(--royal-cream-light) 0%, var(--royal-beige) 100%);
    border-color: var(--royal-gold-soft);
}
.mhb-coupon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--royal-black);
}
.mhb-coupon-input-row {
    display: flex;
    gap: 12px;
}
.mhb-coupon-input-row input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    background: white;
    text-align: right;
}
.mhb-coupon-input-row input:focus {
    outline: none;
    border-color: var(--royal-gold);
}

/* === BUTTONS === */
.mhb-btn {
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.mhb-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.mhb-btn-primary {
    background: linear-gradient(135deg, var(--royal-black) 0%, var(--royal-charcoal) 100%);
    color: var(--royal-gold-bright);
    padding: 16px 32px;
    border: 1px solid var(--royal-gold);
}
.mhb-btn-primary:not(:disabled):hover {
    background: linear-gradient(135deg, var(--royal-charcoal) 0%, var(--royal-black) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 164, 73, 0.35);
}
.mhb-btn-ghost {
    background: transparent;
    color: var(--royal-black);
    border: 1px solid var(--royal-gold);
    padding: 16px 32px;
}
.mhb-btn-ghost:hover {
    background: var(--royal-cream-light);
    border-color: var(--royal-gold-deep);
}
.mhb-btn-dark {
    background: var(--royal-black);
    color: var(--royal-gold-bright);
    padding: 12px 24px;
    border: none;
}
.mhb-btn-outline-sm {
    background: white;
    color: var(--royal-black);
    border: 1.5px solid var(--royal-gold);
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
}
.mhb-btn-outline-sm:hover {
    background: var(--royal-gold);
    color: white;
}
.mhb-btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Heebo', sans-serif;
}
.mhb-btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* === PACKAGES GRID === */
.mhb-packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.mhb-package-card {
    background: white;
    border: 1.5px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.mhb-package-card.full-width { grid-column: 1 / -1; }
.mhb-package-card.recommended { border-color: var(--royal-gold); }
.mhb-package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 164, 73, 0.15);
    border-color: var(--royal-gold);
}
.mhb-package-card.selected {
    background: linear-gradient(145deg, var(--royal-black) 0%, var(--royal-charcoal) 100%);
    border-color: var(--royal-gold);
    color: white;
    box-shadow: 0 8px 28px rgba(15, 15, 15, 0.4), inset 0 0 0 1px var(--royal-gold);
}
.mhb-package-card.selected::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 164, 73, 0.12), transparent 60%);
    pointer-events: none;
}
.mhb-package-card.selected h3 { color: var(--royal-gold-bright); }
.mhb-package-card.selected .mhb-price-num { color: white; }
.mhb-package-card.selected .mhb-price-currency { color: var(--royal-gold-bright); }
.mhb-package-card.selected .mhb-price-suffix { color: var(--royal-gold-soft); }
.mhb-package-card.selected .mhb-package-includes li { color: rgba(255,255,255,0.9); }
.mhb-package-card.selected .mhb-package-includes svg { color: var(--royal-gold-bright); }

.mhb-recommended-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-deep) 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(201, 164, 73, 0.3);
}
.mhb-package-card.selected .mhb-recommended-badge {
    background: linear-gradient(135deg, var(--royal-gold-bright) 0%, var(--royal-gold) 100%);
    color: var(--royal-black);
}
.mhb-select-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--royal-gold);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
    transition: all 0.2s ease;
}
.mhb-package-card.selected .mhb-select-indicator {
    background: var(--royal-gold);
    color: var(--royal-black);
    border-color: var(--royal-gold-bright);
}
.mhb-package-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    padding-left: 40px;
}
.mhb-package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}
.mhb-price-num {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Frank Ruhl Libre', serif;
    color: var(--royal-black);
    line-height: 1;
}
.mhb-price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--royal-gold-deep);
}
.mhb-price-suffix {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 4px;
}
.mhb-package-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mhb-package-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}
.mhb-package-includes svg {
    color: var(--royal-gold);
    flex-shrink: 0;
}
.mhb-package-note {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(201, 164, 73, 0.08);
    border-right: 3px solid var(--royal-gold);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}
.mhb-package-card.selected .mhb-package-note {
    background: rgba(201, 164, 73, 0.15);
    color: var(--royal-gold-soft);
    border-right-color: var(--royal-gold-bright);
}

/* === DISCLAIMER === */
.mhb-disclaimer {
    background: linear-gradient(135deg, var(--royal-cream-light) 0%, var(--royal-beige) 100%);
    border: 1px solid var(--royal-gold);
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mhb-disclaimer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.mhb-disclaimer strong { color: var(--royal-black); }

/* === STEP TITLE === */
.mhb-step-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--royal-black);
}
.mhb-step-title-row svg { color: var(--royal-gold); }
.mhb-step-title-row h2 { font-size: 26px; }
.mhb-step-description {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 24px 0;
}
.mhb-step-description strong { color: var(--royal-black); }

/* === MENU === */
.mhb-menu-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.mhb-menu-category {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.mhb-menu-category.complete { border-color: var(--royal-gold); }
.mhb-category-header {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--royal-cream-light);
}
.mhb-category-title {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mhb-category-title h3 { font-size: 18px; }
.mhb-category-count {
    background: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-soft);
}
.mhb-category-count.complete {
    background: var(--royal-gold);
    color: white;
    border-color: var(--royal-gold);
}
.mhb-category-content { padding: 8px; }
.mhb-category-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.mhb-menu-item {
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.15s ease;
    background: white;
}
.mhb-menu-item:hover:not(.disabled) {
    border-color: var(--royal-gold);
    background: var(--royal-cream-light);
}
.mhb-menu-item.selected {
    border-color: var(--royal-gold);
    background: rgba(201, 164, 73, 0.06);
}
.mhb-menu-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.mhb-item-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1.5px solid var(--border-soft);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 2px;
}
.mhb-menu-item.selected .mhb-item-checkbox {
    background: var(--royal-gold);
    border-color: var(--royal-gold);
}
.mhb-item-info { flex: 1; }
.mhb-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}
.mhb-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* === EXTRA PRICE BADGE === */
.mhb-extra-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-deep) 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(201, 164, 73, 0.3);
}

/* === SUB CATEGORIES === */
.mhb-sub-category { margin-bottom: 16px; }
.mhb-sub-category:last-child { margin-bottom: 0; }
.mhb-sub-category-label {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    color: var(--royal-gold-deep);
    font-size: 14px;
    padding: 8px 12px 6px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mhb-sub-category-label::before {
    content: '◆';
    color: var(--royal-gold);
    font-size: 10px;
}

/* === CONFIRM CHECKBOX === */
.mhb-confirm-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--royal-cream-light) 0%, var(--royal-beige) 100%);
    border: 1px solid var(--royal-gold);
    border-radius: 14px;
    padding: 18px 22px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}
.mhb-confirm-checkbox:hover {
    box-shadow: 0 4px 12px rgba(201, 164, 73, 0.15);
}
.mhb-confirm-checkbox input { display: none; }
.mhb-checkbox-custom {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid var(--royal-gold);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.mhb-confirm-checkbox input:checked + .mhb-checkbox-custom {
    background: var(--royal-gold);
    border-color: var(--royal-gold-deep);
}
.mhb-confirm-checkbox span:last-child {
    font-weight: 600;
    color: var(--royal-black);
}

/* === SUCCESS MESSAGE === */
.mhb-success-msg {
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.12) 0%, rgba(201, 164, 73, 0.05) 100%);
    color: var(--royal-gold-deep);
    border: 1px solid var(--royal-gold);
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === UPGRADES === */
.mhb-upgrade-group {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
}
.mhb-upgrade-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-soft);
}
.mhb-upgrade-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--royal-black);
}
.mhb-upgrade-group-title h3 { font-size: 18px; }
.mhb-items-count {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--royal-cream-light);
    padding: 4px 12px;
    border-radius: 999px;
}
.mhb-upgrades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.mhb-upgrade-card {
    background: var(--royal-cream-light);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 16px 18px;
    transition: all 0.2s ease;
}
.mhb-upgrade-card.active {
    background: white;
    border-color: var(--royal-gold);
    box-shadow: 0 2px 8px rgba(184, 146, 76, 0.08);
}
.mhb-upgrade-card-content h4 {
    font-size: 15px;
    margin-bottom: 4px;
}
.mhb-upgrade-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 12px 0;
    line-height: 1.5;
}
.mhb-upgrade-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.mhb-upgrade-price {
    font-weight: 700;
    color: var(--royal-black);
    font-size: 14px;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
}
.mhb-qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.mhb-qty-control button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--royal-black);
    background: white;
    color: var(--royal-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mhb-qty-control button:hover {
    background: var(--royal-black);
    color: var(--royal-gold-bright);
}
.mhb-qty-control span {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    color: var(--royal-black);
}
.mhb-all-guests-btn {
    width: auto !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    background: var(--royal-gold) !important;
    border-color: var(--royal-gold) !important;
    color: white !important;
    height: 28px !important;
}
.mhb-all-guests-btn:hover {
    background: var(--royal-gold-bright) !important;
    color: var(--royal-black) !important;
}

/* === FORM === */
.mhb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 20px;
}
.mhb-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mhb-form-field-full {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}
.mhb-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--royal-black);
}
.mhb-required { color: var(--royal-gold); }
.mhb-form-field input,
.mhb-form-field select,
.mhb-form-field textarea {
    padding: 13px 16px;
    border: 1px solid var(--border-soft);
    background: #f5f2eb;
    border-radius: 10px;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    text-align: right;
    color: var(--text-dark);
}
.mhb-form-field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}
.mhb-form-field input:focus,
.mhb-form-field select:focus,
.mhb-form-field textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 164, 73, 0.1);
}
.mhb-last-step-note {
    text-align: center;
    color: var(--royal-gold-deep);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.08), transparent);
    border-radius: 10px;
}

/* === SUMMARY === */
.mhb-summary-card {
    background: linear-gradient(145deg, var(--royal-black) 0%, var(--royal-charcoal) 100%);
    color: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 20px;
    border: 1px solid var(--royal-gold);
    box-shadow: 0 12px 40px rgba(15, 15, 15, 0.25), inset 0 0 0 1px rgba(201, 164, 73, 0.2);
    position: relative;
    overflow: hidden;
}
.mhb-summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(201, 164, 73, 0.1), transparent 50%);
    pointer-events: none;
}
.mhb-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--royal-gold-bright);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 164, 73, 0.25);
    position: relative;
}
.mhb-summary-header h2 {
    color: var(--royal-gold-bright);
    font-size: 24px;
}
.mhb-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 164, 73, 0.15);
    position: relative;
}
.mhb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.mhb-summary-label {
    font-weight: 700;
    color: var(--royal-gold-bright);
    font-size: 14px;
}
.mhb-summary-value {
    color: white;
    font-size: 14px;
    text-align: left;
}
.mhb-summary-menu {
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 164, 73, 0.15);
    position: relative;
}
.mhb-summary-menu-section { margin-bottom: 16px; }
.mhb-summary-menu-section h4 {
    color: var(--royal-gold-bright);
    margin-bottom: 6px;
    font-size: 14px;
}
.mhb-summary-menu-section p {
    color: white;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}
.mhb-summary-pricing {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.mhb-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}
.mhb-price-row.discount { color: var(--royal-gold-soft); }
.mhb-price-row.total {
    font-size: 24px;
    font-weight: 800;
    color: var(--royal-gold-bright);
    font-family: 'Frank Ruhl Libre', serif;
    border-top: 1px dashed rgba(201, 164, 73, 0.3);
    padding-top: 14px;
    margin-top: 8px;
}

.mhb-delivery-note {
    background: var(--royal-cream-light);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 13px;
}
.mhb-delivery-note strong {
    color: var(--royal-black);
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}
.mhb-delivery-note svg {
    color: var(--royal-black);
    margin-top: 2px;
    flex-shrink: 0;
}
.mhb-delivery-note p {
    margin: 0;
    line-height: 1.5;
}

/* === NAV === */
.mhb-nav-bar {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    background: linear-gradient(180deg, transparent, var(--royal-cream) 30%);
}
.mhb-nav-bar .mhb-btn {
    flex: 1;
    justify-content: center;
}
.mhb-nav-bar .mhb-btn-primary { flex: 2; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .mhb-catering-builder { padding: 16px; }
    .mhb-packages-grid { grid-template-columns: 1fr; }
    .mhb-category-items { grid-template-columns: 1fr; }
    .mhb-upgrades-grid { grid-template-columns: 1fr; }
    .mhb-form-grid { grid-template-columns: 1fr; }
    .mhb-progress-label { font-size: 10px; }
    .mhb-progress-circle { width: 30px; height: 30px; font-size: 12px; }
    .mhb-guests-number { font-size: 42px; min-width: 60px; }
    .mhb-card-header { flex-direction: column; align-items: stretch; }
    .mhb-package-card { padding: 22px 18px; }
    .mhb-package-header h3 { font-size: 20px; }
    .mhb-price-num { font-size: 40px; }
    .mhb-summary-card { padding: 22px; }
    .mhb-summary-row { flex-direction: column; align-items: stretch; gap: 2px; }
    .mhb-summary-value { text-align: right; }
}
