/* ==================== GLOBAL VILLAGE WEBSITE CSS ==================== */
/* Orange/Teal Festive Theme */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colors - Orange/Teal Festive Theme */
  --gv-orange: #f26f22;
  --gv-orange-dark: #d85a0a;
  --gv-orange-light: #ff8a42;
  --gv-teal: #2aa8a0;
  --gv-teal-dark: #1e8a83;
  --gv-blue: #1a5fb4;
  --gv-purple: #9141ac;
  --gv-red: #dc3545;
  --gv-green: #28a745;
  --gv-yellow: #ffc107;
  --gv-black: #1a1a1a;
  --gv-black-light: #2d2d2d;
  --gv-white: #ffffff;
  --gv-gray-100: #f8f9fa;
  --gv-gray-200: #e9ecef;
  --gv-gray-300: #dee2e6;
  --gv-gray-500: #6c757d;
  --gv-gray-700: #495057;
  
  /* Typography */
  --gv-font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --gv-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --gv-space-xs: 4px;
  --gv-space-sm: 8px;
  --gv-space-md: 16px;
  --gv-space-lg: 24px;
  --gv-space-xl: 32px;
  --gv-space-2xl: 48px;
  --gv-space-3xl: 64px;
  
  /* Border Radius */
  --gv-radius-sm: 6px;
  --gv-radius-md: 10px;
  --gv-radius-lg: 16px;
  --gv-radius-xl: 24px;
  
  /* Shadows */
  --gv-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --gv-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --gv-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --gv-shadow-glow: 0 0 30px rgba(242, 111, 34, 0.3);
  
  /* Transitions */
  --gv-transition: all 0.25s ease;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--gv-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gv-black);
  background: var(--gv-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--gv-transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gv-font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* ==================== UTILITIES ==================== */
.gv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gv-space-lg);
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

/* ==================== PROMO BANNER ==================== */
.gv-promo-banner {
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  color: var(--gv-white);
  padding: 10px var(--gv-space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gv-space-md);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.gv-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gv-promo-banner__icon {
  font-size: 1.2rem;
}

.gv-promo-banner__discount {
  background: var(--gv-white);
  color: var(--gv-orange);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

.gv-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--gv-space-xs);
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ==================== HEADER ==================== */
.gv-header {
  background: var(--gv-white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--gv-shadow-sm);
}

.gv-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gv-space-md);
}

.gv-header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gv-header__logo img {
  height: 48px;
  width: auto;
}

.gv-header__emblem {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.gv-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gv-header__logo-text span:first-child {
  font-family: var(--gv-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gv-orange);
}

.gv-header__logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--gv-gray-500);
}

.gv-header__nav {
  display: flex;
  gap: var(--gv-space-xl);
}

.gv-header__nav a {
  font-weight: 500;
  color: var(--gv-gray-700);
  position: relative;
}

.gv-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gv-orange);
  transition: var(--gv-transition);
}

.gv-header__nav a:hover::after {
  width: 100%;
}

.gv-header__actions {
  display: flex;
  align-items: center;
  gap: var(--gv-space-md);
}

.gv-lang-switcher {
  display: flex;
  gap: var(--gv-space-xs);
  background: var(--gv-gray-100);
  border-radius: var(--gv-radius-md);
  padding: 4px;
}

.gv-lang-switcher button {
  padding: 6px 12px;
  border-radius: var(--gv-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gv-gray-500);
  transition: var(--gv-transition);
}

.gv-lang-switcher button.active,
.gv-lang-switcher button:hover {
  background: var(--gv-orange);
  color: var(--gv-white);
}

.gv-header__menu {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--gv-radius-sm);
  background: var(--gv-gray-100);
  color: var(--gv-gray-700);
  font-size: 1.3rem;
}

/* ==================== BUTTONS ==================== */
.gv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gv-space-sm);
  padding: 12px 24px;
  border-radius: var(--gv-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--gv-transition);
  white-space: nowrap;
}

.gv-btn--primary {
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  color: var(--gv-white);
  box-shadow: 0 4px 14px rgba(242, 111, 34, 0.25);
}

.gv-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 111, 34, 0.35);
}

.gv-btn--secondary {
  background: var(--gv-teal);
  color: var(--gv-white);
}

.gv-btn--secondary:hover {
  background: var(--gv-teal-dark);
}

.gv-btn--outline {
  background: transparent;
  border: 2px solid var(--gv-orange);
  color: var(--gv-orange);
}

.gv-btn--outline:hover {
  background: var(--gv-orange);
  color: var(--gv-white);
}

.gv-btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.gv-btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ==================== HERO SECTION ==================== */
.gv-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/hero.jpg') center center / cover no-repeat;
}

.gv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(242, 111, 34, 0.2) 100%);
}

.gv-hero__content {
  text-align: center;
  color: var(--gv-white);
  padding: var(--gv-space-2xl);
  max-width: 800px;
}

.gv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gv-space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: var(--gv-space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gv-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--gv-space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gv-hero__title span {
  background: linear-gradient(135deg, var(--gv-orange-light), var(--gv-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gv-hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: var(--gv-space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gv-hero__cta {
  display: flex;
  gap: var(--gv-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--gv-space-xl);
}

.gv-hero__trust {
  display: flex;
  justify-content: center;
  gap: var(--gv-space-xl);
  flex-wrap: wrap;
}

.gv-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--gv-space-xs);
  font-size: 0.9rem;
  opacity: 0.9;
}

.gv-hero__trust-item span:first-child {
  background: var(--gv-green);
  color: var(--gv-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ==================== TICKETS SECTION ==================== */
.gv-tickets-section {
  padding: var(--gv-space-3xl) 0;
  background: var(--gv-gray-100);
}

.gv-section-header {
  text-align: center;
  margin-bottom: var(--gv-space-2xl);
}

.gv-section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  color: var(--gv-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--gv-space-md);
}

.gv-section-header h2 {
  font-size: 2.2rem;
  color: var(--gv-black);
  margin-bottom: var(--gv-space-sm);
}

.gv-section-header p {
  color: var(--gv-gray-500);
  font-size: 1.05rem;
}

.gv-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gv-space-lg);
}

/* ==================== TICKET CARDS ==================== */
.gv-ticket-card {
  background: var(--gv-white);
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  box-shadow: var(--gv-shadow-md);
  transition: var(--gv-transition);
  position: relative;
}

.gv-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gv-shadow-lg);
}

.gv-ticket-card--featured {
  border: 2px solid var(--gv-orange);
}

.gv-ticket-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 111, 34, 0.05), transparent);
  pointer-events: none;
}

.gv-ticket-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gv-orange);
  color: var(--gv-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
  text-transform: uppercase;
}

.gv-ticket-card__discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gv-red);
  color: var(--gv-white);
  padding: 4px 10px;
  border-radius: var(--gv-radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 5;
}

.gv-ticket-card__image {
  height: 200px;
  overflow: hidden;
}

.gv-ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--gv-transition);
}

.gv-ticket-card:hover .gv-ticket-card__image img {
  transform: scale(1.08);
}

.gv-ticket-card__content {
  padding: var(--gv-space-lg);
}

.gv-ticket-card__icon {
  font-size: 2rem;
  margin-bottom: var(--gv-space-sm);
}

.gv-ticket-card__title {
  font-size: 1.25rem;
  color: var(--gv-black);
  margin-bottom: var(--gv-space-xs);
}

.gv-ticket-card__desc {
  color: var(--gv-gray-500);
  font-size: 0.9rem;
  margin-bottom: var(--gv-space-md);
}

.gv-ticket-card__features {
  margin-bottom: var(--gv-space-md);
}

.gv-ticket-card__features li {
  display: flex;
  align-items: center;
  gap: var(--gv-space-sm);
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gv-gray-700);
}

.gv-ticket-card__features li::before {
  content: '✓';
  color: var(--gv-green);
  font-weight: 700;
}

.gv-ticket-card__pricing {
  padding-top: var(--gv-space-md);
  border-top: 1px solid var(--gv-gray-200);
}

.gv-ticket-card__price-label {
  font-size: 0.8rem;
  color: var(--gv-gray-500);
  margin-bottom: var(--gv-space-xs);
}

.gv-ticket-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--gv-space-sm);
  margin-bottom: var(--gv-space-md);
}

.gv-ticket-card__price-old {
  text-decoration: line-through;
  color: var(--gv-gray-500);
  font-size: 1rem;
}

.gv-ticket-card__price-new {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gv-orange);
}

.gv-ticket-card__price-per {
  font-size: 0.85rem;
  color: var(--gv-gray-500);
}

.gv-ticket-card .gv-btn {
  width: 100%;
}

/* ==================== BENEFITS SECTION ==================== */
.gv-benefits-section {
  padding: var(--gv-space-3xl) 0;
  background: var(--gv-white);
}

.gv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gv-space-lg);
}

.gv-benefit-card {
  text-align: center;
  padding: var(--gv-space-xl);
  border-radius: var(--gv-radius-lg);
  background: var(--gv-gray-100);
  transition: var(--gv-transition);
}

.gv-benefit-card:hover {
  background: var(--gv-white);
  box-shadow: var(--gv-shadow-md);
}

.gv-benefit-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gv-space-md);
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(242, 111, 34, 0.25);
}

.gv-benefit-card h3 {
  font-size: 1.15rem;
  color: var(--gv-black);
  margin-bottom: var(--gv-space-sm);
}

.gv-benefit-card p {
  color: var(--gv-gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== HOW IT WORKS ==================== */
.gv-process-section {
  padding: var(--gv-space-3xl) 0;
  background: var(--gv-gray-100);
}

.gv-process-steps {
  display: flex;
  justify-content: space-between;
  gap: var(--gv-space-lg);
  flex-wrap: wrap;
}

.gv-process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.gv-process-step__number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  color: var(--gv-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto var(--gv-space-md);
  box-shadow: 0 4px 14px rgba(242, 111, 34, 0.25);
}

.gv-process-step h3 {
  font-size: 1.1rem;
  color: var(--gv-black);
  margin-bottom: var(--gv-space-sm);
}

.gv-process-step p {
  color: var(--gv-gray-500);
  font-size: 0.9rem;
}

.gv-process-arrow {
  position: absolute;
  top: 25px;
  right: -20px;
  color: var(--gv-orange);
  font-size: 1.5rem;
}

/* ==================== CTA SECTION ==================== */
.gv-cta-section {
  padding: var(--gv-space-3xl) 0;
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  color: var(--gv-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gv-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center center / cover no-repeat;
  opacity: 0.1;
}

.gv-cta-section h2 {
  font-size: 2rem;
  margin-bottom: var(--gv-space-sm);
  position: relative;
}

.gv-cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--gv-space-lg);
  position: relative;
}

.gv-cta-timer {
  display: inline-flex;
  align-items: center;
  gap: var(--gv-space-sm);
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: var(--gv-space-lg);
  position: relative;
}

.gv-cta-section .gv-btn {
  background: var(--gv-white);
  color: var(--gv-orange);
  position: relative;
}

.gv-cta-section .gv-btn:hover {
  background: var(--gv-gray-100);
}

/* ==================== FOOTER ==================== */
.gv-footer {
  background: var(--gv-black);
  color: var(--gv-white);
  padding: var(--gv-space-2xl) 0 var(--gv-space-lg);
}

.gv-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gv-space-xl);
  margin-bottom: var(--gv-space-xl);
}

.gv-footer__brand img {
  height: 50px;
  margin-bottom: var(--gv-space-md);
  filter: brightness(0) invert(1);
}

.gv-footer__brand p {
  color: var(--gv-gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

.gv-footer h4 {
  font-size: 1rem;
  margin-bottom: var(--gv-space-md);
  color: var(--gv-orange);
}

.gv-footer ul li {
  margin-bottom: var(--gv-space-sm);
}

.gv-footer ul a {
  color: var(--gv-gray-300);
  font-size: 0.9rem;
}

.gv-footer ul a:hover {
  color: var(--gv-orange);
}

.gv-footer__bottom {
  padding-top: var(--gv-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gv-space-md);
}

.gv-footer__bottom p {
  color: var(--gv-gray-500);
  font-size: 0.85rem;
}

.gv-footer__payments {
  display: flex;
  gap: var(--gv-space-sm);
  font-size: 0.85rem;
  color: var(--gv-gray-300);
}

/* ==================== MODAL ==================== */
.gv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gv-space-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--gv-transition);
}

.gv-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.gv-modal {
  background: var(--gv-white);
  border-radius: var(--gv-radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 98vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--gv-shadow-lg);
}

.gv-modal__header {
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--gv-orange), var(--gv-orange-dark));
  color: var(--gv-white);
  border-radius: var(--gv-radius-lg) var(--gv-radius-lg) 0 0;
  position: relative;
}

.gv-modal__logo-wrap {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.gv-modal__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.gv-modal__header h2 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.gv-modal__header p {
  opacity: 0.9;
  font-size: 0.75rem;
}

.gv-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--gv-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--gv-transition);
}

.gv-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.gv-modal__body {
  padding: 12px 16px;
  flex: 1;
  overflow-y: auto;
}

.gv-modal__promo {
  background: linear-gradient(135deg, var(--gv-red), #c82333);
  color: var(--gv-white);
  padding: 6px 12px;
  border-radius: var(--gv-radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
  font-weight: 600;
}

.gv-modal__field {
  margin-bottom: 8px;
}

.gv-modal__field label {
  display: block;
  color: var(--gv-gray-700);
  font-size: 0.75rem;
  margin-bottom: 2px;
  font-weight: 500;
}

.gv-modal__field input,
.gv-modal__field select {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid var(--gv-gray-200);
  border-radius: var(--gv-radius-md);
  color: var(--gv-black);
  font-size: 0.85rem;
  transition: var(--gv-transition);
  background: var(--gv-white);
}

.gv-modal__field input:focus,
.gv-modal__field select:focus {
  outline: none;
  border-color: var(--gv-orange);
  box-shadow: 0 0 0 3px rgba(242, 111, 34, 0.15);
}

.gv-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Ticket Items in Modal */
.gv-ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: var(--gv-gray-100);
  border: 1.5px solid var(--gv-gray-200);
  border-radius: var(--gv-radius-md);
  margin-bottom: 6px;
}

.gv-ticket-item--free {
  border: 1.5px dashed var(--gv-green);
  background: rgba(40, 167, 69, 0.05);
}

.gv-ticket-item__info {
  flex: 1;
}

.gv-ticket-item__info strong {
  display: block;
  color: var(--gv-black);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.gv-ticket-item__info small {
  color: var(--gv-gray-500);
  font-size: 0.7rem;
}

.gv-ticket-item__pricing {
  display: flex;
  gap: 6px;
  align-items: center;
}

.gv-ticket-item__pricing .old {
  color: var(--gv-gray-500);
  text-decoration: line-through;
  font-size: 0.7rem;
}

.gv-ticket-item__pricing .now {
  color: var(--gv-orange);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Quantity Controls */
.gv-qty-controls {
  display: flex;
  align-items: center;
  gap: 3px;
}

.gv-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--gv-radius-sm);
  background: var(--gv-orange);
  color: var(--gv-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--gv-transition);
  font-weight: 700;
}

.gv-qty-btn:hover {
  background: var(--gv-orange-dark);
}

.gv-qty-btn--green {
  background: var(--gv-green);
}

.gv-qty-btn--green:hover {
  background: #218838;
}

.gv-qty-input {
  width: 36px;
  height: 28px;
  text-align: center;
  background: var(--gv-white);
  border: 1.5px solid var(--gv-gray-200);
  border-radius: var(--gv-radius-sm);
  color: var(--gv-black);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Totals */
.gv-totals {
  background: var(--gv-gray-100);
  border: 1.5px solid var(--gv-gray-200);
  border-radius: var(--gv-radius-md);
  padding: 6px 10px;
  margin-bottom: 6px;
  margin-top: 8px;
}

.gv-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--gv-gray-700);
  font-size: 0.75rem;
}

.gv-totals__row.final {
  border-top: 1px solid var(--gv-gray-200);
  padding-top: 6px;
  margin-top: 6px;
  color: var(--gv-black);
  font-size: 0.95rem;
  font-weight: 600;
}

.gv-totals__row.final span:last-child {
  color: var(--gv-orange);
}

.gv-totals__savings {
  background: var(--gv-green);
  color: var(--gv-white);
  padding: 3px 8px;
  border-radius: var(--gv-radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 4px;
  display: inline-block;
}

#gv-checkout-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.gv-secure-note {
  text-align: center;
  color: var(--gv-gray-500);
  font-size: 0.7rem;
  margin: 4px 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .gv-promo-banner {
    font-size: 0.75rem;
    gap: var(--gv-space-sm);
  }
  
  .gv-promo-banner__text {
    display: none;
  }
  
  /* Mobile Header Fix */
  .gv-header__logo {
    gap: var(--gv-space-sm);
    max-width: 150px;
    overflow: hidden;
  }
  
  .gv-header__logo img {
    height: 36px;
    flex-shrink: 0;
  }
  
  .gv-header__logo-text {
    display: none;
  }
  
  .gv-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gv-white);
    flex-direction: column;
    padding: var(--gv-space-lg);
    box-shadow: var(--gv-shadow-md);
  }
  
  .gv-header__nav.is-open {
    display: flex;
  }
  
  .gv-header__menu {
    display: flex;
  }
  
  .gv-lang-switcher button {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  
  .gv-btn--sm {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .gv-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .gv-hero__trust {
    flex-direction: column;
    align-items: center;
  }
  
  .gv-tickets-grid {
    grid-template-columns: 1fr;
  }
  
  .gv-process-arrow {
    display: none;
  }
  
  /* Mobile Modal - Ultra compact */
  .gv-modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  
  .gv-modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  
  .gv-modal__header {
    padding: 10px 14px;
    flex-shrink: 0;
    border-radius: 0;
  }
  
  .gv-modal__logo {
    height: 22px;
  }
  
  .gv-modal__header h2 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .gv-modal__header p {
    display: none;
  }
  
  .gv-modal__body {
    padding: 10px 12px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .gv-modal__promo {
    padding: 4px 8px;
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
  
  .gv-modal__field {
    margin-bottom: 5px;
  }
  
  .gv-modal__field label {
    font-size: 0.7rem;
    margin-bottom: 1px;
  }
  
  .gv-modal__field input {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .gv-modal__row {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  
  .gv-ticket-item {
    padding: 6px 8px;
    margin-bottom: 4px;
  }
  
  .gv-ticket-item__info strong {
    font-size: 0.75rem;
    margin-bottom: 0;
  }
  
  .gv-ticket-item__info small {
    font-size: 0.6rem;
  }
  
  .gv-ticket-item__pricing {
    display: none;
  }
  
  .gv-qty-btn {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
  
  .gv-qty-input {
    width: 30px;
    height: 24px;
    font-size: 0.85rem;
  }
  
  .gv-totals {
    padding: 5px 8px;
    margin: 6px 0;
  }
  
  .gv-totals__row {
    padding: 2px 0;
    font-size: 0.7rem;
  }
  
  .gv-totals__row.final {
    padding-top: 4px;
    margin-top: 4px;
    font-size: 0.85rem;
  }
  
  .gv-btn--lg {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .gv-secure-note {
    font-size: 0.65rem;
    margin: 3px 0;
  }
}

