/*
 * =====================================================
 * DUBAI FRAME - Official Ticketing Website
 * Premium Black & Gold Theme v1.0
 * Bilingual EN/AR Support
 * =====================================================
 */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Brand Colors - Black & Gold Theme */
  --df-gold: #C9A962;
  --df-gold-light: #D4B87A;
  --df-gold-dark: #A68B4D;
  
  /* Black Theme */
  --df-black: #000000;
  --df-black-light: #1A1A1A;
  --df-black-lighter: #2A2A2A;
  
  /* Accent */
  --df-white: #FFFFFF;
  --df-gray-100: #F5F5F5;
  --df-gray-200: #E5E5E5;
  --df-gray-300: #CCCCCC;
  --df-gray-500: #888888;
  --df-gray-700: #555555;
  --df-gray-900: #222222;
  
  /* Typography */
  --df-font-display: 'Playfair Display', Georgia, serif;
  --df-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --df-font-arabic: 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  
  /* Spacing */
  --df-space-xs: 0.25rem;
  --df-space-sm: 0.5rem;
  --df-space-md: 1rem;
  --df-space-lg: 1.5rem;
  --df-space-xl: 2rem;
  --df-space-2xl: 3rem;
  --df-space-3xl: 4rem;
  
  /* Border Radius */
  --df-radius-sm: 4px;
  --df-radius-md: 8px;
  --df-radius-lg: 12px;
  --df-radius-xl: 20px;
  --df-radius-full: 50px;
  
  /* Shadows */
  --df-shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --df-shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --df-shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
  --df-shadow-gold: 0 4px 15px rgba(201, 169, 98, 0.4);
  
  /* Transitions */
  --df-transition: all 0.3s ease;
  
  /* Layout */
  --df-promo-height: 48px;
  --df-header-height: 70px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--df-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--df-white);
  background: var(--df-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
  font-family: var(--df-font-arabic);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--df-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==================== CONTAINER ==================== */
.df-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--df-space-lg);
}

/* ==================== PROMO BANNER ==================== */
.df-promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--df-promo-height);
  background: linear-gradient(135deg, var(--df-gold) 0%, var(--df-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--df-space-md);
  padding: 0 var(--df-space-md);
  color: var(--df-black);
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

.df-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: promo-shine 3s infinite;
}

@keyframes promo-shine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.df-promo-banner__icon {
  font-size: 1.2rem;
}

.df-promo-banner__text {
  font-weight: 700;
}

.df-promo-banner__discount {
  background: var(--df-black);
  color: var(--df-gold);
  padding: 4px 12px;
  border-radius: var(--df-radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
}

.df-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--df-space-sm);
  background: rgba(0,0,0,0.2);
  padding: 4px 14px;
  border-radius: var(--df-radius-full);
  font-weight: 600;
}

.df-promo-banner__timer span:last-child {
  font-family: var(--df-font-display);
  font-weight: 700;
  min-width: 45px;
  font-size: 1rem;
}

/* ==================== HEADER ==================== */
.df-header {
  position: fixed;
  top: var(--df-promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--df-header-height);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.df-header--scrolled {
  box-shadow: var(--df-shadow-md);
}

.df-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.df-header__logo {
  display: flex;
  align-items: center;
  gap: var(--df-space-md);
}

.df-header__logo img {
  height: 50px;
  width: auto;
}

.df-header__logo-text {
  display: flex;
  flex-direction: column;
  color: var(--df-white);
}

.df-header__logo-text span {
  font-family: var(--df-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--df-gold);
}

.df-header__logo-text small {
  font-size: 0.7rem;
  color: var(--df-gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.df-header__nav {
  display: flex;
  align-items: center;
  gap: var(--df-space-xl);
}

.df-header__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--df-space-sm) 0;
  position: relative;
}

.df-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--df-gold);
  transition: var(--df-transition);
}

.df-header__link:hover,
.df-header__link--active {
  color: var(--df-gold);
}

.df-header__link:hover::after,
.df-header__link--active::after {
  width: 100%;
}

/* Header Actions */
.df-header__actions {
  display: flex;
  align-items: center;
  gap: var(--df-space-lg);
}

/* Language Switch */
.df-lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--df-radius-full);
  padding: 3px;
}

.df-lang-btn {
  padding: 6px 14px;
  border-radius: var(--df-radius-full);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--df-transition);
}

.df-lang-btn:hover {
  color: var(--df-white);
}

.df-lang-btn--active {
  background: var(--df-gold);
  color: var(--df-black);
}

/* Mobile Menu Button */
.df-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--df-space-sm);
}

.df-header__menu span {
  width: 24px;
  height: 2px;
  background: var(--df-white);
  transition: var(--df-transition);
}

/* ==================== BUTTONS ==================== */
.df-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--df-space-sm);
  padding: 12px 28px;
  border-radius: var(--df-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--df-transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.df-btn--primary {
  background: linear-gradient(135deg, var(--df-gold-light) 0%, var(--df-gold) 50%, var(--df-gold-dark) 100%);
  color: var(--df-black);
  box-shadow: var(--df-shadow-gold);
}

.df-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.5);
}

.df-btn--outline {
  background: transparent;
  border-color: var(--df-gold);
  color: var(--df-gold);
}

.df-btn--outline:hover {
  background: var(--df-gold);
  color: var(--df-black);
}

.df-btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.df-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.df-btn--block {
  width: 100%;
}

/* ==================== HERO SECTION ==================== */
.df-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--df-promo-height) + var(--df-header-height) + var(--df-space-2xl));
  padding-bottom: var(--df-space-3xl);
  overflow: hidden;
}

.df-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/hero-frame.jpg') center center / cover no-repeat;
}

.df-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.df-hero__content {
  text-align: center;
  color: var(--df-white);
  max-width: 900px;
  padding: 0 var(--df-space-lg);
}

.df-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--df-space-sm);
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.4);
  padding: var(--df-space-sm) var(--df-space-lg);
  border-radius: var(--df-radius-full);
  font-size: 0.9rem;
  color: var(--df-gold);
  margin-bottom: var(--df-space-xl);
}

.df-hero__title {
  font-family: var(--df-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--df-space-lg);
}

.df-hero__title span {
  display: block;
}

.df-hero__title-accent {
  background: linear-gradient(135deg, var(--df-gold-light), var(--df-gold), var(--df-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.df-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto var(--df-space-2xl);
  line-height: 1.8;
}

.df-hero__cta {
  display: flex;
  gap: var(--df-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--df-space-3xl);
}

/* Trust Items */
.df-hero__trust {
  display: flex;
  gap: var(--df-space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.df-trust-item {
  display: flex;
  align-items: center;
  gap: var(--df-space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.df-trust-item__icon {
  color: var(--df-gold);
  font-weight: 700;
}

/* ==================== SECTIONS ==================== */
.df-section {
  padding: var(--df-space-3xl) 0;
}

.df-section--dark {
  background: var(--df-black-light);
}

.df-section--gold {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, transparent 100%);
}

/* Section Header */
.df-section-header {
  text-align: center;
  margin-bottom: var(--df-space-2xl);
}

.df-section-header__tag {
  display: inline-block;
  color: var(--df-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--df-space-sm);
}

.df-section-header__title {
  font-family: var(--df-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--df-white);
  margin-bottom: var(--df-space-md);
}

.df-section-header__subtitle {
  color: var(--df-gray-300);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== TICKET CARDS ==================== */
.df-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--df-space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.df-ticket-card {
  position: relative;
  background: var(--df-black-lighter);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  transition: var(--df-transition);
}

.df-ticket-card:hover {
  border-color: var(--df-gold);
  transform: translateY(-5px);
  box-shadow: var(--df-shadow-lg);
}

.df-ticket-card--featured {
  border-color: var(--df-gold);
  box-shadow: var(--df-shadow-gold);
}

.df-ticket-card__badge {
  position: absolute;
  top: var(--df-space-md);
  left: var(--df-space-md);
  background: var(--df-gold);
  color: var(--df-black);
  padding: 4px 12px;
  border-radius: var(--df-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.df-ticket-card__discount {
  position: absolute;
  top: var(--df-space-md);
  right: var(--df-space-md);
  background: #DC2626;
  color: var(--df-white);
  padding: 4px 10px;
  border-radius: var(--df-radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 2;
}

.df-ticket-card__image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.df-ticket-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--df-black-lighter) 100%);
}

.df-ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.df-ticket-card__content {
  padding: var(--df-space-lg);
}

.df-ticket-card__icon {
  font-size: 2rem;
  margin-bottom: var(--df-space-sm);
}

.df-ticket-card__title {
  font-family: var(--df-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--df-white);
  margin-bottom: var(--df-space-sm);
}

.df-ticket-card__desc {
  color: var(--df-gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--df-space-md);
}

.df-ticket-card__includes {
  margin-bottom: var(--df-space-lg);
}

.df-ticket-card__includes li {
  color: var(--df-gray-300);
  font-size: 0.85rem;
  padding: 4px 0;
}

.df-ticket-card__pricing-table {
  margin-bottom: var(--df-space-lg);
}

.df-ticket-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.df-ticket-card__price-row:last-child {
  border-bottom: none;
}

.df-ticket-card__price-row span:first-child {
  color: var(--df-gray-300);
  font-size: 0.9rem;
}

.df-ticket-card__price-row .old {
  color: var(--df-gray-500);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-right: var(--df-space-sm);
}

.df-ticket-card__price-row .now {
  color: var(--df-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==================== FEATURES GRID ==================== */
.df-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--df-space-xl);
}

.df-feature-card {
  text-align: center;
  padding: var(--df-space-xl);
  background: var(--df-black-lighter);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--df-radius-lg);
  transition: var(--df-transition);
}

.df-feature-card:hover {
  border-color: var(--df-gold);
  transform: translateY(-3px);
}

.df-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--df-space-md);
}

.df-feature-card__title {
  font-family: var(--df-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--df-white);
  margin-bottom: var(--df-space-sm);
}

.df-feature-card__desc {
  color: var(--df-gray-300);
  font-size: 0.9rem;
}

/* ==================== PROCESS STEPS ==================== */
.df-process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--df-space-md);
}

.df-process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.df-process-step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--df-gold), var(--df-gold-dark));
  color: var(--df-black);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--df-space-md);
}

.df-process-step h3 {
  font-family: var(--df-font-display);
  font-size: 1.1rem;
  color: var(--df-white);
  margin-bottom: var(--df-space-sm);
}

.df-process-step p {
  color: var(--df-gray-300);
  font-size: 0.9rem;
}

.df-process-arrow {
  color: var(--df-gold);
  font-size: 1.5rem;
  padding-top: 10px;
}

/* ==================== CTA SECTION ==================== */
.df-cta-section {
  position: relative;
  padding: var(--df-space-3xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--df-black-light) 0%, var(--df-black) 100%);
}

.df-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-frame.jpg') center center / cover no-repeat;
  opacity: 0.15;
}

.df-cta-section__content {
  position: relative;
  z-index: 1;
}

.df-cta-section__title {
  font-family: var(--df-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--df-white);
  margin-bottom: var(--df-space-md);
}

.df-cta-section__subtitle {
  color: var(--df-gray-300);
  font-size: 1.1rem;
  margin-bottom: var(--df-space-xl);
}

.df-cta-section__timer {
  display: inline-flex;
  align-items: center;
  gap: var(--df-space-sm);
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: var(--df-space-sm) var(--df-space-lg);
  border-radius: var(--df-radius-full);
  margin-bottom: var(--df-space-xl);
  color: var(--df-gold);
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
.df-footer {
  background: var(--df-black);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding: var(--df-space-3xl) 0 var(--df-space-xl);
}

.df-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--df-space-2xl);
  margin-bottom: var(--df-space-2xl);
}

.df-footer__col h4 {
  font-family: var(--df-font-display);
  font-size: 1.1rem;
  color: var(--df-gold);
  margin-bottom: var(--df-space-md);
}

.df-footer__col p,
.df-footer__col li,
.df-footer__col a {
  color: var(--df-gray-300);
  font-size: 0.9rem;
  line-height: 1.8;
}

.df-footer__col a:hover {
  color: var(--df-gold);
}

.df-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--df-space-md);
  margin-bottom: var(--df-space-md);
}

.df-footer__logo img {
  height: 45px;
}

.df-footer__bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  padding-top: var(--df-space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--df-space-md);
}

.df-footer__bottom p {
  color: var(--df-gray-500);
  font-size: 0.85rem;
}

.df-footer__payments {
  display: flex;
  gap: var(--df-space-sm);
  color: var(--df-gray-500);
  font-size: 0.85rem;
}

/* ==================== MODAL ==================== */
.df-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--df-space-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--df-transition);
}

.df-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.df-modal {
  background: var(--df-black-lighter);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--df-radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 98vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.df-modal__header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  position: relative;
}

.df-modal__logo-wrap {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.df-modal__logo {
  height: 32px;
  width: auto;
}

.df-modal__header h2 {
  font-family: var(--df-font-display);
  font-size: 1.1rem;
  color: var(--df-white);
  margin-bottom: 2px;
}

.df-modal__header p {
  color: var(--df-gray-300);
  font-size: 0.8rem;
}

.df-modal__close {
  position: absolute;
  top: var(--df-space-md);
  right: var(--df-space-md);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--df-white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--df-transition);
}

.df-modal__close:hover {
  background: var(--df-gold);
  color: var(--df-black);
}

.df-modal__body {
  padding: 12px 16px;
  flex: 1;
  overflow-y: auto;
}

.df-modal__promo {
  background: linear-gradient(135deg, var(--df-gold), var(--df-gold-dark));
  color: var(--df-black);
  padding: 6px 12px;
  border-radius: var(--df-radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.df-modal__field {
  margin-bottom: 8px;
}

.df-modal__field label {
  display: block;
  color: var(--df-gray-300);
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.df-modal__field input,
.df-modal__field select {
  width: 100%;
  padding: 8px 10px;
  background: var(--df-black);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--df-radius-md);
  color: var(--df-white);
  font-size: 0.85rem;
  transition: var(--df-transition);
}

/* Date picker icon fix - make it visible on dark background */
.df-modal__field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.8;
}

.df-modal__field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.df-modal__field input:focus,
.df-modal__field select:focus {
  outline: none;
  border-color: var(--df-gold);
}

.df-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Ticket Items in Modal */
.df-ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--df-radius-md);
  margin-bottom: 6px;
}

.df-ticket-item__info {
  flex: 1;
}

.df-ticket-item__info strong {
  display: block;
  color: var(--df-white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.df-ticket-item__info small {
  color: var(--df-gray-500);
  font-size: 0.7rem;
}

.df-ticket-item__pricing {
  display: flex;
  gap: 6px;
  align-items: center;
}

.df-ticket-item__pricing .old {
  color: var(--df-gray-500);
  text-decoration: line-through;
  font-size: 0.7rem;
}

.df-ticket-item__pricing .now {
  color: var(--df-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Quantity Controls */
.df-qty-controls {
  display: flex;
  align-items: center;
  gap: 3px;
}

.df-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--df-radius-sm);
  background: var(--df-black);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--df-gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--df-transition);
}

.df-qty-btn:hover {
  background: var(--df-gold);
  color: var(--df-black);
}

.df-qty-input {
  width: 36px;
  height: 28px;
  text-align: center;
  background: var(--df-black);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--df-radius-sm);
  color: var(--df-white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Totals */
.df-totals {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--df-radius-md);
  padding: 6px 10px;
  margin-bottom: 6px;
  margin-top: 8px;
}

.df-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--df-gray-300);
  font-size: 0.75rem;
}

.df-totals__row.final {
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding-top: 6px;
  margin-top: 6px;
  color: var(--df-white);
  font-size: 0.95rem;
  font-weight: 600;
}

.df-totals__row.final span:last-child {
  color: var(--df-gold);
}

.df-secure-note {
  text-align: center;
  color: var(--df-gray-500);
  font-size: 0.7rem;
  margin: 4px 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .df-promo-banner {
    font-size: 0.75rem;
    gap: var(--df-space-sm);
  }
  
  .df-promo-banner__text {
    display: none;
  }
  
  /* Mobile Header Fix - Prevent logo/text overflow */
  .df-header__logo {
    gap: var(--df-space-sm);
    max-width: 160px;
    overflow: hidden;
  }
  
  .df-header__logo img {
    height: 36px;
    flex-shrink: 0;
  }
  
  .df-header__logo-text {
    min-width: 0;
  }
  
  .df-header__logo-text span {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .df-header__logo-text small {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }
  
  .df-header__actions {
    gap: var(--df-space-sm);
  }
  
  .df-lang-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  
  .df-btn--sm {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .df-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--df-black);
    flex-direction: column;
    padding: var(--df-space-lg);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
  }
  
  .df-header__nav.is-open {
    display: flex;
  }
  
  .df-header__menu {
    display: flex;
  }
  
  .df-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .df-hero__trust {
    flex-direction: column;
    align-items: center;
  }
  
  .df-tickets-grid {
    grid-template-columns: 1fr;
  }
  
  .df-process-arrow {
    display: none;
  }
  
  /* Mobile Modal - Ultra compact to fit screen */
  .df-modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  
  .df-modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  
  .df-modal__header {
    padding: 10px 12px;
    flex-shrink: 0;
  }
  
  .df-modal__logo-wrap {
    display: flex;
  }
  
  .df-modal__logo {
    height: 24px;
  }
  
  .df-modal__header h2 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .df-modal__header p {
    font-size: 0.7rem;
    display: none;
  }
  
  .df-modal__body {
    padding: 10px 12px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .df-modal__promo {
    padding: 4px 8px;
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
  
  .df-modal__field {
    margin-bottom: 4px;
  }
  
  .df-modal__field label {
    font-size: 0.7rem;
    margin-bottom: 1px;
  }
  
  .df-modal__field input {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .df-modal__row {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  
  .df-ticket-item {
    padding: 5px 8px;
    margin-bottom: 3px;
  }
  
  .df-ticket-item__info strong {
    font-size: 0.75rem;
    margin-bottom: 0;
  }
  
  .df-ticket-item__info small,
  .df-ticket-item__pricing {
    display: none !important;
  }
  
  .df-qty-btn {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
  
  .df-qty-input {
    width: 28px;
    height: 24px;
    font-size: 0.8rem;
  }
  
  .df-totals {
    padding: 5px 8px;
    margin-bottom: 6px;
    margin-top: 6px;
  }
  
  .df-totals__row {
    padding: 1px 0;
    font-size: 0.7rem;
  }
  
  .df-totals__row.final {
    font-size: 0.85rem;
    padding-top: 3px;
  }
  
  .df-btn--block.df-btn--lg {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .df-secure-note {
    font-size: 0.6rem;
    margin: 4px 0;
  }
  
  .df-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== RTL STYLES ==================== */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .df-header__nav,
html[dir="rtl"] .df-header__actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .df-modal__close {
  right: auto;
  left: var(--df-space-md);
}

html[dir="rtl"] .df-ticket-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .df-totals__row {
  flex-direction: row-reverse;
}

