/* Sleek Minimalist Light Design System for blackmarket.soplugged.com */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-pure-white: #ffffff;
  --bg-linen: #fcfcf9; /* Premium warm linen off-white */
  --bg-card: #ffffff;
  --bg-card-hover: #fafaf7;
  
  --border-color: #e5e5df;
  --border-color-hover: rgba(202, 138, 4, 0.4);
  
  --text-primary: #111111;
  --text-secondary: #4a4a46;
  --text-muted: #8c8c82;
  
  --accent-gold: #ca8a04; /* Rich Contrast Gold for light background */
  --accent-gold-hover: #a16207;
  --accent-gold-light: #fef3c7;
  --accent-gold-rgb: 202, 138, 4;
  
  --accent-success: #059669;
  --accent-error: #dc2626;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-pure-white);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-pure-white);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pure-white);
}
::-webkit-scrollbar-thumb {
  background: #e5e5e0;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-gold);
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav-btn {
  background: transparent;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(202, 138, 4, 0.04);
}

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

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

/* Hero Section */
.hero-wrapper {
  margin-top: 72px; /* offset fixed navbar */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 380px;
  max-height: 480px;
  overflow: hidden;
  background-color: #fafafa;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.4) 30%, rgba(255,255,255,0) 80%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
}

.hero-title-area h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-organizer-tag {
  display: inline-flex;
  align-items: center;
  background: var(--accent-gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Layout Grid */
.main-layout {
  padding: 36px 0 80px;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Left Content Column */
.content-column {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Event Info Row */
.event-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-linen);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 14px;
  flex: 1 1 220px;
}

.info-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.info-chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.info-chip-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-chip-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.info-chip-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Section Styling */
.section-block {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 36px;
}

.section-block:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
  margin-left: 16px;
}

.rich-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.rich-description p {
  margin-bottom: 12px;
}

.rich-description p strong {
  color: var(--text-primary);
}

.highlight-box {
  background: var(--bg-linen);
  border-left: 3px solid var(--accent-gold);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 18px 0;
}

.highlight-box p {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
}

.inclusions-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inclusions-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.inclusions-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

/* FAQs Accordion (Clean lines instead of heavy boxes) */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  transition: var(--transition-smooth);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 12px;
}

.faq-arrow {
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 4px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Organizer Bio Block */
.organizer-card {
  background: var(--bg-linen);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.organizer-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.organizer-avatar-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 6px;
  background: var(--bg-linen);
}

.organizer-meta h3 {
  font-size: 18px;
  font-weight: 700;
}

.organizer-meta p {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.organizer-card p {
  font-size: 14px;
  line-height: 1.6;
}

.organizer-actions .btn {
  width: auto;
  padding: 10px 18px;
  font-size: 13px;
}

/* Sidebar Checkout Widget (Right) */
.sidebar-column {
  position: sticky;
  top: 104px;
  z-index: 10;
}

.ticket-widget-card {
  background: var(--bg-linen);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticket-tag {
  align-self: flex-start;
  background: rgba(202, 138, 4, 0.08);
  border: 1px solid rgba(202, 138, 4, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

.ticket-title {
  font-size: 20px;
  font-weight: 700;
}

.ticket-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.ticket-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.ticket-quantity-select {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.qty-btn:hover:not(:disabled) {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.qty-val {
  font-size: 15px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.ticket-widget-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Primary Button Styling (Ultra Sleek Black & White contrasting) */
.btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-pure-white);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-gold);
  color: var(--bg-pure-white);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sales-countdown {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* Checkout Modal Styling (Light mode frosted glass overlay) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-backdrop.show .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.close-modal-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal-btn:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

/* Step Progress Indicator */
.checkout-steps {
  display: flex;
  padding: 12px 28px;
  background: var(--bg-linen);
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.step-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-bar {
  height: 3px;
  background: #e5e5df;
  border-radius: 1.5px;
  position: relative;
  overflow: hidden;
}

.step-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.step-indicator.completed .step-bar::after,
.step-indicator.active .step-bar::after {
  width: 100%;
}

.step-indicator.completed .step-bar::after {
  background: var(--accent-success);
}

.step-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step-indicator.active .step-label {
  color: var(--accent-gold);
}

.step-indicator.completed .step-label {
  color: var(--accent-success);
}

/* Modal Body Forms */
.modal-body {
  padding: 28px;
  overflow-y: auto;
  flex-grow: 1;
}

.checkout-step-panel {
  display: none;
}

.checkout-step-panel.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeSlide 0.3s ease;
}

/* Forms controls */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-label span {
  color: var(--accent-error);
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(202, 138, 4, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Select element styling */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238c8c82' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

/* Radio Cards */
.radio-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-card {
  border: 1px solid var(--border-color);
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.radio-card:hover {
  border-color: var(--accent-gold);
}

.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-bounce);
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .radio-card {
  border-color: var(--accent-gold);
  background: rgba(202, 138, 4, 0.03);
}

input[type="radio"]:checked + .radio-card .radio-circle {
  border-color: var(--accent-gold);
}

input[type="radio"]:checked + .radio-card .radio-circle::after {
  transform: scale(1);
}

.radio-card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.radio-card-title {
  font-size: 13px;
  font-weight: 700;
}

.radio-card-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* Stripe Field Styling */
.stripe-card-wrapper {
  background: var(--bg-linen);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.stripe-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stripe-logo-placeholder {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cc-icons {
  display: flex;
  gap: 6px;
}

.cc-icon {
  height: 20px;
  width: auto;
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.cc-icon.active {
  opacity: 1;
}

.card-relative-group {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
}

.card-relative-group .form-input {
  padding-left: 42px;
}

/* Success Panel */
.success-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(5, 150, 105, 0.08);
  border: 2px solid var(--accent-success);
  color: var(--accent-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: scaleUpConfetti 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.success-panel h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.success-panel p {
  font-size: 14px;
  max-width: 380px;
  margin-bottom: 24px;
}

.receipt-card {
  width: 100%;
  background: var(--bg-linen);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 8px;
}

.receipt-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.receipt-label {
  color: var(--text-muted);
}

.receipt-value {
  font-weight: 600;
  color: var(--text-primary);
}

.receipt-value.price-bold {
  color: var(--accent-gold);
  font-size: 14px;
}

/* Modal Footer controls */
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  background: var(--bg-linen);
}

.modal-footer .btn {
  width: auto;
  flex: 1;
}

/* Mobile Floating Drawer */
.mobile-checkout-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 14px 24px;
  z-index: 90;
  display: none; /* Hidden on desktop */
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.mobile-price-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mobile-price-info .price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.mobile-price-info .label {
  font-size: 11px;
  color: var(--text-muted);
}

.mobile-checkout-drawer .btn {
  width: auto;
  padding: 12px 24px;
  font-size: 14px;
}

/* Footer Section */
.site-footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-linen);
  padding: 56px 0 36px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUpConfetti {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Confetti Canvas */
#confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Error messages */
.error-msg {
  font-size: 11px;
  color: var(--accent-error);
  font-weight: 500;
  margin-top: 4px;
  display: none;
}

.form-input.invalid {
  border-color: var(--accent-error) !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.08) !important;
}

/* Loading spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

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

.btn-loading .spinner {
  display: inline-block;
}
.btn-loading .btn-text {
  display: none;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .sidebar-column {
    display: none;
  }
  
  .mobile-checkout-drawer {
    display: flex;
  }
  
  .hero-wrapper {
    aspect-ratio: 16 / 8;
    min-height: 320px;
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .navbar {
    height: 64px;
  }
  
  .navbar .brand-logo-img {
    height: 22px;
  }
  
  .nav-btn {
    display: none;
  }
  
  .hero-wrapper {
    margin-top: 64px;
    height: 280px;
  }
  
  .hero-title-area h1 {
    font-size: 26px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .radio-card-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .modal-container {
    max-height: 100vh;
    border-radius: 0;
  }
  
  .modal-backdrop {
    padding: 0;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-footer {
    padding: 16px 20px;
  }
}
