/* Share Page - Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

.share-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
}

/* ==================== Loading State ==================== */
.share-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.loading-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.share-loading p {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.hayvee-badge {
  margin-top: 24px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
}

.hayvee-text {
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ==================== Error State ==================== */
.share-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.error-icon {
  font-size: 72px;
  margin-bottom: 24px;
}

.share-error h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.share-error p {
  color: #64748b;
  font-size: 16px;
  max-width: 400px;
  line-height: 1.6;
}

.error-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.hayvee-brand-large {
  text-align: center;
}

.hayvee-logo-text {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hayvee-brand-large p {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 8px;
}

/* ==================== Header ==================== */
.share-header {
  background: white;
  padding: 16px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.company-logo {
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.company-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.company-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.powered-by {
  font-size: 12px;
  color: #94a3b8;
}

.hayvee-brand {
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.hayvee-link {
  text-decoration: none;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hayvee-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hayvee-logo-small {
  color: white;
  font-size: 14px;
  font-weight: 700;
}

/* ==================== Work Order Card ==================== */
.wo-card {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 24px;
}

.wo-card-container {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.wo-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wo-badge {
  font-size: 13px;
  font-weight: 700;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.wo-status-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: capitalize;
}

.wo-status-badge.status-complete { background: #d1fae5; color: #065f46; }
.wo-status-badge.status-submitted { background: #e0e7ff; color: #3730a3; }
.wo-status-badge.status-paid { background: #cffafe; color: #0e7490; }
.wo-status-badge.status-in_progress { background: #fef3c7; color: #92400e; }
.wo-status-badge.status-hold { background: #fff7ed; color: #ea580c; }
.wo-status-badge.status-assigned { background: #dbeafe; color: #1e40af; }
.wo-status-badge.status-rework { background: #fee2e2; color: #991b1b; }

.wo-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 20px;
  line-height: 1.3;
}

.wo-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wo-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.detail-icon {
  font-size: 20px;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.detail-value {
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}

/* ==================== Gallery Section ==================== */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.gallery-container {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.photo-count {
  font-size: 14px;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
}

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

.download-dropdown {
  position: relative;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-icon {
  font-size: 16px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  min-width: 200px;
  z-index: 50;
  animation: fadeIn 0.2s ease;
}

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

.dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  font-size: 14px;
  color: #334155;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}

.dropdown-menu button:hover {
  background: #f8fafc;
}

.dropdown-menu button span {
  font-size: 18px;
}

/* ==================== Category Tabs ==================== */
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.category-tab:hover {
  border-color: #667eea;
  color: #667eea;
}

.category-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: white;
}

.tab-count {
  background: rgba(0,0,0,0.1);
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.category-tab.active .tab-count {
  background: rgba(255,255,255,0.2);
}

/* ==================== Photo Grid ==================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
}

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

.photo-item:hover img {
  transform: scale(1.08);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.overlay-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.overlay-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.overlay-btn:hover {
  transform: scale(1.1);
}

.photo-tag {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  align-self: flex-start;
}

.no-photos {
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
}

.no-photos-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.no-photos p {
  font-size: 16px;
}

/* ==================== Photo Viewer ==================== */
.photo-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(0,0,0,0.5);
}

.viewer-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.viewer-close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.viewer-close:hover {
  background: rgba(255,255,255,0.2);
}

.viewer-counter {
  color: white;
  font-size: 15px;
  font-weight: 500;
}

.viewer-header-right {
  display: flex;
  gap: 12px;
}

.viewer-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.viewer-action-btn:hover {
  background: rgba(255,255,255,0.2);
}

.viewer-main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 80px;
}

.viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewer-nav:hover {
  background: rgba(255,255,255,0.2);
}

.viewer-nav.prev { left: 20px; }
.viewer-nav.next { right: 20px; }

.viewer-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100vh - 200px);
  position: relative;
}

.viewer-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s;
}

/* Photo Loader */
.photo-loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Thumbnail Strip */
.viewer-thumbnails {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(0,0,0,0.5);
  overflow-x: auto;
  scroll-behavior: smooth;
}

.viewer-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.viewer-thumbnails::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.viewer-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.thumbnail-item {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.thumbnail-item:hover {
  opacity: 0.8;
}

.thumbnail-item.active {
  opacity: 1;
  border-color: white;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== Info Modal ==================== */
.info-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.info-modal {
  background: white;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  animation: modalSlide 0.3s ease;
}

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

.info-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.info-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.info-close {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #64748b;
  transition: background 0.2s;
}

.info-close:hover {
  background: #e2e8f0;
}

.info-modal-content {
  padding: 20px 24px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.info-value {
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  color: #667eea;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.map-link:hover {
  text-decoration: underline;
}

/* ==================== Footer ==================== */
.share-footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 48px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

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

.hayvee-logo-footer {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 15px;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-links a,
.footer-links .link-item {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #a78bfa;
}

.footer-links .divider {
  color: #475569;
}

/* App Store Badges */
.app-store-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.store-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.store-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-label {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.store-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.footer-meta {
  text-align: right;
}

.expiry-notice {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* ==================== Download Progress Overlay ==================== */
.download-progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.download-progress-modal {
  background: white;
  border-radius: 20px;
  padding: 32px 40px;
  min-width: 320px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease-out;
}

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

.download-progress-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.download-icon {
  font-size: 48px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.download-progress-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.progress-bar-container {
  height: 8px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* ==================== Hayvee Brand Link ==================== */
.hayvee-brand-link {
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hayvee-brand-link:hover {
  opacity: 0.8;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
  .share-header {
    padding: 12px 16px;
  }
  
  .header-container {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  
  .header-left {
    gap: 12px;
  }
  
  .company-logo {
    height: 40px;
    max-width: 120px;
  }
  
  .company-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
  
  .company-name {
    font-size: 15px;
  }
  
  .powered-by {
    font-size: 11px;
  }
  
  .wo-card-container,
  .gallery-container {
    padding: 16px;
  }
  
  .wo-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .wo-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .wo-title {
    font-size: 18px;
  }
  
  .wo-details {
    gap: 12px;
  }
  
  .wo-detail-item {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .detail-icon {
    font-size: 16px;
    margin-top: 2px;
  }
  
  .detail-label {
    font-size: 11px;
  }
  
  .detail-value {
    font-size: 13px;
  }
  
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .gallery-title h3 {
    font-size: 18px;
  }
  
  .gallery-actions {
    width: 100%;
  }
  
  .btn-download {
    width: 100%;
    justify-content: center;
  }
  
  .category-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }
  
  .category-tab {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .photo-item {
    border-radius: 10px;
  }
  
  .viewer-main {
    padding: 0 8px;
  }
  
  .viewer-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .viewer-nav.prev { left: 4px; }
  .viewer-nav.next { right: 4px; }
  
  .viewer-controls {
    padding: 8px 16px;
    gap: 8px;
  }
  
  .viewer-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .thumbnail-strip {
    gap: 6px;
    padding: 12px 16px;
  }
  
  .thumbnail {
    width: 56px;
    height: 56px;
    border-radius: 6px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 24px 16px;
  }
  
  .footer-branding {
    align-items: center;
  }
  
  .footer-logo {
    font-size: 22px;
  }
  
  .footer-tagline {
    font-size: 13px;
  }
  
  .app-store-badges {
    flex-direction: column;
    width: 100%;
    max-width: 200px;
  }
  
  .store-badge {
    justify-content: center;
    padding: 10px 16px;
  }
  
  .store-name {
    font-size: 14px;
  }
  
  .footer-meta {
    text-align: center;
  }
  
  .expiry-notice {
    font-size: 12px;
  }
  
  /* Download progress modal on mobile */
  .download-progress-modal {
    margin: 16px;
    min-width: auto;
    padding: 24px;
  }
  
  .download-icon {
    font-size: 40px;
  }
  
  .download-progress-header h4 {
    font-size: 16px;
  }
}
