/* 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;
}
