.mh-menu__specials,
.mh-menu__bundles {
    margin-bottom: 2.5rem;
}

.mh-menu__specials-title,
.mh-menu__bundles-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.mh-menu__specials-grid,
.mh-menu__bundles-grid {
    display: grid;
    gap: 1rem;
}

.mh-menu__specials .mh-menu__items {
    gap: 1.25rem;
}

.mh-menu__special-card,
.mh-menu__bundle-card {
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: 0.75rem;
    padding: 1rem 1.1rem;
}

.mh-menu__special-card-header,
.mh-menu__bundle-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}

.mh-menu__price--special {
    font-weight: 600;
}

.mh-menu__price--was {
    text-decoration: line-through;
    opacity: 0.65;
    margin-right: 0.35rem;
    font-size: 0.92em;
}

.mh-menu__bundle-items {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
    opacity: 0.85;
    font-size: 0.92rem;
}

.mh-menu__deep-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 0;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
    color: var(--mh-accent, inherit);
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.mh-menu__deep-details-btn:hover {
    opacity: 1;
}

.mh-menu__story-icon {
    font-size: 0.85em;
}

.mh-menu__story-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: color-mix(in srgb, var(--mh-accent, #a61b2b) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--mh-accent, #a61b2b) 30%, transparent);
    border-radius: 999px;
    color: var(--mh-accent, #a61b2b);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: all 0.15s ease;
}

.mh-menu__story-tag:hover {
    background: var(--mh-accent, #a61b2b);
    color: #ffffff;
}

.mh-menu__item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid color-mix(in srgb, var(--mh-secondary, #666) 12%, transparent);
}

#mh-deep-details-dialog,
.mh-deep-details-dialog {
    border: none;
    border-radius: 1rem;
    padding: 0;
    max-width: 38rem;
    width: calc(100% - 2rem);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#mh-deep-details-dialog::backdrop,
.mh-deep-details-dialog::backdrop {
    background: rgba(12, 18, 15, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mh-deep-details-dialog__inner {
    padding: 1.75rem 2rem 2rem;
}

.mh-deep-details-dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mh-deep-details-dialog__header h3 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 600;
}

.mh-deep-details-dialog__close {
    background: rgba(0, 0, 0, 0.05);
    border: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: #444;
    transition: background 0.15s ease, color 0.15s ease;
}

.mh-deep-details-dialog__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.mh-deep-details-dialog__body {
    white-space: pre-wrap;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

.mh-menu__badge--special {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Image Lightbox Dialog */
#mh-image-lightbox-dialog,
.mh-image-lightbox-dialog {
    border: none;
    background: transparent;
    padding: 0;
    margin: auto;
    max-width: 90vw;
    max-height: 90vh;
    outline: none;
    overflow: visible;
}

#mh-image-lightbox-dialog::backdrop,
.mh-image-lightbox-dialog::backdrop {
    background: rgba(10, 14, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mh-image-lightbox-dialog__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: min(850px, 90vw);
}

.mh-image-lightbox-dialog__close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #111111;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.mh-image-lightbox-dialog__close:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

.mh-image-lightbox-dialog__img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000000;
}

.mh-image-lightbox-dialog__caption {
    margin-top: 1rem;
    text-align: center;
}

.mh-image-lightbox-dialog__caption h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.mh-menu__item-image-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: zoom-in;
    display: block;
    outline: none;
}

.mh-menu__item-image-btn:focus-visible {
    outline: 2px solid var(--mh-gold, #c9a962);
    border-radius: 8px;
}

/* Storefront Floating Order Bar */
.mh-storefront-order-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 990;
    width: min(520px, calc(100vw - 2rem));
    background: #12382d;
    border: 1px solid #1a4d3e;
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(11, 42, 33, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.55rem 0.85rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.mh-storefront-order-bar--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mh-storefront-order-bar--bump {
    animation: mhBarBump 0.35s ease-out;
}

@keyframes mhBarBump {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.03); }
    100% { transform: translateX(-50%) scale(1); }
}

.mh-storefront-order-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.mh-storefront-order-bar__info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    transition: background 0.15s ease;
}

.mh-storefront-order-bar__info:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mh-storefront-order-bar__badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(244, 190, 88, 0.18);
    border-radius: 50%;
    font-size: 1.15rem;
}

.mh-storefront-order-bar__count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f4be58;
    color: #0b2a21;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
    min-width: 16px;
    text-align: center;
    line-height: 1.2;
}

.mh-storefront-order-bar__totals {
    display: flex;
    flex-direction: column;
}

.mh-storefront-order-bar__label {
    font-size: 0.725rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.mh-storefront-order-bar__price {
    font-family: var(--mh-font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.mh-storefront-order-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mh-storefront-order-bar__view-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-family: var(--mh-font-ui, Inter, Arial, sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mh-storefront-order-bar__view-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.mh-storefront-order-bar__checkout-btn {
    background: #f4be58;
    color: #0b2a21;
    font-family: var(--mh-font-ui, Inter, Arial, sans-serif);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(244, 190, 88, 0.3);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.mh-storefront-order-bar__checkout-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

/* Storefront Slide-Over Drawer */
.mh-storefront-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    transition: visibility 0.3s ease;
}

.mh-storefront-drawer--open {
    visibility: visible;
}

.mh-storefront-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 42, 33, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mh-storefront-drawer--open .mh-storefront-drawer__backdrop {
    opacity: 1;
}

.mh-storefront-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 100vw);
    background: #faf8f5;
    border-left: 1px solid #e8e3d8;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(11, 42, 33, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: #171a18;
    box-sizing: border-box;
    font-family: var(--mh-font-ui, Inter, Arial, sans-serif);
}

.mh-storefront-drawer--open .mh-storefront-drawer__panel {
    transform: translateX(0);
}

.mh-storefront-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #ede7db;
    background: #ffffff;
}

.mh-storefront-drawer__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b36a13;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.mh-storefront-drawer__title {
    font-family: var(--mh-font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.75rem;
    margin: 0;
    color: #12382d;
    font-weight: 700;
}

.mh-storefront-drawer__close {
    background: #f5f2eb;
    border: 1px solid #e8e2d5;
    color: #12382d;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.mh-storefront-drawer__close:hover {
    background: #12382d;
    color: #ffffff;
}

.mh-storefront-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: #faf8f5;
}

.mh-storefront-drawer__empty {
    text-align: center;
    margin: auto;
    color: #78857f;
}

.mh-storefront-drawer__empty p {
    font-family: var(--mh-font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.4rem;
    color: #12382d;
    font-weight: 600;
    margin: 0 0 0.4rem;
}

.mh-storefront-drawer__line {
    background: #ffffff;
    border: 1px solid #ede7db;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    box-shadow: 0 2px 8px rgba(18, 56, 45, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mh-storefront-drawer__line-title {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.975rem;
}

.mh-storefront-drawer__line-title strong {
    font-weight: 600;
    color: #171a18;
    line-height: 1.3;
}

.mh-storefront-drawer__line-title span {
    font-family: var(--mh-font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #b36a13;
    white-space: nowrap;
}

.mh-storefront-drawer__line-mods {
    font-size: 0.8rem;
    color: #58645f;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.mh-storefront-drawer__line-notes {
    font-size: 0.8rem;
    color: #8c734b;
    font-style: italic;
}

.mh-storefront-drawer__line-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.mh-storefront-drawer__stepper {
    display: inline-flex;
    align-items: center;
    background: #f5f2eb;
    border: 1px solid #e3ded4;
    border-radius: 999px;
    padding: 2px 4px;
}

.mh-storefront-drawer__step-btn {
    background: transparent;
    border: none;
    color: #12382d;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.mh-storefront-drawer__step-btn:hover {
    background: #12382d;
    color: #ffffff;
}

.mh-storefront-drawer__step-qty {
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #12382d;
    min-width: 20px;
    text-align: center;
}

.mh-storefront-drawer__remove-btn {
    background: transparent;
    border: none;
    color: #8c887e;
    font-size: 0.825rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.mh-storefront-drawer__remove-btn:hover {
    color: #a61b2b;
    text-decoration: underline;
}

.mh-storefront-drawer__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #ede7db;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mh-storefront-drawer__subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.95rem;
    color: #58645f;
    font-weight: 500;
}

.mh-storefront-drawer__subtotal-row strong {
    font-family: var(--mh-font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.6rem;
    color: #12382d;
    font-weight: 700;
}

.mh-storefront-drawer__checkout-cta {
    display: block;
    text-align: center;
    background: #12382d;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(18, 56, 45, 0.28);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mh-storefront-drawer__checkout-cta:hover {
    background: #0b2a21;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(18, 56, 45, 0.35);
}

.mh-menu__add-btn--added {
    background: #12382d !important;
    border-color: #12382d !important;
    color: #ffffff !important;
}

@media (min-width: 768px) {
    .mh-menu__specials-grid,
    .mh-menu__bundles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
