/* ============================================================
   الای‌بیز — صفحه جزئیات کسب‌وکار
   (breadcrumb، badge، form، modal و … در styles.css هستند)
   ============================================================ */

.detail-page { background: var(--bg); }

/* --- بالای صفحه --- */
.detail-hero { background: var(--surface); border-bottom: 1px solid var(--border); padding-bottom: var(--sp-6); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding-top: var(--sp-4);
  min-width: 0;
}
.hero-grid > * { min-width: 0; max-width: 100%; }

/* گالری */
.gallery { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 100%; min-width: 0; }
.gallery-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
  cursor: zoom-in;
}
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
}
.gallery-badge svg { width: 15px; height: 15px; }
.gallery-zoom {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.gallery-zoom svg { width: 15px; height: 15px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: var(--sp-2); }
.gallery-thumb {
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
  padding: 0;
  transition: border-color var(--dur);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }

/* اطلاعات اصلی */
.hero-info { display: flex; flex-direction: column; gap: var(--sp-3); }
.hero-info-head { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.hero-titlebar { display: flex; align-items: center; gap: var(--sp-3); }
.hero-logo {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-soft);
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.hero-title { font-size: clamp(1.4rem, 2.5vw, 1.95rem); font-weight: 800; line-height: 1.35; display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); color: var(--text-muted); flex-wrap: wrap; }
.hero-cat {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 700;
}
.hero-place { display: inline-flex; align-items: center; gap: var(--sp-1); }
.hero-place svg { width: 15px; height: 15px; color: var(--primary); }
.hero-lead { color: var(--text); font-size: var(--fs-base); line-height: 1.9; }

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
}
.hero-contact li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); }
.hero-contact svg { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.hero-contact a { color: var(--primary); }

.hero-actions { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.hero-cta { flex: 1; min-width: 150px; }
.hero-icon-btn {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--dur), color var(--dur);
}
.hero-icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.hero-icon-btn svg { width: 20px; height: 20px; }

/* --- محتوای اصلی --- */
.detail-content { padding-block: var(--sp-7); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
  min-width: 0;
}
.detail-grid > * { min-width: 0; max-width: 100%; width: 100%; }
#detailMain { overflow-wrap: anywhere; }

.detail-section { padding-block: var(--sp-5); border-bottom: 1px solid var(--border); scroll-margin-top: calc(var(--header-h) + 60px); min-width: 0; max-width: 100%; }
.detail-section:first-child { padding-top: 0; }
.detail-section:last-child { border-bottom: none; }
.detail-section-title { font-size: var(--fs-xl); font-weight: 800; margin-bottom: var(--sp-4); }

/* پیمایش داخلی صفحه */
.detail-tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  display: flex;
  gap: var(--sp-1);
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: var(--sp-2);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.detail-tabs::-webkit-scrollbar { display: none; }
.detail-tab {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background-color var(--dur), color var(--dur);
}
.detail-tab:hover, .detail-tab.active { background: var(--primary-soft); color: var(--primary-dark); }

.about-body { display: flex; flex-direction: column; gap: var(--sp-4); min-width: 0; max-width: 100%; }
.about-block { min-width: 0; max-width: 100%; }
.about-block h3 { font-size: var(--fs-base); font-weight: 800; margin-bottom: var(--sp-2); color: var(--primary-dark); }
.about-block p { font-size: var(--fs-base); line-height: 2; }

/* ویدیو */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand-900, #0F172A);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.video-play span.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(13, 148, 136, .5);
  transition: transform var(--dur) var(--ease-out);
}
.video-play:hover span.play-circle { transform: scale(1.08); }
.video-play svg { width: 30px; height: 30px; }

/* رزرو نوبت */
.booking-box { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: linear-gradient(120deg, var(--primary-deep), var(--primary-dark));
  color: #fff;
  flex-wrap: wrap;
}
.booking-head h3 { font-size: var(--fs-lg); font-weight: 800; }
.booking-head p { font-size: var(--fs-xs); color: rgba(255, 255, 255, .78); margin-top: 2px; }
.booking-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-5); }

.booking-days { display: flex; gap: var(--sp-2); overflow-x: auto; padding-bottom: var(--sp-2); scrollbar-width: thin; }
.booking-day {
  flex: 0 0 auto;
  min-width: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--sp-3) var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color var(--dur), background-color var(--dur), color var(--dur);
}
.booking-day small { font-size: var(--fs-xs); color: var(--text-muted); }
.booking-day strong { font-size: var(--fs-base); font-weight: 800; }
.booking-day:hover:not(:disabled) { border-color: var(--primary); }
.booking-day[aria-pressed="true"] { border-color: var(--primary); background: var(--primary); color: #fff; }
.booking-day[aria-pressed="true"] small { color: rgba(255, 255, 255, .8); }
.booking-day:disabled { opacity: .45; cursor: not-allowed; }

.booking-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: var(--sp-2); }
.booking-slot {
  padding: var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text);
  transition: border-color var(--dur), background-color var(--dur), color var(--dur);
}
.booking-slot:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.booking-slot[aria-pressed="true"] { border-color: var(--primary); background: var(--primary); color: #fff; }
.booking-slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* امکانات */
.services-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--sp-2); }
.services-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.services-list li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* آدرس و نقشه */
#address { max-width: 100%; min-width: 0; overflow-x: clip; }
.address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-4);
  min-width: 0;
  max-width: 100%;
}
.address-grid > * { min-width: 0; max-width: 100%; width: 100%; }
.address-list { display: flex; flex-direction: column; gap: 0; font-size: var(--fs-sm); margin: 0; min-width: 0; }
.address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-1);
  padding: var(--sp-2) 0;
  border-bottom: 1px dashed var(--border);
  min-width: 0;
  max-width: 100%;
}
.address-row:last-child { border-bottom: none; }
.address-list dt {
  color: var(--text-muted);
  font-weight: 700;
  margin: 0;
}
.address-list dd {
  font-weight: 700;
  margin: 0;
  text-align: start;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  min-width: 0;
  max-width: 100%;
}
.address-map { min-width: 0; max-width: 100%; }
.address-map .btn { margin-top: var(--sp-3); max-width: 100%; white-space: normal; }
.address-map .map-frame,
.address-map #map,
.address-map .leaflet-container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}
.detail-map {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.detail-map #map {
  position: absolute;
  inset: 0;
  height: 100% !important;
}

/* ساعات کاری */
.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px dashed var(--border);
  font-size: var(--fs-sm);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { font-weight: 800; color: var(--primary-dark); }
.hours-time { direction: ltr; font-weight: 700; }

/* نظرات */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.reviews-score { text-align: center; min-width: 110px; }
.reviews-score strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary-deep); line-height: 1.2; }
.reviews-score span { font-size: var(--fs-xs); color: var(--text-muted); }
.reviews-bars { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: var(--sp-1); }
.reviews-bar { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--text-muted); }
.reviews-bar > span:first-child { min-width: 18px; }
.reviews-bar > svg { width: 13px; height: 13px; fill: var(--accent); flex-shrink: 0; }
.reviews-bar .meter { flex: 1; }
.reviews-bar > span:last-child { min-width: 22px; text-align: left; }

.reviews-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.review-item { padding: var(--sp-4); border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); }
.review-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-2); flex-wrap: wrap; }
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-weight: 700; font-size: var(--fs-sm); }
.review-date { font-size: var(--fs-xs); color: var(--text-muted); }
.review-head .stars { margin-inline-start: auto; }
.review-text { font-size: var(--fs-base); line-height: 1.9; }
.review-reply {
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  border-inline-start: 3px solid var(--primary);
  border-radius: var(--r-sm);
  background: var(--surface-soft);
}
.review-reply-head { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); font-weight: 800; color: var(--primary-dark); margin-bottom: var(--sp-1); }
.review-reply-head svg { width: 15px; height: 15px; flex-shrink: 0; }
.review-reply p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.9; }

.review-form { margin-top: var(--sp-5); padding: var(--sp-5); border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface-soft); }
.review-form-title { font-size: var(--fs-base); font-weight: 800; margin-bottom: var(--sp-4); }
.rating-input { display: flex; gap: var(--sp-1); }
.rating-star-btn { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; }
.rating-star-btn svg { width: 28px; height: 28px; fill: var(--border-strong); transition: fill var(--dur), transform var(--dur); }
.rating-star-btn.active svg, .rating-star-btn:hover svg { fill: var(--accent); transform: scale(1.08); }

/* --- سایدبار --- */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: static;
}
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-4); }
.sidebar-title { font-size: var(--fs-base); font-weight: 800; margin-bottom: var(--sp-3); }

.rate-box { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); text-align: center; }
.rate-box .rating-input { justify-content: center; }
.rate-box p { font-size: var(--fs-xs); color: var(--text-muted); }

.contact-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.contact-list a, .contact-list span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: border-color var(--dur), color var(--dur);
}
.contact-list a:hover { border-color: var(--primary); color: var(--primary); }
.contact-list svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.social-row { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-muted);
  transition: border-color var(--dur), color var(--dur), transform var(--dur) var(--ease-out);
}
.social-row a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }

/* اشتراک‌گذاری */
.share-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  transition: border-color var(--dur), color var(--dur), transform var(--dur) var(--ease-out);
}
.share-item:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #fff;
}
.share-icon svg { width: 19px; height: 19px; }
.share-icon.wa { background: #25D366; }
.share-icon.tg { background: #0088CC; }
.share-icon.em { background: #EA4335; }
.share-icon.cp { background: var(--primary); }

/* کیو‌آر */
.qr-box { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.qr-img {
  width: 168px; height: 168px;
  padding: var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
}
.qr-box p { font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* --- کسب‌وکارهای مرتبط --- */
.detail-related { background: var(--surface); border-top: 1px solid var(--border); padding-block: var(--sp-7); overflow-x: clip; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); gap: var(--sp-4); }

/* --- لایت‌باکس گالری --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  background: rgba(15, 23, 42, .95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  box-sizing: border-box;
  overscroll-behavior: contain;
}
.lightbox:not([hidden]) { display: flex !important; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transition: background-color var(--dur);
  z-index: 1;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, .26); }
.lightbox-close { top: var(--sp-4); inset-inline-end: var(--sp-4); }
.lightbox-prev { top: 50%; transform: translateY(-50%); inset-inline-start: var(--sp-4); }
.lightbox-next { top: 50%; transform: translateY(-50%); inset-inline-end: var(--sp-4); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; }
.lightbox-img-wrap {
  max-width: min(92vw, 100%);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: var(--r-md);
  object-fit: contain;
}
.lightbox-counter {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
}

/* --- واکنش‌گرایی --- */
@media (min-width: 993px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; }
  .detail-grid { grid-template-columns: minmax(0, 1fr) 340px; }
  .detail-sidebar { position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
  .address-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 992px) {
  .related-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
  .detail-content,
  .detail-grid,
  #detailMain,
  #address,
  .address-grid,
  .address-list,
  .address-map {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .address-grid {
    display: flex;
    flex-direction: column;
  }
  .address-row,
  .address-list li {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .address-list dt,
  .address-list dd {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: start;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-cta, .hero-icon-btn { width: 100%; }
  .share-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); }
  .lightbox { padding: var(--sp-3); }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .reviews-bars { min-width: 0; }
}

.business-description-content {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  line-height: 2;
}
.business-description-content > * {
  max-width: 100%;
}
.business-description-content img,
.business-description-content video,
.business-description-content iframe {
  max-width: 100%;
  height: auto;
}
.business-description-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

#rating .star {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--border-strong);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
#rating .star svg { width: 28px; height: 28px; fill: currentColor; }

.captcha-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.captcha-row img {
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: #fff;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
}
.review-actions a { color: var(--primary); cursor: pointer; }

#qrcode {
  width: 168px;
  height: 168px;
  padding: var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
}
#qrcode canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
}
#qrcode img { display: none !important; }
