*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

.rop-page{
  min-height:100vh;
  background:#f8fafc;
}

.rop-detail-page{
  padding-top:120px;
}

.rop-detail-hero{
  padding:40px 5% 28px;
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:end;
}

.rop-detail-badge{
  display:inline-flex;
  background:#fff1f2;
  color:#d90429;
  border:1px solid #ffe4e6;
  padding:8px 13px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:1000;
  margin-bottom:14px;
}

.rop-detail-hero h1{
  margin:0;
  color:#0b1f3a;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(2.4rem,5vw,5.4rem);
  line-height:.95;
  letter-spacing:-.07em;
}

.rop-detail-hero p{
  color:#64748b;
  font-weight:800;
  margin:14px 0 0;
  display:flex;
  align-items:center;
  gap:8px;
}

.rop-detail-hero p i{
  color:#d90429;
}

.rop-detail-price-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  padding:22px 26px;
  min-width:230px;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.rop-detail-price-card span{
  color:#64748b;
  font-weight:900;
}

.rop-detail-price-card strong{
  display:block;
  color:#d90429;
  font-size:2rem;
  font-family:"Space Grotesk",sans-serif;
}

.rop-detail-price-card small{
  color:#64748b;
  font-weight:800;
}

.rop-detail-layout{
  max-width:1280px;
  margin:auto;
  padding:0 5% 50px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:26px;
  align-items:start;
}

.rop-detail-main,
.rop-detail-sidebar{
  min-width:0;
}

.rop-detail-gallery,
.rop-detail-card,
.rop-contact-card,
.rop-similar-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  box-shadow:0 20px 60px rgba(15,23,42,.07);
}

.rop-detail-gallery{
  padding:16px;
  margin-bottom:20px;
}

.rop-detail-main-image{
  position:relative;
  height:540px;
  border-radius:24px;
  overflow:hidden;
  background:#e2e8f0;
}

.rop-detail-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.rop-like-btn{
  position:absolute;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#d90429;
  font-size:1.7rem;
  cursor:pointer;
  box-shadow:0 14px 35px rgba(0,0,0,.22);
  transition:all .25s ease;
}

.rop-like-btn:hover{
  transform:scale(1.08);
}

.rop-like-btn.liked{
  color:#123d7a;
}

.rop-detail-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-top:14px;
}

.rop-detail-thumbs button{
  flex:0 0 96px;
  width:96px;
  height:74px;
  border:2px solid transparent;
  border-radius:17px;
  overflow:hidden;
  padding:0;
  background:#e2e8f0;
  cursor:pointer;
  transition:all .25s ease;
}

.rop-detail-thumbs button:hover{
  border-color:#d90429;
  transform:translateY(-2px);
}

.rop-detail-thumbs img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.rop-detail-card{
  padding:24px;
  margin-bottom:20px;
}

.rop-detail-card h2{
  margin:0 0 14px;
  color:#0b1f3a;
  font-size:1.45rem;
  font-weight:1000;
}

.rop-detail-card p{
  margin:0;
  color:#64748b;
  line-height:1.75;
  font-weight:650;
}

.rop-detail-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.rop-detail-meta span{
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  color:#334155;
  padding:9px 12px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.rop-detail-meta i{
  color:#d90429;
}

.rop-detail-meta .verified-meta{
  background:#dcfce7;
  border-color:#bbf7d0;
  color:#166534;
}

.rop-detail-meta .verified-meta i{
  color:#16a34a;
}

.rop-detail-sidebar{
  position:sticky;
  top:110px;
}

.rop-contact-card,
.rop-similar-card{
  padding:22px;
  margin-bottom:20px;
}

.rop-contact-card h3,
.rop-similar-card h3{
  margin:0 0 10px;
  color:#0b1f3a;
  font-size:1.2rem;
  font-weight:1000;
}

.rop-contact-card p{
  color:#64748b;
  font-weight:800;
  margin:0 0 16px;
}

.rop-contact-actions{
  display:grid;
  gap:10px;
}

.rop-contact-actions a{
  min-height:50px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  text-decoration:none;
  color:#fff;
  font-weight:1000;
  transition:all .25s ease;
}

.rop-contact-actions a:hover{
  transform:translateY(-2px);
}

.rop-contact-actions .call{
  background:#123d7a;
}

.rop-contact-actions .whatsapp{
  background:#22c55e;
}

.rop-contact-actions .sms{
  background:#0b1f3a;
}

.rop-similar-item{
  display:flex;
  gap:12px;
  padding:11px 0;
  border-bottom:1px solid #e2e8f0;
  text-decoration:none;
  transition:all .25s ease;
}

.rop-similar-item:hover{
  transform:translateX(4px);
}

.rop-similar-item:last-child{
  border-bottom:0;
}

.rop-similar-item img{
  width:84px;
  height:72px;
  border-radius:16px;
  object-fit:cover;
  flex-shrink:0;
}

.rop-similar-item strong{
  display:block;
  color:#0b1f3a;
  font-weight:1000;
  margin-bottom:5px;
}

.rop-similar-item span{
  color:#64748b;
  font-weight:800;
  font-size:.86rem;
}

.rop-muted{
  color:#64748b;
  font-weight:800;
}

@media(max-width:980px){

  .rop-detail-hero,
  .rop-detail-layout{
    grid-template-columns:1fr;
  }

  .rop-detail-sidebar{
    position:static;
  }

  .rop-detail-price-card{
    width:100%;
  }

}

@media(max-width:620px){

  .rop-detail-page{
    padding-top:96px;
  }

  .rop-detail-hero,
  .rop-detail-layout{
    padding-left:4%;
    padding-right:4%;
  }

  .rop-detail-main-image{
    height:330px;
  }

  .rop-detail-card,
  .rop-contact-card,
  .rop-similar-card,
  .rop-detail-gallery{
    border-radius:24px;
  }

  .rop-detail-hero h1{
    font-size:clamp(2rem,9vw,3rem);
  }

}