/* ============ DETAIL PAGE ============ */
.detail-page{
  padding-top:100px;
  padding-bottom:60px;
  background:#FBF7F0;
  min-height:100vh;
}

/* ============ BREADCRUMB ============ */
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:#6B4226;
  padding:16px 0 18px;flex-wrap:wrap;
}
.breadcrumb a{color:#8B5E3C;transition:color .2s}
.breadcrumb a:hover{color:#C2532A}
.breadcrumb i{font-size:9px;opacity:.5}
.breadcrumb span{color:#2E1A0F;font-weight:600}

/* ============ GALLERY ============ */
.dgallery{
  display:grid;grid-template-columns:1.6fr 1fr;gap:10px;
  margin-bottom:24px;height:420px;
}
.dg-main{
  background:#ddd center/cover no-repeat;
  border-radius:16px;
  position:relative;
}
.dg-actions{
  position:absolute;left:18px;bottom:18px;
  display:flex;gap:10px;flex-wrap:wrap;
}
.dg-btn{
  background:rgba(255,255,255,.95);
  color:#2E1A0F;font-weight:600;font-size:13px;
  padding:9px 16px;border-radius:30px;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .2s, transform .2s;
}
.dg-btn:hover{background:#fff;transform:translateY(-1px)}
.dg-btn-dark{background:rgba(46,26,15,.85);color:#fff}
.dg-btn-dark:hover{background:#2E1A0F}

.dg-thumbs{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  height:100%;
}
.dg-thumb{
  background:#ddd center/cover no-repeat;
  border-radius:14px;
  transition:transform .25s, filter .25s;
  min-height:0;
}
.dg-thumb:hover{transform:scale(1.02);filter:brightness(1.05)}
.dg-thumbs .dg-thumb:nth-child(n+5){display:none}

/* ============ TITLE ROW ============ */
.dtitle-row{margin-bottom:22px}
.detail-title{
  font-size:30px;font-weight:800;letter-spacing:-.5px;
  color:#2E1A0F;line-height:1.2;
  margin-bottom:12px;
}
.dtitle-meta{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.dm-rate{
  font-size:13.5px;color:#3E2723;font-weight:600;
  display:inline-flex;align-items:center;gap:6px;
}
.dm-rate i{color:#FFB400}
.dm-pill{
  font-size:12.5px;font-weight:600;color:#3E2723;
  background:#fff;border:1px solid #EBD9C0;
  padding:7px 13px;border-radius:30px;
  display:inline-flex;align-items:center;gap:6px;
  transition:border-color .2s, color .2s;
}
.dm-pill i{color:#C2532A;font-size:12px}
.dm-pill:hover{border-color:#C2532A;color:#C2532A}
.dm-pill-success{background:#E8F6EC;border-color:#C8E6CF;color:#1F8C3B}
.dm-pill-success i{color:#1F8C3B}
.dm-pill-success:hover{color:#1F8C3B;border-color:#1F8C3B}
.dm-pill-wa{background:#25d366;border-color:#25d366;color:#fff}
.dm-pill-wa i{color:#fff;font-size:14px}
.dm-pill-wa:hover{background:#1eb858;border-color:#1eb858;color:#fff}
.dm-pill-ghost{background:transparent;border-color:transparent;color:#8B5E3C}
.dm-pill-ghost:hover{background:#fff;border-color:#EBD9C0}

/* ============ 2-COL WRAP ============ */
.dwrap{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:30px;
  align-items:start;
  margin-bottom:50px;
}

/* ============ CONTENT CARD ============ */
.dcontent{
  background:#FFFCF6;
  border:1px solid #EBD9C0;
  border-radius:16px;
  padding:32px;
  color:#3E2723;
  line-height:1.7;
}
.dc-h2{
  font-size:22px;font-weight:800;color:#2E1A0F;
  margin-bottom:18px;letter-spacing:-.3px;
  padding-bottom:14px;border-bottom:2px solid #F5E6C8;
}
.dc-h3{
  font-size:16px;font-weight:700;color:#2E1A0F;
  margin:24px 0 12px;
  display:flex;align-items:center;gap:8px;
}
.dc-h3:first-of-type{margin-top:0}
.dc-h3-warn{color:#B85C3E}
.dc-h3-warn i{color:#B85C3E}

.dc-list{
  list-style:none;padding:0;margin:0 0 6px;
  display:flex;flex-direction:column;gap:8px;
}
.dc-list li{
  font-size:14px;color:#3E2723;
  padding-left:22px;position:relative;line-height:1.6;
}
.dc-list li::before{
  content:"";position:absolute;left:6px;top:10px;
  width:6px;height:6px;border-radius:50%;
  background:#C2532A;
}
.dcontent p{font-size:14.5px;color:#3E2723;line-height:1.75;margin:0 0 12px}
.dcontent p:last-child{margin:0}
.dcontent strong{color:#2E1A0F;font-weight:700}

.dc-lead{
  font-size:15px;color:#3E2723;line-height:1.75;
  margin-bottom:22px;padding-bottom:22px;
  border-bottom:1px dashed #EBD9C0;
}

.dc-quick{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
  margin-bottom:26px;
  background:#FBF7F0;border:1px solid #EBD9C0;border-radius:12px;
  padding:14px;
}
.dcq{display:flex;align-items:center;gap:10px}
.dcq > i{
  width:36px;height:36px;border-radius:10px;
  background:linear-gradient(135deg,#FBEBD9,#F3D2B5);
  color:#C2532A;font-size:14px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.dcq span{font-size:10.5px;color:#8B5E3C;text-transform:uppercase;letter-spacing:.4px;font-weight:600;display:block}
.dcq strong{font-size:12.5px;color:#2E1A0F;font-weight:700;display:block;margin-top:2px;line-height:1.3}

.dc-list-check li{padding-left:24px}
.dc-list-check li::before{
  content:"\f00c";font-family:"Font Awesome 6 Free";font-weight:900;
  width:auto;height:auto;border-radius:0;background:none;
  color:#1F8C3B;font-size:11px;top:5px;
}
.dc-list-in li::before{color:#1F8C3B;background:none;content:"\f058";font-family:"Font Awesome 6 Free";font-weight:900;width:auto;height:auto}
.dc-list-out li::before{color:#B85C3E;background:none;content:"\f057";font-family:"Font Awesome 6 Free";font-weight:900;width:auto;height:auto}
.dc-list-in li, .dc-list-out li{padding-left:24px}

.dc-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:14px 0 20px}
.dc-h3-in{color:#1F8C3B}
.dc-h3-in i{color:#1F8C3B}
.dc-h3-out{color:#B85C3E}
.dc-h3-out i{color:#B85C3E}

.dc-pricecard{
  margin-top:24px;
  background:linear-gradient(135deg,#FBEBD9 0%,#F5E6C8 100%);
  border:1px solid #EBD9C0;border-radius:14px;
  padding:22px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.dc-pricecard-label{font-size:11px;font-weight:700;color:#8B5E3C;letter-spacing:1px;text-transform:uppercase}
.dc-pricecard-prices{display:flex;align-items:center;gap:12px;margin:6px 0;flex-wrap:wrap}
.dc-pricecard-old{
  font-size:18px;color:#A89484;text-decoration:line-through;font-weight:600;
}
.dc-pricecard-value{font-size:32px;font-weight:800;color:#C2532A;letter-spacing:-.5px;margin:0;line-height:1}
.dc-pricecard-discount{
  background:#1F8C3B;color:#fff;
  padding:5px 12px;border-radius:30px;
  font-size:12px;font-weight:700;letter-spacing:.5px;
}
.dc-pricecard-sub{font-size:13px;color:#6B4226;max-width:420px;line-height:1.5}
.dc-pricecard-btn{
  background:#25d366;color:#fff;
  padding:14px 22px;border-radius:30px;
  font-weight:700;font-size:14px;
  display:inline-flex;align-items:center;gap:8px;
  flex-shrink:0;transition:background .2s, transform .2s;
  box-shadow:0 10px 22px rgba(37,211,102,.3);
}
.dc-pricecard-btn:hover{background:#1eb858;transform:translateY(-2px)}

.dbook-cta-wa{
  background:#25d366 !important;color:#fff !important;
  box-shadow:0 8px 22px rgba(37,211,102,.32) !important;
}
.dbook-cta-wa:hover{background:#1eb858 !important}
.dbook-secondary{
  background:#fff;border:1.5px solid #C2532A;color:#C2532A;
  padding:12px;border-radius:10px;
  font-weight:700;font-size:13.5px;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background .2s, color .2s;
}
.dbook-secondary:hover{background:#C2532A;color:#fff}

.dbook-quick{
  background:#FBF7F0;border-radius:10px;padding:14px;
  display:flex;flex-direction:column;gap:8px;
  margin:4px 0;
}
.dq-row{
  font-size:12.5px;color:#3E2723;
  display:flex;align-items:center;gap:10px;line-height:1.4;
}
.dq-row i{color:#C2532A;width:16px;text-align:center;font-size:13px;flex-shrink:0}

.dfaq{margin-top:0}
.dfaq .section-head-center{margin-bottom:22px;text-align:center;justify-content:center}
.dfaq .faq-list{max-width:880px;margin:0 auto;display:flex;flex-direction:column;gap:10px}

.dc-callout{
  background:#FBEBD9;
  border-left:4px solid #C2532A;
  border-radius:10px;
  padding:18px 20px;margin:24px 0;
  display:flex;gap:14px;align-items:flex-start;
}
.dc-callout-safe{background:#E8F6EC;border-left-color:#1F8C3B}
.dc-callout-safe .dc-callout-icon{background:#1F8C3B}
.dc-callout-icon{
  width:38px;height:38px;border-radius:10px;
  background:#C2532A;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;flex-shrink:0;
}
.dc-callout strong{
  display:block;font-size:15px;color:#2E1A0F;margin-bottom:4px;
}
.dc-callout p{font-size:13.5px;color:#3E2723;line-height:1.65;margin:0}

/* ============ BOOKING WIDGET ============ */
.dside{
  position:sticky;top:100px;
  display:flex;flex-direction:column;gap:14px;
}
.dbook{
  background:#fff;
  border:1px solid #EBD9C0;
  border-radius:16px;
  padding:22px;
  box-shadow:0 14px 32px rgba(46,26,15,.07);
}
.dbook-top{
  display:flex;justify-content:space-between;align-items:flex-start;
  padding-bottom:18px;margin-bottom:18px;
  border-bottom:1px solid #F0E0C7;
}
.dbook-from{
  font-size:11px;color:#8B5E3C;
  text-transform:uppercase;letter-spacing:.5px;font-weight:600;
}
.dbook-pricebox{
  display:flex;align-items:center;gap:8px;margin-top:6px;flex-wrap:wrap;
}
.dbook-old-price{
  font-size:14px;color:#A89484;
  text-decoration:line-through;
  font-weight:600;
}
.dbook-discount{
  background:#1F8C3B;color:#fff;
  padding:3px 8px;border-radius:30px;
  font-size:11px;font-weight:700;
  letter-spacing:.3px;
}
.dbook-price{
  font-size:30px;font-weight:800;color:#C2532A;
  letter-spacing:-1px;line-height:1.1;margin-top:2px;
}
.dbook-old{font-size:11.5px;color:#8B5E3C;margin-top:8px;line-height:1.4;max-width:200px}
.dbook-old s{margin-right:6px}
.dbook-save{
  background:#1F8C3B;color:#fff;
  padding:2px 8px;border-radius:30px;
  font-size:10px;font-weight:700;
}
.dbook-tag{
  background:#C2532A;color:#fff;
  font-size:10px;font-weight:700;letter-spacing:1px;
  padding:5px 10px;border-radius:6px;
  height:fit-content;
}

.dbook-form{display:flex;flex-direction:column;gap:14px}
.dbook-field label{
  font-size:11px;font-weight:700;color:#6B4226;
  text-transform:uppercase;letter-spacing:.5px;
  display:flex;align-items:center;gap:6px;
  margin-bottom:6px;
}
.dbook-field label i{color:#C2532A;font-size:11px}
.dbook-field input[type="date"]{
  width:100%;border:1px solid #EBD9C0;border-radius:10px;
  padding:11px 12px;font-size:14px;color:#2E1A0F;
  font-family:inherit;background:#FFFCF6;
}
.dbook-field input[type="date"]:focus{outline:none;border-color:#C2532A}

.dbook-counters{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.bw-counter{
  display:flex;align-items:center;justify-content:space-between;
  border:1px solid #EBD9C0;border-radius:10px;padding:5px;
  background:#FFFCF6;
}
.bw-counter button{
  width:28px;height:28px;border-radius:6px;
  background:#FBEBD9;color:#C2532A;
  font-size:14px;font-weight:700;
  transition:background .2s;
}
.bw-counter button:hover{background:#F3D2B5}
.bw-counter input{
  flex:1;border:none;background:transparent;outline:none;
  text-align:center;font-size:14px;font-weight:700;color:#2E1A0F;
  font-family:inherit;width:36px;
}

.dbook-summary{
  background:#FBF7F0;border-radius:10px;padding:12px;
  display:flex;flex-direction:column;gap:6px;
  font-size:13px;color:#5F4533;
}
.dbook-row{display:flex;justify-content:space-between}
.dbook-row strong{font-weight:700;color:#2E1A0F}
.dbook-discount{color:#1F8C3B}
.dbook-discount strong{color:#1F8C3B}
/* Fiyat kutusundaki indirim rozeti: yeşil zemin üzerinde beyaz yazı kalsın */
.dbook-pricebox .dbook-discount{color:#fff}
.sticky-buy .sb-disc{color:#fff}
.dbook-total{
  border-top:1px dashed #E8D4B9;
  padding-top:8px;margin-top:4px;font-size:14px;
}
.dbook-total strong{font-size:17px;color:#C2532A;font-weight:800}

.dbook-cta{
  background:linear-gradient(135deg,#C2532A,#D9764B);
  color:#fff;padding:14px;border-radius:10px;
  font-weight:700;font-size:14.5px;
  display:flex;align-items:center;justify-content:center;gap:8px;
  box-shadow:0 8px 22px rgba(194,83,42,.32);
  transition:transform .2s, box-shadow .2s;
}
.dbook-cta:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(194,83,42,.4)}

.dbook-pay{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-size:11px;color:#8B5E3C;
  padding:8px 0;
}
.dbook-pay i{font-size:22px;color:#5F4533}

.dbook-wa{
  background:#25d366;color:#fff;
  padding:13px;border-radius:10px;
  font-weight:700;font-size:14px;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background .2s;
}
.dbook-wa:hover{background:#1eb858}
.dbook-wa-lg{font-size:15px;padding:16px 28px}

.dbook-link{
  background:transparent;color:#8B5E3C;
  font-size:12.5px;font-weight:600;
  padding:4px;text-align:center;
  display:flex;align-items:center;justify-content:center;gap:6px;
}
.dbook-link:hover{color:#C2532A;text-decoration:underline}

.dbook-why{
  background:#fff;border:1px solid #EBD9C0;border-radius:14px;
  padding:18px;
}
.dbook-why h4{
  font-size:14px;font-weight:700;color:#2E1A0F;
  margin-bottom:12px;
}
.dbook-why ul{display:flex;flex-direction:column;gap:10px}
.dbook-why li{
  font-size:13px;color:#5F4533;line-height:1.5;
  display:flex;align-items:flex-start;gap:10px;
}
.dbook-why li i{color:#1F8C3B;font-size:14px;margin-top:2px;flex-shrink:0}
.dbook-why li strong{color:#2E1A0F;font-weight:700}

/* ============ D-SECTION (reused) ============ */
.d-section{
  background:#fff;border:1px solid #EBD9C0;border-radius:16px;
  padding:30px;margin-bottom:24px;
}
.d-section h2{
  font-size:22px;font-weight:800;color:#2E1A0F;letter-spacing:-.3px;
}

/* ============ COMMENTS ============ */
.cmt-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  flex-wrap:wrap;gap:10px;
  padding-bottom:18px;margin-bottom:20px;
  border-bottom:1px solid #F0E0C7;
}
.cmt-rate{font-size:13px;color:#6B4226;display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.cmt-rate .stars{color:#FFB400;letter-spacing:1.5px;font-size:14px}
.cmt-rate strong{color:#2E1A0F;font-weight:700}

.cmt-list{display:flex;flex-direction:column;gap:18px}
.cmt{
  display:grid;grid-template-columns:48px 1fr;gap:14px;
  padding-bottom:18px;border-bottom:1px solid #F4E8D6;
}
.cmt:last-child{border-bottom:none;padding-bottom:0}
.cmt-avatar{
  width:48px;height:48px;border-radius:50%;
  color:#2E1A0F;font-weight:800;font-size:14px;
  display:flex;align-items:center;justify-content:center;
  letter-spacing:.5px;
}
.cmt-body .stars{
  color:#FFB400;letter-spacing:1.5px;font-size:14px;
  display:block;margin-bottom:4px;
}
.cmt-meta{
  font-size:12px;color:#8B5E3C;margin-bottom:8px;
}
.cmt-meta span{font-weight:600;color:#1F8C3B}
.cmt-body p{
  font-size:14px;color:#3E2723;line-height:1.65;margin:0;
}

.cmt-more{text-align:center;margin-top:20px}
.cmt-more .btn-primary{padding:11px 22px;font-size:13px}

/* ============ DPROCESS (dark band) ============ */
.dprocess{
  margin:30px 0;
  background:linear-gradient(135deg,#2E1A0F 0%,#3D2516 60%,#C2532A 140%);
  border-radius:18px;
  overflow:hidden;position:relative;
  color:#fff;
}
.dprocess::before{
  content:"";position:absolute;
  top:-80px;right:-60px;width:280px;height:280px;border-radius:50%;
  background:rgba(255,255,255,.04);
}
.dprocess::after{
  content:"";position:absolute;
  bottom:-100px;left:-40px;width:240px;height:240px;border-radius:50%;
  background:rgba(255,255,255,.03);
}
.dprocess-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:280px 1fr;gap:30px;
  padding:36px 32px;align-items:center;
}
.dprocess-text h2{font-size:24px;font-weight:800;letter-spacing:-.3px;margin-bottom:6px;color:#fff}
.dprocess-text p{font-size:14px;color:rgba(255,255,255,.75);margin:0}
.dprocess-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.dps{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;padding:18px;
  backdrop-filter:blur(6px);
  position:relative;
  transition:transform .2s, background .2s;
}
.dps:hover{transform:translateY(-3px);background:rgba(255,255,255,.12)}
.dps-num{
  position:absolute;top:8px;right:14px;
  font-size:30px;font-weight:800;color:rgba(255,255,255,.18);
  letter-spacing:-1px;line-height:1;
}
.dps-icon{
  width:44px;height:44px;border-radius:12px;
  background:linear-gradient(135deg,#C2532A,#D9764B);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:18px;
  margin-bottom:12px;
}
.dps h4{font-size:14px;font-weight:700;margin-bottom:6px;color:#fff}
.dps p{font-size:12.5px;color:rgba(255,255,255,.7);line-height:1.5;margin:0}

/* ============ DWHY ============ */
.dwhy .section-head-center{margin-bottom:26px;text-align:center;justify-content:center}
.dwhy .section-head-center h2{font-size:24px}
.dwhy-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.dwhy-item{
  background:#FBF7F0;border:1px solid #EBD9C0;border-radius:12px;
  padding:22px;transition:transform .2s, box-shadow .2s;
}
.dwhy-item:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(46,26,15,.08)}
.dwhy-icon{
  width:48px;height:48px;border-radius:12px;
  background:linear-gradient(135deg,#FBEBD9,#F3D2B5);
  color:#C2532A;font-size:20px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.dwhy-item h4{font-size:15px;font-weight:700;color:#2E1A0F;margin-bottom:6px}
.dwhy-item p{font-size:13px;color:#5F4533;line-height:1.55;margin:0}

/* ============ DGALSEC ============ */
.dgalsec .section-head{
  display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;
}

/* ============ SIMILAR ============ */
.similar{padding:30px}
.similar .section-head{margin-bottom:18px;display:flex;justify-content:space-between;align-items:center}
.similar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}

/* ============ NEWSLETTER CTA ============ */
.dcta{
  border-radius:18px;
  padding:38px 38px;
  margin-bottom:0;
  background:linear-gradient(135deg,#2E1A0F 0%,#3D2516 65%,#C2532A 140%);
}
.dcta .cta-inner{flex-wrap:wrap}
.dcta .cta-title{max-width:680px}

/* ============ STICKY MOBILE BAR ============ */
.sticky-buy{
  display:none;
  position:fixed;bottom:0;left:0;right:0;
  background:#fff;border-top:1px solid #EBD9C0;
  padding:12px 16px;z-index:90;
  align-items:center;justify-content:space-between;gap:12px;
  box-shadow:0 -6px 18px rgba(46,26,15,.08);
}
.sb-from{font-size:11px;color:#8B5E3C;display:flex;gap:6px;align-items:center}
.sb-from s{color:#A89484;text-decoration:line-through}
.sb-disc{background:#1F8C3B;color:#fff;padding:2px 7px;border-radius:4px;font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.3px}
.sb-price{font-size:20px;font-weight:800;color:#C2532A;line-height:1.1;letter-spacing:-.5px}
.sb-btn{
  background:linear-gradient(135deg,#C2532A,#D9764B);color:#fff;
  padding:13px 24px;border-radius:30px;
  font-weight:700;font-size:14px;flex-shrink:0;
}

/* ============ RESPONSIVE ============ */
@media (max-width:1100px){
  .dc-quick{grid-template-columns:1fr 1fr}
  .dc-pricecard{flex-direction:column;align-items:flex-start;text-align:left}
  .dc-grid-2{grid-template-columns:1fr;gap:16px}
  .dwrap{grid-template-columns:1fr;gap:24px}
  .dside{position:static}
  .dgallery{height:340px;grid-template-columns:1.4fr 1fr}
  .dg-thumbs{grid-template-columns:1fr 1fr}
  .dg-thumbs .dg-thumb:nth-child(n+5){display:none}
  .similar-grid{grid-template-columns:repeat(3,1fr)}
  .similar-grid > *:nth-child(4){display:none}
  .dprocess-inner{grid-template-columns:1fr;text-align:center}
  .dprocess-steps{grid-template-columns:1fr 1fr}
  .dwhy-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:820px){
  .detail-page{padding-top:84px}
  .detail-title{font-size:22px}
  .dgallery{grid-template-columns:1fr;height:auto}
  .dg-main{height:240px}
  .dg-thumbs{display:none}
  .dcontent{padding:22px}
  .dc-h2{font-size:18px}
  .similar-grid{grid-template-columns:1fr 1fr}
  .similar-grid > *:nth-child(n+3){display:none}
  .dwhy-grid{grid-template-columns:1fr}
  .cmt{grid-template-columns:42px 1fr;gap:12px}
  .cmt-avatar{width:42px;height:42px;font-size:13px}
  .sticky-buy{display:flex}
  .dside{margin-bottom:80px}
  .dcta{padding:28px 22px}
  .dcta .cta-title{font-size:18px}
  .dbook-wa-lg{width:100%;justify-content:center}
}
@media (max-width:520px){
  .dtitle-meta{gap:6px}
  .dm-pill{padding:6px 10px;font-size:11.5px}
  .dprocess-steps{grid-template-columns:1fr}
  .similar-grid{grid-template-columns:1fr}
  .similar-grid > *:nth-child(n+2){display:block}
  .similar-grid > *:nth-child(n+3){display:none}
}

/* Sepete ekle: tarih seçilmeden tıklanınca takvim toggle vurgusu */
.dbook-collapse-toggle.dbook-attention{outline:2px solid #C2532A;outline-offset:2px;animation:dbookPulse .5s ease 2}
@keyframes dbookPulse{0%,100%{box-shadow:0 0 0 0 rgba(194,83,42,.0)}50%{box-shadow:0 0 0 6px rgba(194,83,42,.18)}}

/* Yolcu bilgileri blokları (kişi sayısı kadar) */
.dpx-block{padding:12px 0;border-top:1px dashed #e6dccd}
.dpx-block:first-child{border-top:none}
.dpx-block-title{font-weight:600;font-size:13px;color:#7a6a55;margin-bottom:8px;display:flex;align-items:center;gap:6px}
.dpx-block-title i{color:#C2532A}
input.dpx-error{border-color:#C2532A !important;background:#fdf0ec}
