/* ===== RESET & VARIABLES ===== */
:root {
  --color-primary: #a82e2e;
  --color-primary-dark: #8b2323;
  --color-secondary: #f4e9d8;
  --color-dark: #2d2d2d;
  --color-light: #ffffff;
  --color-border: #e0e0e0;
  --color-text: #4a4a4a;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background-color: #f9f9f9;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  line-height: 1.2;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

.hidden {
  display: none !important;
}

/* ===== LAYOUT & HERO ===== */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(45,45,45,0.9) 0%, rgba(20,20,20,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--color-light);
}

.hero-title {
  color: var(--color-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.main-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem 4rem;
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}

.status-banner {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  display: inline-block;
}

.status-banner h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ===== COUNTDOWN ===== */
.countdown-container {
  margin-top: 2rem;
  text-align: center;
}
.countdown-label {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  min-width: 80px;
}
.countdown-item span:first-child {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.cd-label {
  font-size: 0.75rem;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.ended {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab {
  background: var(--color-light);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tab.active {
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.tab.active::after {
  background-color: var(--color-primary);
}

/* ===== CARDS & FORMS ===== */
.card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.error-message {
  background-color: #fef2f2;
  color: #b91c1c;
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid #ef4444;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(168, 46, 46, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.checkbox-label.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-label.disabled input {
  cursor: not-allowed;
}

/* ===== TERMS & CONDITIONS ===== */
.terms-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.terms-scroll-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  max-height: 250px;
  overflow-y: auto;
  font-size: 0.85rem;
  color: #4b5563;
  background: #f9fafb;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.terms-scroll-box p {
  margin-bottom: 0.75rem;
}

.terms-scroll-box p:last-child {
  margin-bottom: 0;
}

/* ===== VALIDATION STYLES ===== */
.required-asterisk {
  color: #ef4444;
  margin-left: 0.25rem;
  font-weight: bold;
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.was-validated input:invalid:focus,
.was-validated select:invalid:focus,
.was-validated textarea:invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.was-validated .file-drop-area:has(input:invalid) {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.was-validated input[type="checkbox"]:invalid {
  outline: 2px solid #ef4444;
}

/* File Upload */
.file-drop-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: #fafafa;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.file-drop-area:hover, .file-drop-area.dragover {
  border-color: var(--color-primary);
  background-color: #fdf5f5;
}

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

.file-msg {
  color: var(--color-text);
  font-weight: 500;
}

.file-hint {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

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

.btn-primary {
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(168, 46, 46, 0.2);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(168, 46, 46, 0.3);
}

.btn-secondary {
  background-color: #e5e7eb;
  color: var(--color-dark);
}

.btn-secondary:hover:not(:disabled) {
  background-color: #d1d5db;
}

/* ===== POST ENTRY / SUCCESS ===== */
.success-header {
  text-align: center;
  margin-bottom: 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.email-confirmation-note {
  background-color: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-weight: 500;
  display: inline-block;
  font-size: 0.95rem;
}

.user-submission-preview {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #f3f4f6;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-submission-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.share-section, .bonus-section {
  background-color: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.share-section h3, .bonus-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.btn-social {
  flex: 1;
  color: white;
}

.btn-fb { background-color: #1877f2; }
.btn-fb:hover { background-color: #166fe5; }
.btn-tw { background-color: #0f1419; }
.btn-tw:hover { background-color: #272c30; }

.copy-link-group {
  display: flex;
  gap: 0.5rem;
}

.copy-link-group input {
  background-color: #fff;
  flex: 1;
}

#bonus-count {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1em;
}

/* ===== GALLERY SECTION ===== */
.gallery-header {
  text-align: center;
  margin: 2rem 0 3rem;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.gallery-filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  background-color: #f3f4f6;
  border: 1px solid transparent;
  color: #4b5563;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background-color: #e5e7eb;
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 2px 4px rgba(168, 46, 46, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
}

.gallery-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Gallery Card */
.gallery-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  background-color: #f3f4f6;
  cursor: pointer;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-img-wrapper:hover .card-img {
  transform: scale(1.05);
}

.card-category-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.btn-vote-small {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.btn-vote-small:hover {
  background-color: var(--color-primary);
  color: white;
}

.voted-indicator {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4rem;
}

/* Card Share Row */
.card-share-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.btn-card-share {
  flex: 1;
  background-color: #f3f4f6;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn-card-share:hover {
  background-color: #e5e7eb;
  color: var(--color-dark);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-content {
  display: flex;
  width: 90%;
  max-width: 1200px;
  height: 85vh;
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-image-container {
  flex: 1;
  position: relative;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

.lightbox-sidebar {
  width: 350px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  background-color: var(--color-light);
  overflow-y: auto;
}

.lightbox-meta {
  margin-bottom: 2rem;
}

.category-badge {
  display: inline-block;
  background-color: #f3f4f6;
  color: #4b5563;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.lightbox-vote-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.btn-large {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

.vote-count-pill {
  background-color: rgba(255,255,255,0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.voted-msg {
  color: #10b981;
  font-weight: 600;
  text-align: center;
  background-color: #d1fae5;
  padding: 1rem;
  border-radius: var(--radius-md);
}

.lightbox-share p {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.share-buttons-small {
  display: flex;
  gap: 0.5rem;
}

.btn-icon {
  flex: 1;
  padding: 0.75rem 0;
  background-color: #f3f4f6;
  color: #4b5563;
}

.btn-icon:hover {
  background-color: #e5e7eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .lightbox-content {
    flex-direction: column;
    height: 95vh;
  }
  
  .lightbox-image-container {
    height: 60%;
    flex: none;
  }
  
  .lightbox-sidebar {
    width: 100%;
    height: 40%;
    padding: 1.5rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
    padding: 3rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .card {
    padding: 2rem 1.5rem;
  }
  
  .gallery-filters {
    flex-direction: column;
  }
  
  .share-buttons {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .countdown { gap: 0.5rem; }
  .countdown-item { min-width: 60px; padding: 0.75rem; }
  .countdown-item span:first-child { font-size: 1.75rem; }
}

/* ===== LOADER / SPINNER ===== */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

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

#submit-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#submit-spinner.hidden {
  display: none !important;
}

/* ===== CONFIRMATION MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--color-light, #ffffff);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg, 0 10px 25px rgba(0,0,0,0.2));
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: #999;
  padding: 0.5rem;
  line-height: 1;
}

.modal-close:hover { color: var(--color-dark, #333); }

.modal-icon {
  width: 60px; height: 60px;
  background-color: #10b981; color: white;
  border-radius: 50%; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--color-dark, #1f2937);
  font-family: 'Playfair Display', serif;
}

.modal-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Order Numbers */
.card-order-number, .lightbox-order-number {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.lightbox-order-number {
  margin-top: 0.5rem;
}
