/* --- CSS Variables & Resets --- */
:root {
  --primary: #1a3a6b;
  --primary-light: #2e5fa3;
  --primary-dark: #0f2347;
  --secondary: #eef2f9;
  --bg-color: #f4f6fa;
  --text-main: #0f172a;
  --text-muted: #4b5c78;
  --success: #166534;
  --success-bg: #dcfce7;
  --danger: #991b1b;
  --danger-bg: #fee2e2;
  --white: #ffffff;
  --border: #d0d9ea;
  --gold: #b8960c;
  --gold-light: #f0d060;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

.text-primary { color: var(--primary); }
.mt-4 { margin-top: 1rem; }

/* --- Reusables --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
  border-radius: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23);
}

.btn-primary:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--bg-color);
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.btn-text:hover {
  text-decoration: underline;
}

.w-full {
  width: 100%;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background: var(--primary-dark);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-main);
}

.logo i {
  color: var(--primary);
  background: var(--secondary);
  padding: 0.5rem;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 12rem 2rem 6rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.2);
}

.shape-2 {
  bottom: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(56, 189, 248, 0.2);
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 150, 12, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(184, 150, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 150, 12, 0); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust i { color: var(--success); }

/* --- Booking Section --- */
.booking-section {
  padding: 4rem 2rem 8rem;
  max-width: 900px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-header h2 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.booking-container {
  padding: 3rem;
  position: relative;
}

.form-section {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.form-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

/* Inputs & Selects */
input[type="text"], input[type="date"], select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--white);
  transition: all 0.3s;
  outline: none;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-with-icon input {
  padding-left: 2.75rem;
}

.custom-select {
  position: relative;
}

.custom-select select {
  padding-left: 2.75rem;
  appearance: none;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
}

input:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* City Selector */
.city-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.city-option {
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.city-option:hover {
  border-color: var(--primary-light);
}

.city-option.selected {
  background: var(--secondary);
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px var(--primary);
}

/* Slots Area */
.slots-area {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hidden {
  display: none !important;
}

/* Messages */
.no-slots-message {
  background: var(--danger-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: var(--danger);
}

.no-slots-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.no-slots-message h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.no-slots-message p {
  color: #7f1d1d;
  font-size: 0.875rem;
}

/* Calendar Grid */
.calendar-area h4, .time-area h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.date-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.date-card.available {
  background: var(--success-bg);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--success);
}

.date-card.available:hover {
  background: rgba(16, 185, 129, 0.2);
}

.date-card.booked {
  background: var(--danger-bg);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--danger);
  cursor: not-allowed;
}

.date-card.selected {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.date-card .day-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.date-card .day-num {
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
}

.date-card .month-name {
  font-size: 0.75rem;
  display: block;
}

.calendar-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Time Grid */
.time-area {
  margin-top: 1.5rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

.time-slot {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot:hover {
  border-color: var(--primary-light);
}

.time-slot.selected {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Step 2 specific */
.form-actions.right {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.step-back {
  margin-bottom: 1.5rem;
}

.selected-summary {
  background: var(--secondary);
  border: 1px solid var(--primary-light);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.summary-icon {
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.summary-text {
  flex-grow: 1;
}

.summary-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.summary-value {
  font-weight: 700;
  color: var(--text-main);
}

.summary-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-status {
  background: var(--success-bg);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* --- Receipt --- */
.receipt-card {
  overflow: hidden;
  padding: 0;
}

.receipt-success-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.appointment-id {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.receipt-body {
  padding: 2rem;
}

.receipt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.receipt-col h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.detail-item i {
  margin-top: 0.25rem;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.detail-value {
  font-weight: 600;
  color: var(--text-main);
}

.detail-address {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.receipt-actions {
  padding: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Government Banner */
.gov-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 3px solid var(--gold);
  padding: 0.6rem 0;
}

.gov-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gov-banner-icon {
  color: var(--gold-light);
  font-size: 1rem;
}

.gov-banner-title {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.gov-banner-certs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.gov-banner-certs span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gov-cert-sep {
  color: rgba(240, 208, 96, 0.4);
  font-weight: 300;
}

/* Hero Section adjustments for banner offset */
.hero {
  padding-top: 15rem;
}

/* Euro Certification Banner */
.euro-cert-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--primary-dark);
  border: 2px solid var(--gold);
  border-radius: 14px;
  margin: 2rem auto 2rem;
  max-width: 760px;
  overflow: hidden;
}

.euro-cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  flex: 1;
}

.euro-cert-item i {
  color: var(--gold-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.euro-cert-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ab0d0;
  font-weight: 600;
}

.euro-cert-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.euro-cert-divider {
  width: 1px;
  height: 48px;
  background: rgba(184, 150, 12, 0.4);
  flex-shrink: 0;
}

/* Footer updates */
footer {
  background: var(--primary-dark);
  border-top: 4px solid var(--gold);
  color: #94a3b8;
  text-align: center;
  padding: 2.5rem 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-logo i {
  color: var(--gold-light);
}

.footer-cert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-cert-sep {
  color: rgba(184, 150, 12, 0.4);
}

.footer-copy {
  font-size: 0.88rem;
  color: #7a90b0;
  margin-bottom: 0.4rem;
}

.footer-gov {
  font-size: 0.78rem;
  color: #506080;
  letter-spacing: 0.03em;
}

.footer-gov i {
  margin-right: 0.25rem;
  color: #506080;
}

/* Nav scrolled state for government theme — same as base, always navy */
nav.scrolled {
  background: var(--primary-dark);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border-bottom: 2px solid var(--gold);
}

.nav-links a {
  color: #c9d8f0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}

.logo {
  color: var(--white);
}

.logo i {
  color: var(--gold-light);
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

/* ===================== MOBILE RESPONSIVE ===================== */

/* Tablets & large phones */
@media (max-width: 900px) {
  .euro-cert-banner { max-width: 100%; }
  .receipt-row { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {

  /* --- Gov Banner --- */
  .gov-banner {
    padding: 0.5rem 0;
    font-size: 0.72rem;
  }
  .gov-banner-inner {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0 1rem;
    text-align: center;
  }
  .gov-banner-certs {
    font-size: 0.72rem;
    gap: 0.5rem;
  }

  /* --- Nav --- */
  nav {
    top: 52px; /* taller banner on mobile */
  }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-container { padding: 0 1rem; }
  .logo { font-size: 1.2rem; }

  /* --- Hero --- */
  .hero {
    padding: 14rem 1rem 4rem;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 0.4rem 0.8rem;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    margin-top: 1.5rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* --- Cert Banner --- */
  .euro-cert-banner {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    margin: 1.5rem 0;
    border-radius: 10px;
  }
  .euro-cert-item {
    padding: 0.85rem 1.25rem;
    width: 100%;
  }
  .euro-cert-divider {
    width: 90%;
    height: 1px;
    margin: 0 auto;
  }
  .euro-cert-name { font-size: 0.82rem; }

  /* --- Booking Section --- */
  .booking-section {
    padding: 2rem 1rem 5rem;
  }
  .booking-container {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }
  .booking-header h2 { font-size: 1.5rem; }
  .booking-header p { font-size: 0.9rem; }

  /* --- Form --- */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group { margin-bottom: 1.2rem; }
  h3 { font-size: 1.1rem; }

  /* Inputs touch-friendly */
  input[type="text"],
  input[type="date"],
  select {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .input-with-icon input { padding-left: 2.5rem; }

  /* --- City Buttons --- */
  .city-selector { gap: 0.5rem; }
  .city-option {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    border-radius: 10px;
  }

  /* --- Calendar --- */
  .calendar-grid {
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 0.5rem;
  }
  .date-card {
    padding: 0.6rem 0.3rem;
    border-radius: 10px;
  }
  .date-card .day-num { font-size: 1.1rem; }

  /* --- Time Grid --- */
  .time-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 0.5rem;
  }
  .time-slot {
    padding: 0.55rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  /* --- Buttons --- */
  .btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .form-actions.right { justify-content: stretch; }
  .form-actions.right .btn { width: 100%; }

  /* --- Summary Bar --- */
  .selected-summary {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .summary-status {
    width: 100%;
    text-align: center;
  }

  /* --- Receipt --- */
  .receipt-success-header { padding: 2rem 1.25rem; }
  .receipt-success-header h2 { font-size: 1.5rem; }
  .receipt-body { padding: 1.25rem; }
  .receipt-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .receipt-actions {
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.75rem;
  }
  .receipt-actions .btn { width: 100%; }

  /* --- Footer --- */
  .footer-logo { font-size: 1.2rem; }
  .footer-cert { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .footer-gov { font-size: 0.72rem; padding: 0 1rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .euro-cert-item { padding: 0.75rem 1rem; }
  .calendar-grid { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
  .booking-container { padding: 1rem; }
}

@media print {
  body * {
    visibility: hidden;
  }
  
  #receipt-container, #receipt-container * {
    visibility: visible;
  }
  
  #receipt-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }
  
  .receipt-card {
    box-shadow: none;
    border: 1px solid #000;
    border-radius: 0;
  }
  
  .receipt-actions {
    display: none !important;
  }
}
