/* ======================================================
   FIRMA.CSS – NOWOCZESNA STRONA FIRMY v2
   Wzorowana na produkt.css
   PATH: /public_html/app/portal/css/firma.css
====================================================== */

/* ================= HERO SECTION ================= */

.frm-hero-wrap{
  background:#f0fdfa;
  border-bottom:1px solid #e0f7fa;
  padding:32px 0;
}

.frm-hero-inner{
  display:flex;
  gap:32px;
  align-items:flex-start;
}

/* Logo */
.frm-hero-logo{
  flex-shrink:0;
}

.frm-logo-img{
  width:180px;
  height:180px;
  object-fit:contain;
  border-radius:18px;
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  border:1px solid #e0f7fa;
}

.frm-logo-placeholder{
  width:180px;
  height:180px;
  border-radius:18px;
  background:linear-gradient(135deg,#065f6c,#0e7490);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 4px 20px rgba(8,145,178,.15);
}

.frm-logo-letter{
  font-size:64px;
  font-weight:900;
  color:#fff;
  line-height:1;
}

.frm-logo-name{
  font-size:11px;
  color:rgba(255,255,255,.7);
  font-weight:600;
  max-width:150px;
  text-align:center;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* Hero info */
.frm-hero-info{
  flex:1;
  min-width:0;
}

.frm-hero-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.frm-status-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:5px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  white-space:nowrap;
}

.frm-status-active{
  background:#e6f4ea;
  color:#1e7e34;
}

.frm-status-suspended{
  background:#fff3e0;
  color:#ef6c00;
}

.frm-status-closed{
  background:#fdecea;
  color:#c62828;
}

.frm-status-verified{
  background:#e8eaf6;
  color:#0891b2;
}

.frm-hero-address{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#555;
  margin-bottom:12px;
}

.frm-hero-address svg{
  flex-shrink:0;
  stroke:#0891b2;
}

.frm-hero-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.frm-tag{
  background:#0891b2;
  color:#fff;
  padding:5px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  text-decoration:none;
  transition:background .2s;
}

.frm-tag:hover{
  background:#0e7490;
  color:#fff;
}

.frm-hero-stats{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

.frm-stat{
  display:flex;
  align-items:baseline;
  gap:6px;
}

.frm-stat-val{
  font-size:28px;
  font-weight:900;
  color:#0891b2;
  line-height:1;
}

.frm-stat-label{
  font-size:13px;
  color:#777;
  font-weight:600;
}

/* ================= AD BANNER ================= */

.frm-ad-banner{
  margin:16px auto;
}

.frm-ad-slot{
  min-height:90px;
}

.frm-ad-placeholder{
  background:#f0fdfa;
  border:2px dashed #e0ddf0;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:90px;
  color:#999;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
}

.frm-ad-sidebar .frm-ad-placeholder{
  min-height:250px;
}

/* ================= WRAPPER ================= */

.frm-wrapper{
  padding-top:20px;
  padding-bottom:40px;
}

/* ================= ALERTS ================= */

.frm-alert{
  padding:14px 18px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  margin-bottom:16px;
}

.frm-alert-ok{
  background:#e6f4ea;
  color:#1e7e34;
  border:1px solid #c3e6cb;
}

.frm-alert-err{
  background:#fdecea;
  color:#c62828;
  border:1px solid #f5c6cb;
}

/* ================= MAIN GRID ================= */

.frm-main-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:24px;
}

.frm-content-col{
  min-width:0;
}

.frm-sidebar-col{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ================= CARDS ================= */

.frm-card{
  background:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  border:1px solid #f0eff5;
}

/* ================= TABS ================= */

.frm-tabs{
  display:flex;
  gap:2px;
  border-bottom:2px solid #e0f7fa;
  margin-bottom:20px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.frm-tab{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:12px 18px;
  border:none;
  background:none;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  color:#777;
  white-space:nowrap;
  border-bottom:3px solid transparent;
  margin-bottom:-2px;
  transition:all .2s;
}

.frm-tab:hover{
  color:#0891b2;
  background:rgba(8,145,178,.04);
}

.frm-tab.active{
  color:#0891b2;
  border-bottom-color:#0891b2;
}

.frm-tab svg{
  flex-shrink:0;
  opacity:.65;
}

.frm-tab.active svg{
  opacity:1;
}

.frm-tab-count{
  background:#0891b2;
  color:#fff;
  font-size:11px;
  font-weight:800;
  padding:2px 7px;
  border-radius:999px;
  min-width:20px;
  text-align:center;
}

/* TAB PANELS */
.frm-tab-panel{
  display:none;
}

.frm-tab-panel.active{
  display:block;
  animation:frmFadeIn .25s ease;
}

@keyframes frmFadeIn{
  from{opacity:0;transform:translateY(6px)}
  to{opacity:1;transform:translateY(0)}
}

/* ================= OPIS / DESCRIPTION ================= */

.frm-description-content{
  font-size:15px;
  line-height:1.7;
  color:#333;
}

.frm-description-content p{
  margin:0 0 12px;
}

.frm-description-content h2,
.frm-description-content h3{
  color:#0e7490;
  margin:24px 0 8px;
}

.frm-empty-state{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
  padding:40px 20px;
  color:#999;
}

.frm-empty-state strong{
  color:#666;
  font-size:16px;
}

.frm-empty-state span{
  font-size:13px;
}

/* ================= GALLERY ================= */

.frm-gallery{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid #eee;
}

.frm-gallery h3{
  margin:0 0 12px;
  color:#0e7490;
  font-size:16px;
}

.frm-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
  gap:10px;
}

.frm-gallery-item{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  transition:transform .2s;
}

.frm-gallery-item:hover{
  transform:scale(1.03);
}

/* ================= INFO GRID (dane rejestrowe) ================= */

.frm-reg-status{
  margin-bottom:16px;
}

.frm-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.frm-info-item{
  padding:14px;
  background:#f0fdfa;
  border-radius:12px;
  border:1px solid #e0f7fa;
}

.frm-info-label{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:#888;
  margin-bottom:4px;
}

.frm-info-value{
  font-size:14px;
  font-weight:600;
  color:#333;
  word-break:break-word;
}

.frm-info-value small{
  font-weight:500;
  color:#888;
}

/* ================= PKD ================= */

.frm-pkd-section{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid #eee;
}

.frm-pkd-section h3{
  margin:0 0 10px;
  font-size:15px;
  color:#0e7490;
}

.frm-pkd-list{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.frm-pkd-row{
  display:flex;
  gap:10px;
  align-items:baseline;
  padding:8px 12px;
  background:#f0fdfa;
  border-radius:8px;
  font-size:13px;
}

.frm-pkd-code{
  font-weight:800;
  color:#0891b2;
  white-space:nowrap;
  min-width:60px;
}

.frm-pkd-desc{
  color:#555;
}

/* GUS footer */
.frm-gus-footer{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid #eee;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  color:#999;
}
.frm-gus-date{
  display:flex;
  align-items:center;
  gap:6px;
}
.frm-gus-refresh-btn{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:5px 12px;
  border:1px solid #0891b2;
  border-radius:6px;
  background:#fff;
  color:#0891b2;
  font-size:12px;
  font-weight:500;
  cursor:pointer;
  transition:all .2s;
}
.frm-gus-refresh-btn:hover{
  background:#0891b2;
  color:#fff;
}
.frm-gus-refresh-btn:hover .frm-gus-refresh-icon{
  stroke:#fff;
}
.frm-gus-refresh-btn.loading{
  opacity:.7;
  pointer-events:none;
}
.frm-gus-refresh-btn.loading .frm-gus-refresh-icon{
  animation:gusRefreshSpin 1s linear infinite;
}
@keyframes gusRefreshSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
.frm-gus-refresh-btn.success{
  border-color:#2e7d32;
  color:#2e7d32;
  background:#e8f5e9;
}
.frm-gus-refresh-btn.error{
  border-color:#c62828;
  color:#c62828;
  background:#ffebee;
}

/* ================= REVIEWS / OPINIE ================= */

.frm-rating-summary{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 0;
}

.frm-rating-big{
  text-align:center;
}

.frm-rating-number{
  font-size:48px;
  font-weight:900;
  color:#0891b2;
  line-height:1;
  display:block;
}

.frm-rating-stars-big{
  display:flex;
  justify-content:center;
  gap:4px;
  margin:8px 0;
}

.frm-star-big{
  font-size:28px;
  color:#ddd;
  line-height:1;
}

.frm-star-big.filled{
  color:#f5c518;
}

.frm-star-big.half{
  background:linear-gradient(90deg,#f5c518 50%,#ddd 50%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.frm-rating-count{
  font-size:14px;
  color:#888;
  font-weight:600;
}

.frm-divider{
  border:none;
  border-top:1px solid #eee;
  margin:20px 0;
}

.frm-reviews-body{
  min-height:60px;
}

/* Review form */
.frm-add-review h3{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  font-size:18px;
  color:#0e7490;
}

.frm-review-hint{
  color:#777;
  font-size:14px;
  margin:0 0 16px;
}

.frm-review-ratings{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.frm-review-rating-row{
  display:flex;
  align-items:center;
  gap:12px;
}

.frm-review-rating-row label{
  min-width:180px;
  font-size:14px;
  font-weight:600;
  color:#444;
}

.frm-star-select .star{
  font-size:24px;
  color:#ddd;
  cursor:pointer;
  transition:color .15s;
}

.frm-star-select .star.hover,
.frm-star-select .star.selected{
  color:#f5c518;
}

.req{
  color:#c62828;
}

.frm-login-prompt{
  text-align:center;
  padding:20px;
}

.frm-login-prompt p{
  margin:0 0 16px;
  color:#666;
}

/* ================= CONTACT ================= */

.frm-contact-details{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:20px;
}

.frm-contact-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.frm-contact-row svg{
  flex-shrink:0;
  margin-top:2px;
}

.frm-contact-row strong{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:#888;
  margin-bottom:2px;
}

.frm-contact-row a{
  color:#0891b2;
  text-decoration:none;
  font-weight:600;
}

.frm-contact-row a:hover{
  text-decoration:underline;
}

.frm-phone-link{
  font-size:18px;
}

/* Map */
.frm-map-section{
  margin-top:20px;
}

.frm-map-section h3{
  margin:0 0 10px;
  font-size:15px;
  color:#0e7490;
}

/* Contact tabs */
.frm-contact-tabs{
  display:flex;
  gap:4px;
  margin-bottom:16px;
}

.frm-contact-tab{
  flex:1;
  padding:10px 16px;
  border:2px solid #e0f7fa;
  background:#f0fdfa;
  color:#555;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  border-radius:10px;
  transition:all .2s;
}

.frm-contact-tab:hover{
  border-color:#0891b2;
  color:#0891b2;
}

.frm-contact-tab.active{
  background:#0891b2;
  color:#fff;
  border-color:#0891b2;
}

/* Form panels */
.frm-form-panel{
  display:none;
}

.frm-form-panel.active{
  display:block;
}

.frm-form label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#444;
  margin-bottom:4px;
  margin-top:12px;
}

.frm-form label:first-child{
  margin-top:0;
}

.frm-form textarea,
.frm-form input[type="email"],
.frm-form input[type="text"]{
  width:100%;
  padding:10px 14px;
  border:2px solid #e0f7fa;
  border-radius:10px;
  font-size:14px;
  font-family:inherit;
  transition:border-color .2s;
  box-sizing:border-box;
}

.frm-form textarea:focus,
.frm-form input:focus{
  outline:none;
  border-color:#0891b2;
}

/* ================= BUTTONS ================= */

.frm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  border:none;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  font-family:inherit;
  cursor:pointer;
  text-decoration:none;
  transition:all .2s;
  white-space:nowrap;
  box-sizing:border-box;
}

.frm-btn-primary{
  background:linear-gradient(135deg,#065f6c,#0e7490);
  color:#fff;
  box-shadow:0 4px 14px rgba(8,145,178,.25);
}

.frm-btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(8,145,178,.35);
}

.frm-btn-secondary{
  background:#e0f7fa;
  color:#0891b2;
}

.frm-btn-secondary:hover{
  background:#d9d5ec;
}

.frm-btn-ghost{
  background:#f5f5f5;
  color:#555;
}

.frm-btn-ghost:hover{
  background:#eee;
}

/* ================= SIDEBAR: CTA CARD ================= */

.frm-cta-card{
  position:sticky;
  top:20px;
}

.frm-cta-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid #eee;
  font-size:14px;
  color:#333;
}

.frm-cta-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.frm-cta-group .frm-btn{
  width:100%;
}

/* ================= SIDEBAR: HOURS ================= */

.frm-card-title{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  font-size:15px;
  color:#0e7490;
}

.frm-hours-table{
  width:100%;
  font-size:13px;
  border-collapse:collapse;
}

.frm-hours-table td{
  padding:7px 0;
  border-bottom:1px solid #f0eff5;
}

.frm-hours-table tr:last-child td{
  border-bottom:none;
}

.frm-hours-table td:first-child{
  font-weight:600;
  color:#444;
}

.frm-hours-table td:last-child{
  text-align:right;
  color:#666;
}

/* ================= SIDEBAR: MAP ================= */

.frm-map-card{
  padding:16px;
}

/* ================= SIDEBAR: FAVOURITES ================= */

.frm-fav-card{
  text-align:center;
}

.frm-fav-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  color:#888;
  cursor:pointer;
  transition:all .2s;
  text-decoration:none;
}

.frm-fav-btn:hover{
  color:#c62828;
}

.frm-fav-btn.active{
  color:#c62828;
}

/* ================= KLIKALNY ADRES ================= */

.frm-hero-address-link{
  cursor:pointer;
  text-decoration:none;
  color:#555;
  border:1px solid transparent;
  border-radius:10px;
  padding:6px 12px;
  margin:-6px -12px;
  transition:all .2s;
  background:none;
  font:inherit;
  display:flex;
  align-items:center;
  gap:8px;
}

.frm-hero-address-link:hover{
  background:#fff;
  border-color:#e0f7fa;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  color:#0891b2;
}

.frm-map-icon{
  opacity:.4;
  transition:opacity .2s;
  flex-shrink:0;
}

.frm-hero-address-link:hover .frm-map-icon{
  opacity:1;
}

.frm-contact-row-link{
  cursor:pointer;
  text-decoration:none;
  color:inherit;
  border:1px solid transparent;
  border-radius:12px;
  padding:12px;
  margin:-4px -12px;
  transition:all .2s;
  background:none;
  font:inherit;
  width:calc(100% + 24px);
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.frm-contact-row-link:hover{
  background:#f0fdfa;
  border-color:#e0f7fa;
}

.frm-contact-row-link .frm-map-icon{
  margin-left:auto;
  margin-top:8px;
}

/* ================= MAP MODAL ================= */

.frm-map-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  align-items:center;
  justify-content:center;
}

.frm-map-modal.open{
  display:flex;
}

.frm-map-modal-backdrop{
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.55);
  cursor:pointer;
}

.frm-map-modal-content{
  position:relative;
  background:#fff;
  border-radius:18px;
  width:90%;
  max-width:700px;
  max-height:90vh;
  overflow:auto;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  animation:frmModalIn .25s ease;
}

@keyframes frmModalIn{
  from{opacity:0;transform:scale(.95) translateY(10px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

.frm-map-modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 22px 12px;
  border-bottom:1px solid #eee;
}

.frm-map-modal-header h3{
  margin:0;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#0e7490;
}

.frm-map-modal-close{
  border:none;
  background:none;
  font-size:28px;
  color:#999;
  cursor:pointer;
  padding:0 4px;
  line-height:1;
  transition:color .2s;
}

.frm-map-modal-close:hover{
  color:#333;
}

.frm-map-modal-body{
  padding:16px 22px 22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:900px){
  .frm-main-grid{
    grid-template-columns:1fr;
  }

  .frm-hero-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .frm-hero-badges,
  .frm-hero-tags,
  .frm-hero-stats{
    justify-content:center;
  }

  .frm-hero-address{
    justify-content:center;
  }

  .frm-info-grid{
    grid-template-columns:1fr;
  }

  .frm-cta-card{
    position:static;
  }

  .frm-tabs{
    gap:0;
  }

  .frm-tab{
    padding:10px 12px;
    font-size:13px;
  }
}

@media (max-width:550px){
  .frm-hero-wrap{
    padding:20px 0;
  }

  .frm-logo-img,
  .frm-logo-placeholder{
    width:120px;
    height:120px;
  }

  .frm-logo-letter{
    font-size:44px;
  }

  .frm-stat-val{
    font-size:22px;
  }

  .frm-tab{
    padding:8px 10px;
    font-size:12px;
  }

  .frm-tab svg{
    display:none;
  }

  .frm-card{
    padding:16px;
    border-radius:12px;
  }

  .frm-review-rating-row{
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .frm-review-rating-row label{
    min-width:0;
  }

  .frm-contact-tabs{
    flex-direction:column;
  }

  .frm-btn{
    font-size:13px;
    padding:10px 16px;
  }

  .frm-rating-number{
    font-size:36px;
  }

  .frm-ad-banner{
    padding:0 12px;
  }

  .frm-rating-summary{
    flex-direction:column;
  }
}

/* ================= TIMELINE ================= */

.frm-timeline-section h3{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  color:#0e7490;
  margin:20px 0 12px;
}

.frm-timeline{
  position:relative;
  padding-left:24px;
}

.frm-timeline::before{
  content:'';
  position:absolute;
  left:7px;
  top:4px;
  bottom:4px;
  width:2px;
  background:#e0dce8;
}

.frm-timeline-item{
  position:relative;
  padding:0 0 16px;
}

.frm-timeline-item:last-child{
  padding-bottom:0;
}

.frm-timeline-dot{
  position:absolute;
  left:-21px;
  top:2px;
  width:12px;
  height:12px;
  border-radius:50%;
  border:2px solid #e0dce8;
  background:#fff;
}

.frm-timeline-active .frm-timeline-dot{
  border-color:#2e7d32;
  background:#2e7d32;
}

.frm-timeline-warn .frm-timeline-dot{
  border-color:#f57c00;
  background:#f57c00;
}

.frm-timeline-closed .frm-timeline-dot{
  border-color:#c62828;
  background:#c62828;
}

.frm-timeline-content{
  display:flex;
  align-items:baseline;
  gap:10px;
}

.frm-timeline-date{
  font-weight:700;
  font-size:13px;
  color:#333;
  min-width:80px;
}

.frm-timeline-label{
  font-size:13px;
  color:#666;
}

/* ================= RATING BARS ================= */

.frm-rating-summary{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

.frm-rating-bars{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:200px;
}

.frm-bar-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.frm-bar-label{
  font-size:12px;
  color:#666;
  min-width:32px;
  text-align:right;
}

.frm-bar-track{
  flex:1;
  height:8px;
  background:#f0eef5;
  border-radius:4px;
  overflow:hidden;
}

.frm-bar-fill{
  height:100%;
  background:linear-gradient(90deg,#0891b2,#06b6d4);
  border-radius:4px;
  transition:width .6s ease;
}

.frm-bar-count{
  font-size:12px;
  color:#999;
  min-width:20px;
}

/* ================= LEAFLET MAP ================= */

.frm-leaflet-section h3{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  color:#0e7490;
  margin:0 0 12px;
}

.frm-leaflet-map{
  width:100%;
  height:300px;
  border-radius:12px;
  border:1px solid #eee;
  z-index:1;
}

/* ================= QR CODE ================= */

.frm-qr-section h3{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  color:#0e7490;
  margin:20px 0 12px;
}

.frm-qr-wrap{
  display:flex;
  align-items:center;
  gap:16px;
}

#frm-qr-code svg{
  width:120px;
  height:120px;
}

.frm-qr-hint{
  font-size:12px;
  color:#888;
  margin:0;
}

/* ================= CLAIM FIRMY ================= */

.frm-claim-card{
  background:linear-gradient(135deg,#f5f3ff,#ede9fe);
  border:1px dashed #0891b2;
}

.frm-claim-inner{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}

.frm-claim-inner strong{
  display:block;
  font-size:14px;
  color:#0e7490;
}

.frm-claim-inner p{
  font-size:12px;
  color:#666;
  margin:4px 0 0;
}

.frm-btn-claim{
  display:block;
  width:100%;
  text-align:center;
  padding:10px 16px;
  background:#0891b2;
  color:#fff;
  border:none;
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:all .2s;
  box-sizing:border-box;
}

.frm-btn-claim:hover{
  background:#0e7490;
  transform:translateY(-1px);
}

/* ================= COMPARE BUTTON ================= */

.frm-compare-card{
  padding:12px 16px;
}

.frm-compare-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:10px 16px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:13px;
  font-weight:500;
  color:#555;
  cursor:pointer;
  transition:all .2s;
  box-sizing:border-box;
}

.frm-compare-btn:hover{
  border-color:#0891b2;
  color:#0891b2;
}

.frm-compare-btn.active{
  background:#e8f5e9;
  border-color:#2e7d32;
  color:#2e7d32;
}
