/* ==========================================================================
   Summit Tickets 2027 — Scoped Styles
   Prefix: .summit-tickets / .st-
   ========================================================================== */

/* ── Reset (scoped) ─────────────────────────────────────────────────── */
.summit-tickets *,
.summit-tickets *::before,
.summit-tickets *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.summit-tickets {
    font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
    background: #fdf3ee;
    color: #2a1a14;
    padding: 32px 16px;
    line-height: 1.5;
}

/* ── Layout ─────────────────────────────────────────────────────────── */
.st-wrap {
    max-width: 95%;
    margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────────────────── */
.st-header {
    background: #fce4d8;
    border-radius: 14px;
    padding: 28px 32px;
    border: 1px solid #f1c8b6;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.st-header::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: #e9621c;
    border-radius: 50%;
    opacity: .15;
}

.st-eyebrow {
    display: inline-block;
    background: #e9621c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.st-eyebrow--green {
    background: #7a9a3a;
}

.st-header h1 {
    color: #8a1d10;
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: .3px;
    line-height: 1.2;
}

.st-formerly {
    color: #6b4a3e;
    font-size: 14px;
    margin-top: 4px;
}

.st-date {
    color: #8a1d10;
    font-weight: 800;
    font-size: 16px;
    margin-top: 10px;
    letter-spacing: .4px;
}

/* ── Section ────────────────────────────────────────────────────────── */
.st-section {
    margin-bottom: 28px;
}

.st-section__body {
    padding: 22px;
}

.st-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.st-section__head h2 {
    color: #8a1d10;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.st-section__desc {
    color: #5a3a30;
    font-size: 13px;
    line-height: 1.7;
    margin: -4px 0 16px 0;
}

/* ── Day Chip ───────────────────────────────────────────────────────── */
.st-day-chip {
    background: #8a1d10;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    min-width: 96px;
    flex-shrink: 0;
}

.st-day-chip__label {
    font-size: 11px;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.st-day-chip__date {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin: 2px 0;
}

.st-day-chip__year {
    font-size: 11px;
}

/* ── Meal Badge ─────────────────────────────────────────────────────── */
.st-meal {
    font-size: 12px;
    color: #6b4a3e;
    background: #fff;
    border: 1px solid #f1c8b6;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
}

/* ── Section "without" Inline Label ──────────────────────────────── */
.st-section__without {
    text-transform: none;
    font-weight: 600;
}

.st-section__note {
    color: #6b4a3e;
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* ── Best Value Section ─────────────────────────────────────────────── */
.st-section--best-value {
    border: 3px solid #e9621c;
    border-radius: 14px;
    background: #fff8f3;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(233, 98, 28, .18);
}

.st-bv-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #e9621c, #f59440);
    color: #fff;
    padding: 12px 22px;
}

.st-bv-star {
    font-size: 22px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .2));
}

.st-bv-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

/* ── Cards Grid ─────────────────────────────────────────────────────── */
.st-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.st-card {
    background: #fff;
    border: 1px solid #f1c8b6;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: .15s;
}

.st-card:hover {
    box-shadow: 0 8px 22px rgba(138, 29, 16, .10);
    transform: translateY(-2px);
}

.st-card--featured {
    background: #fce4d8;
    border: 2px solid #e9621c;
}

.st-section--best-value .st-card {
    background: #fff;
}

.st-card h3 {
    color: #2a1a14;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.st-card__detail {
    font-size: 12px;
    color: #6b4a3e;
}

/* ── Card Pricing ───────────────────────────────────────────────────── */
.st-card__price-row {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.st-card__price-block {
    display: flex;
    flex-direction: column;
}

.st-card__price-label {
    font-size: 10px;
    color: #e9621c;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.st-card__price-now {
    color: #8a1d10;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.st-card__price-future {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.st-card__future-label {
    font-size: 10px;
    color: #6b4a3e;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.st-card__future-amount {
    color: #a07a6c;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 600;
}

.st-card__free {
    color: #2a7a3a;
    font-weight: 800;
    font-size: 18px;
}

.st-card__note {
    font-size: 12px;
    color: #6b4a3e;
    font-style: italic;
}

/* ── Quantity Selector ──────────────────────────────────────────────── */
.st-card__qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.st-card__cart {
    margin-top: auto;
}

.st-qty {
    display: flex;
    align-items: center;
    border: 1px solid #d9b4a3;
    border-radius: 6px;
    background: #fff;
}

.st-qty__btn {
    width: 28px;
    height: 30px;
    background: transparent;
    border: 0;
    color: #8a1d10;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-qty__btn:hover {
    background: #fce4d8;
}

.st-qty__display {
    width: 26px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.st-card__add {
    flex: 1;
    background: #e9621c;
    color: #fff;
    border: 0;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
}

.st-card__add:hover {
    background: #d05311;
}

.st-card__add.is-added {
    background: #2a7a3a;
}

.st-card__stock {
    font-size: 11px;
    color: #b13a25;
    font-weight: 700;
    margin-top: 4px;
}

/* ── Child Count Input (Family Pass) ──────────────────────────────── */
.st-card__child-count {
    margin-bottom: 4px;
}

.st-card__child-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #6b4a3e;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.st-card__child-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d9b4a3;
    border-radius: 6px;
    font-size: 13px;
    color: #2a1a14;
    background: #fff;
    transition: border-color .15s;
}

.st-card__child-input:focus {
    outline: none;
    border-color: #e9621c;
    box-shadow: 0 0 0 2px rgba(233, 98, 28, .15);
}

.st-card__child-input::placeholder {
    color: #b8a090;
}

/* ── Make & Take ────────────────────────────────────────────────────── */
.st-mt {
    margin-bottom: 28px;
}

.st-mt__head {
    margin-bottom: 14px;
}

.st-mt__head h2 {
    color: #2d2d2d;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-top: 30px;
}

.st-mt__tagline {
    color: #2d2d2d;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin: 6px 0 0;
}

.st-mt__intro {
    color: #5a3a30;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
    max-width: 760px;
}

.st-mt__intro strong {
    color: #8a1d10;
}

.st-mt__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.st-mt__col {
    background: #fff;
    border: 1px solid #f1c8b6;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.st-mt__col-head {
    background: #fce4d8;
    padding: 14px 18px;
    border-bottom: 1px solid #f1c8b6;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.st-mt__col-head h3 {
    color: #8a1d10;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.st-mt__col-count {
    font-size: 12px;
    color: #6b4a3e;
    font-weight: 700;
}

.st-mt__foot {
    background: #fdf3ee;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
    color: #8a1d10;
    border-top: 1px dashed #d9b4a3;
    margin-top: auto;
}

/* ── Workshop Item ──────────────────────────────────────────────────── */
.st-mt-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f3d9cb;
    cursor: pointer;
}

.st-mt-item:last-of-type {
    border-bottom: 0;
}

.st-mt-row {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.st-mt-time {
    flex: 0 0 56px;
    background: #8a1d10;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 6px 4px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.st-mt-info {
    flex: 1;
    min-width: 0;
}

.st-mt-title {
    font-size: 13px;
    font-weight: 700;
    color: #2a1a14;
}

.st-mt-instructor {
    font-size: 12px;
    color: #6b4a3e;
    margin-top: 4px;
    line-height: 1.4;
}

.st-mt-price {
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 800;
    color: #8a1d10;
    text-align: right;
    min-width: 50px;
}

.st-mt-toggle {
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.st-mt-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #8a1d10;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: .2s;
}

.st-mt-toggle:hover .st-mt-toggle__icon {
    background: #e9621c;
}

.st-mt-item.is-open .st-mt-toggle__icon {
    transform: rotate(45deg);
    background: #e9621c;
}

/* ── Workshop Details (accordion) ───────────────────────────────────── */
.st-mt-details {
    display: none;
    margin-top: 12px;
    padding: 14px;
    background: #fdf3ee;
    border-radius: 8px;
    border-left: 3px solid #e9621c;
    font-size: 12px;
    color: #5a3a30;
    line-height: 1.55;
}

.st-mt-item.is-open .st-mt-details {
    display: block;
}

.st-mt-details ul {
    list-style: none;
    margin: 6px 0;
    padding: 0;
}

.st-mt-details li {
    padding: 2px 0;
    font-size: 12px;
}

.st-mt-stock {
    background: #fce4d8;
    padding: 6px 8px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 11px;
    color: #8a1d10;
    font-weight: 700;
    display: inline-block;
}

.st-mt-cart {
    margin-top: 12px;
}

.st-mt-add {
    background: #e9621c;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
}

.st-mt-add:hover {
    background: #d05311;
}

.st-mt-add:disabled {
    background: #a07a6c;
    cursor: not-allowed;
}

.st-mt-add.is-added {
    background: #2a7a3a;
}

/* ── Ambassador ─────────────────────────────────────────────────────── */
.st-amb {
    background: #fce4d8;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #f1c8b6;
    margin-bottom: 24px;
}

.st-amb h2 {
    color: #8a1d10;
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
}

.st-amb__lead {
    color: #5a3a30;
    font-size: 13px;
    margin: 6px 0 16px;
}

.st-amb__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.st-amb__card {
    background: #7a9a3a;
    color: #fff;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

.st-amb__card h3 {
    font-size: 15px;
    font-weight: 800;
}

.st-amb__card p {
    font-size: 12px;
    margin-top: 6px;
    opacity: .95;
}

.st-amb__perks {
    margin-top: 18px;
}

.st-amb__perks h3 {
    color: #8a1d10;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 10px;
}

.st-amb__perk {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid #f1c8b6;
    font-size: 13px;
}

.st-amb__perk-level {
    color: #8a1d10;
    font-weight: 800;
}

.st-amb__tier {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    color: #e9621c;
}

/* ── How It Works ───────────────────────────────────────────────────── */
.st-how {
    background: #fff;
    border: 1px solid #f1c8b6;
    border-radius: 14px;
    padding: 22px;
}

.st-how h2 {
    color: #8a1d10;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.st-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.st-step {
    background: #fdf3ee;
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #f1c8b6;
}

.st-step__num {
    display: inline-block;
    background: #e9621c;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.st-step p {
    font-size: 12px;
    color: #2a1a14;
    line-height: 1.4;
}

.st-reward {
    display: flex;
    gap: 18px;
    background: #fce4d8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #5a3a30;
}

.st-reward strong {
    color: #8a1d10;
}

/* ── Summit T-Shirt ──────────────────────────────────────────────── */
.st-tee {
    background: #fff;
    border: 2px solid #e9621c;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 6px 24px rgba(233, 98, 28, .12);
}

.st-tee__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #8a1d10;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 2;
}

.st-tee__layout {
    display: flex;
    align-items: stretch;
}

/* ── Image Side ── */
.st-tee__images {
    flex: 0 0 50%;
    max-width: 50%;
    background: #fdf3ee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    min-height: 360px;
}

.st-tee__img {
    display: none;
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 8px;
}

.st-tee__img--active {
    display: block;
}

.st-tee__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.st-tee__thumb {
    background: transparent;
    border: 2px solid #d9b4a3;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #6b4a3e;
    cursor: pointer;
    transition: .15s;
}

.st-tee__thumb:hover {
    border-color: #e9621c;
    color: #e9621c;
}

.st-tee__thumb--active {
    background: #e9621c;
    border-color: #e9621c;
    color: #fff;
}

.st-tee__thumb--active:hover {
    color: #fff;
    background: #d05311;
}

/* ── Info Side ── */
.st-tee__info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.st-tee__info .st-eyebrow {
    align-self: flex-start;
}

.st-tee__info h2 {
    color: #8a1d10;
    font-size: 26px;
    font-weight: 800;
    margin-top: 10px;
    line-height: 1.2;
}

.st-tee__desc {
    color: #5a3a30;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.st-tee__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 16px;
}

.st-tee__price {
    color: #8a1d10;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.st-tee__shipping {
    color: #6b4a3e;
    font-size: 13px;
    font-weight: 600;
}

.st-tee__btn {
    display: inline-block;
    background: #e9621c;
    color: #fff;
    border: 0;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
    margin-top: 20px;
    text-align: center;
}

.st-tee__btn:hover {
    background: #d05311;
    color: #fff;
}

/* ── Meal Pass Section ────────────────────────────────────────────── */
.st-section--meals {
    margin-bottom: 24px;
}

.st-section--meals .st-section__head h2 {
    color: #8a1d10;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.st-section--meals .st-section__head .fa {
    margin-right: 6px;
}

.st-meal-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.st-meal-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #f1c8b6;
    border-radius: 0;
    transition: background .15s;
}

.st-meal-row:first-child {
    border-radius: 12px 12px 0 0;
}

.st-meal-row:last-child {
    border-radius: 0 0 12px 12px;
}

.st-meal-row:only-child {
    border-radius: 12px;
}

.st-meal-row + .st-meal-row {
    border-top: 0;
}

.st-meal-row:hover {
    background: #fdf3ee;
}

.st-meal-row__icon {
    flex: 0 0 40px;
    height: 40px;
    background: #fce4d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e9621c;
    font-size: 16px;
}

.st-meal-row__info {
    flex: 1;
    min-width: 0;
}

.st-meal-row__title {
    font-size: 14px;
    font-weight: 700;
    color: #2a1a14;
}

.st-meal-row__menu {
    font-size: 12px;
    color: #6b4a3e;
    margin-top: 2px;
    line-height: 1.4;
}

.st-meal-row__price-col {
    flex: 0 0 auto;
    text-align: right;
    min-width: 50px;
}

.st-meal-row__price {
    font-size: 22px;
    font-weight: 800;
    color: #8a1d10;
}

.st-meal-row__price-increase {
    font-size: 11px;
    color: #b13a25;
    margin-top: 2px;
}

.st-meal-row__increase-label {
    font-weight: 600;
}

.st-meal-row__increase-amount {
    font-weight: 800;
}

.st-meal-row__cart {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Ambassador Banner ────────────────────────────────────────────── */
.st-ambassador-banner {
    background: linear-gradient(135deg, #8a1d10, #e9621c);
    color: #fff;
    border-radius: 14px;
    padding: 24px 32px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(138, 29, 16, .2);
}

.st-ambassador-banner__badge {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.st-ambassador-banner__text {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 4px;
}

.st-ambassador-banner__text strong {
    font-weight: 800;
}

.st-ambassador-banner__warning {
    font-size: 14px;
    opacity: .9;
    margin: 4px 0 0;
    font-weight: 700;
    letter-spacing: .5px;
}

/* ── Price Increase Display ───────────────────────────────────────── */
.st-card__price-increase {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #b13a25;
    margin-top: 4px;
}

.st-card__increase-label {
    font-weight: 600;
}

.st-card__increase-amount {
    font-weight: 800;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 760px) {
    .summit-tickets {
        padding: 20px 12px;
    }

    .st-header {
        padding: 20px;
    }

    .st-header h1 {
        font-size: 22px;
    }

    .st-section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .st-cards {
        grid-template-columns: 1fr;
    }

    .st-mt__grid {
        grid-template-columns: 1fr;
    }

    .st-amb__grid {
        grid-template-columns: 1fr;
    }

    .st-amb__perk {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .st-steps {
        grid-template-columns: 1fr 1fr;
    }

    .st-reward {
        flex-direction: column;
        gap: 8px;
    }

    .st-mt-row {
        gap: 12px;
    }

    /* T-Shirt mobile */
    .st-tee__layout {
        flex-direction: column;
    }

    .st-tee__images {
        flex: none;
        max-width: 100%;
        min-height: 280px;
        padding: 20px;
    }

    .st-tee__img {
        max-height: 240px;
    }

    .st-tee__info {
        padding: 24px 20px;
    }

    .st-tee__info h2 {
        font-size: 22px;
    }

    .st-tee__price {
        font-size: 30px;
    }

    .st-tee__btn {
        width: 100%;
        padding: 14px 20px;
    }

    /* Meal rows mobile */
    .st-meal-row {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }

    .st-meal-row__info {
        flex: 1 1 calc(100% - 56px);
    }

    .st-meal-row__price {
        font-size: 20px;
    }

    .st-meal-row__cart {
        flex: 1 1 100%;
        justify-content: flex-end;
    }

    /* Ambassador banner mobile */
    .st-ambassador-banner {
        padding: 20px 16px;
    }

    .st-ambassador-banner__badge {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .st-ambassador-banner__text {
        font-size: 16px;
    }

    .st-ambassador-banner__warning {
        font-size: 13px;
    }
}