/* ═══════════════════════════════════════════════════
   M15 CATERING — Premium Landing Page
   Colors: Navy #15425f · Beige #f5f2ea · Gold #c5b091
   ═══════════════════════════════════════════════════ */

/* ═══ BREAK OUT OF KADENCE NARROW CONTAINER (842px → 100%) ═══ */

/* Hide Kadence page title & hero section */
body.page-id-3402 .entry-hero,
body.page-id-3402 .page-hero-section {
    display: none !important;
}

/* Prevent horizontal overflow */
body.page-id-3402 #wrapper {
    overflow-x: hidden;
}

/* ═══ VARIABLES ═══ */
:root {
    --m15-navy: #15425f;
    --m15-navy-dark: #0e2d42;
    --m15-navy-light: #1c5a82;
    --m15-beige: #f5f2ea;
    --m15-beige-dark: #e8e3d7;
    --m15-gold: #c5b091;
    --m15-gold-light: #d4c4a8;
    --m15-gold-dark: #a89470;
    --m15-white: #ffffff;
    --m15-text: #2c3e50;
    --m15-text-light: #6b7d8e;
    --m15-radius: 12px;
    --m15-shadow: 0 4px 24px rgba(21, 66, 95, 0.08);
    --m15-shadow-hover: 0 16px 48px rgba(21, 66, 95, 0.15);
    --m15-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══ RESET ═══ */
#m15-catering *,
#m15-catering *::before,
#m15-catering *::after {
    box-sizing: border-box;
}

#m15-catering {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--m15-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.m15-ct-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 100px 40px 80px;
    background: linear-gradient(165deg, var(--m15-navy-dark) 0%, var(--m15-navy) 50%, var(--m15-navy-light) 100%);
    text-align: center;
    overflow: hidden;
    width: 100%;
}

/* Subtle pattern overlay */
.m15-ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5b091' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Decorative circles */
.m15-ct-hero-ornament {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(197, 176, 145, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.m15-ct-hero-ornament::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -400px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(197, 176, 145, 0.06);
    border-radius: 50%;
}

.m15-ct-hero-ornament::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(197, 176, 145, 0.07);
    border-radius: 50%;
}

.m15-ct-hero-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--m15-gold);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    animation: m15HeroFadeIn 1s ease-out both;
}

.m15-ct-hero-title {
    font-size: clamp(38px, 7vw, 64px);
    font-weight: 300;
    color: var(--m15-white);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    animation: m15HeroFadeIn 1s 0.15s ease-out both;
}

.m15-ct-hero-subtitle {
    font-size: clamp(18px, 2.6vw, 26px);
    font-weight: 300;
    color: var(--m15-gold);
    letter-spacing: 3px;
    text-transform: lowercase;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    animation: m15HeroFadeIn 1s 0.2s ease-out both;
}

.m15-ct-hero-note {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    max-width: 620px;
    line-height: 1.5;
    margin: 0 auto 26px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    animation: m15HeroFadeIn 1s 0.25s ease-out both;
}

.m15-ct-hero-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--m15-gold), transparent);
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
    animation: m15HeroLineIn 1.2s 0.3s ease-out both;
}

.m15-ct-hero-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    animation: m15HeroFadeIn 1s 0.45s ease-out both;
}

.m15-ct-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 56px;
    color: var(--m15-gold-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    animation: m15HeroFadeIn 1s 0.6s ease-out both;
}

.m15-ct-hero-scroll:hover { color: var(--m15-white); }
.m15-ct-hero-scroll svg { animation: m15BounceDown 2.5s infinite; }

@keyframes m15HeroFadeIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes m15HeroLineIn {
    from { width: 0; opacity: 0; }
    to   { width: 70px; opacity: 1; }
}
@keyframes m15BounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.m15-ct-section {
    padding: 90px 48px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.m15-ct-section-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m15-ct-section-header.m15-ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.m15-ct-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--m15-gold-dark);
    margin-bottom: 16px;
}

.m15-ct-section-title {
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 300;
    color: var(--m15-navy);
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.m15-ct-section-desc {
    font-size: 17px;
    color: var(--m15-text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   MAIN CATEGORY GRID — two big cards
   ═══════════════════════════════════════════════ */
.m15-ct-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

/* ═══ CARD ═══ */
.m15-ct-card--main {
    background: var(--m15-white);
    border-radius: var(--m15-radius);
    overflow: hidden;
    box-shadow: var(--m15-shadow);
    border: 1px solid rgba(21, 66, 95, 0.06);
    transition: box-shadow var(--m15-transition), transform var(--m15-transition), border-color var(--m15-transition);
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.m15-ct-card--main.m15-ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.m15-ct-card--main:nth-child(2).m15-ct-visible {
    transition-delay: 0.15s;
}

.m15-ct-card--main:hover {
    box-shadow: var(--m15-shadow-hover);
    transform: translateY(-6px);
    border-color: var(--m15-gold-light);
}

/* Colored header bar on card (replaces image) */
.m15-ct-card--main .m15-ct-card__body {
    position: relative;
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.m15-ct-card--main .m15-ct-card__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--m15-gold), var(--m15-gold-light));
}

.m15-ct-card__title {
    font-size: 26px;
    font-weight: 400;
    color: var(--m15-navy);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.m15-ct-card__desc {
    font-size: 15px;
    color: var(--m15-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
}

.m15-ct-card__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 36px;
    padding: 24px;
    background: var(--m15-beige);
    border-radius: 8px;
}

.m15-ct-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--m15-text);
}

.m15-ct-card__feature svg {
    color: var(--m15-gold-dark);
    flex-shrink: 0;
}

.m15-ct-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--m15-white);
    background: var(--m15-navy);
    border: 2px solid var(--m15-navy);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.m15-ct-card__btn:hover {
    background: transparent;
    color: var(--m15-navy);
}

.m15-ct-card__btn svg {
    transition: transform 0.3s ease;
}

.m15-ct-card__btn:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   BACK BUTTON
   ═══════════════════════════════════════════════ */
.m15-ct-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--m15-text-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    font-family: inherit;
}

.m15-ct-back:hover,
.m15-ct-back:focus,
.m15-ct-back:active,
.m15-ct-back:visited {
    color: var(--m15-navy) !important;
    background: none !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.m15-ct-back svg { transition: transform 0.3s; }
.m15-ct-back:hover svg { transform: translateX(-4px); }

/* ═══════════════════════════════════════════════
   FEATURED CARD (WESELA) — no image version
   ═══════════════════════════════════════════════ */
.m15-ct-featured {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--m15-white);
    border-radius: var(--m15-radius);
    overflow: hidden;
    box-shadow: var(--m15-shadow);
    border: 1px solid rgba(21, 66, 95, 0.06);
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.m15-ct-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--m15-navy), var(--m15-gold), var(--m15-navy));
    z-index: 1;
}

.m15-ct-featured.m15-ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.m15-ct-featured:hover {
    box-shadow: var(--m15-shadow-hover);
    border-color: var(--m15-gold-light);
}

.m15-ct-featured__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 56px 60px;
}

.m15-ct-featured__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--m15-gold-dark);
    margin-bottom: 16px;
}

.m15-ct-featured__title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 300;
    color: var(--m15-navy);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.m15-ct-featured__desc {
    font-size: 16px;
    color: var(--m15-text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
}

.m15-ct-featured__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--m15-navy);
    background: transparent;
    border: 2px solid var(--m15-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.m15-ct-featured__btn:hover {
    background: var(--m15-navy);
    border-color: var(--m15-navy);
    color: var(--m15-white);
}

.m15-ct-featured__btn svg { transition: transform 0.3s ease; }
.m15-ct-featured__btn:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   SUBSECTION HEADER
   ═══════════════════════════════════════════════ */
.m15-ct-subsection {
    margin-top: 8px;
}

.m15-ct-subsection-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
}

.m15-ct-subsection-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--m15-beige-dark), transparent);
}

.m15-ct-subsection-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--m15-navy);
    white-space: nowrap;
    letter-spacing: -0.2px;
}

/* ═══════════════════════════════════════════════
   OCCASION CARDS (Chrzciny, Komunie, etc.)
   ═══════════════════════════════════════════════ */
.m15-ct-occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.m15-ct-occasion {
    background: var(--m15-white);
    border-radius: var(--m15-radius);
    padding: 44px 28px 36px;
    text-align: center;
    box-shadow: var(--m15-shadow);
    border: 1px solid rgba(21, 66, 95, 0.06);
    transition: all var(--m15-transition);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

/* Top accent line */
.m15-ct-occasion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--m15-gold-light);
    transition: background 0.3s;
}

.m15-ct-occasion:hover::before {
    background: var(--m15-navy);
}

.m15-ct-occasion.m15-ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.m15-ct-occasion:nth-child(1).m15-ct-visible { transition-delay: 0s; }
.m15-ct-occasion:nth-child(2).m15-ct-visible { transition-delay: 0.1s; }
.m15-ct-occasion:nth-child(3).m15-ct-visible { transition-delay: 0.15s; }
.m15-ct-occasion:nth-child(4).m15-ct-visible { transition-delay: 0.2s; }

.m15-ct-occasion:hover {
    transform: translateY(-8px);
    box-shadow: var(--m15-shadow-hover);
    border-color: var(--m15-gold-light);
}

.m15-ct-occasion__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--m15-gold-dark);
    transition: color 0.3s;
}

.m15-ct-occasion:hover .m15-ct-occasion__icon {
    color: var(--m15-navy);
}

.m15-ct-occasion__icon svg {
    width: 100%;
    height: 100%;
}

.m15-ct-occasion__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 4px;
}

/* Podtytuł (np. "(imprezy wieczorne)") — ta sama czcionka i rozmiar
   co tytuł, rezerwuje stałą wysokość we wszystkich kafelkach żeby
   ikony/tytuły/opisy/przyciski były wyrównane poziomo nawet gdy tekst
   podtytułu jest pusty. */
.m15-ct-occasion__subtitle {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--m15-navy);
    line-height: 1.4;
    min-height: 25px;
    margin-bottom: 12px;
}

.m15-ct-occasion__desc {
    font-size: 14px;
    color: var(--m15-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.m15-ct-occasion__btn {
    display: inline-block;
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-navy);
    background: var(--m15-beige);
    border: 1.5px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.m15-ct-occasion__btn:hover {
    background: var(--m15-navy);
    color: var(--m15-white);
    border-color: var(--m15-navy);
}

/* ═══════════════════════════════════════════════
   FORM SECTION (Wesela dane)
   ═══════════════════════════════════════════════ */
.m15-ct-form-card {
    background: var(--m15-white);
    border-radius: var(--m15-radius);
    box-shadow: var(--m15-shadow);
    border: 1px solid rgba(21, 66, 95, 0.06);
    margin-bottom: 32px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m15-ct-form-card.m15-ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.m15-ct-form-card:nth-child(3).m15-ct-visible {
    transition-delay: 0.12s;
}

.m15-ct-form-card__header {
    padding: 24px 40px 0;
}

.m15-ct-form-card__header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--m15-navy);
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 16px;
}

.m15-ct-form-card__header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--m15-gold);
}

.m15-ct-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
    padding: 28px 40px 36px;
}

.m15-ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m15-ct-field--full {
    grid-column: 1 / -1;
}

.m15-ct-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-navy);
    letter-spacing: 0.2px;
}

.m15-ct-req {
    color: #c0392b;
}

.m15-ct-field input {
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--m15-text);
    background: var(--m15-beige);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: 8px;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    width: 100%;
}

.m15-ct-field input::placeholder {
    color: var(--m15-text-light);
    opacity: 0.6;
}

.m15-ct-field input:focus {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15);
    background: var(--m15-white);
}

/* Flatpickr custom styling */
.flatpickr-calendar {
    font-family: 'Lato', sans-serif !important;
    border: 1px solid var(--m15-beige-dark) !important;
    box-shadow: 0 8px 32px rgba(21, 66, 95, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden;
    width: 320px !important;
}

.flatpickr-months {
    background: var(--m15-navy) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month {
    color: var(--m15-white) !important;
    fill: var(--m15-white) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--m15-gold-light) !important;
    color: var(--m15-gold-light) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--m15-white) !important;
}

span.flatpickr-weekday {
    color: var(--m15-navy) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

.flatpickr-day {
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--m15-navy) !important;
    border-color: var(--m15-navy) !important;
}

.flatpickr-day:hover {
    background: var(--m15-beige) !important;
    border-color: var(--m15-gold-light) !important;
}

.flatpickr-day.today {
    border-color: var(--m15-gold) !important;
}

.flatpickr-day.flatpickr-disabled {
    color: #ccc !important;
}

.m15-ct-field input.m15-ct-field--error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.m15-ct-field__hint {
    font-size: 13px;
    color: var(--m15-text-light);
    line-height: 1.5;
    margin-top: 4px;
    padding-left: 2px;
}

/* Allergy checkboxes */
.m15-ct-allergy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.m15-ct-allergy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--m15-beige);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: var(--m15-text);
}

.m15-ct-allergy-check:hover {
    border-color: var(--m15-gold-light);
}

.m15-ct-allergy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--m15-gold-dark);
    flex-shrink: 0;
}

.m15-ct-allergy-check input:checked + span {
    font-weight: 600;
    color: var(--m15-navy);
}

/* Checkboxy zgód (RODO + regulamin) — wariant z dłuższym tekstem i wyraźnym layoutem */
.m15-ct-consent {
    align-items: flex-start;
    line-height: 1.5;
    font-size: 13px;
}

.m15-ct-consent input[type="checkbox"] {
    margin-top: 2px;
}

.m15-ct-consent a {
    color: var(--m15-gold-dark, #8a6d3b);
    text-decoration: underline;
}

.m15-ct-consent a:hover {
    color: var(--m15-navy, #15425f);
}

.m15-ct-consent.m15-ct-field--error,
.m15-ct-allergy-check.m15-ct-field--error {
    border-color: #c00 !important;
    background: #fff5f5;
}

.m15-ct-allergy-other {
    margin-top: 12px;
}

.m15-ct-allergy-other input {
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--m15-text);
    background: var(--m15-beige);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: 8px;
    outline: none;
    width: 100%;
    transition: border-color 0.25s;
}

.m15-ct-allergy-other input:focus {
    border-color: var(--m15-gold);
    background: var(--m15-white);
}

/* Form navigation */
.m15-ct-form-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.m15-ct-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--m15-white);
    background: var(--m15-navy);
    border: 2px solid var(--m15-navy);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.m15-ct-form-btn:hover {
    background: transparent;
    color: var(--m15-navy);
}

.m15-ct-form-btn svg {
    transition: transform 0.3s;
}

.m15-ct-form-btn:hover svg {
    transform: translateX(4px);
}

/* Form errors */
.m15-ct-form-errors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px 24px;
    background: rgba(192, 57, 43, 0.04);
    border: 1.5px solid rgba(192, 57, 43, 0.15);
    border-radius: 10px;
}

.m15-ct-form-errors span {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.15);
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════
   WEDDING MENU WIZARD
   ═══════════════════════════════════════════════ */

/* Progress bar */
.m15-wz-progress {
    margin-bottom: 48px;
    overflow: hidden;
}

.m15-wz-progress-track {
    height: 3px;
    background: var(--m15-beige-dark);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.m15-wz-progress-fill {
    height: 100%;
    width: 12.5%;
    background: linear-gradient(90deg, var(--m15-gold-dark), var(--m15-gold));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.m15-wz-steps {
    display: flex;
    justify-content: space-between;
}

.m15-wz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.m15-wz-step.active,
.m15-wz-step.done {
    opacity: 1;
}

.m15-wz-step.done {
    cursor: pointer;
}

.m15-wz-step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-text-light);
    border: 1.5px solid var(--m15-beige-dark);
    transition: all 0.3s;
}

.m15-wz-step.active .m15-wz-step-num {
    background: var(--m15-navy);
    border-color: var(--m15-navy);
    color: var(--m15-white);
}

.m15-wz-step.done .m15-wz-step-num {
    background: var(--m15-gold);
    border-color: var(--m15-gold);
    color: var(--m15-white);
}

.m15-wz-step-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--m15-text-light);
    letter-spacing: 0.3px;
}

.m15-wz-step.active .m15-wz-step-name {
    color: var(--m15-navy);
    font-weight: 600;
}

/* Panels */
.m15-wz-panel {
    display: none;
}

.m15-wz-panel.active {
    display: block;
}

/* Option cards (radio selection — appetizer, soup, main, cold buffet) */
/* ═══ Wybór formy płatności (zaliczka 10% / całość) ═══ */
.m15-ct-payment-card {
    margin-top: 24px;
    background: var(--m15-white);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    overflow: hidden;
}

.m15-ct-payment-card__header {
    padding: 16px 32px;
    background: var(--m15-beige);
    border-bottom: 1px solid var(--m15-beige-dark);
}

.m15-ct-payment-card__header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--m15-navy);
    font-weight: 600;
}

.m15-ct-payment-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.m15-ct-payment-opt {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 32px;
    cursor: pointer;
    border-top: 1px solid var(--m15-beige);
    transition: background 0.15s;
}

.m15-ct-payment-opt:first-child { border-top: none; }
.m15-ct-payment-opt:hover { background: var(--m15-beige); }

.m15-ct-payment-opt input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--m15-gold-dark);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.m15-ct-payment-opt__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m15-ct-payment-opt__title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    color: var(--m15-text);
}

.m15-ct-payment-opt__amount {
    font-size: 20px;
    color: var(--m15-navy);
    font-weight: 700;
    white-space: nowrap;
}

.m15-ct-payment-opt__note {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.m15-ct-payment-opt input:checked ~ .m15-ct-payment-opt__body .m15-ct-payment-opt__title {
    color: var(--m15-navy);
}

.m15-ct-payment-opt:has(input:checked) {
    background: #fef9f0;
}

/* ═══ Tier-based selector (wybór jednego dania z grupy cenowej) ═══ */
.m15-wz-tiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m15-wz-tier {
    background: var(--m15-white);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.m15-wz-tier:has(input:checked) {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15), var(--m15-shadow);
}

.m15-wz-tier__header {
    padding: 16px 24px;
    background: var(--m15-beige);
    border-bottom: 1px solid var(--m15-beige-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m15-wz-tier__dishes {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.m15-wz-dish {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 24px;
    cursor: pointer;
    border-top: 1px solid var(--m15-beige);
    transition: background 0.15s;
}

.m15-wz-dish:first-child {
    border-top: none;
}

.m15-wz-dish:hover {
    background: var(--m15-beige);
}

.m15-wz-dish input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--m15-gold-dark);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.m15-wz-dish span {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--m15-text);
}

.m15-wz-dish input:checked + span {
    font-weight: 600;
    color: var(--m15-navy);
}

@media (max-width: 640px) {
    .m15-wz-tier__header { padding: 12px 16px; }
    .m15-wz-dish { padding: 12px 16px; }
}

.m15-wz-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m15-wz-option {
    cursor: pointer;
    display: block;
}

.m15-wz-option input[type="radio"] {
    display: none;
}

.m15-wz-option__inner {
    background: var(--m15-white);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.m15-wz-option input:checked + .m15-wz-option__inner {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15), var(--m15-shadow);
}

.m15-wz-option:hover .m15-wz-option__inner {
    border-color: var(--m15-gold-light);
    box-shadow: var(--m15-shadow);
}

.m15-wz-option__header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--m15-beige);
}

/* Multi-select (grill, event mix modules) — checkbox w lewym górnym rogu kafelka */
.m15-wz-option--multi {
    position: relative;
}

.m15-wz-option--multi input[type="checkbox"] {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 2;
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--m15-gold);
}

.m15-wz-option--multi .m15-wz-option__inner {
    padding-left: 68px;
}

@media (max-width: 640px) {
    .m15-wz-option--multi input[type="checkbox"] {
        top: 18px;
        left: 18px;
        width: 20px;
        height: 20px;
    }
    .m15-wz-option--multi .m15-wz-option__inner {
        padding-left: 52px;
    }
}

/* Menu type option cards */
.m15-wz-option--type .m15-wz-option__inner {
    padding: 32px;
}

.m15-wz-option__badge {
    font-size: 20px;
    font-weight: 600;
    color: var(--m15-navy);
}

.m15-wz-option__type-desc {
    font-size: 15px;
    color: var(--m15-text-light);
    line-height: 1.7;
    margin-top: 12px;
}

.m15-wz-option__type-note {
    font-size: 13px;
    color: var(--m15-gold-dark);
    font-style: italic;
    margin-top: 8px;
}

.m15-wz-option__price {
    font-size: 22px;
    font-weight: 600;
    color: var(--m15-navy);
}

.m15-wz-option__price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--m15-text-light);
}

.m15-wz-option__dishes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m15-wz-option__dishes li {
    font-size: 14px;
    color: var(--m15-text);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.m15-wz-option__dishes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--m15-gold);
}

.m15-wz-option__extras {
    margin-top: 12px;
    font-size: 13px;
    color: var(--m15-text-light);
    font-style: italic;
}

/* Notes */
.m15-wz-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--m15-text-light);
    font-style: italic;
    line-height: 1.5;
}

/* Category sections (midnight, dessert, bar) */
.m15-wz-category {
    background: var(--m15-white);
    border: 1px solid rgba(21, 66, 95, 0.06);
    border-radius: var(--m15-radius);
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: var(--m15-shadow);
}

.m15-wz-category__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 6px;
}

.m15-wz-optional {
    font-size: 13px;
    font-weight: 400;
    color: var(--m15-text-light);
}

.m15-wz-category__desc {
    font-size: 13px;
    color: var(--m15-text-light);
    margin-bottom: 16px;
}

/* Radio list (inline label + price) */
.m15-wz-radio-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m15-wz-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.m15-wz-radio:hover {
    background: var(--m15-beige);
}

.m15-wz-radio input[type="radio"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--m15-gold-dark);
}

.m15-wz-radio span:first-of-type {
    flex: 1;
    font-size: 14px;
    color: var(--m15-text);
    line-height: 1.5;
}

.m15-wz-radio__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-navy);
    white-space: nowrap;
}

/* Checkbox list (salads, bar extras) */
.m15-wz-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m15-wz-group-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--m15-gold-dark);
    margin-top: 16px;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--m15-beige);
}

.m15-wz-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.m15-wz-checkbox:hover {
    background: var(--m15-beige);
}

.m15-wz-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--m15-gold-dark);
}

.m15-wz-checkbox span {
    font-size: 14px;
    color: var(--m15-text);
    line-height: 1.5;
}

/* Midnight dishes — checkbox + qty + price */
.m15-wz-midnight-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m15-wz-midnight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-wrap: wrap;
}

.m15-wz-midnight-item:hover {
    background: var(--m15-beige);
}

.m15-wz-midnight-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.m15-wz-midnight-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--m15-gold-dark);
    flex-shrink: 0;
}

.m15-wz-midnight-check span {
    font-size: 14px;
    color: var(--m15-text);
    line-height: 1.5;
}

.m15-wz-midnight-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-navy);
    white-space: nowrap;
    flex-shrink: 0;
}

.m15-wz-midnight-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.m15-wz-midnight-qty input[type="number"] {
    width: 80px;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--m15-text);
    background: var(--m15-white);
    border: 1.5px solid var(--m15-gold-light);
    border-radius: 6px;
    outline: none;
    text-align: center;
    transition: border-color 0.25s;
}

.m15-wz-midnight-qty input:focus {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15);
}

.m15-wz-midnight-qty span {
    font-size: 12px;
    color: var(--m15-text-light);
    white-space: nowrap;
}

.m15-wz-midnight-qty em {
    color: var(--m15-gold-dark);
    font-style: normal;
    font-weight: 600;
}

/* Cake picker */
.m15-wz-cake-picker {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--m15-beige);
}

.m15-wz-cake-picker__info {
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 16px;
}

.m15-wz-cake-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.m15-wz-cake {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    border: 1px solid transparent;
}

.m15-wz-cake:hover {
    background: var(--m15-beige);
}

.m15-wz-cake input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--m15-gold-dark);
}

.m15-wz-cake span {
    font-size: 13px;
    color: var(--m15-text);
    line-height: 1.4;
}

.m15-wz-cake input:checked + span {
    font-weight: 600;
    color: var(--m15-navy);
}

.m15-wz-cake--disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Bar type toggle */
.m15-wz-bar-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.m15-wz-bar-type {
    cursor: pointer;
    display: block;
}

.m15-wz-bar-type input[type="radio"] {
    display: none;
}

.m15-wz-bar-type__inner {
    padding: 24px;
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    transition: all 0.3s;
    height: 100%;
}

.m15-wz-bar-type input:checked + .m15-wz-bar-type__inner {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15), var(--m15-shadow);
}

.m15-wz-bar-type:hover .m15-wz-bar-type__inner {
    border-color: var(--m15-gold-light);
}

.m15-wz-bar-type__inner h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 8px;
}

.m15-wz-bar-type__inner p {
    font-size: 13px;
    color: var(--m15-text-light);
    line-height: 1.6;
}

/* Bottles list */
.m15-wz-bottles-list {
    margin-top: 12px;
}

.m15-wz-bottles-group {
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--m15-beige);
}

.m15-wz-bottles-group:first-child {
    margin-top: 8px;
}

.m15-wz-bottle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.m15-wz-bottle-item:hover {
    background: var(--m15-beige);
}

.m15-wz-bottle-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.m15-wz-bottle-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--m15-gold-dark);
    flex-shrink: 0;
}

.m15-wz-bottle-check span {
    font-size: 14px;
    color: var(--m15-text);
}

.m15-wz-bottle-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--m15-navy);
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

.m15-wz-bottle-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.m15-wz-bottle-qty input[type="number"] {
    width: 70px;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--m15-text);
    background: var(--m15-beige);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: 6px;
    outline: none;
    text-align: center;
    transition: border-color 0.25s, opacity 0.25s;
}

.m15-wz-bottle-qty input:disabled {
    opacity: 0.3;
}

.m15-wz-bottle-qty input:focus {
    border-color: var(--m15-gold);
    background: var(--m15-white);
}

.m15-wz-bottle-qty span {
    font-size: 12px;
    color: var(--m15-text-light);
    white-space: nowrap;
}

/* Duration selector */
.m15-wz-duration-grid {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.m15-wz-duration {
    cursor: pointer;
    display: block;
    flex: 1;
}

.m15-wz-duration input[type="radio"] {
    display: none;
}

.m15-wz-duration__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    transition: all 0.3s;
    text-align: center;
}

.m15-wz-duration input:checked + .m15-wz-duration__inner {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15);
    background: var(--m15-beige);
}

.m15-wz-duration:hover .m15-wz-duration__inner {
    border-color: var(--m15-gold-light);
}

.m15-wz-duration__hours {
    font-size: 32px;
    font-weight: 300;
    color: var(--m15-navy);
    line-height: 1;
}

.m15-wz-duration input:checked + .m15-wz-duration__inner .m15-wz-duration__hours {
    color: var(--m15-gold-dark);
    font-weight: 400;
}

.m15-wz-duration__label {
    font-size: 13px;
    color: var(--m15-text-light);
    margin-top: 4px;
}

/* Bar cards */
.m15-wz-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.m15-wz-bar-card {
    cursor: pointer;
    display: block;
}

.m15-wz-bar-card input[type="radio"] {
    display: none;
}

.m15-wz-bar-card__inner {
    background: var(--m15-white);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.m15-wz-bar-card input:checked + .m15-wz-bar-card__inner {
    border-color: var(--m15-gold);
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.15), var(--m15-shadow);
}

.m15-wz-bar-card:hover .m15-wz-bar-card__inner {
    border-color: var(--m15-gold-light);
}

.m15-wz-bar-card__inner h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 8px;
}

.m15-wz-bar-card__inner h4 small {
    font-size: 12px;
    font-weight: 400;
    color: var(--m15-gold-dark);
}

.m15-wz-bar-card__contains {
    font-size: 13px;
    color: var(--m15-text-light);
    margin-bottom: 16px;
    flex: 1;
}

.m15-wz-bar-card__price-display {
    font-size: 22px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-top: auto;
    padding-top: 12px;
}

.m15-wz-bar-card__price-display small {
    font-size: 13px;
    font-weight: 400;
    color: var(--m15-text-light);
}

.wz-bar-price {
    transition: color 0.2s;
}

.m15-wz-bar-card__prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--m15-text);
    font-weight: 500;
}

.m15-wz-bar-extras {
    background: var(--m15-beige);
    border-radius: var(--m15-radius);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.m15-wz-bar-extras h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 12px;
}

.m15-wz-bar-info {
    margin-top: 20px;
}

.m15-wz-bar-info p {
    font-size: 12px;
    color: var(--m15-text-light);
    line-height: 1.7;
}

/* ═══ Summary (step 9) ═══ */
.m15-wz-summary-card {
    background: var(--m15-white);
    border: 1px solid rgba(21, 66, 95, 0.06);
    border-radius: var(--m15-radius);
    box-shadow: var(--m15-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.m15-wz-summary-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid var(--m15-beige);
}

.m15-wz-summary-card__header h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--m15-navy);
}

.m15-wz-summary-edit {
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-gold-dark);
    background: none;
    border: 1.5px solid var(--m15-gold-light);
    border-radius: 6px;
    padding: 6px 16px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}

.m15-wz-summary-edit:hover {
    background: var(--m15-navy);
    color: var(--m15-white);
    border-color: var(--m15-navy);
}

.m15-wz-summary-grid {
    padding: 20px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    font-size: 14px;
    color: var(--m15-text);
    line-height: 1.6;
}

.m15-wz-summary-grid > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.m15-wz-summary-grid > div > span {
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}

.m15-wz-summary-grid > div > strong {
    color: var(--m15-text);
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}

.m15-wz-summary-grid__full {
    grid-column: 1 / -1;
}

.m15-wz-summary-section {
    padding: 8px 0;
}

/* Summary blocks with details */
.m15-wz-summary-block {
    border-bottom: 1px solid var(--m15-beige);
    padding: 16px 24px;
}

.m15-wz-summary-block:last-child {
    border-bottom: none;
}

.m15-wz-summary-block__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.m15-wz-summary-block__head .m15-wz-summary-label {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--m15-navy);
}

.m15-wz-summary-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--m15-navy);
    white-space: nowrap;
}

.m15-wz-summary-block__details {
    margin-top: 8px;
    font-size: 13px;
    color: var(--m15-text-light);
    line-height: 1.6;
}

.m15-wz-summary-block__details:empty {
    display: none;
}

.m15-wz-summary-block__details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.m15-wz-summary-block__details li {
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.m15-wz-summary-block__details li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    color: var(--m15-gold);
    font-size: 8px;
    top: 7px;
}

.m15-wz-summary-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 32px;
    border-bottom: 1px solid var(--m15-beige);
}

.m15-wz-summary-row:last-child {
    border-bottom: none;
}

.m15-wz-summary-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-navy);
    min-width: 140px;
    flex-shrink: 0;
}

.m15-wz-summary-value {
    font-size: 14px;
    color: var(--m15-text);
    flex: 1;
    line-height: 1.6;
}

.m15-wz-summary-edit-sm {
    font-size: 12px;
    font-weight: 600;
    color: var(--m15-gold-dark);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.m15-wz-summary-edit-sm:hover {
    color: var(--m15-navy);
}

.m15-wz-summary-total {
    background: var(--m15-white);
    border: 1px solid rgba(21, 66, 95, 0.06);
    border-radius: var(--m15-radius);
    box-shadow: var(--m15-shadow);
    overflow: hidden;
    margin-top: 24px;
}

.m15-wz-summary-total__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    font-size: 14px;
    color: var(--m15-text-light);
    border-bottom: 1px solid var(--m15-beige);
}

.m15-wz-summary-total__row:last-child {
    border-bottom: none;
}

.m15-wz-summary-total__main {
    background: var(--m15-beige);
    border-top: 2px solid var(--m15-gold-light);
    padding: 20px 32px;
}

.m15-wz-summary-total__main span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--m15-navy);
}

.m15-wz-summary-total__main span:last-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--m15-navy);
}

.m15-wz-summary-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 20px;
}

.m15-wz-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    color: var(--m15-white);
    background: linear-gradient(135deg, var(--m15-navy) 0%, var(--m15-navy-dark) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(21, 66, 95, 0.25);
}

.m15-wz-pay-btn:hover {
    box-shadow: 0 8px 28px rgba(21, 66, 95, 0.35);
    transform: translateY(-2px);
}

.m15-wz-pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.m15-wz-pay-btn svg {
    transition: transform 0.3s;
}

.m15-wz-pay-btn:hover svg {
    transform: translateX(4px);
}

/* Minimum order message */
.m15-wz-min-order-msg {
    padding: 20px 28px;
    background: #fef3e6;
    border: 1.5px solid #f0b860;
    border-radius: 10px;
    font-size: 15px;
    color: #7a5210;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

/* ═══ Layout: content + sidebar ═══ */
.m15-wz-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.m15-wz-content {
    min-width: 0;
}

/* ═══ Price Sidebar ═══ */
.m15-wz-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    margin-top: 320px;
}

.m15-wz-sidebar__inner {
    background: var(--m15-white);
    border: 1px solid rgba(21, 66, 95, 0.08);
    border-radius: var(--m15-radius);
    box-shadow: var(--m15-shadow);
    overflow: hidden;
}

.m15-wz-sidebar__header {
    background: var(--m15-navy);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m15-wz-sidebar__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.m15-wz-sidebar__guests {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.m15-wz-sidebar__lines {
    padding: 16px 24px 8px;
}

.m15-wz-sidebar__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--m15-beige);
    font-size: 13px;
    color: var(--m15-text-light);
}

.m15-wz-sidebar__line:last-child {
    border-bottom: none;
}

.m15-wz-sidebar__val {
    font-weight: 600;
    color: var(--m15-text);
    font-size: 13px;
    white-space: nowrap;
}

.m15-wz-sidebar__line[data-active="true"] .m15-wz-sidebar__val {
    color: var(--m15-navy);
}

.m15-wz-sidebar__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--m15-beige);
    border-top: 2px solid var(--m15-gold-light);
}

.m15-wz-sidebar__total span:first-child {
    font-size: 14px;
    font-weight: 700;
    color: var(--m15-navy);
    letter-spacing: 0.5px;
}

.m15-wz-sidebar__total span:last-child {
    font-size: 22px;
    font-weight: 700;
    color: var(--m15-navy);
}

.m15-wz-sidebar__per-person {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: var(--m15-beige);
}

.m15-wz-sidebar__per-person span:first-child {
    font-size: 12px;
    color: var(--m15-text-light);
}

.m15-wz-sidebar__per-person span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-gold-dark);
}

/* Navigation */
.m15-wz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--m15-beige-dark);
}

.m15-wz-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    border: 2px solid transparent;
}

.m15-wz-nav__prev {
    color: var(--m15-text-light);
    background: transparent;
    border-color: var(--m15-beige-dark);
}

.m15-wz-nav__prev:hover {
    color: var(--m15-navy);
    border-color: var(--m15-navy);
    background: transparent;
}

.m15-wz-nav__next {
    color: var(--m15-white);
    background: var(--m15-navy);
    border-color: var(--m15-navy);
    margin-left: auto;
}

.m15-wz-nav__next:hover {
    background: transparent;
    color: var(--m15-navy);
}

.m15-wz-nav__btn svg {
    transition: transform 0.3s;
}

.m15-wz-nav__next:hover svg {
    transform: translateX(4px);
}

.m15-wz-nav__prev:hover svg {
    transform: translateX(-4px);
}

/* ═══════════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════════ */
.m15-ct-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 22px 36px;
    background: var(--m15-navy);
    color: var(--m15-white);
    border-radius: var(--m15-radius);
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
    text-align: center;
    max-width: 420px;
    border: 1px solid rgba(197, 176, 145, 0.2);
}

.m15-ct-toast a {
    color: var(--m15-gold-light);
    text-decoration: none;
    font-weight: 600;
}

.m15-ct-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .m15-ct-section {
        padding: 72px 32px;
    }
    .m15-ct-main-grid {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .m15-ct-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .m15-ct-occasion-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .m15-ct-hero {
        min-height: 50vh;
        padding: 72px 28px 56px;
    }

    .m15-ct-section {
        padding: 60px 24px;
    }

    .m15-wz-layout {
        grid-template-columns: 1fr;
    }

    .m15-wz-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 100;
        margin-top: 0;
    }

    .m15-wz-sidebar__inner {
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    }

    .m15-wz-sidebar__lines {
        display: none;
    }

    .m15-wz-sidebar__per-person {
        display: none;
    }

    /* Make room for fixed sidebar at bottom */
    .m15-wz-content {
        padding-bottom: 100px;
    }

    .m15-wz-nav {
        padding-bottom: 80px;
    }

    .m15-wz-summary-actions {
        padding-bottom: 80px;
        flex-direction: column;
    }

    .m15-wz-pay-btn {
        width: 100%;
        justify-content: center;
    }

    .m15-wz-bar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .m15-wz-cake-grid {
        grid-template-columns: 1fr 1fr;
    }

    .m15-wz-bar-type-grid {
        grid-template-columns: 1fr;
    }

    .m15-wz-step-name {
        display: none;
    }
}

@media (max-width: 540px) {
    .m15-ct-occasion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .m15-ct-card__features {
        grid-template-columns: 1fr;
    }

    .m15-ct-card--main .m15-ct-card__body {
        padding: 32px 24px;
    }

    .m15-ct-featured__content {
        padding: 40px 24px;
    }

    .m15-ct-subsection-header {
        flex-direction: column;
        gap: 12px;
    }

    .m15-ct-subsection-line {
        width: 50px;
    }

    .m15-ct-hero-desc br {
        display: none;
    }

    .m15-ct-section-header {
        margin-bottom: 40px;
    }

    .m15-ct-form-grid {
        grid-template-columns: 1fr;
        padding: 20px 24px 28px;
    }

    .m15-ct-form-card__header {
        padding: 20px 24px 0;
    }

    .m15-ct-form-nav {
        justify-content: stretch;
    }

    .m15-ct-form-btn {
        width: 100%;
        justify-content: center;
    }

    .m15-wz-bar-grid {
        grid-template-columns: 1fr;
    }

    .m15-wz-option__inner {
        padding: 20px;
    }

    .m15-wz-category {
        padding: 20px;
    }

    .m15-wz-nav__btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .m15-wz-cake-grid {
        grid-template-columns: 1fr;
    }

    .m15-wz-bottles-grid {
        grid-template-columns: 1fr;
    }

    .m15-wz-midnight-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .m15-wz-midnight-qty {
        margin-left: 28px;
    }

    .m15-wz-duration-grid {
        gap: 10px;
    }

    .m15-wz-duration__inner {
        padding: 14px 10px;
    }

    .m15-wz-summary-grid {
        grid-template-columns: 1fr;
        padding: 16px 20px;
    }

    .m15-wz-summary-row {
        flex-direction: column;
        gap: 4px;
        padding: 12px 20px;
    }

    .m15-wz-summary-label {
        min-width: auto;
    }

    .m15-wz-bar-type-grid {
        grid-template-columns: 1fr;
    }

    .m15-wz-progress {
        margin-bottom: 32px;
    }

    .m15-wz-step-num {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .m15-ct-allergy-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   Inne alkohole spoza listy (do indywidualnej wyceny)
   Pole tekstowe pod listą butelek w 3 kreatorach
   ═══════════════════════════════════════════ */
.m15-wz-bottles-custom {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed #d5cdb8;
}
.m15-wz-bottles-custom__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--m15-navy);
    margin-bottom: 8px;
}
.m15-wz-bottles-custom__hint {
    font-weight: 400;
    font-style: italic;
    color: var(--m15-gold);
    font-size: 12px;
    margin-left: 4px;
}
.m15-wz-bottles-custom textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #2c3e50;
    background: #f5f2ea;
    border: 1.5px solid #e8e3d7;
    border-radius: 8px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    line-height: 1.5;
    transition: border-color 0.2s;
}
.m15-wz-bottles-custom textarea:focus {
    border-color: var(--m15-gold);
    background: #fff;
}

/* ═══════════════════════════════════════════
   Menu dziecięce — rozbicie na 2 grupy wiekowe
   (wesele + okolicznościowe)
   ═══════════════════════════════════════════ */
.m15-wz-kids-breakdown {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #f5f2ea;
    border-left: 4px solid var(--m15-gold);
    border-radius: 8px;
    padding: 22px 24px;
}
.m15-wz-kids-group {
    padding-bottom: 16px;
    border-bottom: 1px dashed #d5cdb8;
}
.m15-wz-kids-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.m15-wz-kids-group__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--m15-navy);
    margin: 0 0 10px;
}
.m15-wz-kids-group__hint {
    font-weight: 400;
    font-style: italic;
    color: var(--m15-gold);
    font-size: 13px;
    margin-left: 4px;
}
.m15-wz-kids-group__label {
    font-size: 14px;
    color: var(--m15-text-light);
}
.m15-wz-kids-group__label strong {
    color: var(--m15-navy);
    font-weight: 600;
    font-size: 16px;
}
.m15-wz-kids-group__note strong {
    color: var(--m15-navy);
}
.m15-wz-kids-breakdown__note {
    margin: 0;
    padding-top: 12px;
    border-top: 1px dashed #d5cdb8;
    font-size: 13px;
    color: var(--m15-text-light);
    font-style: italic;
}
.m15-wz-kids-breakdown__note a {
    color: var(--m15-gold);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
    font-style: normal;
}

/* ═══════════════════════════════════════════
   GLOBAL OVERRIDE — zaznaczenie wyboru
   Znacznie grubsza i bardziej widoczna ramka
   (na prośbę klienta — wszędzie w catering)
   ═══════════════════════════════════════════ */
#m15-catering .m15-wz-option input:checked + .m15-wz-option__inner,
#m15-catering .m15-wz-bar-type input:checked + .m15-wz-bar-type__inner,
#m15-catering .m15-wz-duration input:checked + .m15-wz-duration__inner,
#m15-catering .m15-wz-bar-card input:checked + .m15-wz-bar-card__inner,
#m15-catering .m15-wz-tier:has(input:checked),
#m15-catering .m15-ct-payment-opt:has(input:checked) {
    border: 3px solid var(--m15-gold-dark) !important;
    box-shadow: 0 0 0 5px rgba(197, 176, 145, 0.35), 0 8px 24px rgba(168, 148, 112, 0.22) !important;
    background: #fdf7ec !important;
}

/* Tile'e grill multi-select (checkbox) — wyraźniej zaznaczony wybór */
#m15-catering .m15-wz-option--multi input:checked + .m15-wz-option__inner {
    border: 3px solid var(--m15-gold-dark) !important;
    box-shadow: 0 0 0 5px rgba(197, 176, 145, 0.35), 0 8px 24px rgba(168, 148, 112, 0.22) !important;
    background: #fdf7ec !important;
}

/* Checkboxy alergii / ciast / dań — bardziej widoczny border gdy checked */
#m15-catering .m15-ct-allergy-check:has(input:checked),
#m15-catering .m15-wz-cake:has(input:checked),
#m15-catering .m15-wz-dish:has(input:checked),
#m15-catering .m15-wz-midnight-item:has(input:checked),
#m15-catering .m15-wz-bottle-item:has(input:checked) {
    border: 2.5px solid var(--m15-gold-dark) !important;
    background: #fdf7ec !important;
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.22) !important;
}

/* Efekt hover — delikatniejszy, żeby nie mylił ze zaznaczeniem */
#m15-catering .m15-wz-option:hover .m15-wz-option__inner,
#m15-catering .m15-wz-bar-type:hover .m15-wz-bar-type__inner,
#m15-catering .m15-wz-bar-card:hover .m15-wz-bar-card__inner {
    border-color: var(--m15-gold) !important;
}

/* ═══════════════════════════════════════════
   Usługi dodatkowe (eventy firmowe)
   Lista pozycji z qty — transport / DJ / meble / ochrona
   ═══════════════════════════════════════════ */
.m15-wz-extras-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.m15-wz-extra-item {
    background: var(--m15-white);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: var(--m15-radius);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s;
}
.m15-wz-extra-item:has(input[type="number"]:not([value="0"])) {
    border-color: var(--m15-gold-dark);
    background: #fdf7ec;
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.22);
}
.m15-wz-extra-item label {
    font-size: 14px;
    color: var(--m15-navy);
    line-height: 1.4;
}
.m15-wz-extra-item label strong {
    font-weight: 600;
}
.m15-wz-extra-unit {
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: var(--m15-text-light);
    margin-left: 4px;
}
.m15-wz-extra-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.m15-wz-extra-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-gold-dark);
    flex: 1 1 auto;
}
.m15-wz-extra-row input[type="number"] {
    width: 90px;
    padding: 8px 12px;
    font-size: 15px;
    text-align: center;
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: 6px;
    font-family: inherit;
    color: var(--m15-navy);
    background: var(--m15-beige);
    outline: none;
}
.m15-wz-extra-row input[type="number"]:focus {
    border-color: var(--m15-gold);
    background: #fff;
}
.m15-wz-extra-unit-qty {
    font-size: 13px;
    color: var(--m15-text-light);
    min-width: 35px;
}

/* ═══════════════════════════════════════════
   Usługi dodatkowe w formularzu eventu firmowego
   Eleganckie, spójne karty wyboru + etykiety sekcji
   ═══════════════════════════════════════════ */
.m15-ct-form-card__subtitle {
    font-weight: 400;
    font-size: 14px;
    color: var(--m15-text-light);
    margin-left: 8px;
    font-style: italic;
}
.m15-ct-extras-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--m15-navy);
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--m15-beige-dark);
}
.m15-ct-opt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.m15-ct-opt-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 18px;
    min-height: 72px;
    background: var(--m15-white);
    border: 1.5px solid var(--m15-beige-dark);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    user-select: none;
}
.m15-ct-opt-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.m15-ct-opt-card:hover {
    border-color: var(--m15-gold);
}
.m15-ct-opt-card:has(input:checked) {
    border: 2.5px solid var(--m15-gold-dark);
    background: #fdf7ec;
    box-shadow: 0 0 0 3px rgba(197, 176, 145, 0.25);
    padding: 13px 17px; /* kompensacja 1px grubszej ramki */
}
.m15-ct-opt-card__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--m15-navy);
    line-height: 1.3;
}
.m15-ct-opt-card__price {
    font-size: 13px;
    font-weight: 600;
    color: var(--m15-gold-dark);
    letter-spacing: 0.2px;
}
.m15-ct-opt-card__price em {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    color: var(--m15-text-light);
    margin-left: 3px;
    text-transform: lowercase;
}

/* Multi-select kafelki wyłączone (mutual exclusion — np. zestaw bufetów vs osobny bufet) */
.m15-wz-option.m15-wz-option--disabled {
    opacity: 0.4;
    pointer-events: none;
}
.m15-wz-option.m15-wz-option--disabled .m15-wz-option__inner {
    background: #f5f2ea !important;
    border-color: #e8e3d7 !important;
    box-shadow: none !important;
}
