/* ==========================================================================
   Amwaste Representative Portal & Flyer CSS
   Design: Premium Dark Theme Web View & High-Resolution Print Styles
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --color-bg-main: #050505;
  --color-bg-card: rgba(45, 45, 45, 0.75);
  --color-bg-card-hover: rgba(60, 60, 60, 0.9);
  --color-border: rgba(126, 139, 150, 0.2);
  --color-border-focus: rgba(209, 161, 16, 0.5);
  
  /* Amwaste Brand Colors */
  --color-saffron: #D1A110;       /* Mustard Yellow */
  --color-sycamore: #7E8B96;      /* Battleship Gray */
  --color-white: #ffffff;
  
  /* UI States & Texts */
  --color-text-main: #ffffff;
  --color-text-muted: #abb4be;
  --color-text-dark: #000000;
  
  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout constraints */
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
  
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 1px 1px rgba(255, 255, 255, 0.05) inset;
  --shadow-glow: 0 0 20px rgba(209, 161, 16, 0.12);
}

/* Base resets & scrollbars */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(126, 139, 150, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(209, 161, 16, 0.04) 0px, transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hide {
  display: none !important;
}

/* ==========================================================================
   WEB VIEW LAYOUT
   ========================================================================== */

.brand-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--color-sycamore), var(--color-saffron), var(--color-sycamore));
  width: 100%;
}

.main-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  background: #000000;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo-container {
  cursor: pointer;
  display: flex;
  align-items: center;
  user-select: none;
}

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

.header-status {
  font-size: 1.05rem;
  color: var(--color-saffron);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-saffron);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--color-saffron);
}

.services-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-saffron);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

/* Main Grid Layout */
.main-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  padding-top: 0;
  padding-bottom: 64px;
}

/* Representative Details (Left Column) */
.rep-column {
  position: relative;
}

.rep-card {
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 110px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rep-card:hover {
  border-color: rgba(239, 196, 53, 0.2);
  box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.rep-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(239, 196, 53, 0.1);
  border: 1px solid rgba(239, 196, 53, 0.2);
  border-radius: 50px;
  color: var(--color-saffron);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.rep-avatar-container {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  position: relative;
}

#rep-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 4px solid var(--color-bg-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.rep-avatar-border {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--color-saffron);
  border-radius: 50%;
  pointer-events: none;
}

.rep-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.rep-title {
  font-size: 0.95rem;
  color: var(--color-saffron);
  font-weight: 500;
  margin-bottom: 24px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 20px 0;
  width: 100%;
}

.contact-details {
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.contact-value:hover {
  color: var(--color-saffron);
}

/* Custom UI Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-full {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--color-saffron);
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(239, 196, 53, 0.2);
}

.btn-primary:hover {
  background-color: #f7d759;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 196, 53, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-main);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-tertiary {
  background-color: rgba(152, 130, 60, 0.1);
  color: var(--color-saffron);
  border-color: rgba(152, 130, 60, 0.3);
}

.btn-tertiary:hover {
  background-color: rgba(152, 130, 60, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.flex-1 {
  flex: 1;
}

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

.rep-sub-actions {
  display: flex;
  gap: 12px;
}

.rep-sub-actions .btn {
  padding: 12px 6px;
  font-size: 0.9rem;
}

/* Service Content Column (Right Column) */
.intro-banner {
  padding-top: 48px;
  margin-bottom: 32px;
}

.services-intro {
  margin-bottom: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.service-card {
  padding: 28px;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.service-image-wrapper {
  height: 180px;
  overflow: hidden;
  margin: -28px -28px 20px -28px;
  position: relative;
  border-bottom: 2px solid var(--color-border);
  background-color: #000000;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Trust Banner */
.trust-container {
  margin-bottom: 64px;
}

.trust-banner {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-saffron);
}

.trust-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.trust-list {
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.trust-list li strong {
  color: var(--color-text-main);
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-saffron);
  font-weight: bold;
}

/* Footer Section */
.main-footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  background: #000000;
}

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

.customizer-trigger {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.customizer-trigger:hover {
  color: var(--color-saffron);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   CUSTOMIZER PORTAL (MODAL SCREEN)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease-out;
}

.modal-card {
  background: #111520;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

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

.modal-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-saffron);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.modal-intro {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.label-optional {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: none;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 10px rgba(239, 196, 53, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* Radio Button Group */
.radio-toggle-group {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  padding: 6px;
  border-radius: var(--border-radius-md);
}

.radio-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none !important;
  margin-bottom: 0 !important;
}

.radio-label input {
  accent-color: var(--color-saffron);
}

.radio-label:has(input:checked) {
  background: rgba(239, 196, 53, 0.1);
  color: var(--color-saffron);
}

/* File Upload Dropzone */
.file-dropzone {
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.file-dropzone:hover {
  border-color: var(--color-saffron);
  background: rgba(255, 255, 255, 0.02);
}

.file-dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.dropzone-icon {
  font-size: 1.8rem;
}

.dropzone-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.photo-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 12px;
}

#photo-canvas {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-saffron);
  background: #111;
}

.preview-status {
  font-size: 0.8rem;
  color: var(--color-saffron);
  font-weight: 500;
}

.form-actions {
  margin-top: 28px;
}

/* Customizer Output Section */
.customizer-output {
  animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.output-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-saffron);
}

.output-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.qr-output-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sub-output-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.qr-canvas-wrapper {
  background: var(--color-white);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
}

#output-qr {
  display: block;
}

.links-output-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.output-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.copy-url-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

#output-url {
  flex: 1;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  outline: none;
}

.print-actions {
  background: rgba(152, 130, 60, 0.05);
  border: 1px solid rgba(152, 130, 60, 0.2);
  border-radius: var(--border-radius-md);
  padding: 16px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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


/* ==========================================================================
   RESPONSIVE SCALING (MOBILE)
   ========================================================================== */

@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 24px;
  }
  
  .rep-card {
    position: relative;
    top: 0;
    height: auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-status {
    display: none;
  }
  
  .output-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-card {
    max-height: 95vh;
  }
}


/* ==========================================================================
   PHYSICAL PRINT STYLES
   ========================================================================== */
.print-only-container {
  display: none;
}

@media print {
  @page {
    margin: 0;
    size: auto;
  }

  /* Hide standard page elements and background settings */
  html, body {
    background-color: var(--color-white) !important;
    background-image: none !important;
    color: var(--color-text-dark) !important;
    font-family: 'Inter', sans-serif !important;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .web-view, 
  .modal-overlay,
  .main-footer {
    display: none !important;
  }

  /* Reveal and format print flyer template */
  .print-only-container {
    display: block !important;
    width: 100%;
    height: 100%;
    padding: 10mm;
    box-sizing: border-box;
  }

  /* Header Branding */
  .print-header {
    border-bottom: 3px solid #0f172a;
    padding-bottom: 6px;
    margin-bottom: 8px;
  }

  .print-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .print-logo-container {
    display: flex;
    align-items: center;
  }

  .print-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
  }

  .print-motto {
    font-size: 10.5pt;
    font-weight: 600;
    color: #475569;
  }

  /* Hero Section */
  .print-hero {
    background-color: #0f172a !important; /* Forces dark block print header */
    color: var(--color-white) !important;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: center;
  }

  .print-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22pt;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--color-white) !important;
  }

  .print-main-subtitle {
    font-size: 11pt;
    color: #94a3b8 !important;
    font-weight: 500;
  }

  .print-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 10px 0;
  }

  /* Layout Columns */
  .print-body-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
  }

  /* Left Column: Services */
  .print-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14pt;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 4px;
  }

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

  .print-service-item {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
  }

  .print-service-num {
    font-family: 'Outfit', sans-serif;
    font-size: 16pt;
    font-weight: 800;
    color: #D1A110;
    min-width: 28px;
  }

  .print-service-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 11.5pt;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
  }

  .print-service-body p {
    font-size: 9.5pt;
    color: #475569;
    line-height: 1.4;
  }

  /* Right Column: Rep & QR */
  .print-card-wrapper {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
  }

  .print-rep-flex {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .print-avatar-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #D1A110;
  }

  #print-rep-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  .print-rep-meta {
    flex: 1;
  }

  .print-rep-name {
    font-family: 'Outfit', sans-serif;
    font-size: 12pt;
    font-weight: 700;
    color: #0f172a;
  }

  .print-rep-title {
    font-size: 9.5pt;
    color: #D1A110;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .print-contact-list {
    font-size: 8.5pt;
    color: #475569;
    line-height: 1.4;
  }

  .print-contact-list span {
    font-weight: 600;
    color: #0f172a;
  }

  /* QR Code Box */
  .print-qr-container {
    border: 2px dashed #D1A110;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    background-color: #fff9e6 !important;
  }

  .print-qr-title {
    font-family: 'Outfit', sans-serif;
    font-size: 11pt;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
  }

  .print-qr-text {
    font-size: 8pt;
    color: #475569;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .print-qr-wrapper {
    background-color: #ffffff !important;
    padding: 8px;
    border-radius: 4px;
    display: inline-flex;
    border: 1px solid #cbd5e1;
    margin-bottom: 6px;
  }

  #print-qr-img {
    width: 90px;
    height: 90px;
    display: block;
  }

  .print-domain {
    font-family: 'Outfit', sans-serif;
    font-size: 9pt;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.5px;
  }

  /* Print Footer */
  .print-footer {
    position: absolute;
    bottom: 10mm;
    left: 10mm;
    right: 10mm;
    border-top: 1px solid #cbd5e1;
    padding-top: 10px;
    text-align: center;
  }

  .print-footer-text {
    font-size: 8.5pt;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
  }
}
