/*
Theme Name: Siam Thai Take Away
Theme URI: https://www.siamthaitakeaway.uk
Author: S Levenson - coreSkills Digital
Version: 3.0.0
*/

/*------------------------------*/
/* 1. Variables
/*------------------------------*/
:root {
  --backgroundLight: #e8ecea;
  --backgroundDark: #071e48;
  --backgroundDark-rgb: 7, 30, 72;
  --textDark: #201d16;
  --textDark-rgb: 32, 29, 22;
  --textLight: #bbb4dc;
  --textLight-rgb: 192, 180, 220;
  --goldAccent: #b38d47;
  --redDark: #8d2331;
  --redDark-rgb: 141, 35, 49;
  --redLight: #ce302d;
  --bodyFont: Verdana, "Thaoma", Arial, sans-serif;
  --headingFont: "Bodoni", Georgia, "Times New Roman", serif;
}

/*------------------------------*/
/* 2. Global & Header Layout
/*------------------------------*/

body {
  background-color: var(--backgroundLight);
  margin: 0;
}

/* THIS IS THE FIX: Disable ALL transitions on page load */
body.preload * {
  transition: none !important;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--backgroundDark);
  padding: 10px 20px;
}

.main-header {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0);
  margin: 0;
  width: 100%;
  z-index: 100;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/*------------------------------*/
/* 2.5 Base Styles for Buttons  */
/*------------------------------*/
.filter-button,
.menu-download-button,
.hero-btn,
.footer-cta-button,
.cta-btn,
.page-template-template-contact .wpforms-submit-container #wpforms-submit-766.wpforms-submit {
  all: unset;
  box-sizing: border-box;

  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;

  font-family: var(--bodyFont);
  font-weight: bold;
  font-size: 1rem;
}

/*------------------------------*/
/* 3. Mobile Navigation (DEFAULT)
/*------------------------------*/

/* Shrink the logo on mobile */
header>a>img {
  max-height: 50px;
  width: auto;
}

/* Show the burger button */
#mobileMenuToggle {
  display: block;
  background: transparent;
  border: 1px solid var(--goldAccent);
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  margin-right: 10vw;
  padding: 0.5rem;
}

#mobileMenuToggle .iconBar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--goldAccent);
  margin: 4px 0;
}

/* This is the DEFAULT state: hidden off-screen */
.site-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 80%;
  height: 100vh;
  background-color: var(--backgroundDark);
  padding: 40px 20px;
  transform: translateX(calc(100% + 5vw));
  /* NO transition by default - prevents animation on resize */
  z-index: 1000;
  font-size: medium;
  font-family: var(--bodyFont);
  font-weight: bold;
  color: var(--goldAccent);
}

/* Only add transition when menu is being interacted with */
.site-navigation.is-open,
.site-navigation.is-closing {
  transition: transform 0.3s ease-in-out;
}

.site-navigation.is-open {
  transform: translateX(0);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

/* Show the close button */
#mobileMenuClose {
  display: block;
  position: absolute;
  top: 25px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--goldAccent);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  padding: 5px;
  cursor: pointer;
}

/* Stack menu items vertically */
.header-navigation-ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-navigation-ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-navigation-ul li a,
.header-navigation-ul li a:visited {
  text-decoration: none;
  color: var(--goldAccent);
  padding: 10px 15px;
  display: block;
  text-align: center;
}

.header-navigation-ul li a:hover {
  text-decoration: underline;
  color: var(--textLight);
}

.header-navigation-ul .menu-item-has-children {
  position: relative;
  display: block;
}

.submenu-toggle {
  background: transparent;
  border: none;
  color: var(--goldAccent);
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  opacity: 1;
}

.submenu-toggle .icon-arrow {
  display: block;
  transition: transform 0.2s ease-out;
}

.submenu-toggle.is-open .icon-arrow {
  transform: rotate(180deg);
}

.header-navigation-ul .sub-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin: 0;
}

.header-navigation-ul .sub-menu.is-open {
  display: block;
}

/*------------------------------*/
/* 4. Desktop Navigation
/*------------------------------*/
@media (min-width: 769px) {

  /* Un-shrink the logo */
  header>a>img {
    max-height: none;
    max-width: 46vw;
  }

  /* Hide mobile buttons on desktop */
  #mobileMenuToggle,
  #mobileMenuClose {
    display: none;
  }

  /* Revert navigation container to desktop layout */
  .site-navigation {
    position: static;
    width: auto;
    height: auto;
    padding-right: 5vw;
    transform: none;
    transition: none;

  }

  /* Make menu horizontal */
  .header-navigation-ul {
    display: flex;
    gap: 15px;
  }

  .header-navigation-ul li {
    width: auto;
    border-bottom: none;
  }

  .header-navigation-ul .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .submenu-toggle {
    padding: 10px;
    width: auto;
    opacity: 0.7;
  }

  .header-navigation-ul .sub-menu {
    display: none;
    flex-basis: 100%;
  }

  .header-navigation-ul .sub-menu.is-open {
    display: block;
  }
}

/*------------------------------*/
/* 5. Footer
/*------------------------------*/

/* Mobile-First Styles (Default) */
.site-footer {
  background-color: var(--backgroundDark);
  color: var(--textLight);
  padding: 40px 20px;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  /* All columns stack on mobile */
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  text-align: center;
  /* Center-align text in columns on mobile */
}

.footer-col-title {
  font-family: var(--headingFont);
  color: var(--goldAccent);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.footer-col p {
  margin: 5px 0;
  font-size: 15px;
  opacity: 0.9;
  text-align: center;
}

.footer-menu-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Stack links vertically */
  gap: 10px;
}

.footer-menu-ul li a,
.footer-menu-ul li a:visited {
  color: var(--textLight);
  text-decoration: none;
  padding: 5px;
  display: block;
}

.footer-menu-ul li a:hover {
  text-decoration: underline;
}

footer button {
  all: unset;
}

.footer-cta-button {
  padding: 15px 25px;
  border: 2px solid var(--goldAccent);
  background: transparent;
  border-radius: 30px;
  color: var(--textLight);
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  outline: none;
  box-shadow: none;
  margin: 1rem;
  margin-right: 5vw;
}

.footer-cta-button:hover {
  background-color: var(--goldAccent);
  color: var(--textDark);
  outline: none;
  box-shadow: none;
}

.footer-col img {
  display: block;
  margin-top: 10px;
  padding-top: 20px;
  width: 75px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  text-align: center;
}

.copyright-text {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 5vw;
  margin-left: 5vw;
}

.designer-credit {
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.designer-credit img {
  max-height: 50px;
  /* Control your logo size */
  width: auto;
  margin-right: 5vw;
}

/*------------------------------*/
/* 6. Footer (Desktop)
/*------------------------------*/
@media (min-width: 769px) {
  .footer-main {
    /* Create 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  #footer-col-1 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    margin: 0;
  }

  /* Center the CTA button in its column */
  #footer-col-4 {
    text-align: center;
    align-self: center;
    background: transparent;
    outline: none;
    box-shadow: none;
  }

  #footer-col-4 img {
    margin: 5 auto;
    padding: 0;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--bodyFont);
  }

  .copyright-text {
    margin-bottom: 0;
  }

  .designer-credit {
    flex-direction: row;
    /* "Designed by" and logo side-by-side */
  }
}

/*------------------------------*/
/* 7. WooCommerce Layout
/*------------------------------*/

/* === 1. Product Grid Layout === */
.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /* 1 column on mobile */
  gap: 20px;
}

/* === 2. Product Card === */
.product-card {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  /* Stack columns on mobile */
  background-color: #f9f9f9;
  /* Light grey background for the card */
  /* border-radius: 8px; */
  /*overflow: hidden;*/
  border: 1px solid #eee;
  height: 100%;
}

/* === 3. Card Content (Left Column) === */
.product-card-content {
  padding: 20px;
  color: var(--textDark);
  display: flex;
  flex-direction: column;
}

.product-menu-details {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--bodyFont);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--textDark);
  justify-content: space-between;
  min-height: 60px;
  /* Ensure text is dark */
}

.product-menu-number {
  color: var(--goldAccent);
  font-size: 1.2rem;
}

.woocommerce-loop-product__title {
  color: var(--textDark);
  /* Dark title */
  font-family: var(--headingFont);
  font-size: 1.6rem;
  margin: 0;
  text-align: right;
}

.product-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: var(--bodyFont);
}

.product-description>p {
  min-height: 100px;
}

.product-meta-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}

.product-allergen {
  max-height: 6svh;
  /* Adjust icon size */
  width: auto;
  /* display: block; */
  padding: 4px;
  box-shadow: 2px 2px 4px rgba(var(--redDark-rgb), 0.5);
}

/* === 4. Card Actions (Right Column) === */
.product-card-actions {
  padding: 20px;
  background-color: #f0f0f0;
  /* Slightly darker grey */
  text-align: center;
}

.product-card-image {
  margin-bottom: 15px;
}

.product-card-image img {
  width: 100%;
  height: auto;
  /* border-radius: 6px; */
  width: 100%;
  height: auto;
  max-width: 50svw;
}

.product-card-footer {
  min-height: 80px;
}

/* Style the "Order" button */
.woocommerce-page .products .product .button {
  background-color: var(--goldAccent);
  color: var(--textDark);
  font-weight: bold;
  /* border-radius: 6px; */
  width: 100%;
  padding: 12px;
  transition: background-color 0.3s ease;
}

.woocommerce-page .products .product .button:hover {
  background-color: var(--backgroundDark);
  color: var(--textLight);
}

/*
 * This is the wrapper we added in archive-product.php.
 * By default, it's just a block, so the sidebar
 * stacks below the main content on mobile.
*/
.woocommerce-content-area {


  width: 90%;
  margin: 0 auto;
  padding: 20px;
}

/* === Desktop Sidebar Layout === */
@media (min-width: 769px) {

  /* When the sidebar exists, use Flexbox */
  .woocommerce-content-area.has-sidebar {
    display: flex;
    gap: 40px;
  }

  /* The main content (products) */
  .shop-main-content {
    flex: 1;
    /* Takes up the remaining space */
  }

  /* The sidebar */
  .shop-sidebar {
    flex-basis: 300px;
    /* Set a fixed width */
    flex-shrink: 0;
    /* Don't let it shrink */
  }
}

/*
 * Style the Cart Widget
*/
.shop-sidebar .widget_shopping_cart .cart_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-sidebar .widget_shopping_cart .cart_list li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.shop-sidebar .widget_shopping_cart .widget-title {
  color: var(--goldAccent);
}

.shop-sidebar .widget_shopping_cart .total {
  border-top: 2px solid var(--goldAccent);
  padding-top: 10px;
  margin-top: 10px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}

.product-spice-icons {
  display: flex;
  gap: 2px;
  align-items: center;
}

.spice-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/*------------------------------*/
/* 8. WooCommerce Fixes
/*------------------------------*/

/* Hide the WooCommerce breadcrumbs */
.woocommerce-breadcrumb {
  display: none;
}

/* Remove the gap above the shop title */
.woocommerce-products-header {
  margin-top: 0;
  background-color: var(--backgroundLight);
  color: var(--textDark);
}

/* Fix logo shrinking on desktop */
@media (min-width: 769px) {
  header>a {
    flex-shrink: 1;
    /* Allow logo to shrink */
  }

  .product-card-image img {
    max-width: 100%;
  }
}

/*------------------------------*/
/* 9. Allergen Popup
/*------------------------------*/

/* Wrapper to position the popup */
.allergen-popup-wrapper {
  position: relative;
  display: inline-block;
}

/*Style the button that holds the allergen icon */
.allergen-trigger {
  all: unset;
  cursor: pointer;
  display: block;
}

.allergen-trigger:focus {
  outline: solid 3px var(--backgroundDark);
}

/* The hidden popup block */
.allergen-popup-block {
  display: block;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-30%);
  width: 170px;
  background: #fff;
  border: 1px solid #ccc;
  /* border-radius: 8px; */
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

/* Hide the popup when it has the [hidded] attribute */
.allergen-popup-block[hidden] {
  display: none;
}

/*Style the list inside the popup */
.allergen-popup-block strong {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.allergen-popup-block ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.allergen-popup-block li {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.allergen-icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.allergen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.allergen-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: inline-block;
}

/*---------------------------------*/
/* 10. Menu Filter Navigation      */
/*---------------------------------*/

.menu-filter-nav {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid var(--goldAccent);
  padding-bottom: 15px;
  margin-bottom: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.menu-download-button {
  width: 100px;
  height: 39px;
  border: 2px solid var(--backgroundDark);
  background-color: var(--redDark);
  color: var(--textLight);
  font-size: 0.8rem;
  white-space: wrap;
}

.menu-filter-list {
  list-style: none;
  margin: 0;
  padding: 0 5px;
  display: flex;
  gap: 10px;
  width: max-content;
}

.filter-button {
  padding: 10px 15px;
  color: var(--textLight);
  background-color: var(--redDark);
}

.filter-button:hover {
  background-color: var(--backgroundDark);
}

.filter-button.is-active {
  background-color: var(--goldAccent);
  color: var(--textDark);
}

@media (max-width: 768px) {
  .menu-filter-nav>a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    align-content: center;
  }

  .menu-filter-list {
    flex-wrap: wrap;
    overflow-x: visible;
    flex-grow: 0;
    width: 100%;
    justify-content: center;
  }

}

/* *************************** */
/* ***** Homepage Styles ***** */
/* *************************** */

.page-template-template-homepage .woocommerce-content-area {
  padding: 0;
  width: 100%;
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--backgroundLight);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--backgroundDark-rgb), 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  padding: 20px;
  max-width: 800px;
  z-index: 2;
}

.hero-title {
  font-family: var(--headingFont);
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 1.1;
  margin-bottom: 1rem;
  color: var(--backgroundLight);
  text-transform: uppercase;
  text-shadow: 1px 2px 2px var(--backgroundDark);
}

.hero-subtitle {
  font-family: var(--bodyFont);
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 2px 2px var(--textDark);
}

.hero-btn {
  padding: 12px 28px;
  border: 2px solid var(--goldAccent);
  font-size: 1rem;
}

.hero-btn.primary {
  background-color: var(--goldAccent);
  color: var(--textDark);
  padding: 3px;
  margin-right: 5px;
}

.hero-btn.primary:hover {
  background-color: transparent;
  color: var(--goldAccent);
}

.hero-btn.primary:focus {
  outline: 3px solid var(--redLight);
}

.hero-btn.secondary {
  background-color: transparent;
  color: var(--goldAccent);
  padding: 3px;
}

.hero-btn.secondary:hover {
  background-color: var(--goldAccent);
  color: var(--textDark);
}

.hero-btn.secondary:focus {
  outline: 3px solid var(--redLight);
}

.key-info-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background-color: var(--backgroundDark);
  padding: 2rem;
  font-family: var(--bodyFont);
  text-align: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-item strong {
  color: var(--goldAccent);
  font-size: 1.1rem;
}

.info-item span {
  color: var(--textLight);
  opacity: 0.9;
  font-size: 1rem;
}

.info-item span a {
  color: var(--textLight);
  text-decoration: none;
}

.info-item span a:hover {
  text-decoration: underline;
}

.popular-dishes,
.about-us-blurb {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--headingFont);
  font-size: 2.5rem;
  color: var(--textDark);
  text-align: center;
  margin-bottom: 2rem;
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.dish-card {
  overflow: hidden;
  background-color: var(--backgroundLight);
  border: 1px solid var(--textLight);
  box-shadow: 0 4px 12px rgba(var(--textDark-rgb), 0.05);
  transition: all 0.2s ease-in-out;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(var(--textDark-rgb), 0.1);
}

.dish-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.dish-title {
  font-family: var(--headingFont);
  font-size: 1.5rem;
  color: var(--textDark);
  text-align: center;
  margin: 0;
  padding: 1.25rem 1rem;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-btn {
  padding: 12px 28px;
  border: 2px solid var(--goldAccent);
  background-color: var(--goldAccent);
  color: var(--textDark);
}

.cta-btn:hover {
  background-color: var(--textDark);
  border-color: var(--textDark);
  color: var(--textLight);
}

.about-us-blurb {
  background-color: rgba(var(--textLight-rgb), 0.1);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-family: var(--bodyFont);
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--textDark);
  opacity: 0.9;
}

@media (min-width: 500px) {
  .hero-btn {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width:769px) {
  .hero-title {
    font-size: 4rem;
  }

  .key-info-bar {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;

  }

  .info-item {
    flex-direction: column;
  }

  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .popular-dishes,
  .about-us-blurb {
    padding: 4rem;
  }

  .section-cta {
    margin: 4rem auto -1rem;
  }
}

/* ******************************* */
/* ***** Contact Page Styles ***** */
/* ******************************* */

.page-template-template-contact .woocommerce-content-area {
  width: 90%;
  margin: 0 auto;
  padding: 20px;

}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 20px;
}

.contact-group {
  margin-top: 1.5rem;
}

.contact-subtitle {
  font-family: var(--bodyFont);
  color: var(--goldAccent);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-info {
  font-size: 1.1rem;
  margin-top: 0;
  line-height: 1.6;
}

.contact-info a {
  color: var(--redDark);
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-embed-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.page-template-template-contact .wpforms-form input[type="text"],
.page-template-template-contact .wpforms-form input[type="email"],
.page-template-template-contact .wpforms-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: var(--bodyFont);
  background: rgba(var(--textLight-rgb), 0.15);
  color: var(--textDark);
  box-sizing: border-box;
}

.page-template-template-contact .wpforms-form textarea {
  height: 150px;
}

.page-template-template-contact .wpforms-submit-container #wpforms-submit-766.wpforms-submit {
  background-color: var(--goldAccent);
  color: var(--textDark);
  border: none;
  padding: 12px 20px;
}

.page-template-template-contact .wpforms-submit-container #wpforms-submit-766.wpforms-submit:hover {
  background-color: var(--redDark);
  color: var(--textLight);
}

@media (min-width:769px) {
  .contact-page-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact-group-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 1.5rem;
  }

  .contact-group {
    flex: 1;
    margin-top: 0;
  }

  .contact-group .contact-subtitle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-map {
    order: 1;
  }

  .contact-details {
    order: 2;
  }
}

/* ************************************** */
/* ***** Privacy Policy Page Styles ***** */
/* ************************************** */
.page-template-template-privacy .woocommerce-content-area {
  width: 99%;
  margin: 0 auto;
  padding: 30px 30px 0;
  background-color: rgba(var(--backgroundDark-rgb), 0.95);

}

.page-template-template-privacy article {
  max-width: 90%;
  margin: 0 auto;
}

.page-template-template-privacy p {
  font-family: var(--bodyFont);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--backgroundLight);
  margin-bottom: 1rem;
}

.pageTitle {
  font-family: var(--headingFont);
  font-size: 2.5rem;
  color: var(--backgroundLight);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 1px var(--redDark);
}

.subTitle {
  font-family: var(--bodyFont);
  font-size: 1.5rem;
  color: var(--goldAccent);
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.intro {
  font-family: var(--bodyFont);
  font-size: 1.2rem;
  color: var(--backgroundLight);
  margin-bottom: 1.5rem;
}

.intro ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
  list-style: none;
}

.intro a {
  color: var(--redLight);
  text-decoration: none;
  line-height: 2.6rem;
}

.intro a:hover {
  text-decoration: underline;
}

.sectionHeading {
  font-family: var(--headingFont);
  font-size: 2rem;
  color: var(--backgroundLight);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 1px var(--goldAccent);
}

.contactInfo {
  font-family: var(--bodyFont);
  font-size: 1.1rem;
  color: var(--backgroundLight);
  margin-top: 1rem;
}

.information a {
  font-family: var(--bodyFont);
  font-size: 1.1rem;
  color: var(--textLight);
  margin-top: 1rem;
  text-decoration: none;
}

.information a:hover {
  text-decoration: underline;
}

.whatWeCollect ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

.whatWeCollect li {
  margin-bottom: 0.5rem;
  color: var(--backgroundLight);
  font-size: 1.1rem;
}

.pLink {
  color: var(--redLight);
  text-decoration: none;
}

.pLink:hover {
  text-decoration: underline;
}

dl.dataRights {
  margin-bottom: 1.5rem;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(var(--textDark-rgb), 0.15);
  padding: 30px;
}

dfn {
  font-size: 1.4rem;
  font-family: var(--headingFont);
  font-weight: bold;
  color: var(--backgroundLight);
}

dd {
  margin-left: 20px;
  margin-bottom: 1rem;
  color: var(--backgroundLight);
  font-size: 1.1rem;
  padding: 3px
}

.sectionSubHeading {
  font-family: var(--bodyFont);
  font-size: 1.3rem;
  color: var(--goldAccent);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

dl.lawfulBasesList ul {
  margin-top: 5px;
}

.whereWeGet ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
  color: var(--backgroundLight);
}

time {
  color: var(--backgroundLight);
  font-size: 1.2rem;
}

.update {
  padding-bottom: 3rem;
}

.page-jump-target {
  scroll-margin-top: 160px;
}