 :root {
  --bg: #221F20;
  --panel: #221F20;
  --border: #C8102E;
  --accent: #C8102E;
  --text: #ffffff;
  --muted: #b5b5b5;
 }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #221F20;
  background-color: #221F20 !important;
}
.navbar-fl {
    background: #C8102E !important;
}
footer{
    background: #C8102E !important;
}
.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.rh-hold-banner {
  width: auto;
  margin: 0 auto 30px;
  padding: 12px 16px;
  border: 1px solid #C8102E;
  color: #FFFFFF;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rh-hold-banner .rh-hold-countdown {
  font-weight: 800;
  color: #C8102E;
}

.rh-hold-banner.expired .rh-hold-countdown {
  color: #FFFFFF;
}

.rh-checkout-loading {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 9999;
}

html.rh-checkout-loading-active .rh-checkout-loading {
  display: flex;
}

.rh-checkout-loading.is-visible {
  display: flex;
}

.rh-checkout-loading .spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #C8102E;
  border-radius: 50%;
  animation: rh-checkout-spin 0.8s linear infinite;
}

@keyframes rh-checkout-spin {
  to {
    transform: rotate(360deg);
  }
}



/* Main Content */
.main-content {
  display: flex;
  position: relative;
  min-height: calc(100vh - 127px - 463px);
  padding-top: 36px;
}

.hero-image {
  position: absolute;
  left: 0;
  top: 74px;
  width: 496px;
  height: 668px;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-section {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
  justify-content: flex-end;
}

/* Booking Form */
.booking-form {
  width: 523.64px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}
.form-group::after{
    content: '';
    position: absolute;
    right: -11px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #221F20;
    transform: rotate(45deg);
    z-index: 10;
    border-left: 1px solid #C8102E;
}
.form-input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: 1px solid #C8102E !important;
  border-radius: 0px;
  padding: 12px 20px;
  color: #FFFFFF;
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  line-height: 15px;
}

.form-input::placeholder {
  color: rgba(217, 217, 217, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.2);
}

.form-textarea {
  width: 100%;
  height: 267px;
  background: transparent;
  border: 1px solid #C8102E;
  border-radius: 0px;
  padding: 20px;
  color: #FFFFFF;
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  line-height: 15px;
  resize: vertical;
  min-height: 100px;
}

.form-textarea::placeholder {
  color: rgba(217, 217, 217, 0.5);
}

.form-textarea:focus {
  outline: none;
  border-color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.2);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.checkbox {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 3px;
  color: rgba(217, 217, 217, 0.5);
  font-size: 12px;
  line-height: 15px;
  cursor: pointer;
}

.checkbox-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.terms-link {
  text-decoration: underline;
  color: rgba(217, 217, 217, 0.5);
}

/* Booking Summary */
.booking-summary {
  width: 307.5px;
}

.summary-card {
  background: transparent;
  border: 1px solid #C8102E;
  border-radius: 0px;

  position: relative;
}

.summary-card::after {
  content: '';
  position: absolute;
  right: -11px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: #221F20;
  transform: rotate(45deg);
  z-index: 10;
  border-left: 1px solid #C8102E;
}
.summary-content {
  padding: 20px;
  color: #FFFFFF;
}

.summary-section {
  margin-bottom: 10px;
}

.summary-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.summary-value {
  padding: 0 20px;
}

.summary-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.wk-rh-checkout-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.wk-rh-checkout-line-item-media {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}

.wk-rh-checkout-line-image,
.wk-rh-order-item-image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
}

.wk-rh-checkout-line-item-name {
  flex: 1 1 auto;
}

.wk-rh-order-item-with-image {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wk-rh-order-item-name {
  display: inline-block;
}

.closed-text {
  font-weight: 400;
  color: #FFFFFF;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: -1px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.detail-price {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: right;
}

.addon-section {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 20px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.addon-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.addon-price {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: right;
}

.total-section {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 10px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.total-label {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

body.wk-rh-checkout-step-pending #cfw-shipping-method,
body.checkout-wc.wk-rh-checkout-step-pending #cfw-shipping-method {
  display: none !important;
}

body.wk-rh-checkout-step-pending .wk-rh-checkout-step-panel--supplements,
body.checkout-wc.wk-rh-checkout-step-pending .wk-rh-checkout-step-panel--supplements {
  display: none !important;
}

body.wk-rh-checkout-step-pending #cfw-payment-method > :not(.wk-rh-checkout-step-panel--supplements),
body.checkout-wc.wk-rh-checkout-step-pending #cfw-payment-method > :not(.wk-rh-checkout-step-panel--supplements),
body.wk-rh-checkout-step-pending #cfw-payment-method-action,
body.checkout-wc.wk-rh-checkout-step-pending #cfw-payment-method-action,
body.wk-rh-checkout-step-pending #cfw-payment-action,
body.checkout-wc.wk-rh-checkout-step-pending #cfw-payment-action,
body.wk-rh-checkout-step-pending .woocommerce-checkout-payment,
body.checkout-wc.wk-rh-checkout-step-pending .woocommerce-checkout-payment,
body.wk-rh-checkout-step-pending .woocommerce-terms-and-conditions-wrapper,
body.checkout-wc.wk-rh-checkout-step-pending .woocommerce-terms-and-conditions-wrapper,
body.wk-rh-checkout-step-pending #payment,
body.checkout-wc.wk-rh-checkout-step-pending #payment,
body.wk-rh-checkout-step-pending #place_order,
body.checkout-wc.wk-rh-checkout-step-pending #place_order,
body.wk-rh-checkout-step-pending [name="order_comments"],
body.checkout-wc.wk-rh-checkout-step-pending [name="order_comments"] {
  display: none !important;
}

body.wk-rh-checkout-step-ready #cfw-customer-info,
body.checkout-wc.wk-rh-checkout-step-ready #cfw-customer-info,
body.wk-rh-checkout-step-ready #cfw-shipping-method,
body.checkout-wc.wk-rh-checkout-step-ready #cfw-shipping-method,
body.wk-rh-checkout-step-ready .wk-rh-checkout-step-panel--customer,
body.checkout-wc.wk-rh-checkout-step-ready .wk-rh-checkout-step-panel--customer {
  display: none !important;
}

body.checkout-wc .wk-rh-checkout-step-panel {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid #C8102E;
  background: rgba(34, 31, 32, 0.92);
  color: #FFFFFF;
}

body.checkout-wc .wk-rh-checkout-step-empty,
body.checkout-wc .wk-rh-supplement-card-description,
body.checkout-wc .wk-rh-supplement-card-meta {
  color: rgba(255, 255, 255, 0.78);
}

body.checkout-wc .wk-rh-checkout-step-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

body.checkout-wc .wk-rh-checkout-next-btn,
body .wk-rh-checkout-next-btn {
  display: inline-flex;
  width: auto;
  min-width: 110px;
  min-height: 44px;
  font-weight: 800;
}

body.checkout-wc .wk-rh-checkout-step-actions button,
body .wk-rh-checkout-step-actions button {
  background: #c8102e !important;
  color: #fff !important;
  padding: 14px !important;
  cursor: pointer;
  font-weight: bold !important;
  position: relative;
}

body.checkout-wc .wk-rh-checkout-step-actions button:after,
body .wk-rh-checkout-step-actions button:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}

body.checkout-wc .wk-rh-checkout-step-panel--customer {
  padding: 0;
  border: 0;
  background: transparent;
}

body.checkout-wc .wk-rh-checkout-step-panel--supplements {
  background: transparent;
  border: 0;
  padding: 0;
}

body.checkout-wc .wk-rh-checkout-step-notice {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

body.checkout-wc .wk-rh-checkout-step-notice.is-error,
body.checkout-wc .wk-rh-checkout-step-notice.is-success {
  display: block;
}

body.checkout-wc .wk-rh-checkout-step-notice.is-error {
  color: #ffb1bd;
  border: 1px solid #C8102E;
  background: rgba(200, 16, 46, 0.18);
}

body.checkout-wc .wk-rh-checkout-step-notice.is-success {
  color: #b8ffd8;
  border: 1px solid #1f8f52;
  background: rgba(31, 143, 82, 0.18);
}

body.checkout-wc .wk-rh-checkout-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #C8102E;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

body.checkout-wc .wk-rh-checkout-back-btn.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}

body.checkout-wc .wk-rh-checkout-addons-list.is-updating {
  opacity: 0.65;
  pointer-events: none;
}
body.checkout-wc .wk-rh-addon-qty-btn,
body.checkout-wc .wk-rh-addon-add-btn,
body.checkout-wc .wk-rh-addon-remove-btn {
  min-height: 20px;
}

body.checkout-wc .wk-rh-addon-qty-btn {
  width: 20px;
  min-width: 20px;
  height: 20px;
  padding: 0 !important;
  border: none;
  border-radius: 50%;
  background: var(--text);
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.checkout-wc .wk-rh-addon-card.has-required-name-marker {
  border: 2px solid #C8102E;
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.25);
}

body.checkout-wc .wk-rh-addon-card.has-required-name-marker .title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.checkout-wc .wk-rh-invalid,
body.checkout-wc .wk-rh-invalid-wrap input,
body.checkout-wc .wk-rh-invalid-wrap select,
body.checkout-wc .wk-rh-invalid-wrap textarea {
  border-color: #C8102E !important;
  box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.3) !important;
}

@media (max-width: 767px) {
  body.checkout-wc .wk-rh-checkout-addons-list {
    height: auto;
    max-height: 400px;
    padding: 14px;
  }
}

.total-price {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: right;
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.payment-button {
  width: 270px;
  height: 40px;
  border: none;
  border-radius: 0px;
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-later {
  background-color: #C8102E;
  border: 1px solid #C8102E;
  color: #FFFFFF;
}

.payment-later:hover {
  background-color: #C8102E;
  color: #FFFFFF;
}

.payment-now {
  background: #FFFFFF;
  color: #C8102E;
}

.payment-now:hover {
  background: linear-gradient(135deg, #A00D26 0%, #C8102E 100%);
  transform: translateY(-1px);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #221F20;
  background-color: #221F20;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* ================= HEADER ================= */

.header {
  position: relative;
  width: 100%;
  height: 127px;
}

.teaser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #221F20;
  z-index: 3;
}

.teaser-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 80px;
}

.teaser-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 53px;
  text-transform: uppercase;
  color: #D9D9D9;
  margin-left: auto;
  margin-right: 200px;
}

.book-button-teaser {
  width: 199.5px;
  height: 40px;
  background: linear-gradient(135deg, #C8102E 0%, #A00D26 100%);
  border: none;
  border-radius: 0px;
  color: white;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  --bg: #A00D26;
  --border: #C8102E;
}

.book-button-teaser:hover {
  background: linear-gradient(135deg, #A00D26 0%, #C8102E 100%);
}

/* ================= FORM INPUTS ================= */



.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #C8102E;
  border-radius: 0px;
  color: #FFFFFF;
  font-family: 'Oxanium', sans-serif;
  position: relative;
  --bg: #221F20;
  --border: #C8102E;
}

.form-input {
  height: 40px;
  padding: 12px 20px;
  font-size: 12px;
}

.form-textarea {
  height: 267px;
  padding: 20px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(217, 217, 217, 0.5);
}


div#cfw-cart-summary-coupons { display: none;}
.woocommerce-order-received div#order_review div.title h5 {
    display: none !important;
}
.woocommerce-order-received div#order_review div.title {
    display: flex;
    align-items: center;
}
p#woo_ml_subscribe_field label {
    color: white;
}

/* ================= BUTTONS ================= */

.book-button,
.payment-button {
  position: relative;
  border-radius: 0px;
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.book-button {
  background-color: #D9D9D9;
  color: #221F20;
  border: none;
  --bg: #D9D9D9;
  --border: #221F20;
}

.payment-now {
  background: #FFFFFF;
  color: #C8102E;
  border: none;
  --bg: #221F20;
  --border: #C8102E;
}

.payment-later {
  background:#C8102E;
  border: 1px solid #C8102E;
  color: #FFFFFF;
  --bg: #221F20;
  --border: #C8102E;
}

/* ================= AFTER CORNER EFFECT ================= */

.form-input::after,
.form-textarea::after,
.book-button::after,
.book-button-teaser::after,
.payment-button::after {
  content: '';
  position: absolute;
  right: -11px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--bg);
  transform: rotate(45deg);
  z-index: 10;
  border-left: 1px solid var(--border);
}

/* ================= HOVER SYNC ================= */

.book-button:hover::after,
.book-button-teaser:hover::after,
.payment-button:hover::after {
  transform: rotate(45deg) translateY(-1px);
}


/* Responsive Design */
@media (max-width: 1440px) {
  .booking-section {
    
    padding: 0 40px;
  }

  .hero-image {
    width: 400px;
    height: 600px;
  }

  .footer-content {
    padding: 40px 40px;
  }

  .footer-logo-large {
    right: 40px;
  }

  .logo-large {
    width: 400px;
    height: 450px;
  }
}

@media (max-width: 1200px) {
  .teaser-content {
    padding: 0 40px;
  }

  .header-content {
    padding: 0 40px;
  }

  .teaser-title {
    font-size: 16px;
    margin-right: 150px;
  }

  .book-button-teaser {
    width: 150px;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-item {
    padding: 0 4px;
  }

  .booking-section {
    flex-direction: column;
    margin-left: 0;
    padding: 20px;
    gap: 40px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
  }

  .booking-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .booking-summary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }


}

@media (max-width: 768px) {
  .teaser-content {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .teaser-title {
    font-size: 14px;
    margin-right: 0;
    text-align: center;
  }

  .book-button-teaser {
    width: 120px;
    height: 35px;
    font-size: 13px;
  }

  .header-content {
    padding: 0 20px;
  }

  .logo {
    width: 180px;
    height: 25px;
  }

  .nav-menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .booking-section {
    padding: 20px;
  }

  .form-input,
  .form-textarea {
    font-size: 14px;
  }

  .payment-button {
    width: 100%;
  }

  .footer-content {
    padding: 20px;
  }

  .footer-slogan {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .teaser {
    height: auto;
    padding: 10px 0;
  }

  .teaser-title {
    font-size: 12px;
  }

  .book-button-teaser {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }

  .header-main {
    height: auto;
    padding: 10px 0;
  }

  .logo {
    width: 150px;
    height: 20px;
  }

  .booking-section {
    padding: 15px;
  }

  .form-input {
    height: 45px;
    font-size: 16px;
  }

  .form-textarea {
    height: 200px;
    font-size: 16px;
  }

  .summary-card {
    padding: 15px;
  }

  .footer-slogan {
    font-size: 20px;
    line-height: 24px;
  }
}
