/* Add global box-sizing */
* {
  box-sizing: border-box;
}

/* === CUSTOM HEADER STYLING START === */
.custom-header {
  background: #8b0000;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: sans-serif;
  position: relative;
  min-height: 60px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-title a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  max-width: 100%;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #ffe9e7;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.phone-number {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1rem;
}

.book-now-button {
  background: #ff3b30;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-now-button:hover,
.book-now-button:focus {
  background: #c21810;
  border-color: #c21810;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .header-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .book-now-button {
    width: 100%;
    text-align: center;
    padding: 0.4rem 1rem;
  }
}
/* === CUSTOM HEADER STYLING END === */

/* === CUSTOM FOOTER STYLING START === */
.custom-footer {
  background-color: #8b0000;
  color: #f1f1f1;
  padding: 30px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #3a3a3a;
  padding-bottom: 5px;
}

.footer-phone {
  color: #66b3ff;
  text-decoration: none;
}

.footer-phone:hover {
  text-decoration: underline;
}

.footer-woocommerce {
  margin-top: 15px;
}

.footer-social a,
.footer-links a {
  color: #66b3ff;
  text-decoration: none;
}

.footer-social a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* === CUSTOM FOOTER STYLING END === */

.custom-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* aligns children to the bottom */
  flex-wrap: wrap;
  padding: 1rem 2rem;
}

.custom-header .site-title {
  flex: 1 1 auto;
  align-self: flex-end; /* optional, to enforce bottom alignment */
}

.custom-header .main-nav {
  flex: 2 1 auto;
  align-self: flex-end;
}

.custom-header .header-cta {
  align-self: flex-end;
}
.woocommerce span.onsale {
  display: none !important;
}
/* Glassmorphism Effect for the Calendar */
.wc-bookings-date-picker {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
}

/* 1. Nuke the Lame Gray Box */
.wc-bookings-date-picker {
    background: #111111 !important; /* Matte Black */
    border: 2px solid #00ebff !important; /* Cyan Glow */
    border-radius: 20px !important;
    padding: 25px !important;
    box-shadow: 0 0 30px rgba(0, 235, 255, 0.15);
}

/* 2. Transform the Calendar Header */
.ui-datepicker-header {
    background: transparent !important;
    border: none !important;
    color: #00ebff !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
}

/* 3. Make Dates look like 'Toggle Buttons' */
.ui-datepicker-calendar td a {
    background: #222 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    margin: 3px !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 4. The 'Action' Color (Orange) for Selection */
.ui-datepicker-calendar td.ui-datepicker-current-day a,
.ui-datepicker-calendar td a:hover {
    background: #ff5e00 !important; /* Safety Orange */
    color: #000 !important;
    transform: scale(1.15);
    box-shadow: 0 0 20px #ff5e00;
    border: none !important;
}

/* 1. Force the Container into a Sharp Rectangle */
.wc-bookings-date-picker {
    background: #111111 !important; /* Matte Black */
    border: 3px solid #00ebff !important; /* Cyan Glow */
    border-radius: 0px !important; /* Removes all curves */
    padding: 25px !important;
    box-shadow: 10px 10px 0px #003a40; /* Retro "Hard" shadow */
}

/* 2. Square off the Date Tiles */
.wc-bookings-date-picker .ui-datepicker-calendar td a {
    border-radius: 0px !important; /* Makes dates square */
    margin: 1px !important;
    border: 1px solid #333 !important;
}

/* 3. Square off the "Book Now" Button */
.wc-bookings-booking-form-button {
    border-radius: 0px !important; /* No more rounded pill shape */
    text-transform: uppercase !important;
    font-weight: 900 !important;
    border: 2px solid #ff5e00 !important;
}

/* 4. Remove the rounded edges from the header navigation */
.ui-datepicker-header, .ui-datepicker-prev, .ui-datepicker-next {
    border-radius: 0px !important;
}