:root {
    --color-ink: #1b2a23;
    --color-ink-soft: #3b4a40;
    --color-cream: #f7f2e9;
    --color-cream-strong: #efe6d4;
    --color-accent: #1f4b3a;
    --color-accent-strong: #163628;
    --color-white: #ffffff;
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.1);
    --max-width: 1040px;
    --max-width-wide: 1140px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 72px;
    --event-title-height: 85px;
}

.ticketing-app,
.ticketing-app *,
.ticketing-app *::before,
.ticketing-app *::after {
    all: revert;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Prompt", "Segoe UI", Tahoma, sans-serif;
    color: var(--color-ink);
    background: var(--color-cream);
    line-height: 1.6;
    font-size: 17px;
}

.ticketing-header {
    background: #0f2620;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticketing-header__inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ticketing-header__logo {
    display: inline-flex;
    align-items: center;
    border: none;
    text-decoration: none;
}

.ticketing-header__logo img {
    height: 46px;
    width: auto;
}

.ticketing-header__nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.ticketing-header__home {
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

.ticketing-header__home:hover {
    opacity: 0.85;
}

.ticketing-header__cart {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.ticketing-header__cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ticketing-header__cart:hover {
    background: #ffffff;
    color: #0f2620;
}

.ticketing-header__cart-count {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dfa365;
    color: #0f2620;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ticketing-header__cart-count.is-empty {
    display: none;
}

.ticketing-footer {
    background: #0f2620;
    color: #ffffff;
    padding: 0;
}

.ticketing-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 24px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    font-size: 0.95rem;
    align-items: start;
}

.ticketing-footer__inner a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
}

.ticketing-footer__inner a:hover {
    text-decoration: underline;
}

.ticketing-footer__brand img {
    height: 54px;
    width: auto;
}

.ticketing-footer__tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-top: 6px;
    margin-bottom: 20px;
}

.ticketing-footer__call {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.8rem;
    margin: 0 0 12px;
}

.ticketing-footer__address {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.ticketing-footer__actions {
    display: flex;
    gap: 14px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-btn--primary {
    background: #dfa365;
    color: #0f2620;
}

.footer-btn--secondary {
    background: #5a6066;
    color: #ffffff;
}

.ticketing-footer__links h3 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.ticketing-footer__links {
    justify-self: end;
}

.ticketing-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.ticketing-footer__bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4px 24px 18px;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.ticketing-footer__legal {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

.ticketing-footer__copy {
    margin-left: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
    .ticketing-footer__inner {
        grid-template-columns: 1fr;
    }
    .ticketing-footer__links {
        justify-self: start;
    }
    .ticketing-footer__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

body.is-modal-open {
    overflow: hidden;
}

body.is-basket-open {
    overflow: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 2px solid rgba(31, 75, 58, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: var(--color-accent-strong);
    border-bottom-color: rgba(22, 54, 40, 0.8);
}

.page {
    min-height: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

.container--wide {
    max-width: var(--max-width-wide);
}

.hero {
    position: relative;
    min-height: clamp(340px, 54vw, 560px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--color-ink);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    background-image: url("https://www.curragh.ie/wp-content/uploads/2025/01/Website-Header-1-e1743513899188.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(21, 33, 28, 0.75), rgba(21, 33, 28, 0.35));
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-6) var(--space-3);
    text-align: left;
    width: 100%;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.hero__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    max-width: 50%;
}

.hero--compact {
    min-height: clamp(200px, 34vw, 280px);
}

.hero__title--small {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    max-width: 620px;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 18px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d9c9ae;
}

.stepper__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bfa88a;
}

.stepper__item.is-active {
    color: #c98c3a;
    font-weight: 600;
}

.stepper__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #7f6a4f;
}

.stepper__item.is-active .stepper__dot {
    background: #c98c3a;
}

.stepper__divider {
    width: 40px;
    height: 1px;
    background: #3a2d1f;
    opacity: 0.7;
}

.section {
    padding: var(--space-6) 0;
}

.section--intro {
    background: var(--color-cream-strong);
}

.section--note {
    background: var(--color-cream-strong);
}

.section--events {
    background: var(--color-cream);
    padding-top: var(--space-4);
}

.section--listing {
    background: var(--color-cream);
    padding-top: var(--space-4);
}

.section--basket {
    background: var(--color-cream);
    padding-top: var(--space-5);
}

.section--checkout {
    background: var(--color-cream);
    padding-top: var(--space-5);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: var(--space-4);
}

.checkout-layout > .stepper {
    grid-column: 1 / -1;
    justify-self: center;
}

.checkout-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 var(--space-2);
    font-weight: 600;
}

.checkout-card {
    background: #fff7e4;
    border: none;
    padding: var(--space-3);
    display: grid;
    gap: 10px;
}

.checkout-card--tight {
    margin-top: var(--space-3);
}

.checkout-block + .checkout-block {
    margin-top: var(--space-4);
}

.checkout-card--compact {
    max-width: 360px;
}

.checkout-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-field {
    display: grid;
    gap: 6px;
}

.checkout-input {
    border: 1px solid #d6c4a6;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 2px;
    font-size: 0.95rem;
}

.checkout-dob {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.checkout-dob .checkout-input {
    width: 80px;
}

.checkout-options__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    margin-bottom: 8px;
}

.checkout-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.checkout-radio--stack {
    margin-top: 12px;
}

.checkout-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.checkout-apply {
    width: 200px;
    justify-content: center;
}

.validation-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.validation-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.validation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 22, 18, 0.6);
}

.validation-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(90vw, 420px);
    margin: 10vh auto 0;
    background: #fff7e4;
    border-radius: 6px;
    padding: 22px 22px 26px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.validation-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #2a3b34;
    font-size: 1.2rem;
    cursor: pointer;
}

.validation-modal__image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.validation-modal__title {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.6rem;
}

.validation-modal__text {
    margin: 0;
    color: var(--color-ink-soft);
}

.checkout-legal {
    font-size: 0.85rem;
    color: var(--color-ink-soft);
}

.checkout-input--stripe {
    padding: 14px 16px;
    border: 1px solid rgba(10, 20, 16, 0.18);
    border-radius: 4px;
    background: #fff;
    min-height: 48px;
}

.checkout-error {
    margin-top: 10px;
    color: #b42318;
    font-size: 0.85rem;
}

.checkout-pay {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.checkout-summary {
    background: #0f2f27;
    padding: var(--space-3);
    color: #ffffff;
    display: grid;
    gap: var(--space-3);
    border-radius: 4px;
    align-self: start;
}

.summary-total {
    text-align: center;
    display: grid;
    gap: 6px;
    font-weight: 600;
}

.summary-total strong {
    font-size: 1.4rem;
}

.summary-meta {
    font-size: 0.8rem;
    opacity: 0.8;
}

.summary-panel {
    background: #f7f1df;
    color: var(--color-ink);
    padding: var(--space-3);
    border-radius: 4px;
}

.summary-panel__title {
    margin: 0 0 8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
}

.summary-panel__date {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.summary-panel__items {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.summary-panel__group + .summary-panel__group {
    border-top: 1px dashed #d8c7aa;
    margin-top: 8px;
    padding-top: 8px;
}

.summary-panel__group-meta {
    margin-bottom: 6px;
}

.summary-panel__group-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-ink-soft);
    font-weight: 600;
}

.summary-panel__group-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.summary-panel__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.summary-panel__item-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.summary-panel__empty {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

.summary-panel__link {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.summary-panel__section {
    border-top: 1px solid #d8c7aa;
    padding-top: 10px;
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.summary-panel__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.summary-panel__total {
    border-top: 1px solid #d8c7aa;
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.basket-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: var(--space-4);
}

.basket-hero__line {
    flex: 1;
    height: 2px;
    background: #2b7a4a;
    max-width: 220px;
}

.basket-hero__title {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
}

.basket-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: var(--space-4);
    align-items: start;
}

.basket-day {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: var(--space-2);
}

.basket-card {
    background: #f7f1df;
    border: 1px solid #e6d7bf;
    border-radius: 4px;
    padding: var(--space-4);
}

.basket-card__summary {
    display: flex;
    gap: 0;
    align-items: center;
    margin-bottom: var(--space-3);
    padding-bottom: 10px;
    border-bottom: 1px solid #dfcfb3;
}

.basket-card__image {
    width: 88px;
    height: 66px;
    object-fit: cover;
    border-radius: 4px;
}

.basket-card__meta {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--color-ink-soft);
    margin-bottom: 4px;
}

.basket-card__title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.basket-card__subtitle {
    color: var(--color-ink-soft);
    margin-top: 4px;
}

.basket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #dfcfb3;
}

.basket-group + .basket-group {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #dfcfb3;
}

.basket-group__date {
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    color: var(--color-ink-soft);
    font-weight: 600;
}

.basket-group__title {
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.basket-group:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.basket-item--addon {
    border-bottom: 1px dashed #d7c5aa;
}

.basket-item__title {
    font-weight: 600;
}

.basket-item__price {
    color: var(--color-ink-soft);
    font-size: 0.9rem;
}

.basket-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.basket-item__total {
    font-weight: 700;
    min-width: 84px;
    text-align: right;
}

.basket-item__qty {
    width: 64px;
    height: 34px;
    border: 1px solid #cdb99a;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    background: #ffffff;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.modal__dialog--confirm {
    max-width: 520px;
}

.modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
}

.is-fetching-events .event-grid {
    opacity: 0.6;
    pointer-events: none;
}

.is-fetching-events .event-grid::after {
    content: "Loading events...";
    display: block;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    color: #0f2620;
}

.basket-item__select {
    border: 1px solid #cdb99a;
    background: #ffffff;
    width: 70px;
    height: 34px;
    border-radius: 4px;
    font-weight: 600;
}

.basket-item__remove {
    background: none;
    border: none;
    color: #1f4b3a;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    padding: 0;
}

.basket-item__remove-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 28px;
    font-size: 1.3rem;
    line-height: 1;
}

.basket-item__remove-icon svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.basket-item__add {
    background: #153628;
    border: none;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
}

.basket-item__add.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.basket-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-3);
    font-weight: 600;
}

.basket-subtotal__amount {
    font-size: 1.2rem;
}

.basket-summary {
    background: #153628;
    color: #ffffff;
    padding: var(--space-4);
    border-radius: 4px;
}

.basket-summary__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.basket-summary__note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.basket-summary__note a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.basket-summary__cta {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-2);
}

.basket-summary__cancel {
    margin-top: var(--space-2);
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.section__content {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.section__title {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin: 0 0 var(--space-2);
    color: var(--color-ink);
    letter-spacing: 0.2px;
}

.section__title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 12px auto 0;
    background: #c98c3a;
}

.rich-text p {
    margin: 0 0 var(--space-2);
    color: var(--color-ink-soft);
    font-size: 1.05rem;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 500;
}

.rich-text em {
    color: #5a4a3a;
}

.note {
    background: var(--color-white);
    padding: var(--space-4);
    border: 1px solid #e6dcc6;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.note p {
    margin: 0 0 var(--space-2);
}

.note p:last-child {
    margin-bottom: 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.event-grid__error {
    margin-top: var(--space-3);
}

.event-card {
    background: #0f2620;
    color: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.event-card__image {
    position: relative;
    min-height: 210px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.event-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
    opacity: 0.9;
    transition: opacity 0.35s ease;
}

.event-card:hover .event-card__image::after {
    opacity: 0.65;
}

.event-card__date {
    display: block;
    margin: 16px 18px 10px;
    color: #dca156;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-weight: 600;
}

.event-card__price {
    position: absolute;
    right: 12px;
    top: 12px;
    background: #0f2620;
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
}

.event-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 18px 16px;
    margin-top: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 2px;
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
}

.btn--light {
    background: #f5f2e6;
    color: #0f2620;
}

.btn--dark {
    background: #0f5f3a;
    color: var(--color-white);
    border-color: #0f5f3a;
}

.btn--dark:hover {
    background: #0c4d2f;
    border-color: #0c4d2f;
}

.btn--light:hover {
    background: #efe6d4;
}

.btn.is-loading {
    color: transparent;
    pointer-events: none;
}

.btn.is-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: spinner 0.8s linear infinite;
}

.btn--light.is-loading::after {
    border-color: rgba(15, 38, 32, 0.35);
    border-top-color: #0f2620;
}

.is-loading-text {
    opacity: 0.7;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.product-list {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
    background: #f5eddc;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5d6bf;
    box-shadow: var(--shadow-soft);
    min-height: 220px;
    align-items: stretch;
}

.product-card__media {
    position: relative;
    background: #0f2620;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

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

.product-card__carousel {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    gap: 6px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 38, 32, 0.6);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.carousel-control:hover {
    background: rgba(15, 38, 32, 0.8);
}

.carousel-control--prev {
    left: 12px;
}

.carousel-control--next {
    right: 12px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
}

.carousel-dot.is-active {
    background: #ffffff;
}

.product-card__content {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
}

.product-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    flex: 1;
    align-items: start;
}

.product-card__title {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.6rem;
}

.product-card__desc {
    margin: 0 0 12px;
    color: var(--color-ink-soft);
}

.product-card__excerpt {
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--color-ink);
}

.product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    border: 1px solid #1f4b3a;
    color: #1f4b3a;
    padding: 2px 8px;
    border-radius: 14px;
    font-size: 0.75rem;
    text-transform: capitalize;
    background: #ffffff;
}

.product-card__price {
    text-align: right;
    min-width: 120px;
}

.price-from {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-ink-soft);
}

.price-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f4b3a;
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--color-ink-soft);
}

.price-note--strike {
    text-decoration: line-through;
}

.product-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1f4b3a;
    cursor: pointer;
}

.product-card__toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.product-card__details[open] .product-card__toggle::after {
    transform: rotate(-135deg);
}

.product-card__details {
    margin: 0;
    max-width: none;
    display: block;
    align-self: start;
}

.product-card__details summary {
    list-style: none;
}

.product-card__details summary::-webkit-details-marker {
    display: none;
}

.product-card__details-body {
    padding-top: 10px;
    color: var(--color-ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.product-card__details-body p {
    margin: 0 0 10px;
}

.product-card__details-body p:last-child {
    margin-bottom: 0;
}

.product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    margin-top: auto;
}

.product-card__actions > .btn {
    align-self: start;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 22, 18, 0.65);
}

.modal__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 720px);
    max-height: 86vh;
    background: #ede7d6;
    border-radius: 6px;
    padding: 26px 28px 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    overflow: auto;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f6f6f6;
    color: #4b5b53;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal__title {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.8rem;
}

.modal__subtitle {
    margin: 0 0 18px;
    color: #2f463d;
}


.modal__list {
    display: grid;
    gap: 12px;
}

.modal__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f3f3f2;
    border: 1px solid #dfdfdc;
    padding: 14px 16px;
    border-radius: 2px;
}

.modal__row-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.modal__row-desc {
    color: var(--color-ink-soft);
    font-size: 0.9rem;
}

.modal__row-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal__row-price {
    font-weight: 600;
    color: #1f4b3a;
}

.modal__qty-select {
    border: 1px solid #cdb99a;
    background: #f8f8f7;
    width: 60px;
    height: 34px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.modal__footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #d7d1c3;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.modal__footer.is-visible {
    display: flex;
}

.modal__total-tickets {
    font-weight: 600;
}

.modal__total-label {
    color: var(--color-ink-soft);
}

.modal__add {
    padding: 10px 18px;
}

.basket-panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.basket-panel[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.basket-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 22, 18, 0.4);
}

.basket-panel__drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(92vw, 360px);
    background: #f7f2e9;
    box-shadow: -12px 0 28px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.basket-panel[aria-hidden="false"] .basket-panel__drawer {
    transform: translateX(0);
}

.basket-panel__top {
    background: #153628;
    color: #ffffff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.basket-panel__close {
    border: none;
    background: none;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
}

.basket-panel__content {
    padding: 18px 16px;
    flex: 1;
    overflow: auto;
}

.basket-panel__meta {
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    color: var(--color-ink-soft);
}

.basket-panel__venue {
    font-weight: 600;
    color: var(--color-ink);
}

.basket-panel__items {
    display: grid;
    gap: 12px;
}

.basket-panel__group + .basket-panel__group {
    border-top: 1px dashed #d9c7aa;
    padding-top: 10px;
}

.basket-panel__group-meta {
    margin-bottom: 8px;
}

.basket-panel__group-date {
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--color-ink-soft);
    font-weight: 600;
}

.basket-panel__group-title {
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
}

.basket-panel__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px dashed #d9c7aa;
    padding-bottom: 10px;
}

.basket-panel__item-actions {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.basket-panel__item-title {
    font-weight: 600;
}

.basket-panel__item-sub {
    color: var(--color-ink-soft);
    font-size: 0.85rem;
}

.basket-panel__item-total {
    font-weight: 600;
    color: #1f4b3a;
}

.remove-link-icon {
    background: none;
    border: none;
    color: #1f4b3a;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 0;
}

.remove-link-icon__glyph {
    display: inline-flex;
    width: 12px;
    height: 28px;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
}

.basket-panel__footer {
    padding: 16px;
    background: #173428;
    color: #ffffff;
    display: grid;
    gap: 8px;
}

.basket-panel__total-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

.basket-panel__total-amount {
    font-size: 1.1rem;
    font-weight: 600;
}

.basket-panel__cta {
    width: 100%;
    justify-content: center;
    background: #1f9f50;
    border-color: #1f9f50;
}

.basket-panel__cta:hover {
    background: #168341;
    border-color: #168341;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-5) 0;
    }

    .note {
        padding: var(--space-3);
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-card__media {
        aspect-ratio: 16 / 9;
        min-height: 0;
        height: auto;
    }

    .product-card__content {
        min-height: 0;
    }

    .product-card__header {
        grid-template-columns: 1fr;
    }

    .product-card__price {
        text-align: left;
    }

    .product-card__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal__row-actions {
        width: 100%;
        justify-content: space-between;
    }

    .modal__footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .basket-item {
        align-items: flex-start;
    }

    .basket-item__actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

@media (max-width: 540px) {
    .hero {
        min-height: 360px;
    }
}

@media (max-width: 900px) {
    .hero__title {
        max-width: 100%;
    }
}

/* 2026 Curragh visual refresh */
:root {
    --color-ink: #4d1b14;
    --color-ink-soft: #6f5149;
    --color-cream: #f7f3ee;
    --color-cream-strong: #f1e7e2;
    --color-accent: #64140f;
    --color-accent-strong: #4d0d09;
    --color-surface: #fff9f6;
    --color-surface-soft: #f6ebe7;
    --color-price: #f1ccd1;
    --color-step: #c98c3a;
    --color-line: #e4d3cc;
    --max-width-wide: 1280px;
    --shadow-soft: 0 14px 30px rgba(74, 22, 17, 0.08);
}

body.ticketing-shell--curragh {
    background: var(--color-cream);
    color: var(--color-ink);
}

.ticketing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #55100b 0%, #63150f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticketing-header__inner {
    max-width: var(--max-width-wide);
    padding: 14px 32px;
}

.ticketing-header__logo img {
    height: 38px;
}

.ticketing-header__nav {
    gap: 14px;
}

.ticketing-header__home,
.ticketing-header__cart {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.ticketing-header__cart {
    padding: 10px 16px;
    border-radius: 4px;
}

.ticketing-header__cart:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.ticketing-header__cart-count {
    background: #d89b5d;
    color: #4d120b;
    right: -9px;
    top: -9px;
}

.ticketing-footer {
    background: linear-gradient(90deg, #55100b 0%, #63150f 100%);
    color: #ffffff;
}

.ticketing-footer__inner {
    max-width: var(--max-width-wide);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: 30px 56px 14px;
}

.ticketing-footer__brand img {
    height: 50px;
}

.ticketing-footer__tagline {
    margin: 10px 0 20px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
}

.ticketing-footer__call {
    margin: 0;
    font-size: 1.78rem;
    line-height: 1.1;
}

.ticketing-footer__contact {
    justify-self: end;
    text-align: center;
}

.ticketing-footer__contact h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.82rem;
    font-weight: 500;
}

.ticketing-footer__bottom {
    max-width: var(--max-width-wide);
    padding: 0 56px 22px;
    justify-content: center;
}

.ticketing-footer__copy {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.88);
}

.footer-btn {
    min-width: 124px;
    min-height: 38px;
    border-radius: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-btn--secondary {
    background: #ffffff;
    color: #5c130d;
}

.ticketing-footer__inner .footer-btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5c130d;
    text-decoration: none;
}

.ticketing-footer__inner .footer-btn--secondary:hover {
    color: #5c130d;
    text-decoration: none;
}

.ticketing-footer__contact {
    width: min(280px, 100%);
    margin-left: auto;
}

.page {
    background: var(--color-cream);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background: #140705;
}

.hero__media {
    background-image: url("https://d3vzzcunewy153.cloudfront.net/img/177a6216-5cfd-497a-a724-7e450dcc0383/6039cda3a26ccf803c49f55ec4551804.jpg");
    background-position: center center;
    background-size: cover;
    transform: none;
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(17, 5, 4, 0.76) 0%, rgba(17, 5, 4, 0.52) 36%, rgba(17, 5, 4, 0.18) 100%);
}

.hero__content {
    max-width: var(--max-width-wide);
    padding: 46px 56px;
}

.hero--home {
    min-height: 430px;
}

.hero--compact {
    min-height: 220px;
}

.hero__title {
    max-width: 50%;
    font-size: clamp(2.7rem, 4.5vw, 4.2rem);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero__title--small {
    max-width: 44%;
    font-size: clamp(2.25rem, 3.9vw, 3.45rem);
}

.page--home .hero__overlay {
    background: linear-gradient(90deg, rgba(20, 7, 5, 0.18) 0%, rgba(20, 7, 5, 0.08) 40%, rgba(20, 7, 5, 0.18) 100%);
}

.page--home .hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding-top: 0;
    padding-bottom: 0;
}

.page--home .hero__title {
    max-width: min(100%, 560px);
    margin: 0 auto;
    text-align: center;
}

.stepper {
    margin: 0 auto 22px;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    color: #b69788;
}

.stepper__item {
    color: #be9f8f;
}

.stepper__item.is-active {
    color: var(--color-step);
}

.stepper__dot {
    width: 8px;
    height: 8px;
    background: #8a6b57;
}

.stepper__item.is-active .stepper__dot {
    background: var(--color-step);
}

.stepper__divider {
    width: 30px;
    background: #b89e8a;
}

.section--events,
.section--listing,
.section--basket,
.section--checkout {
    background: var(--color-cream);
    padding-top: 28px;
}

.section__content--events {
    margin: 0 auto 30px;
    text-align: center;
}

.section__title {
    margin: 0;
    color: #5d170f;
    font-size: clamp(2.65rem, 4.8vw, 4rem);
    line-height: 1.02;
}

.section__title::after {
    width: 64px;
    margin-top: 14px;
    background: #d2a05c;
}

.event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 0;
}

.event-card {
    background: #fbf7f5;
    border: 1px solid #eee0da;
    border-radius: 4px;
    color: #5d170f;
    box-shadow: 0 12px 24px rgba(74, 22, 17, 0.08);
    transform: none;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(74, 22, 17, 0.13);
}

.event-card__media {
    position: relative;
    aspect-ratio: 1 / 0.72;
    overflow: hidden;
    background: #d7d1ca;
}

.event-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card__price {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: var(--color-price);
    color: #5d170f;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 170px;
    padding: 18px 18px 20px;
    background: #fbf7f5;
}

.event-card__date {
    margin: 0 0 10px;
    color: #7a2a1f;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.event-card__title {
    display: block;
    margin: 0 0 20px;
    color: #5d170f;
    font-size: 1.22rem;
    line-height: 1.28;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card__actions {
    gap: 12px;
    margin-top: auto;
    padding: 0;
}

.btn {
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 0;
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    line-height: 1;
}

.btn--dark {
    background: #65160f;
    color: #ffffff;
    border-color: #65160f;
}

.btn--dark:hover {
    background: #4d0d09;
    border-color: #4d0d09;
    color: #ffffff;
}

.btn--light {
    background: #f1e2dc;
    color: #65160f;
    border-color: #f1e2dc;
}

.btn--light:hover {
    background: #ead6cf;
    border-color: #ead6cf;
}

.product-list {
    gap: 22px;
}

.product-card {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    background: var(--color-surface);
    border: 1px solid #ead7cf;
    border-radius: 4px;
    box-shadow: 0 10px 28px rgba(74, 22, 17, 0.06);
    min-height: 214px;
    overflow: hidden;
}

.product-card__media {
    background: #ddd3cc;
}

.product-card__media img {
    object-fit: cover;
}

.product-card__content {
    min-height: 214px;
    padding: 20px 22px 18px;
    gap: 14px;
    background: var(--color-surface);
}

.product-card__header {
    gap: 20px;
}

.product-card__title {
    margin-bottom: 12px;
    color: #55120c;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.95rem;
    line-height: 1.02;
    font-weight: 500;
}

.product-card__desc,
.product-card__excerpt {
    color: #53342b;
    font-size: 0.98rem;
    line-height: 1.48;
}

.product-card__excerpt {
    margin-bottom: 4px;
    font-weight: 600;
}

.product-card__tags {
    gap: 6px;
    margin-top: 2px;
}

.tag {
    border-color: #c4a8a0;
    background: #ffffff;
    color: #73453b;
    padding: 3px 9px;
    font-size: 0.64rem;
    letter-spacing: 0.02em;
}

.product-card__price {
    min-width: 126px;
    padding: 12px 14px;
    background: var(--color-price);
    text-align: center;
}

.price-from {
    color: #8b6056;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.price-value {
    margin-top: 4px;
    color: #5d170f;
    font-size: 2.2rem;
    line-height: 1;
}

.product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "toggle cta"
        "details details";
    align-items: center;
    column-gap: 24px;
    row-gap: 12px;
}

.product-card__cta {
    min-width: 150px;
    grid-area: cta;
    align-self: center;
    justify-self: end;
}

.product-card__toggle {
    display: inline-flex;
    color: #5d170f;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    grid-area: toggle;
    justify-self: start;
    align-self: center;
}

.product-card__toggle::after {
    width: 7px;
    height: 7px;
    border-width: 1.5px;
}

.product-card__details-body {
    grid-area: details;
    margin-top: 0;
    padding: 13px 18px 15px;
    background: #f4e7e4;
    color: #503229;
    font-size: 0.94rem;
    line-height: 1.46;
}

.product-card__details-body[hidden] {
    display: none !important;
}

.product-card.is-details-open .product-card__toggle {
    visibility: hidden;
}

.product-card__details-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #e0c9c1;
    color: #5d170f;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
}

.product-card__details-heading::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-135deg);
}

.product-card__details-list {
    margin: 0;
    padding-left: 18px;
}

.product-card__details-list li {
    margin: 0 0 7px;
}

.product-card__details-list li:last-child {
    margin-bottom: 0;
}

.product-card__details-body p {
    margin: 0 0 10px;
}

.product-card__details-body p:last-child {
    margin-bottom: 0;
}

.carousel-control {
    width: 28px;
    height: 28px;
    background: rgba(88, 110, 103, 0.85);
    font-size: 1rem;
}

.carousel-control:hover {
    background: rgba(88, 110, 103, 1);
}

.carousel-control--prev {
    left: 10px;
}

.carousel-control--next {
    right: 10px;
}

.product-card__carousel {
    left: 12px;
    bottom: 12px;
    gap: 5px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
}

.modal__dialog {
    width: min(92vw, 720px);
    background: #f3e7e1;
    border-radius: 6px;
    padding: 24px 24px 20px;
    box-shadow: 0 28px 60px rgba(37, 10, 8, 0.36);
}

.modal__close {
    background: #ffffff;
    color: #7a5449;
}

.modal__title {
    color: #55120c;
    font-size: 2.15rem;
    line-height: 1.1;
}

.modal__subtitle {
    color: #6e4c43;
    margin-bottom: 16px;
    font-size: 1rem;
}

.modal__list {
    gap: 10px;
}

.modal__row {
    background: #ffffff;
    border: 1px solid #e5d7d0;
    border-radius: 3px;
    padding: 13px 16px;
}

.modal__row-title {
    margin: 0;
    color: #4c2c24;
    font-size: 1.04rem;
    font-weight: 500;
}

.modal__row-price {
    color: #65160f;
    font-size: 1.04rem;
    font-weight: 700;
}

.modal__qty-select {
    width: 48px;
    height: 32px;
    border: 1px solid #d7c3bc;
    border-radius: 2px;
    background: #fffdfa;
    font-size: 0.82rem;
}

.modal__footer {
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
}

.modal__total-tickets {
    color: #51150f;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modal__total-label {
    color: #5f3f36;
    font-size: 1rem;
}

.modal__add {
    min-width: 134px;
}

.basket-panel__drawer {
    width: min(92vw, 340px);
    background: #fff7f4;
}

.basket-panel__top,
.basket-panel__footer {
    background: #65160f;
}

.basket-panel__content {
    padding: 18px 16px 14px;
}

.basket-panel__meta {
    color: #7f574d;
    margin-bottom: 14px;
}

.basket-panel__venue {
    color: #6b1a13;
    text-transform: uppercase;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
}

.basket-panel__day {
    color: #5b190f;
    font-weight: 700;
    margin-top: 2px;
    font-size: 1rem;
}

.basket-panel__group + .basket-panel__group {
    border-top: 1px solid #e5d6cf;
    padding-top: 12px;
}

.basket-panel__group-date {
    color: #a36c34;
}

.basket-panel__group-title,
.basket-panel__item-title {
    color: #5d170f;
}

.basket-panel__item {
    border-bottom: 1px solid #ead8d2;
    padding-bottom: 12px;
}

.basket-panel__item-sub {
    color: #6a4d45;
}

.basket-panel__item-total {
    color: #65160f;
}

.remove-link-icon,
.basket-item__remove {
    color: #8b594b;
}

.remove-link-icon__glyph,
.basket-item__remove-icon {
    font-size: 1.1rem;
}

.basket-panel__cta {
    background: #f1ccd1;
    border-color: #f1ccd1;
    color: #65160f;
}

.basket-panel__cta:hover {
    background: #eabdc3;
    border-color: #eabdc3;
    color: #65160f;
}

.basket-hero {
    gap: 18px;
    margin-bottom: 30px;
}

.basket-hero__line {
    background: #b27f40;
    max-width: 160px;
    height: 1px;
}

.basket-hero__title {
    color: #5d170f;
    font-size: clamp(2.25rem, 4vw, 3.2rem);
}

.basket-layout,
.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
    align-items: start;
}

.basket-day {
    color: #5d170f;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.basket-card {
    background: #f6e9e4;
    border: none;
    border-radius: 4px;
    padding: 22px 22px 18px;
}

.basket-card__summary {
    margin-bottom: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dcc8c0;
}

.basket-card__meta {
    color: #9b7566;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.basket-card__title {
    color: #5d170f;
    font-size: 1.38rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-transform: none;
}

.basket-card__subtitle {
    color: #6f5149;
    font-size: 1rem;
}

.basket-group + .basket-group {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #dcc8c0;
}

.basket-group__date {
    color: #a36c34;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.basket-group__title {
    margin-top: 6px;
    margin-bottom: 10px;
    color: #5d170f;
    font-size: 1.38rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.basket-item {
    align-items: flex-start;
    border-bottom: 1px solid #dfcdc6;
    padding: 14px 0;
}

.basket-item__title {
    color: #5d170f;
    font-weight: 600;
    font-size: 1.08rem;
    text-transform: uppercase;
}

.basket-item__price {
    color: #7b5d53;
    font-size: 0.84rem;
}

.basket-item__qty,
.basket-item__select {
    width: 52px;
    height: 28px;
    border: 1px solid #d8c7bf;
    border-radius: 2px;
    font-size: 0.75rem;
}

.basket-item__total {
    min-width: 72px;
    color: #5d170f;
    font-weight: 700;
    font-size: 1.12rem;
}

.basket-subtotal {
    margin-top: 18px;
    padding-top: 6px;
    color: #5d170f;
    font-size: 1.08rem;
}

.basket-summary,
.checkout-summary {
    background: #65160f;
    color: #ffffff;
    border-radius: 4px;
    padding: 20px 18px;
    box-shadow: none;
}

.basket-summary__total,
.summary-total {
    margin-bottom: 16px;
    text-align: left;
    gap: 8px;
}

.basket-summary__total-row,
.summary-total__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.basket-summary__total-row span:first-child,
.summary-total__row span:first-child {
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.32;
}

.basket-summary__total strong,
.summary-total strong {
    font-size: 1.62rem;
    line-height: 1;
}

.basket-summary__total-meta,
.basket-summary__note,
.summary-meta {
    color: rgba(255, 255, 255, 0.78);
}

.basket-summary__total-meta,
.summary-meta {
    margin-top: 6px;
    font-size: 0.9rem;
}

.basket-summary__note,
.summary-note {
    font-size: 0.84rem;
    line-height: 1.55;
}

.basket-summary__note a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.summary-panel {
    background: #fff7f4;
    color: #55120c;
    border-radius: 2px;
    padding: 18px;
}

.summary-panel__title {
    color: #51150f;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.summary-panel__date,
.summary-panel__group-title {
    color: #57160f;
}

.summary-panel__group + .summary-panel__group {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e3d3cc;
}

.summary-panel__group-date {
    color: #a46c35;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.summary-panel__group-title {
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.summary-panel__item-title {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.summary-panel__item-sub,
.summary-panel__item-price,
.summary-panel__item-total {
    font-size: 0.82rem;
}

.summary-panel__item {
    align-items: flex-start;
    gap: 10px;
}

.summary-panel__item-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.summary-panel__link {
    color: #7b4f44;
    border-bottom-color: rgba(123, 79, 68, 0.4);
}

.summary-panel__section,
.summary-panel__total {
    border-top: 1px solid #e3d3cc;
}

.checkout-main {
    display: grid;
    gap: 24px;
}

.checkout-block + .checkout-block {
    margin-top: 0;
}

.checkout-title {
    color: #4f160f;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.checkout-card {
    background: #f6e9e4;
    padding: 18px;
    border-radius: 2px;
}

.checkout-card--compact {
    max-width: 340px;
}

.checkout-field {
    gap: 5px;
}

.checkout-label {
    color: #5f3126;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.checkout-input {
    border: 1px solid #dcc8c0;
    border-radius: 2px;
    min-height: 44px;
    padding: 10px 12px;
    background: #ffffff;
    font-size: 0.96rem;
}

.checkout-dob {
    gap: 8px;
}

.checkout-dob .checkout-input {
    width: 58px;
}

.checkout-dob .checkout-input:last-child {
    width: 72px;
}

.checkout-wallets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.checkout-wallet {
    min-height: 42px;
    border: 1px solid #7a221a;
    background: #ffffff;
    color: #31120e;
    font-size: 0.96rem;
    border-radius: 2px;
    cursor: pointer;
}

.checkout-wallet--apple {
    font-weight: 600;
    font-size: 1rem;
}

.checkout-wallet--google span {
    color: #4285f4;
    font-weight: 700;
}

.checkout-input--stripe {
    min-height: 46px;
    padding: 12px 14px;
}

.checkout-optin {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #6f5149;
    font-size: 0.82rem;
}

.checkout-optin input {
    margin: 3px 0 0;
}

.checkout-legal {
    margin-top: 14px;
    font-size: 0.84rem;
    color: #6f5149;
}

.checkout-pay,
.checkout-apply {
    justify-content: center;
}

.checkout-apply {
    width: 132px;
}

.summary-total strong,
.summary-panel__total strong {
    color: #55120c;
}

.checkout-summary .summary-total strong,
.checkout-summary .summary-meta,
.basket-summary__total strong {
    color: #ffffff;
}

.modal__actions .btn--light,
.basket-summary__cta.btn--light {
    background: #fff7f4;
    border-color: #fff7f4;
    color: #65160f;
}

.basket-summary__cancel {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
    .ticketing-footer__inner,
    .hero__content {
        padding-left: 32px;
        padding-right: 32px;
    }

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card {
        grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    }
}

@media (max-width: 860px) {
    .hero__title,
    .hero__title--small {
        max-width: 80%;
    }

    .page--home .hero__content {
        justify-content: flex-start;
        min-height: 320px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page--home .hero__title {
        margin: 0;
        text-align: left;
    }

    .product-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-card__media {
        min-height: 220px;
    }

    .product-card__content {
        min-height: 0;
    }

    .basket-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-card--compact {
        max-width: none;
    }

    .ticketing-footer__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .ticketing-footer__contact {
        width: auto;
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .ticketing-header__inner,
    .hero__content,
    .ticketing-footer__inner,
    .ticketing-footer__bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ticketing-header__logo img {
        height: 30px;
    }

    .ticketing-header__home {
        display: none;
    }

    .hero {
        min-height: 260px;
    }

    .hero--home {
        min-height: 320px;
    }

    .hero__title,
    .hero__title--small {
        max-width: 100%;
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .event-card__title {
        min-height: 0;
        font-size: 0.94rem;
    }

    .event-card__actions {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .btn {
        min-height: 38px;
        padding: 10px 12px;
        font-size: 0.62rem;
    }

    .product-card__actions {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .product-card__cta {
        min-width: 0;
        width: 100%;
    }

    .product-card__price {
        min-width: 92px;
    }

    .checkout-wallets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}
