/* =========================================================
  SALTANAT SINGLE SOFA (PDF DESIGN SYSTEM)
  BG: #F7F5F0, TEAL: #0F5C4C, GOLD: #AC8A17, TEXT: #3A3A3A
  Headings: Montserrat, Body: Poppins
========================================================= */

:root{
  --bg: #F7F5F0;
  --teal: #0F5C4C;
  --gold: #AC8A17;
  --text: #3A3A3A;
  --footer: #0B0F14;
  --white: #fff;
  --line: rgba(0,0,0,.08);
  --shadow: 0 18px 50px rgba(11, 15, 20, .10);
}

.saltanat-single{
  background: var(--bg);
  color: var(--text);
}

.saltanat-single .container{
  width: min(1200px, 92%);
  margin-inline: auto;
}

.saltanat-single h1,
.saltanat-single h2,
.saltanat-single h3{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--teal);
  margin: 0;
}

.saltanat-single p,
.saltanat-single li,
.saltanat-single a,
.saltanat-single div{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.sh-hero{
  padding: 36px 0 22px;
}

.sh-breadcrumb{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: rgba(58,58,58,.85);
  margin-bottom: 10px;
}
.sh-breadcrumb a{ color: rgba(58,58,58,.85); text-decoration:none; }
.sh-breadcrumb a:hover{ color: var(--teal); }
.sh-breadcrumb .sep{ opacity:.6; }

.sh-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(172,138,23,.14);
  border: 1px solid rgba(172,138,23,.28);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.sh-title{
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.sh-subtitle{
  max-width: 78ch;
  line-height: 1.85;
  font-size: 15px;
  color: rgba(58,58,58,.92);
  margin: 0 0 18px;
}

.sh-ctas{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary{
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15,92,76,.18);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15,92,76,.24);
}

.btn-outline{
  background: transparent;
  color: var(--teal);
  border-color: rgba(15,92,76,.25);
}
.btn-outline:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(11,15,20,.10);
}

/* Proof cards */
.sh-proof{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.proof-card{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(11,15,20,.06);
}

.proof-top{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(58,58,58,.70);
  margin-bottom: 8px;
}

.proof-big{
  font-weight: 800;
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 6px;
}

.proof-small{
  font-size: 13px;
  line-height: 1.55;
  color: rgba(58,58,58,.88);
}

/* MAIN GRID */
.sh-main{ padding: 18px 0 44px; }

.sh-grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items:start;
}

/* Gallery */
.gallery-shell{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.gallery-main{
  position: relative;
  background: #111;
}

.gallery-main-btn{
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-main img{
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  object-fit: cover;
  display:block;
}

.gallery-zoom{
  position:absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(11,15,20,.65);
  color:#fff;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}

.gallery-thumbs{
  display:flex;
  gap: 10px;
  padding: 12px;
  overflow:auto;
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(247,245,240,.85);
}

.thumb{
  border: 2px solid transparent;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  cursor:pointer;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.thumb:hover{ transform: translateY(-2px); border-color: rgba(172,138,23,.35); }
.thumb.active{ border-color: var(--gold); }

.gallery-note{
  padding: 12px 14px 16px;
  font-size: 13px;
  color: rgba(58,58,58,.84);
}

/* INFO */
.sh-info{
  position: sticky;
  top: 18px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.info-card{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.info-kicker{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(58,58,58,.70);
  margin-bottom: 8px;
}

.info-title{
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.price-chip{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,92,76,.08);
  border: 1px solid rgba(15,92,76,.16);
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 12px;
}

.info-desc{
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(58,58,58,.92);
  margin: 0 0 14px;
  max-width: 62ch;
}

.info-highlights{
  display:grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.hl{
  padding-left: 26px;
  position: relative;
  font-size: 13.5px;
  color: rgba(58,58,58,.92);
}
.hl::before{
  content:"✓";
  position:absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(172,138,23,.16);
  border: 1px solid rgba(172,138,23,.28);
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
}

.info-actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.divider{
  height: 1px;
  background: rgba(0,0,0,.07);
  margin: 12px 0;
}

.sec-title{
  font-size: 15px;
  margin-bottom: 10px;
}

.why-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list li{
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  line-height: 1.75;
  font-size: 13.5px;
  color: rgba(58,58,58,.92);
}
.why-list li::before{
  content:"•";
  position:absolute;
  left: 10px;
  top: -2px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}



/* Lightbox */
.lb{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 9999;
}
.lb.show{ display:block; }

.lb-backdrop{
  position:absolute;
  inset:0;
  background: rgba(11,15,20,.72);
}

.lb-panel{
  position: absolute;
  inset: 40px;
  max-width: 1200px;
  margin: auto;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(10px);
}

.lb-panel img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display:block;
}

.lb-x{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(11,15,20,.5);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}

.lb-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(11,15,20,.45);
  color:#fff;
  font-size: 34px;
  cursor:pointer;
}
.lb-nav.prev{ left: 10px; }
.lb-nav.next{ right: 10px; }

.lb-count{
  position:absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,15,20,.55);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .sh-proof{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sh-grid{ grid-template-columns: 1fr; }
  .sh-info{ position: static; }
  .gallery-main img{ height: 420px; }
  .lb-panel{ inset: 18px; }
}

@media (max-width: 520px){
  .gallery-main img{ height: 360px; }
  .thumb{ width: 80px; height: 80px; }
}
