:root {
  --background: hsl(40 20% 6%);
  --foreground: hsl(40 20% 92%);
  --primary: hsl(42 65% 55%);
  --primary-foreground: hsl(40 20% 6%);
  --muted: hsl(40 10% 15%);
  --muted-foreground: hsl(40 10% 55%);
  --forest-deep: hsl(152 40% 10%);
  --gold-dark: hsl(42 70% 38%);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.rw-page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .rw-page-container {
    padding: 0 48px;
  }
}

@media (min-width: 1200px) {
  .rw-page-container {
    padding: 0 80px;
  }
}

.rw-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.rw-header.is-scrolled {
  background: rgba(18, 15, 11, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(215, 170, 66, 0.2);
}

.rw-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.rw-logo {
  width: auto;
  height: 64px;
}

.rw-header .rw-logo,
.rw-footer .rw-logo {
  width: auto !important;
  height: 64px !important;
  max-width: none !important;
  object-fit: contain;
}

.rw-footer .rw-logo {
  height: 70px !important;
  margin-bottom: 18px;
}

.woocommerce-page .rw-header .rw-logo,
.woocommerce .rw-header .rw-logo,
.woocommerce-page .rw-footer .rw-logo,
.woocommerce .rw-footer .rw-logo {
  width: auto !important;
  height: 64px !important;
  max-width: none !important;
}

.rw-header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.rw-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(215, 170, 66, 0.35);
  padding: 12px 14px;
  color: var(--foreground);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.rw-cart-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.rw-cart-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.rw-cart-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rw-cart-count {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.rw-main-nav {
  display: none;
  gap: 24px;
}

.rw-main-nav a,
.rw-header-cta,
.rw-mobile-menu a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.rw-main-nav a {
  color: rgba(235, 230, 220, 0.7);
  transition: color 0.25s ease;
}

.rw-main-nav a:hover {
  color: var(--primary);
}

.rw-header-cta,
.rw-btn-primary,
.rw-mobile-cta {
  display: inline-block;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  transition: background 0.25s ease;
}

.rw-header-cta:hover,
.rw-btn-primary:hover,
.rw-mobile-cta:hover {
  background: var(--gold-dark);
}

.rw-menu-toggle {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.rw-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
}

.rw-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-top: 1px solid rgba(215, 170, 66, 0.2);
  background: rgba(18, 15, 11, 0.98);
}

.rw-mobile-menu.open {
  display: flex;
}

.rw-mobile-cart {
  border: 1px solid rgba(215, 170, 66, 0.35);
  padding: 12px 14px;
  display: inline-block;
}

@media (min-width: 1024px) {
  .rw-main-nav {
    display: flex;
  }

  .rw-header-actions {
    display: inline-flex;
  }

  .rw-menu-toggle,
  .rw-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .rw-header-actions,
  .rw-header-cta {
    display: none;
  }
}

.rw-section {
  position: relative;
  overflow: hidden;
}

.rw-bg-media {
  position: absolute;
  inset: 0;
    z-index: -1;
}

.rw-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rw-overlay-dark,
.rw-overlay-strong,
.rw-overlay-forest {
  position: absolute;
  inset: 0;
}

.rw-overlay-dark {
  background: linear-gradient(180deg, rgba(18, 15, 11, 0.7) 0%, rgba(18, 15, 11, 0.4) 50%, rgba(18, 15, 11, 0.8) 100%);
}

.rw-overlay-strong {
  background: rgba(18, 15, 11, 0.88);
}

.rw-overlay-forest {
  background: rgba(12, 36, 25, 0.9);
}

.rw-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
}

.rw-section-title,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

.rw-section-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  margin: 16px 0;
}

.text-gold-gradient {
  background: linear-gradient(135deg, hsl(42 65% 55%), hsl(42 55% 72%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.italic {
  font-style: italic;
}

.rw-divider {
  height: 1px;
  width: 130px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, rgba(215, 170, 66, 0.7), transparent);
}

.rw-divider.short {
  margin: 20px 0;
  width: 90px;
}

.rw-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 40px;
}

.rw-hero-content {
  z-index: 2;
  position: relative;
  /*max-width: 860px;*/
}

.rw-hero .rw-kicker {
  border: 1px solid rgba(215, 170, 66, 0.3);
  padding: 10px 14px;
}

.rw-hero-title {
  font-size: 4.5rem;
  line-height: 1.06;
  margin: 18px 0 22px;
    width: 77%;
}

.rw-hero-subtitle {
  max-width: 700px;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  min-height: 64px;
}

.rw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rw-btn {
  padding: 16px 28px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.rw-btn-outline {
  border: 1px solid rgba(235, 230, 220, 0.3);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.rw-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.rw-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
}

.rw-scroll-indicator i {
  width: 1px;
  height: 32px;
  background: rgba(215, 170, 66, 0.5);
  animation: rwPulseY 2s ease-in-out infinite;
}

.rw-about,
.rw-experiences,
.rw-products,
.rw-why,
.rw-process,
.rw-testimonials,
.rw-faq,
.rw-booking,
.rw-cta {
  padding: 88px 0;
}




.rw-products {
  background: var(--background);
  border-top: 1px solid rgba(215, 170, 66, 0.12);
}

.rw-products-head {
  margin-bottom: 48px;
}

.rw-products-head p {
  max-width: 520px;
  margin: 0 auto;
}

.rw-products-groups {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.rw-product-group-title {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  border-bottom: 1px solid rgba(215, 170, 66, 0.3);
  padding-bottom: 12px;
}

.rw-product-group-subtitle {
  margin: 10px 0 22px;
  font-size: 14px;
}

.rw-product-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 640px) {
  .rw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rw-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.rw-product-card {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.rw-product-image-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.rw-product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rw-product-card:hover .rw-product-image-link img {
  transform: scale(1.06);
}

.rw-product-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.rw-product-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.rw-product-price {
  color: var(--primary);
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.rw-product-price .amount {
  color: inherit;
}

.rw-product-summary {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.rw-product-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px !important;
  padding: 12px 14px !important;
    background: var(--primary);
    color: #000;
}





.rw-about-grid,
.rw-booking-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .rw-about-grid,
  .rw-booking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rw-about-media {
  position: relative;
}

.rw-about-media > img {
  width: 100%;
  height: min(620px, 70vw);
  object-fit: cover;
  border: 1px solid rgba(215, 170, 66, 0.2);
}

.rw-about-secondary {
  display: none;
}

@media (min-width: 768px) {
  .rw-about-secondary {
    display: block;
    position: absolute;
    right: -16px;
    bottom: -24px;
    width: 220px;
    height: 250px;
    border: 4px solid var(--background);
    overflow: hidden;
  }
  .rw-about-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.rw-verse {
  color: var(--primary);
  font-style: italic;
  margin-top: 22px;
}

.rw-experiences {
  background: var(--forest-deep);
}

.rw-section-head.center {
  text-align: center;
  margin-bottom: 56px;
}

.rw-experience-list {
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.rw-experience-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

@media (min-width: 1024px) {
  .rw-experience-item {
    grid-template-columns: 1fr 1fr;
  }
  .rw-experience-item.reverse > :first-child {
    order: 2;
  }
}

.rw-experience-item img {
  width: 100%;
  height: min(520px, 72vw);
  object-fit: cover;
}

.rw-experience-item h3 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.rw-price {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 34px;
  margin: 0 0 10px;
}

.rw-check-list {
  padding: 0;
  list-style: none;
  margin: 16px 0 30px;
}

.rw-check-list li {
  position: relative;
  padding-left: 16px;
  margin: 8px 0;
}

.rw-check-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 11px;
  background: var(--primary);
}

.rw-why-grid,
.rw-testimonial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .rw-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rw-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rw-why-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.rw-why-bg,
.rw-why-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rw-why-bg img {
  object-fit: cover;
  opacity: 0.2;
}

.rw-why-bg div {
  position: absolute;
  inset: 0;
  background: rgba(18, 15, 11, 0.78);
}

.rw-why-content {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(215, 170, 66, 0.1);
  padding: 28px;
  height: 100%;
}

.rw-number {
  font-family: var(--font-display);
  color: rgba(215, 170, 66, 0.35);
  font-size: 52px;
  font-weight: 700;
}

.rw-timeline {
  position: relative;
  z-index: 2;
}

.rw-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(215, 170, 66, 0.2);
}

.rw-step {
  padding: 0 0 34px 34px;
  position: relative;
}

.rw-step::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--primary);
  position: absolute;
  left: 7px;
  top: 8px;
}

@media (min-width: 1024px) {
  .rw-process-wrap {
    max-width: 980px;
  }

  .rw-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .rw-step {
    width: 50%;
    padding: 0 56px 34px 0;
  }

  .rw-step.reverse {
    margin-left: 50%;
    padding: 0 0 34px 56px;
  }

  .rw-step::before {
    left: auto;
    right: -6px;
  }

  .rw-step.reverse::before {
    left: -6px;
    right: auto;
  }
}

.rw-testimonial {
  border: 1px solid rgba(215, 170, 66, 0.15);
  background: rgba(18, 15, 11, 0.2);
  backdrop-filter: blur(4px);
  padding: 34px;
}

.rw-quote {
  font-style: italic;
}

.rw-testimonial-name {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 700;
}

.rw-faq-wrap {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.rw-faq-item {
  border-bottom: 1px solid rgba(215, 170, 66, 0.1);
}

.rw-faq-toggle {
  width: 100%;
  padding: 24px 0;
  color: var(--foreground);
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.rw-faq-toggle span {
  font-family: var(--font-display);
  font-size: 24px;
}

.rw-faq-toggle strong {
  font-size: 30px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.rw-faq-item.active .rw-faq-toggle strong {
  transform: rotate(45deg);
}

.rw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}

.rw-faq-item.active .rw-faq-answer {
  max-height: 280px;
  padding-bottom: 24px;
}

.rw-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.rw-feature-list li {
  margin: 12px 0;
  padding-left: 18px;
  position: relative;
  color: rgba(235, 230, 220, 0.85);
}

.rw-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 10px;
}

.rw-verse-box {
  border: 1px solid rgba(215, 170, 66, 0.2);
  padding: 22px;
  background: rgba(215, 170, 66, 0.05);
}

.rw-form-box {
  border: 1px solid rgba(215, 170, 66, 0.2);
  padding: 30px;
  background: rgba(18, 15, 11, 0.5);
  backdrop-filter: blur(3px);
  position: relative;
  z-index: 2;
}

.rw-form-box h3 {
  margin-top: 0;
  font-size: 34px;
}

.rw-form-box label {
  display: block;
  margin: 12px 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.rw-form-box input,
.rw-form-box textarea,
.rw-form-box select,
.rw-footer-form input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(215, 170, 66, 0.15);
  background: var(--muted);
  color: var(--foreground);
  padding: 12px 14px;
  font-family: var(--font-body);
}

.rw-form-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .rw-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rw-full {
  width: 100%;
}

.rw-form-note {
  text-align: center;
  font-size: 12px;
}

.rw-cta-wrap {
  text-align: center;
  max-width: 880px;
  position: relative;
  z-index: 2;
}

.rw-cta-wrap p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.rw-footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(215, 170, 66, 0.1);
  padding: 72px 0 40px;
}

.rw-footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .rw-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.rw-footer h4 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
}

.rw-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-footer-list li {
  margin: 10px 0;
  color: var(--muted-foreground);
}

.rw-footer-socials {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  color: var(--muted-foreground);
}

.rw-footer-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.rw-footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 640px) {
  .rw-footer-form {
    flex-direction: row;
  }
}

.rw-footer-form button {
  border: 0;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
}

.rw-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.rw-splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--background);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.rw-splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.rw-splash-logo {
  width: min(400px, 80vw);
  opacity: 0;
  transform: scale(0.85);
  animation: rwSplashLogo 1s ease forwards;
}

.rw-splash-tagline {
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-style: italic;
}

.rw-splash-loader {
  margin-top: 24px;
  width: 130px;
  height: 1px;
  background: rgba(140, 132, 117, 0.35);
}

.rw-splash-loader span {
  display: block;
  height: 100%;
  background: var(--primary);
  width: 0;
  animation: rwLoadLine 2s ease forwards;
}

.rw-splash-line {
  position: absolute;
  left: 0;
  bottom: 33%;
  height: 1px;
  background: rgba(215, 170, 66, 0.3);
  width: 0;
  animation: rwLoadLine 2s ease forwards;
}

/*.rw-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rw-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}*/

.muted {
  color: var(--muted-foreground);
}

@keyframes rwSplashLogo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rwLoadLine {
  to {
    width: 100%;
  }
}

/*@keyframes rwPulseY {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.4);
  }
}*/

.rw-shop-heading {
  margin-bottom: 30px;
}

.rw-shop-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 112px;
}

.rw-shop-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.rw-shop-hero-badge {
  border: 1px solid rgba(215, 170, 66, 0.3);
  padding: 8px 16px;
}

.rw-shop-hero-title {
  max-width: 780px;
  margin-top: 14px;
}

.rw-shop-hero-divider {
  margin-left: 0;
  width: 160px;
}

.rw-shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .rw-shop-layout {
    grid-template-columns: 1fr;
  }
}

.rw-shop-filters {
  border: 1px solid rgba(215, 170, 66, 0.18);
  background: hsl(40 15% 10%);
  padding: 20px;
  height: fit-content;
}

.rw-filter-widget + .rw-filter-widget {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 170, 66, 0.12);
}

.rw-filter-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
}

.rw-shop-filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-shop-filters li {
  margin: 8px 0;
}

.rw-shop-filters a {
  color: var(--muted-foreground);
}

.rw-shop-filters .price_slider_wrapper .ui-widget-content {
  background: rgba(215, 170, 66, 0.18);
}

.rw-shop-filters .ui-slider .ui-slider-range,
.rw-shop-filters .price_slider_amount .button {
  background: var(--primary);
}

.rw-shop-toolbar {
  margin-bottom: 16px;
}

.rw-shop-products ul.products,
.woocommerce .rw-shop-products ul.products,
.woocommerce-page .rw-shop-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.rw-shop-products ul.products::before,
.rw-shop-products ul.products::after,
.woocommerce .rw-shop-products ul.products::before,
.woocommerce .rw-shop-products ul.products::after,
.woocommerce-page .rw-shop-products ul.products::before,
.woocommerce-page .rw-shop-products ul.products::after {
  content: none !important;
  display: none !important;
}

.rw-shop-products ul.products li.product,
.woocommerce .rw-shop-products ul.products li.product,
.woocommerce-page .rw-shop-products ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

.rw-shop-products ul.products li.product.first,
.rw-shop-products ul.products li.product.last,
.woocommerce .rw-shop-products ul.products li.product.first,
.woocommerce .rw-shop-products ul.products li.product.last,
.woocommerce-page .rw-shop-products ul.products li.product.first,
.woocommerce-page .rw-shop-products ul.products li.product.last {
  clear: none !important;
  margin-right: 0 !important;
}

.woocommerce .rw-shop-products ul.products[class*="columns-"] li.product:nth-child(n),
.woocommerce-page .rw-shop-products ul.products[class*="columns-"] li.product:nth-child(n) {
  clear: none !important;
  margin-right: 0 !important;
}

@media (max-width: 1024px) {
  .rw-shop-products ul.products,
  .woocommerce .rw-shop-products ul.products,
  .woocommerce-page .rw-shop-products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .rw-shop-products ul.products,
  .woocommerce .rw-shop-products ul.products,
  .woocommerce-page .rw-shop-products ul.products {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

.rw-shop-products .products {
  margin: 0;
}

.rw-shop-products .products .product {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.rw-shop-products .products .product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  overflow: hidden;
}

.rw-shop-products .products .product img {
  margin: 0 0 16px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s ease;
  height: 220px !important;
}

.rw-shop-products .products .product:hover img {
  transform: scale(1.08);
}

.rw-shop-products .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 34px);
  line-height: 1.2;
  color: var(--foreground);
  padding: 0 14px !important;
  margin: 0 0 10px;
}

.rw-shop-products .price {
  color: var(--primary) !important;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px) !important;
  padding: 0 14px;
  margin: 0 0 12px;
}

.rw-shop-products .products .product .woocommerce-product-details__short-description,
.rw-shop-products .products .product .short-description,
.rw-shop-products .products .product .rw-product-summary {
  color: var(--muted-foreground);
  line-height: 1.7;
  padding: 0 14px;
  margin: 0 0 14px;
}

.rw-shop-products .products .product .button {
  display: block;
  width: 93%;
  text-align: center;
  margin-top: auto;
}

.rw-shop-products .button,
.rw-woo-page .button,
.rw-woo-page button,
.rw-woo-page input[type="submit"] {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px !important;
  padding: 14px 20px !important;
  border-radius: 0 !important;
}

.rw-shop-products .products .product .button {
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.rw-shop-products .button:hover,
.rw-woo-page .button:hover,
.rw-woo-page button:hover,
.rw-woo-page input[type="submit"]:hover {
  background: var(--gold-dark) !important;
}

.rw-woo-page .woocommerce {
  color: var(--foreground);
}

.rw-woo-page table.shop_table {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
}

.rw-woo-page table.shop_table th,
.rw-woo-page table.shop_table td {
  border-color: rgba(215, 170, 66, 0.15);
}

.rw-woo-page .cart_totals,
.rw-woo-page .woocommerce-checkout-review-order,
.rw-woo-page .woocommerce-billing-fields,
.rw-woo-page .woocommerce-additional-fields,
.rw-woo-page .woocommerce-checkout-payment {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  padding: 22px;
}

.rw-woo-page input.input-text,
.rw-woo-page textarea,
.rw-woo-page select {
  width: 100%;
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: var(--background);
  color: var(--foreground);
  padding: 12px 14px;
}

.rw-woo-page .woocommerce-info,
.rw-woo-page .woocommerce-message,
.rw-woo-page .woocommerce-error {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  color: var(--foreground);
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  margin: 0 0 18px !important;
  border: 1px solid rgba(215, 170, 66, 0.35) !important;
  background: hsl(40 15% 10%) !important;
  color: var(--foreground) !important;
  padding: 14px 16px 14px 44px !important;
  border-radius: 0 !important;
}

.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-notices-wrapper .woocommerce-error::before {
  color: var(--primary) !important;
  left: 14px !important;
}

.woocommerce-notices-wrapper .woocommerce-message a,
.woocommerce-notices-wrapper .woocommerce-info a,
.woocommerce-notices-wrapper .woocommerce-error a {
  color: var(--foreground);
}

.woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-notices-wrapper .woocommerce-info .button,
.woocommerce-notices-wrapper .woocommerce-error .button {
  float: right;
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px !important;
  padding: 10px 14px !important;
  border-radius: 0 !important;
}

.woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-notices-wrapper .woocommerce-info .button:hover,
.woocommerce-notices-wrapper .woocommerce-error .button:hover {
  background: var(--gold-dark) !important;
}

@media (max-width: 767px) {
  .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-notices-wrapper .woocommerce-info,
  .woocommerce-notices-wrapper .woocommerce-error {
    padding-right: 14px !important;
  }

  .woocommerce-notices-wrapper .woocommerce-message .button,
  .woocommerce-notices-wrapper .woocommerce-info .button,
  .woocommerce-notices-wrapper .woocommerce-error .button {
    float: none;
    display: inline-block;
    margin: 10px 0 0;
  }
}

.rw-woo-page #payment ul.payment_methods {
  border-bottom: 1px solid rgba(215, 170, 66, 0.2);
}

.rw-woo-page #order_review_heading,
.rw-woo-page h3 {
  font-family: var(--font-display);
}

.rw-shop-filters .woocommerce-product-search {
  display: flex;
  gap: 8px;
}

.rw-shop-filters .woocommerce-product-search .search-field {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(215, 170, 66, 0.22);
  background: var(--background);
  color: var(--foreground);
  padding: 10px 12px;
}

.rw-shop-filters .woocommerce-product-search .search-field::placeholder {
  color: var(--muted-foreground);
}

.rw-shop-filters .woocommerce-product-search button {
  border: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 10px 14px;
  cursor: pointer;
}

.rw-shop-filters .woocommerce-product-search button:hover {
  background: var(--gold-dark);
}

.rw-shop-filters .price_slider_wrapper .ui-slider {
  background: rgba(215, 170, 66, 0.18);
  border-radius: 0;
}

.rw-shop-filters .price_slider_wrapper .ui-slider-range {
  background: var(--primary) !important;
}

.rw-shop-filters .price_slider_wrapper .ui-slider-handle {
  border: 0 !important;
  background: var(--primary) !important;
  box-shadow: none !important;
}

.rw-shop-filters .price_slider_amount .button {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

.rw-shop-filters .price_slider_amount .button:hover {
  background: var(--gold-dark) !important;
}

.rw-shop-filters .price_slider_amount .price_label {
  color: var(--muted-foreground);
}

.rw-shop-toolbar .woocommerce-ordering .orderby {
  border: 1px solid rgba(215, 170, 66, 0.24);
  background: var(--background);
  color: var(--foreground);
  min-height: 42px;
  padding: 8px 12px;
  font-family: var(--font-body);
}

.rw-shop-toolbar .woocommerce-ordering .orderby:focus {
  border-color: var(--primary);
  outline: none;
}

.rw-shop-toolbar .woocommerce-result-count {
  color: var(--muted-foreground);
}

.rw-woo-page .woocommerce-checkout form.checkout {
  display: grid;
  gap: 24px;
}

.rw-woo-page .woocommerce form .form-row label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.rw-woo-page .woocommerce form .form-row .required {
  color: #ef4444;
}

.rw-woo-page .woocommerce form .form-row {
  margin-bottom: 14px;
}

.rw-woo-page .woocommerce-checkout #customer_details .input-text,
.rw-woo-page .woocommerce-checkout #customer_details textarea,
.rw-woo-page .woocommerce-checkout #customer_details select,
.rw-woo-page .woocommerce-checkout #order_review .input-text,
.rw-woo-page .woocommerce-checkout #order_review textarea,
.rw-woo-page .woocommerce-checkout #order_review select {
  background: var(--muted);
  border: 1px solid rgba(215, 170, 66, 0.2);
  color: var(--foreground);
  font-family: var(--font-body);
  min-height: 48px;
  border-radius: 0;
}

.rw-woo-page .woocommerce-checkout textarea.input-text {
  min-height: 110px;
  resize: vertical;
}

.rw-woo-page .woocommerce-checkout .input-text::placeholder,
.rw-woo-page .woocommerce-checkout textarea::placeholder {
  color: var(--muted-foreground);
}

.rw-woo-page .woocommerce-checkout .input-text:focus,
.rw-woo-page .woocommerce-checkout textarea:focus,
.rw-woo-page .woocommerce-checkout select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: none;
}

.rw-woo-page .woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 48px;
  background: var(--muted);
  border: 1px solid rgba(215, 170, 66, 0.2);
  border-radius: 0;
  display: flex;
  align-items: center;
}

.rw-woo-page .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--foreground);
  line-height: 46px;
  padding-left: 14px;
}

.rw-woo-page .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

.rw-woo-page .select2-dropdown {
  background: hsl(40 15% 10%);
  border: 1px solid rgba(215, 170, 66, 0.25);
  color: var(--foreground);
}

.rw-woo-page .select2-container--default .select2-results__option {
  background: hsl(40 15% 10%);
  color: var(--foreground);
}

.rw-woo-page .select2-container--default .select2-search--dropdown .select2-search__field {
  background: var(--background);
  border: 1px solid rgba(215, 170, 66, 0.25);
  color: var(--foreground);
}

.rw-woo-page .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: var(--primary);
  outline: none;
}

.rw-woo-page .select2-container--default .select2-results__option[aria-selected="true"] {
  background: rgba(215, 170, 66, 0.2);
  color: var(--foreground);
}

.rw-woo-page .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--primary);
  color: var(--primary-foreground);
}

.rw-woo-page select option {
  background: hsl(40 15% 10%);
  color: var(--foreground);
}

.rw-single-product-page {
  padding: 140px 0 88px;
}

.rw-single-product-container {
  position: relative;
  z-index: 2;
}

.rw-single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

@media (max-width: 1024px) {
  .rw-single-product-layout {
    grid-template-columns: 1fr;
  }
}

.rw-single-gallery .woocommerce-product-gallery {
  margin: 0;
}

.rw-single-gallery .woocommerce-product-gallery__wrapper {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  height: 520px;
  overflow: hidden;
}

.rw-single-gallery .woocommerce-product-gallery__image {
  height: 520px;
}

.rw-single-gallery .woocommerce-product-gallery__image a {
  display: block;
  height: 100%;
}

.rw-single-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .rw-single-gallery .woocommerce-product-gallery__wrapper,
  .rw-single-gallery .woocommerce-product-gallery__image {
    height: 460px;
  }
}

@media (max-width: 767px) {
  .rw-single-gallery .woocommerce-product-gallery__wrapper,
  .rw-single-gallery .woocommerce-product-gallery__image {
    height: 340px;
  }
}

.rw-single-gallery .flex-control-thumbs {
  margin-top: 14px !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
    list-style-type: none;
    padding: 0;
}

.rw-single-gallery .flex-control-thumbs li img {
  border: 1px solid rgba(215, 170, 66, 0.2);
  opacity: 1;
}

.rw-single-summary-wrap {
  background: rgba(18, 15, 11, 0.92);
  border: 1px solid rgba(215, 170, 66, 0.2);
  padding: 24px;
}

.rw-single-breadcrumb {
  text-align: right;
  margin-bottom: 16px;
}

.woocommerce-breadcrumb{
    text-align: left;
}

.rw-single-breadcrumb .woocommerce-breadcrumb,
.rw-single-breadcrumb .woocommerce-breadcrumb a {
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.rw-single-summary .product_title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.08;
  color: var(--foreground);
}

.rw-single-summary .price {
  color: var(--primary) !important;
  font-family: var(--font-display);
  font-size: 34px !important;
  font-weight: 700 !important;
}

.rw-single-summary .woocommerce-product-details__short-description {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-top: 14px;
}

.rw-single-summary form.cart {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rw-single-summary .quantity .qty {
  width: 86px;
  border: 1px solid rgba(215, 170, 66, 0.25);
  background: var(--background);
  color: var(--foreground);
  padding: 10px 8px;
}

.rw-single-summary .single_add_to_cart_button {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 14px 24px !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}

.rw-single-summary .single_add_to_cart_button:hover {
  background: var(--gold-dark) !important;
}

.rw-single-summary .product_meta {
  border-top: 1px solid rgba(215, 170, 66, 0.15);
  padding-top: 16px;
  color: var(--muted-foreground);
}

.rw-single-summary .product_meta a {
  color: var(--foreground);
}

.rw-single-after {
  margin-top: 34px;
}

.rw-single-after .woocommerce-tabs .tabs {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rw-single-after .woocommerce-tabs .tabs li {
  margin: 0 !important;
  border: 1px solid rgba(215, 170, 66, 0.2) !important;
  background: hsl(40 15% 10%) !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.rw-single-after .woocommerce-tabs .tabs li::before,
.rw-single-after .woocommerce-tabs .tabs li::after {
  display: none !important;
}

.rw-single-after .woocommerce-tabs .tabs li a {
  color: var(--muted-foreground) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  padding: 12px 16px !important;
}

.rw-single-after .woocommerce-tabs .tabs li.active {
  border-color: rgba(215, 170, 66, 0.6) !important;
}

.rw-single-after .woocommerce-tabs .tabs li.active a {
  color: var(--primary) !important;
}

.rw-single-after .woocommerce-Tabs-panel {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  padding: 22px;
  color: var(--muted-foreground);
}

.rw-single-after .woocommerce-Tabs-panel h2,
.rw-single-after .woocommerce-Reviews-title {
  font-family: var(--font-display);
  color: var(--foreground);
}

.rw-single-after #reviews #comments ol.commentlist {
  padding: 0;
}

.rw-single-after #reviews #comments ol.commentlist li .comment_container {
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: rgba(18, 15, 11, 0.9);
  padding: 18px !important;
}

.rw-single-after #review_form_wrapper {
  margin-top: 18px;
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: rgba(18, 15, 11, 0.9);
  padding: 18px;
}

.rw-single-after #review_form_wrapper input,
.rw-single-after #review_form_wrapper textarea,
.rw-single-after #review_form_wrapper select {
  width: 100%;
  border: 1px solid rgba(215, 170, 66, 0.22);
  background: var(--background);
  color: var(--foreground);
  padding: 10px 12px;
}

.rw-single-after #review_form_wrapper label {
  color: var(--muted-foreground);
}

.rw-single-after #review_form_wrapper .submit {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 18px !important;
  border-radius: 0 !important;
}

.rw-single-after #review_form_wrapper .submit:hover {
  background: var(--gold-dark) !important;
}

.rw-single-after .related.products,
.rw-single-after .up-sells.upsells.products {
  margin-top: 32px;
}

.rw-single-after .related.products ul.products,
.rw-single-after .up-sells.upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px;
  margin: 0;
}

.rw-single-after .related.products ul.products::before,
.rw-single-after .related.products ul.products::after,
.rw-single-after .up-sells.upsells.products ul.products::before,
.rw-single-after .up-sells.upsells.products ul.products::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1024px) {
  .rw-single-after .related.products ul.products,
  .rw-single-after .up-sells.upsells.products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .rw-single-after .related.products ul.products,
  .rw-single-after .up-sells.upsells.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

.rw-single-after .related.products ul.products li.product,
.rw-single-after .up-sells.upsells.products ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  border: 1px solid rgba(215, 170, 66, 0.2);
  background: hsl(40 15% 10%);
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.rw-single-after .related.products ul.products li.product a.woocommerce-LoopProduct-link,
.rw-single-after .up-sells.upsells.products ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.rw-single-after .related.products ul.products li.product img,
.rw-single-after .up-sells.upsells.products ul.products li.product img {
  margin: 0 0 16px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rw-single-after .related.products ul.products li.product:hover img,
.rw-single-after .up-sells.upsells.products ul.products li.product:hover img {
  transform: scale(1.08);
}

.rw-single-after .related.products ul.products li.product .woocommerce-loop-product__title,
.rw-single-after .up-sells.upsells.products ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 34px);
  line-height: 1.2;
  color: var(--foreground);
  padding: 0 14px;
  margin: 0 0 10px;
}

.rw-single-after .related.products ul.products li.product .price,
.rw-single-after .up-sells.upsells.products ul.products li.product .price {
  color: var(--primary) !important;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px) !important;
  padding: 0 14px;
  margin: 0 0 12px;
}

.rw-single-after .related.products ul.products li.product .button,
.rw-single-after .up-sells.upsells.products ul.products li.product .button {
  margin-top: auto;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  display: block;
  width: calc(100% - 16px);
  text-align: center;
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px !important;
  padding: 14px 20px !important;
  border-radius: 0 !important;
}

.rw-single-after .related.products ul.products li.product .button:hover,
.rw-single-after .up-sells.upsells.products ul.products li.product .button:hover {
  background: var(--gold-dark) !important;
}

.wpcf7-form label{
	margin-bottom: 0 !important;
}
.bookingform-div p{
	    margin: 25px 0 0;
}















/* ==========================================================
   Redeemed Waters - Booking Calendar Theme Styling
   Plugin: Booking Calendar by wpdevelop
   Page: /booking/
========================================================== */

.rw-booking-calendar-plugin {
    background: #100f0b !important;
    border: 1px solid rgba(215, 170, 66, 0.22) !important;
    padding: 28px !important;
    color: #ebe6dc !important;
    overflow: hidden;
}

/* Main booking form wrapper */
.rw-booking-calendar-plugin .booking_form_div,
.rw-booking-calendar-plugin .wpbc_booking_form_structure,
.rw-booking-calendar-plugin .wpbc_container,
.rw-booking-calendar-plugin .wpbc_structure_form {
    background: transparent !important;
    color: #ebe6dc !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Remove white panels */
.rw-booking-calendar-plugin .wpbc__field,
.rw-booking-calendar-plugin .wpbc__row,
.rw-booking-calendar-plugin .wpbc-form-element,
.rw-booking-calendar-plugin .wpbc_container_booking_form {
    background: transparent !important;
    color: #ebe6dc !important;
}

/* Step progress line */
.rw-booking-calendar-plugin .wpbc_steps_for_booking .wpbc_step_line,
.rw-booking-calendar-plugin .wpbc_steps_for_booking .wpbc_step,
.rw-booking-calendar-plugin .wpbc_steps_for_booking {
    background: transparent !important;
}

.rw-booking-calendar-plugin .wpbc_steps_for_booking .wpbc_step_num {
    background: rgba(215, 170, 66, 0.22) !important;
    border: 1px solid rgba(215, 170, 66, 0.45) !important;
    color: #ebe6dc !important;
}

.rw-booking-calendar-plugin .wpbc_steps_for_booking .wpbc_step_active .wpbc_step_num {
    background: #d7aa42 !important;
    color: #11100c !important;
}

/* Labels */
.rw-booking-calendar-plugin label,
.rw-booking-calendar-plugin .control-label,
.rw-booking-calendar-plugin .wpbc-form-label,
.rw-booking-calendar-plugin .wpbc__field_label {
    color: rgba(235, 230, 220, 0.88) !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

/* Inputs, selects, textarea */
.rw-booking-calendar-plugin input[type="text"],
.rw-booking-calendar-plugin input[type="email"],
.rw-booking-calendar-plugin input[type="tel"],
.rw-booking-calendar-plugin input[type="number"],
.rw-booking-calendar-plugin select,
.rw-booking-calendar-plugin textarea {
    background: #17150f !important;
    border: 1px solid rgba(215, 170, 66, 0.22) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding: 12px 14px !important;
    box-shadow: none !important;
    outline: none !important;
}

.rw-booking-calendar-plugin input::placeholder,
.rw-booking-calendar-plugin textarea::placeholder {
    color: rgba(235, 230, 220, 0.45) !important;
}

.rw-booking-calendar-plugin input:focus,
.rw-booking-calendar-plugin select:focus,
.rw-booking-calendar-plugin textarea:focus {
    border-color: #d7aa42 !important;
    box-shadow: 0 0 0 1px rgba(215, 170, 66, 0.35) !important;
}

/* Service buttons */
.rw-booking-calendar-plugin .wpbc_service_selection,
.rw-booking-calendar-plugin .wpbc_times_selector {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.rw-booking-calendar-plugin .wpbc_service_selection button,
.rw-booking-calendar-plugin .wpbc_service_selection input[type="button"],
.rw-booking-calendar-plugin .wpbc_service_selection .btn {
    background: #17150f !important;
    border: 1px solid rgba(215, 170, 66, 0.25) !important;
    color: #ebe6dc !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    text-align: left !important;
    font-weight: 600 !important;
}

.rw-booking-calendar-plugin .wpbc_service_selection button:hover,
.rw-booking-calendar-plugin .wpbc_service_selection .btn:hover,
.rw-booking-calendar-plugin .wpbc_service_selection .active,
.rw-booking-calendar-plugin .wpbc_service_selection .selected {
    background: #d7aa42 !important;
    border-color: #d7aa42 !important;
    color: #11100c !important;
}

/* Calendar outer */
.rw-booking-calendar-plugin .datepick-inline {
    background: #0d0c08 !important;
    border: 1px solid rgba(215, 170, 66, 0.25) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 14px !important;
}

/* Calendar header */
.rw-booking-calendar-plugin .datepick-header {
    background: #080705 !important;
    border-bottom: 1px solid rgba(215, 170, 66, 0.18) !important;
    color: #ffffff !important;
    padding: 12px !important;
}

.rw-booking-calendar-plugin .datepick-header span,
.rw-booking-calendar-plugin .datepick-header a {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Prev / Next arrows */
.rw-booking-calendar-plugin .datepick-prev,
.rw-booking-calendar-plugin .datepick-next {
    background: transparent !important;
    color: #d7aa42 !important;
}

/* Week days */
.rw-booking-calendar-plugin .datepick-days-row th,
.rw-booking-calendar-plugin .datepick th {
    background: #0d0c08 !important;
    color: rgba(235, 230, 220, 0.72) !important;
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border: none !important;
}

/* Calendar days */
.rw-booking-calendar-plugin .datepick-days-cell {
    background: #16140e !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    color: rgba(235, 230, 220, 0.82) !important;
}

.rw-booking-calendar-plugin .datepick-days-cell a {
    color: rgba(235, 230, 220, 0.92) !important;
    text-decoration: none !important;
}

/* Available */
.rw-booking-calendar-plugin .date_available,
.rw-booking-calendar-plugin .datepick-days-cell.date_available {
    background: rgba(83, 131, 59, 0.88) !important;
    color: #ffffff !important;
}

/* Booked */
.rw-booking-calendar-plugin .date_booked,
.rw-booking-calendar-plugin .date_approved,
.rw-booking-calendar-plugin .datepick-days-cell.date_booked,
.rw-booking-calendar-plugin .datepick-days-cell.date_approved {
    background: rgba(111, 31, 24, 0.88) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Pending / Partially booked */
.rw-booking-calendar-plugin .date_pending,
.rw-booking-calendar-plugin .date2approve,
.rw-booking-calendar-plugin .datepick-days-cell.date_pending,
.rw-booking-calendar-plugin .datepick-days-cell.date2approve {
    background: rgba(215, 170, 66, 0.85) !important;
    color: #11100c !important;
}

/* Selected / Hover */
.rw-booking-calendar-plugin .datepick-current-day,
.rw-booking-calendar-plugin .datepick-days-cell-over,
.rw-booking-calendar-plugin .datepick-days-cell:hover {
    background: #d7aa42 !important;
    color: #11100c !important;
}

.rw-booking-calendar-plugin .datepick-current-day a,
.rw-booking-calendar-plugin .datepick-days-cell-over a,
.rw-booking-calendar-plugin .datepick-days-cell:hover a {
    color: #11100c !important;
}

/* Legend */
.rw-booking-calendar-plugin .wpbc_legend,
.rw-booking-calendar-plugin .block_hints,
.rw-booking-calendar-plugin .wpbc_calendar_legend {
    color: rgba(235, 230, 220, 0.78) !important;
    margin-top: 20px !important;
}

.rw-booking-calendar-plugin .block_hints .block_check_in_out,
.rw-booking-calendar-plugin .block_hints .date_available,
.rw-booking-calendar-plugin .block_hints .date_approved,
.rw-booking-calendar-plugin .block_hints .date2approve {
    border-radius: 0 !important;
    border: 1px solid rgba(215, 170, 66, 0.2) !important;
}

/* Time slots */
.rw-booking-calendar-plugin .wpbc_times_selector,
.rw-booking-calendar-plugin .wpbc_timeslot_selection {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 12px !important;
    margin-top: 12px !important;
}

.rw-booking-calendar-plugin .wpbc_times_selector button,
.rw-booking-calendar-plugin .wpbc_timeslot_selection button,
.rw-booking-calendar-plugin .wpbc_times_selector .btn,
.rw-booking-calendar-plugin .wpbc_timeslot_selection .btn,
.rw-booking-calendar-plugin input[type="radio"] + label {
    background: #17150f !important;
    border: 1px solid rgba(215, 170, 66, 0.22) !important;
    color: #ebe6dc !important;
    border-radius: 0 !important;
    padding: 12px 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.rw-booking-calendar-plugin .wpbc_times_selector button:hover,
.rw-booking-calendar-plugin .wpbc_times_selector .active,
.rw-booking-calendar-plugin .wpbc_timeslot_selection button:hover,
.rw-booking-calendar-plugin .wpbc_timeslot_selection .active {
    background: #d7aa42 !important;
    color: #11100c !important;
    border-color: #d7aa42 !important;
}

/* Date summary */
.rw-booking-calendar-plugin .wpbc_booking_summary,
.rw-booking-calendar-plugin .wpbc_dates_selection_summary {
    color: rgba(235, 230, 220, 0.8) !important;
    border-top: 1px solid rgba(215, 170, 66, 0.18) !important;
    padding-top: 18px !important;
    margin-top: 22px !important;
}

/* Buttons */
.rw-booking-calendar-plugin input[type="button"],
.rw-booking-calendar-plugin input[type="submit"],
.rw-booking-calendar-plugin button,
.rw-booking-calendar-plugin .btn,
.rw-booking-calendar-plugin .wpbc_button_light,
.rw-booking-calendar-plugin .wpbc_button {
    background: #d7aa42 !important;
    border: 1px solid #d7aa42 !important;
    color: #11100c !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 13px 22px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: all 0.25s ease !important;
}

.rw-booking-calendar-plugin input[type="button"]:hover,
.rw-booking-calendar-plugin input[type="submit"]:hover,
.rw-booking-calendar-plugin button:hover,
.rw-booking-calendar-plugin .btn:hover,
.rw-booking-calendar-plugin .wpbc_button_light:hover,
.rw-booking-calendar-plugin .wpbc_button:hover {
    background: transparent !important;
    color: #d7aa42 !important;
    border-color: #d7aa42 !important;
}

/* Back button / secondary */
.rw-booking-calendar-plugin .wpbc_button_secondary,
.rw-booking-calendar-plugin .wpbc_button_light.wpbc_button_secondary {
    background: transparent !important;
    color: #ebe6dc !important;
    border-color: rgba(215, 170, 66, 0.28) !important;
}

.rw-booking-calendar-plugin .wpbc_button_secondary:hover,
.rw-booking-calendar-plugin .wpbc_button_light.wpbc_button_secondary:hover {
    background: rgba(215, 170, 66, 0.1) !important;
    color: #d7aa42 !important;
}

/* Terms text */
.rw-booking-calendar-plugin a {
    color: #d7aa42 !important;
}

.rw-booking-calendar-plugin hr {
    border: none !important;
    border-top: 1px solid rgba(215, 170, 66, 0.18) !important;
}

/* Powered by text */
.rw-booking-calendar-plugin .wpbc_powered_by,
.rw-booking-calendar-plugin [class*="powered"] {
    color: rgba(235, 230, 220, 0.38) !important;
    font-size: 10px !important;
}

/* Mobile fixes */
@media (max-width: 991px) {
    .rw-booking-calendar-section .rw-page-container {
        grid-template-columns: 1fr !important;
    }

    .rw-booking-calendar-plugin {
        padding: 22px !important;
    }
}

@media (max-width: 767px) {
    .rw-booking-calendar-plugin {
        padding: 18px !important;
    }

    .rw-booking-calendar-plugin .datepick-inline {
        padding: 10px !important;
        font-size: 12px !important;
    }

    .rw-booking-calendar-plugin .wpbc_times_selector,
    .rw-booking-calendar-plugin .wpbc_timeslot_selection {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .rw-booking-calendar-plugin .wpbc_times_selector,
    .rw-booking-calendar-plugin .wpbc_timeslot_selection {
        grid-template-columns: 1fr !important;
    }

    .rw-booking-calendar-plugin .datepick-inline {
        overflow-x: auto !important;
    }
}
