:root {
  --rwr-red: #d4123a;
  --rwr-red-dark: #9e102b;
  --rwr-ink: #2d2d2d;
  --rwr-ink-soft: #555;
  --rwr-gold: #d2a46b;
  --rwr-bg: #f4f4f4;
  --rwr-line: #d9d9d9;
  --rwr-light-line: #ececec;
  --rwr-radius: 0;
}

.rwr-wrap {
  width: 100%;
  margin: 26px 0;
  color: var(--rwr-ink);
  font-family: inherit;
}

.rwr-search-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--rwr-line);
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.rwr-search-hero {
  padding: 28px 26px;
  color: #fff;
  background: linear-gradient(135deg, #8e1228, #d4123a);
  position: relative;
  overflow: hidden;
}

.rwr-search-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.rwr-brand-mark {
  display: inline-flex;
  flex-direction: column;
  padding: 0;
  margin-bottom: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rwr-brand-top {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.rwr-brand-bottom {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
}

.rwr-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.rwr-search-hero h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}

.rwr-hero-text,
.rwr-hero-note {
  margin: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  font-size: 14px;
}

.rwr-hero-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.rwr-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.rwr-hero-points span {
  padding: 8px 10px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 700;
}

.rwr-search-form {
  padding: 26px;
  background: #fff;
}

.rwr-form-title-wrap {
  margin-bottom: 18px;
}

.rwr-form-kicker {
  color: var(--rwr-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rwr-form-title-wrap h4 {
  margin: 6px 0 0;
  font-size: 22px;
}

.rwr-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.rwr-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rwr-ink-soft);
}

.rwr-grid input,
.rwr-grid select {
  height: 46px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 0 12px;
  font-size: 14px;
  color: var(--rwr-ink);
}

.rwr-grid input:focus,
.rwr-grid select:focus {
  outline: 2px solid rgba(212,18,58,.15);
  border-color: var(--rwr-red);
}

.rwr-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  grid-column: span 2;
  min-height: 46px;
  font-weight: 600 !important;
}

.rwr-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--rwr-red);
}

.rwr-submit,
.rwr-book-btn {
  border: 0;
  background: var(--rwr-red);
  color: #fff;
  min-height: 46px;
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.rwr-submit:hover,
.rwr-book-btn:hover {
  background: var(--rwr-red-dark);
  transform: translateY(-1px);
}

.rwr-submit:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}

.rwr-message {
  margin: 16px 0;
  font-size: 14px;
}

.rwr-message.rwr-error,
.rwr-message.rwr-info {
  padding: 12px 14px;
  border: 1px solid var(--rwr-line);
  background: #fff;
}

.rwr-message.rwr-error {
  color: #9e102b;
  border-color: #f0c0c9;
  background: #fff4f6;
}

.rwr-results {
  display: grid;
  gap: 28px;
  margin-top: 28px;
  background: #f4f4f4;
  padding: 18px;
}

.rwr-card {
  background: #fff;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.rwr-card-main {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0 22px;
  margin: 0 18px;
  border-bottom: 1px solid transparent;
}

.rwr-room-media {
  width: 214px;
}

.rwr-room-visual {
  width: 214px;
  height: 142px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8e1228, #d4123a);
}

.rwr-room-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.rwr-card:hover .rwr-room-img {
  transform: scale(1.04);
}

.rwr-room-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.18));
  z-index: 1;
}

.rwr-room-overlay {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
}

.rwr-room-label {
  display: inline-block;
  background: rgba(42,42,42,.78);
  color: #fff;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.rwr-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: -20px;
  position: relative;
  z-index: 3;
}

.rwr-slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cfcfcf;
  border: 1px solid rgba(0,0,0,.15);
}

.rwr-slider-dots span.is-active {
  background: #111;
}

.rwr-card-content {
  min-width: 0;
  padding-right: 8px;
}

.rwr-room-title-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.rwr-card h4 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--rwr-ink);
}

.rwr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 10px;
  color: #555;
  font-size: 13px;
}

.rwr-meta-item,
.rwr-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 13px;
}

.rwr-meta-item::before,
.rwr-chip::before {
  content: "•";
  color: var(--rwr-red);
  font-weight: 900;
}

.rwr-badge {
  white-space: nowrap;
  background: #444;
  color: #fff;
  padding: 4px 7px;
  font-size: 12px;
  font-weight: 900;
}

.rwr-badge.is-low,
.rwr-badge.is-critical {
  background: #444;
  color: #fff;
}

.rwr-desc {
  margin: 0 0 4px;
  color: #555;
  line-height: 1.45;
  font-size: 16px;
}

.rwr-room-details {
  margin-top: 4px;
}

.rwr-room-details summary {
  display: inline-block;
  cursor: pointer;
  color: var(--rwr-red);
  font-weight: 700;
  list-style: none;
}

.rwr-room-details summary::-webkit-details-marker {
  display: none;
}

.rwr-room-detail-body {
  margin-top: 10px;
  padding: 12px;
  border-left: 4px solid var(--rwr-red);
  background: #fafafa;
  color: #555;
}

.rwr-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rwr-price-box {
  display: none;
}

.rwr-rates {
  margin: 0 18px 18px;
  background: #fff;
  border-top: 0;
}

.rwr-rates > strong {
  display: none;
}

.rwr-rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 158px;
  gap: 20px;
  align-items: center;
  padding: 14px 14px 14px 16px;
  border-top: 1px solid #cfcfcf;
  background: #fff;
  min-height: 72px;
}

.rwr-rate-row:first-of-type {
  border-top: 0;
}

.rwr-rate-row.is-extra-rate {
  display: none;
}

.rwr-rates.is-expanded .rwr-rate-row.is-extra-rate {
  display: grid;
}

.rwr-rate-info {
  min-width: 0;
}

.rwr-join-badge {
  margin-bottom: 6px;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rwr-rate-name {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  color: #151515;
}

.rwr-rate-subline {
  margin-top: 3px;
  color: var(--rwr-red);
  font-size: 14px;
}

.rwr-rate-desc {
  display: none;
  margin-top: 6px;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.rwr-rate-code {
  display: none;
}

.rwr-rate-info details {
  margin-top: 7px;
  color: #666;
  font-size: 13px;
}

.rwr-rate-info summary {
  color: var(--rwr-red);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.rwr-rate-info summary::-webkit-details-marker {
  display: none;
}

.rwr-rate-price {
  text-align: left;
  color: var(--rwr-red);
}

.rwr-rate-price strong {
  display: block;
  color: var(--rwr-red);
  font-size: 30px;
  line-height: .9;
  font-weight: 900;
}

.rwr-rate-price small {
  display: block;
  margin-top: 2px;
  color: #333;
  font-size: 9px;
  font-weight: 900;
}

.rwr-rate-price em {
  display: none;
}

.rwr-rate-action {
  text-align: right;
}

.rwr-book-btn {
  width: 128px;
  min-height: 50px;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.12;
}

.rwr-more-rates-btn {
  width: 100%;
  text-align: left;
  border: 0;
  border-top: 1px solid #cfcfcf;
  background: #fff;
  color: var(--rwr-red);
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.rwr-more-rates-btn:hover {
  background: #fafafa;
}

.rwr-single-action {
  padding: 0 18px 18px;
  text-align: right;
}

.rwr-empty {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--rwr-line);
}

@media (max-width: 1100px) {
  .rwr-search-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .rwr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rwr-card-main {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .rwr-room-media,
  .rwr-room-visual {
    width: 180px;
  }

  .rwr-room-visual {
    height: 120px;
  }

  .rwr-rate-row,
  .rwr-rates.is-expanded .rwr-rate-row.is-extra-rate {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rwr-rate-action,
  .rwr-rate-price {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .rwr-search-form,
  .rwr-search-hero {
    padding: 20px 16px;
  }

  .rwr-grid {
    grid-template-columns: 1fr;
  }

  .rwr-checkbox {
    grid-column: span 1;
  }

  .rwr-results {
    padding: 12px;
  }

  .rwr-card-main {
    grid-template-columns: 1fr;
    margin: 0 12px;
    padding-top: 16px;
  }

  .rwr-room-media,
  .rwr-room-visual {
    width: 214px;
    max-width: 100%;
  }

  .rwr-card h4 {
    font-size: 22px;
  }

  .rwr-rates {
    margin-left: 12px;
    margin-right: 12px;
  }
}

/* ======================================================
   v1.4.6 - LOGO / TARİH / MODAL IFRAME REZERVASYON DÜZELTMELERİ
====================================================== */
:root{
  --rwr-red:#D11242;
  --rwr-red-dark:#b80f38;
}

.rwr-search-hero{
  background:linear-gradient(135deg, #9e0f32 0%, #D11242 100%) !important;
}

.rwr-brand-mark{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  width:100% !important;
  max-width:240px !important;
  min-height:auto !important;
  padding:0 !important;
  margin-bottom:22px !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

.rwr-brand-mark img{
  display:block !important;
  width:100% !important;
  max-width:200px !important;
  height:auto !important;
  object-fit:contain !important;
}

.rwr-eyebrow{
  display:block !important;
  max-width:300px !important;
  color:#fff !important;
  font-size:12px !important;
  line-height:1.45 !important;
  font-weight:800 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
  opacity:1 !important;
}

.rwr-grid input[type="date"]{
  cursor:pointer !important;
  color:#2d2d2d !important;
  background:#fff !important;
  position:relative !important;
  z-index:2 !important;
  -webkit-appearance:auto !important;
  appearance:auto !important;
}

.rwr-grid input[type="date"]::-webkit-calendar-picker-indicator{
  cursor:pointer !important;
  opacity:1 !important;
  display:block !important;
}

.rwr-grid input[type="date"]:invalid,
.rwr-grid input[type="date"]::-webkit-datetime-edit{
  color:#2d2d2d !important;
}

.rwr-submit{
  background:#D11242 !important;
}

.rwr-submit:hover,
.rwr-book-btn:hover{
  background:#b80f38 !important;
}

@media(max-width:560px){
  .rwr-brand-mark{
    max-width:215px !important;
    min-height:76px !important;
  }
  .rwr-brand-mark img{
    max-width:180px !important;
  }
  .rwr-eyebrow{
    max-width:100% !important;
  }
}


/* ======================================================
   v1.4.6 - WYNDHAM REZERVASYON MODAL / IFRAME
====================================================== */
html.rwr-modal-lock,
body.rwr-modal-lock{
  overflow:hidden !important;
}

.rwr-iframe-modal{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
  font-family:Arial, sans-serif;
}

.rwr-iframe-modal.is-open{
  display:block;
}

.rwr-iframe-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
}

.rwr-iframe-dialog{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:min(1180px, calc(100vw - 34px));
  height:min(860px, calc(100vh - 34px));
  background:#fff;
  box-shadow:0 28px 90px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.rwr-iframe-head{
  flex:0 0 auto;
  min-height:72px;
  background:linear-gradient(135deg, #9e0f32 0%, #D11242 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 20px;
}

.rwr-iframe-brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.rwr-iframe-brand img{
  display:block;
  width:150px;
  max-width:34vw;
  height:auto;
  object-fit:contain;
}

.rwr-iframe-brand span{
  color:#fff;
  font-size:14px;
  line-height:1.35;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.rwr-iframe-close{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:30px;
  line-height:38px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rwr-iframe-close:hover{
  background:rgba(255,255,255,.18);
}

.rwr-iframe-note{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 18px;
  background:#fff7f9;
  border-bottom:1px solid #f1ccd5;
  color:#7a102a;
  font-size:13px;
  line-height:1.45;
}

.rwr-iframe-external{
  flex:0 0 auto;
  color:#D11242 !important;
  font-weight:800;
  text-decoration:none;
  border-bottom:1px solid currentColor;
}

.rwr-booking-iframe{
  flex:1 1 auto;
  width:100%;
  height:100%;
  border:0;
  background:#fff;
}

@media(max-width:768px){
  .rwr-iframe-dialog{
    width:100vw;
    height:100vh;
  }
  .rwr-iframe-head{
    min-height:64px;
    padding:12px 14px;
  }
  .rwr-iframe-brand{
    gap:10px;
  }
  .rwr-iframe-brand img{
    width:118px;
  }
  .rwr-iframe-brand span{
    font-size:11px;
    letter-spacing:.04em;
  }
  .rwr-iframe-note{
    display:block;
    padding:9px 14px;
    font-size:12px;
  }
  .rwr-iframe-external{
    display:inline-block;
    margin-top:4px;
  }
}


/* ======================================================
   v1.4.8 - STANDART FİYAT ÖNCELİĞİ + GÜVENLİ REZERVASYON UYARISI
====================================================== */
.rwr-rates-security-note{
  margin:0 14px 12px !important;
  padding:10px 13px !important;
  background:#fff7f9 !important;
  border:1px solid #f1ccd5 !important;
  color:#7a102a !important;
  font-size:12.5px !important;
  line-height:1.55 !important;
  font-weight:600 !important;
}

.rwr-rates-security-note::before,
.rwr-security-note::before{
  content:"🔒";
  display:inline-block;
  margin-right:6px;
}

.rwr-security-note{
  margin:9px 0 0 !important;
  color:#666 !important;
  font-size:12px !important;
  line-height:1.45 !important;
  font-weight:600 !important;
}

.rwr-rate-action .rwr-security-note{
  max-width:160px !important;
  margin-left:auto !important;
}

@media(max-width:900px){
  .rwr-rates-security-note{
    margin:0 12px 12px !important;
  }
  .rwr-rate-action .rwr-security-note{
    max-width:100% !important;
    margin-left:0 !important;
  }
}


/* ======================================================
   v1.5.1 - Inline oda seçimi / tarih seçici destekleri
====================================================== */
.rwr-inline-selected-room{
  margin:8px 0 0 !important;
  color:#667085 !important;
  font-size:14px !important;
  line-height:1.45 !important;
}
.rwr-inline-selected-room strong{
  color:#D11242 !important;
}
.rwr-search-form input[type="date"]{
  cursor:pointer !important;
  color:#101828 !important;
  background:#fff !important;
}

.rwr-brand-mark{
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
  min-height:auto !important;
}

.rwr-brand-mark img{
  display:block !important;
  max-width:184px !important;
  height:62px !important;
  object-fit:contain !important;
}


/* v1.5.2 - Ahmet: marka yazımı, logo boyutu ve ücret etiketi düzenlemeleri */
.rwr-eyebrow{
  text-transform:none !important;
  letter-spacing:.035em !important;
  font-size:12px !important;
  line-height:1.45 !important;
  font-weight:700 !important;
}

.rwr-brand-mark{
  max-width:170px !important;
  margin-bottom:18px !important;
}

.rwr-brand-mark img{
  max-width:150px !important;
  height:auto !important;
  max-height:50px !important;
  object-fit:contain !important;
}

.rwr-hero-note{
  display:none !important;
}

.rwr-iframe-brand span{
  text-transform:none !important;
}

@media(max-width:767px){
  .rwr-brand-mark{
    max-width:150px !important;
    margin-bottom:16px !important;
  }

  .rwr-brand-mark img{
    max-width:132px !important;
    max-height:44px !important;
  }
}

.rwr-brand-mark img{
  max-width:170px !important;
}

.rwr-eyebrow,
.rwr-iframe-brand span{
  text-transform:none !important;
  letter-spacing:.04em !important;
}

@media(max-width:768px){
  .rwr-brand-mark img{
    max-width:150px !important;
  }
}
