/* ═══════════════════════════════════════════════
 *  TangoEnVivo Series — Frontend Styles (Dark Theme)
 *
 *  Designed for the Storefront/gtango dark theme.
 *  Inter font is loaded by the gtango theme — no @import needed.
 * ═══════════════════════════════════════════════ */

:root {
    /* ── Typography ── */
    --tevs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* ── Dark palette ── */
    --tevs-bg-base: #0a0a0a;
    --tevs-bg-raised: #111111;
    --tevs-bg-surface: #161616;
    --tevs-bg-elevated: #1c1c1c;
    --tevs-bg-hover: #222222;

    /* ── Text ── */
    --tevs-text-primary: #ebebeb;
    --tevs-text-secondary: #a0a0a0;
    --tevs-text-muted: #666666;

    /* ── Accent (gold) ── */
    --tevs-accent: #c9a84c;
    --tevs-accent-dark: #a88a38;
    --tevs-accent-light: rgba(201, 168, 76, 0.15);
    --tevs-accent-glow: rgba(201, 168, 76, 0.25);

    /* ── Borders ── */
    --tevs-border: rgba(255, 255, 255, 0.06);
    --tevs-border-hover: rgba(255, 255, 255, 0.12);
    --tevs-border-accent: rgba(201, 168, 76, 0.35);

    /* ── Status ── */
    --tevs-green: #22c55e;
    --tevs-green-bg: rgba(34, 197, 94, 0.12);
    --tevs-red: #ef4444;
    --tevs-red-bg: rgba(239, 68, 68, 0.12);

    /* ── Layout ── */
    --tevs-radius: 12px;
    --tevs-radius-sm: 8px;
    --tevs-radius-xs: 6px;
    --tevs-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --tevs-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --tevs-max-width: 960px;
    --tevs-transition: 0.2s ease;
}

/* ═══════════ RESET / BASE ═══════════ */
.tevs-series-page {
    font-family: var(--tevs-font);
    color: var(--tevs-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tevs-series-page *,
.tevs-series-page *::before,
.tevs-series-page *::after {
    box-sizing: border-box;
}

/* ═══════════ HERO ═══════════ */
.tevs-hero {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: var(--tevs-text-primary);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.tevs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.tevs-hero__inner {
    max-width: var(--tevs-max-width);
    margin: 0 auto;
    padding: 56px 24px 64px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero image */
.tevs-hero__image-wrap {
    border-radius: var(--tevs-radius);
    overflow: hidden;
    box-shadow: var(--tevs-shadow-lg), 0 0 60px rgba(201, 168, 76, 0.08);
    aspect-ratio: 1;
    animation: tevs-fadeScale 0.6s ease-out both;
}

.tevs-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tevs-hero__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: tevs-fadeUp 0.5s ease-out 0.15s both;
}

/* Breadcrumbs */
.tevs-breadcrumbs {
    font-size: 13px;
    color: var(--tevs-text-muted);
}

.tevs-breadcrumbs a {
    color: var(--tevs-text-muted);
    text-decoration: none;
    transition: color var(--tevs-transition);
}

.tevs-breadcrumbs a:hover {
    color: var(--tevs-accent);
}

.tevs-breadcrumbs__sep {
    margin: 0 6px;
    opacity: 0.4;
}

.tevs-breadcrumbs__current {
    color: var(--tevs-text-secondary);
}

/* Hero title */
.tevs-hero__title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--tevs-text-primary);
}

.tevs-hero__excerpt {
    font-size: 16px;
    color: var(--tevs-text-secondary);
    margin: 4px 0 0;
    line-height: 1.55;
}

/* Hero meta */
.tevs-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.tevs-hero__next-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--tevs-text-secondary);
}

.tevs-hero__next-date svg {
    color: var(--tevs-accent);
    flex-shrink: 0;
}

.tevs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tevs-hero__badge--upcoming {
    background: var(--tevs-green-bg);
    color: var(--tevs-green);
}

.tevs-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tevs-hero__rating-text {
    font-size: 13px;
    color: var(--tevs-text-muted);
}

/* Hero pricing */
.tevs-hero__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

.tevs-hero__price-from {
    font-size: 14px;
    color: var(--tevs-text-muted);
    text-transform: lowercase;
}

.tevs-hero__price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--tevs-text-primary);
    letter-spacing: -0.01em;
}

.tevs-hero__price-amount .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* Hero CTA */
.tevs-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--tevs-accent);
    color: #0a0a0a;
    border-radius: var(--tevs-radius-sm);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--tevs-transition);
    align-self: flex-start;
    letter-spacing: 0.02em;
    position: relative;
}

.tevs-hero__cta:hover {
    background: var(--tevs-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--tevs-accent-glow);
    color: #0a0a0a;
}

.tevs-hero__cta svg {
    transition: transform 0.3s ease;
}

.tevs-hero__cta:hover svg {
    transform: translateY(2px);
}

/* ═══════════ SECTION TITLES ═══════════ */
.tevs-section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tevs-text-primary);
}

.tevs-section-title--muted {
    color: var(--tevs-text-muted);
    font-size: 16px;
    font-weight: 600;
}

.tevs-section-title svg {
    flex-shrink: 0;
    color: var(--tevs-accent);
}

/* ═══════════ SECTIONS — Common ═══════════ */
.tevs-dates,
.tevs-past-dates,
.tevs-description,
.tevs-reviews,
.tevs-share {
    padding: 56px 24px;
}

.tevs-dates__inner,
.tevs-past-dates__inner,
.tevs-description__inner,
.tevs-reviews__inner,
.tevs-share__inner {
    max-width: var(--tevs-max-width);
    margin: 0 auto;
}

/* ═══════════ DATES SECTION ═══════════ */
.tevs-dates {
    background: var(--tevs-bg-base);
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

.tevs-dates__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Date Card ── */
.tevs-date-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 20px 24px;
    background: var(--tevs-bg-surface);
    border: 1px solid var(--tevs-border);
    border-radius: var(--tevs-radius);
    transition: all 0.25s ease;
}

.tevs-date-card:hover {
    border-color: var(--tevs-border-accent);
    box-shadow: 0 0 0 1px var(--tevs-border-accent), var(--tevs-shadow);
    transform: translateY(-2px);
}

.tevs-date-card--past {
    opacity: 0.45;
    background: var(--tevs-bg-raised);
}

.tevs-date-card--past:hover {
    border-color: var(--tevs-border-hover);
    box-shadow: none;
    transform: none;
}

/* ── Date Chip (visual calendar block) ── */
.tevs-date-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    padding: 10px 8px;
    background: var(--tevs-bg-elevated);
    border: 1px solid var(--tevs-border);
    border-radius: var(--tevs-radius-sm);
    line-height: 1;
    text-align: center;
    transition: border-color var(--tevs-transition);
}

.tevs-date-card:hover .tevs-date-chip {
    border-color: var(--tevs-border-accent);
}

.tevs-date-chip__day {
    font-size: 11px;
    font-weight: 600;
    color: var(--tevs-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.tevs-date-chip__num {
    font-size: 28px;
    font-weight: 800;
    color: var(--tevs-text-primary);
    line-height: 1.1;
}

.tevs-date-chip__month {
    font-size: 11px;
    font-weight: 600;
    color: var(--tevs-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.tevs-date-card__date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.tevs-date-card__time {
    font-size: 12px;
    color: var(--tevs-text-muted);
    text-align: center;
}

.tevs-date-card__info-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tevs-date-card__venue {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--tevs-text-secondary);
}

.tevs-date-card__venue svg {
    flex-shrink: 0;
    color: var(--tevs-text-muted);
}

.tevs-date-card__tickets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tevs-date-card__ticket {
    font-size: 13px;
    color: var(--tevs-text-secondary);
    padding: 3px 10px;
    background: var(--tevs-bg-elevated);
    border: 1px solid var(--tevs-border);
    border-radius: var(--tevs-radius-xs);
}

.tevs-date-card__soldout {
    color: var(--tevs-red);
    font-style: normal;
    font-weight: 600;
    margin-left: 4px;
}

.tevs-date-card__action-col {
    display: flex;
    align-items: center;
}

/* ── Buttons ── */
.tevs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--tevs-radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.tevs-btn--primary {
    background: var(--tevs-accent);
    color: #0a0a0a;
}

.tevs-btn--primary:hover {
    background: var(--tevs-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--tevs-accent-glow);
    color: #0a0a0a;
}

.tevs-btn--primary svg {
    transition: transform 0.2s ease;
}

.tevs-btn--primary:hover svg {
    transform: translateX(3px);
}

/* ── Badges ── */
.tevs-badge--soldout-lg {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--tevs-radius-sm);
    font-size: 13px;
    font-weight: 700;
    background: var(--tevs-red-bg);
    color: var(--tevs-red);
    letter-spacing: 0.03em;
}

.tevs-badge--finished {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--tevs-radius-xs);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--tevs-text-muted);
}

/* ═══════════ PAST DATES ═══════════ */
.tevs-past-dates {
    background: var(--tevs-bg-raised);
    padding-top: 0;
}

.tevs-past-dates__toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: left;
    color: inherit;
}

.tevs-past-dates__toggle:hover .tevs-section-title--muted {
    color: var(--tevs-text-secondary);
}

.tevs-past-dates__chevron {
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.tevs-past-dates__toggle[aria-expanded="true"] .tevs-past-dates__chevron {
    transform: rotate(180deg);
}

.tevs-past-dates__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.tevs-past-dates__list[hidden] {
    display: none;
}

/* ═══════════ DESCRIPTION ═══════════ */
.tevs-description {
    background: var(--tevs-bg-base);
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.tevs-description__body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--tevs-text-secondary);
}

.tevs-description__body p {
    margin: 0 0 16px;
}

.tevs-description__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--tevs-radius-sm);
    margin: 16px 0;
}

/* Override inline styles from wp_editor content */
.tevs-description__body [style] {
    color: inherit !important;
    font-family: inherit !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.tevs-description__body div[style*="border-bottom"] {
    border-bottom-color: var(--tevs-border-hover) !important;
    color: var(--tevs-text-primary) !important;
    font-family: var(--tevs-font) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    padding-bottom: 12px !important;
    margin-bottom: 24px !important;
}

.tevs-description__body div[style*="color: #aaa"] {
    color: var(--tevs-accent) !important;
    font-family: var(--tevs-font) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

/* ═══════════ REVIEWS ═══════════ */
.tevs-reviews {
    background: var(--tevs-bg-raised);
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
}

.tevs-reviews--minimal {
    padding: 24px;
}

.tevs-reviews__count {
    font-weight: 400;
    color: var(--tevs-text-muted);
    font-size: 18px;
}

.tevs-reviews__summary {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--tevs-bg-surface);
    border-radius: var(--tevs-radius);
    border: 1px solid var(--tevs-border);
}

.tevs-reviews__avg {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tevs-reviews__avg-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--tevs-accent);
    line-height: 1;
}

.tevs-reviews__avg-stars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tevs-reviews__avg-label {
    font-size: 13px;
    color: var(--tevs-text-muted);
}

/* Stars */
.tevs-stars {
    display: inline-flex;
    gap: 2px;
}

.tevs-star {
    color: var(--tevs-accent);
}

.tevs-star--empty {
    color: var(--tevs-text-muted);
    opacity: 0.4;
}

.tevs-star--half {
    color: var(--tevs-accent);
}

/* Review cards */
.tevs-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tevs-review {
    background: var(--tevs-bg-surface);
    border: 1px solid var(--tevs-border);
    border-radius: var(--tevs-radius);
    padding: 20px 24px;
}

.tevs-review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.tevs-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tevs-review__avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.tevs-review__name {
    display: block;
    font-size: 14px;
    color: var(--tevs-text-primary);
}

.tevs-review__date {
    display: block;
    font-size: 12px;
    color: var(--tevs-text-muted);
}

.tevs-review__rating {
    display: flex;
    gap: 1px;
}

.tevs-review__body {
    font-size: 14px;
    color: var(--tevs-text-secondary);
    line-height: 1.6;
}

.tevs-review__body p {
    margin: 0;
}

.tevs-reviews__empty {
    text-align: center;
    color: var(--tevs-text-muted);
    padding: 32px 0;
    font-size: 15px;
}

.tevs-reviews__login-notice {
    text-align: center;
    color: var(--tevs-text-muted);
    padding: 16px 0;
    font-size: 14px;
}

.tevs-reviews__login-notice a {
    color: var(--tevs-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tevs-reviews__login-notice a:hover {
    color: var(--tevs-accent-dark);
}

/* ── Review Form ── */
.tevs-reviews__form-wrap {
    margin-top: 32px;
    padding: 24px;
    background: var(--tevs-bg-surface);
    border: 1px solid var(--tevs-border);
    border-radius: var(--tevs-radius);
}

.tevs-reviews__form-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--tevs-text-primary);
}

.tevs-review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.tevs-review-form .tevs-btn--primary {
    align-self: center;
}

.tevs-review-form__rating > label:first-child {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tevs-text-secondary);
}

.tevs-star-rating-input {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4px;
    align-items: center;
}

.tevs-star-rating-input__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tevs-star-rating-input__label {
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    float: none !important;
}

.tevs-star-rating-input__star {
    fill: rgba(255, 255, 255, 0.1);
    stroke: none;
    transition: fill 0.15s, transform 0.15s;
}

.tevs-star-rating-input__star--active,
.tevs-star-rating-input__label:hover .tevs-star-rating-input__star {
    fill: var(--tevs-accent);
    transform: scale(1.1);
}

.tevs-review-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tevs-text-secondary);
}

.tevs-review-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--tevs-border-hover);
    border-radius: var(--tevs-radius-sm);
    font-family: var(--tevs-font);
    font-size: 14px;
    resize: vertical;
    transition: border-color var(--tevs-transition), box-shadow var(--tevs-transition);
    background: var(--tevs-bg-elevated);
    color: var(--tevs-text-primary);
}

.tevs-review-form__field textarea::placeholder {
    color: var(--tevs-text-muted);
}

.tevs-review-form__field textarea:focus {
    outline: none;
    border-color: var(--tevs-accent);
    box-shadow: 0 0 0 3px var(--tevs-accent-light);
}

/* Guest fields (name/email) */
.tevs-review-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 4px;
}

@media (max-width: 600px) {
    .tevs-review-form__row {
        grid-template-columns: 1fr;
    }
}

.tevs-review-form__field input[type="text"],
.tevs-review-form__field input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--tevs-border-hover);
    border-radius: var(--tevs-radius-sm);
    font-family: var(--tevs-font);
    font-size: 14px;
    transition: border-color var(--tevs-transition), box-shadow var(--tevs-transition);
    background: var(--tevs-bg-elevated);
    color: var(--tevs-text-primary);
}

.tevs-review-form__field input[type="text"]::placeholder,
.tevs-review-form__field input[type="email"]::placeholder {
    color: var(--tevs-text-muted);
}

.tevs-review-form__field input[type="text"]:focus,
.tevs-review-form__field input[type="email"]:focus {
    outline: none;
    border-color: var(--tevs-accent);
    box-shadow: 0 0 0 3px var(--tevs-accent-light);
}

.tevs-review-form__hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--tevs-text-muted);
}

.tevs-review-form__field .required {
    color: #e74c3c;
}

/* Honeypot — visually hidden */
.tevs-review-form__hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* AJAX feedback message */
.tevs-review-form__message {
    padding: 14px 18px;
    border-radius: var(--tevs-radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.tevs-review-form__message--success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.tevs-review-form__message--error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Turnstile widget */
.cf-turnstile {
    margin-bottom: 16px;
}

/* Submit button disabled state */
.tevs-btn--primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ═══════════ SHARE ═══════════ */
.tevs-share {
    background: var(--tevs-bg-base);
    border-top: 1px solid var(--tevs-border);
    padding: 36px 24px;
}

.tevs-share__title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--tevs-text-muted);
}

.tevs-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tevs-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--tevs-radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--tevs-font);
    text-decoration: none;
    border: 1px solid var(--tevs-border-hover);
    background: var(--tevs-bg-surface);
    color: var(--tevs-text-secondary);
    cursor: pointer;
    transition: all var(--tevs-transition);
}

.tevs-share__btn:hover {
    border-color: var(--tevs-border-accent);
    color: var(--tevs-text-primary);
}

.tevs-share__btn--whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.tevs-share__btn--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

.tevs-share__btn--twitter:hover {
    background: var(--tevs-text-primary);
    color: var(--tevs-bg-base);
    border-color: var(--tevs-text-primary);
}

.tevs-share__btn--copy.tevs-share__btn--copied {
    background: var(--tevs-green-bg);
    border-color: var(--tevs-green);
    color: var(--tevs-green);
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes tevs-fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tevs-fadeScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════ ACCESSIBILITY ═══════════ */
@media (prefers-reduced-motion: reduce) {
    .tevs-hero__image-wrap,
    .tevs-hero__content,
    .tevs-date-card,
    .tevs-btn,
    .tevs-hero__cta,
    .tevs-hero__cta svg,
    .tevs-btn--primary svg,
    .tevs-past-dates__chevron,
    .tevs-star-rating-input__star,
    .tevs-share__btn {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus-visible outlines for keyboard navigation */
.tevs-btn:focus-visible,
.tevs-share__btn:focus-visible,
.tevs-hero__cta:focus-visible,
.tevs-past-dates__toggle:focus-visible,
.tevs-review-form__field textarea:focus-visible {
    outline: 2px solid var(--tevs-accent);
    outline-offset: 2px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
    .tevs-hero__inner {
        grid-template-columns: 1fr;
        padding: 32px 20px 40px;
        gap: 24px;
    }

    .tevs-hero__image-wrap {
        max-width: 240px;
        margin: 0 auto;
    }

    .tevs-hero__title {
        text-align: center;
    }

    .tevs-hero__content {
        align-items: center;
        text-align: center;
    }

    .tevs-hero__meta {
        justify-content: center;
    }

    .tevs-hero__price {
        justify-content: center;
    }

    .tevs-hero__cta {
        align-self: center;
    }

    .tevs-date-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .tevs-date-card__date-col {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .tevs-date-chip {
        width: 64px;
        flex-shrink: 0;
    }

    .tevs-date-card__action-col {
        justify-content: stretch;
    }

    .tevs-date-card__action-col .tevs-btn {
        width: 100%;
        justify-content: center;
    }

    .tevs-reviews__avg {
        flex-direction: column;
        text-align: center;
    }

    .tevs-reviews__avg-stars {
        align-items: center;
    }

    .tevs-dates,
    .tevs-past-dates,
    .tevs-description,
    .tevs-reviews,
    .tevs-share {
        padding: 36px 16px;
    }
}
