/*!
Theme Name: FansAndBlowers
Author: Charlie @ Aztec Media
Author URI: https://aztec.media/
Description: FansAndBlowers
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 8.2
Text Domain: fansandblowers

BlankSlate WordPress Theme © 2024 Aztec Media
*/

/* Header + Footer St

/* Header + Footer Styling  */

:root {
  --orange: #ffa800;
  --dark-orange: #f38a00;
  --light-orange: #ffbe3b;
  --white-orange: #fff5e0;
  --white: #fff;
  /* --teal: #48b8ac; */
  --teal: #00467e;
  --grey-teal: #7b9e9a;
  /* --dark-teal: #317d75; */
  --dark-teal: #003563;
  /* --darker-teal: #28615b; */
  --darker-teal: #002444;
  --white-teal: #cae0de;
  --pale-white-teal: #f3f8f6;
  --mid-grey: #1f1f1f;
  --super-light-grey: rgba(243, 243, 243, 0.75);
  --light-grey: rgba(211, 211, 211, 0.5);
  --body-font: Kanit, 'Georama Regular', Verdana, Arial, sans-serif;
  --font-light: 300;
  --font-med: 400;
  --font-bold: 500;
  --font-xbold: 600;
  --fast-speed: all 0.3s ease-out;
  --mid-speed: all 0.7s ease;
  --slow-speed: all 1s ease;
}

* {
  font-family: Kanit, 'Georama Regular', Verdana, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

button {
  border: none;
  outline: none;
  background: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: var(--font-light);
}

body {
  font-family: var(--body-font);
  font-weight: var(--font-light);
  letter-spacing: 0.5px;
  line-height: 1.5;
  overflow-x: hidden;
  margin: 0;
}

body.nav--open {
  overflow-y: hidden;
}

.hero-btn {
  margin-right: 0.7rem;
  margin-bottom: 1rem;
}

.btn {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 5rem;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  min-width: 15rem;
}

.btn.btn--orange {
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
}

.btn.btn--orange .btn__slide {
  background-color: var(--dark-orange);
}

.btn.btn--blue {
  background-color: var(--teal);
  color: var(--white);
}

.btn.btn--blue .btn__slide {
  background-color: var(--dark-teal);
}

.btn .btn__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-101%);
  transition: var(--fast-speed);
  z-index: -1;
}

.btn:hover .btn__slide {
  transform: translateY(0%);
}

.fb-header {
  display: flex;
  padding: 1rem 2rem;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 9999;
  font-weight: var(--font-med);
  transition: var(--fast-speed);
  background-color: rgba(0, 53, 99, 0.963);
  top: -0.6rem;
}

.fb-header.scrolled {
  background-color: var(--dark-teal);
}

.fb-header .burger {
  display: none;
}

.fb-header a.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.fb-header a.logo svg {
  height: 4rem;
}

.fb-header a.logo figure {
  height: 5.2rem;
  width: 7rem;
}

.fb-header a.logo figure img {
  -o-object-fit: contain;
  object-fit: contain;
}

.fb-header .order__btn,
.fb-header .nam__btn {
  margin-left: 1rem;
  width: 15rem;
  color: var(--darker-teal);
}

.fb-header .tel__btn {
  margin-left: 1rem;
  margin-right: 3rem;
  background-color: var(--white);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fast-speed);
}

.fb-header .tel__btn svg {
  fill: var(--dark-blue);
  transition: var(--fast-speed);
}

.fb-header .tel__btn {
  display: flex;
  align-items: center;
}

.fb-header .tel__btn:hover {
  background-color: var(--orange);
}

.fb-header .tel__btn:hover svg {
  fill: var(--white);
}

.fb-header .mob__btn {
  display: none;
}

.nav__menu {
  display: flex;
}

.nav__menu .nav__item {
  padding: 1rem;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.nav__menu .nav__item.nav__item--active > a::after {
  transform: translateX(0%);
}

.nav__menu .nav__item > a {
  position: relative;
  overflow: hidden;
}

.nav__menu .nav__item > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark-orange);
  transform: translateX(-150%);
  transition: var(--fast-speed);
}

.nav__menu .nav__item:hover a::after {
  transform: translateX(0%);
}

.nav__menu .nav__item:hover .inner__nav {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.nav__menu .nav__item .inner__nav {
  z-index: -1;
  background-color: var(--dark-teal);
  position: fixed;
/*   height: 28rem; */
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 1.5rem 1.5rem 1.5rem 1.5em;
  opacity: 0;

  visibility: hidden;
  transition: var(--mid-speed);
}

.nav__menu .nav__item .inner__nav .inner__nav__menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  overflow: hidden;
  padding-left: 0;
}

.nav__menu .nav__item .inner__nav .inner__nav__menu li {
  width: -moz-max-content;
  width: max-content;
}

.nav__menu
  .nav__item
  .inner__nav
  .inner__nav__menu
  li.nav__item--active
  > a::after {
  transform: translateX(0%);
}

.nav__menu .nav__item .inner__nav .inner__nav__menu li a {
  position: relative;
  overflow: hidden;
}

.nav__menu .nav__item .inner__nav .inner__nav__menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark-orange);
  transform: translateX(-180%);
  transition: var(--fast-speed);
}

.nav__menu .nav__item .inner__nav .inner__nav__menu li:hover a::after {
  transform: translateX(0%);
}

.nav__menu .nav__item .inner__nav .inner__nav__img {
  position: relative;
  height: 10rem;
}

.nav__menu .nav__item .inner__nav .inner__nav__img .inner__nav__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
}

@media only screen and (max-width: 1250px) {
  .fb-header .tel__btn {
    position: absolute;
    top: 2.5rem;
    right: 5rem;
    cursor: pointer;
    z-index: 150;
  }
}
@media only screen and (max-width: 1465px) {
  .fb-header .order__btn {
    display: none;
  }
}
@media only screen and (max-width: 1080px) {
  .nav__menu .nav__item {
    padding: 0 0.75rem;
  }
}
@media only screen and (max-width: 1215px) {
  .fb-header .mob__btn {
    display: block;
  }
  .fb-header .mob__btn:first-of-type {
    margin: 1rem 0;
  }
  .fb-header .order__btn {
    display: block;
    margin-right: 6rem;
  }
  .fb-header a.logo {
    z-index: 150;
  }
  .fb-header a.logo h1 {
    display: block;
  }
  .fb-header .burger {
    display: block;
    position: absolute;
    top: 3rem;
    right: 3rem;
    cursor: pointer;
    z-index: 150;
  }
  .fb-header .burger .line {
    transition: var(--fast-speed);
    width: 2.5rem;
    height: 2px;
    background-color: var(--white);
    margin: 8px 0;
  }
  .fb-header .burger.nav--open .line:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .fb-header .burger.nav--open .line:nth-of-type(2) {
    opacity: 0;
    transform: translateX(100%);
  }
  .fb-header .burger.nav--open .line:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .navbar {
    position: absolute;
    background-color: var(--teal);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(-101%);
    transition: var(--mid-speed);
    z-index: 100;
  }
  .navbar .nav__menu {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .navbar .nav__menu .inner__nav {
    display: none !important;
  }
  .navbar .nav__menu .nav__item {
    font-size: 1.5rem;
    overflow-x: hidden;
  }
  .navbar .nav__menu .nav__item:last-of-type {
    font-size: 1.5rem;
  }
  .navbar .nav__menu .nav__item:last-of-type a {
    font-size: 1.5rem;
  }
  .navbar .nav__menu .nav__item:last-of-type::after {
    display: none;
  }
  .navbar .nav__menu .nav__item a {
    padding: 1rem;
    transition: var(--fast-speed);
  }
  .navbar.nav--open {
    transform: translateX(0%);
  }
  .fb-header .order__btn {
    display: none;
  }
}
@media only screen and (max-width: 1215px) and (max-height: 700px) {
  .navbar .nav__menu .nav__item {
    font-size: 1.25rem;
  }
  .navbar .nav__menu .nav__item:last-of-type {
    font-size: 1.25rem;
  }
  .navbar .nav__menu .nav__item:last-of-type a {
    font-size: 1.25rem;
  }
  .navbar .nav__menu .nav__item a {
    padding: 0.5rem 1rem;
  }
}
@media only screen and (max-width: 935px) {
  .header .order__btn {
    display: none;
  }
  .header .nam__btn {
    margin-right: 6rem;
  }
}
@media only screen and (max-width: 700px) {
  .header .nam__btn {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .woocommerce-ordering {
    padding-right: 0 !important;
    justify-content: center !important;
  }
  .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
      float: none;
  }
}

@media only screen and (max-width: 400px) {
  .header a.logo svg {
    display: none;
  }
}

.footer__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 25rem;
  background-color: black;
}

.footer__blocks .footer__block {
  background-color: black;
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mid-speed);
}

.footer__blocks .footer__block figure {
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
}

.footer__blocks .footer__block img {
  transition: var(--mid-speed);
  opacity: 0.5;
}

/*.footer__blocks .footer__block:hover img {*/
/*  transform: scale(1.1);*/
/*}*/
.footer__blocks .footer__block .block__border {
  position: absolute;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  top: 2rem;
  left: 2rem;
  opacity: 0.3;
}

.footer .furniture span {
  text-align: center;
}

.footer__blocks .footer__block .btn {
  margin-bottom: 4rem;
  display: inline-block;
  background-color: #1a9fde;
}

.footer__blocks .footer__block .btn .btn__slide {
  background-color: var(--darker-teal);
}

.footer__blocks .footer__block:last-of-type .btn {
  background-color: var(--darker-teal);
}

.footer__blocks .footer__block:last-of-type .btn .btn__slide {
  background-color: #1a9fde;
}

.footer__blocks .footer__block .text {
  display: flex;
  flex-direction: column;
}

.footer__blocks .footer__block .text .btn {
  display: block;
  margin-bottom: 0;
}

.footer__blocks .footer__block .text h6 {
  position: relative;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

@media only screen and (max-width: 750px) {
  .footer__blocks {
    grid-template-columns: 1fr;
    grid-auto-rows: 20rem;
  }
  .footer__blocks .footer__block {
    align-items: center;
  }
  .footer__blocks .footer__block .btn {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 400px) {
  .footer__blocks .footer__block .block__border {
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
  }
}
.footer__icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #002341;
  text-align: center;
  text-transform: uppercase;
  padding: 2rem;
}

.footer__icons .footer__icon {
  color: var(--white);
  font-size: 1.1rem;
}

.footer__icons .footer__icon svg {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 650px) {
  .footer__icons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer {
  background-color: #001c35;
  color: var(--white);
  text-transform: uppercase;
  padding: 4rem;
}

.footer .footer__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
}

.footer .footer__grid .footer__left {
  position: relative;
}

.footer .footer__grid .footer__left h2 {
  color: var(--orange);
  padding-bottom: 1rem;
}

.footer .footer__grid .footer__left .address {
  padding-bottom: 1.5rem;
  padding-left: 2.5rem;
}

.footer .footer__grid .footer__left a {
  padding-left: 2.5rem;
  padding-right: 1rem;
  transition: var(--fast-speed);
}

.footer .footer__grid .footer__left a:hover {
  color: var(--orange);
}

.footer .footer__grid .footer__left svg {
  position: absolute;
}

.footer .footer__grid .footer__right {
  display: flex;
  gap: 1rem;
}

.footer .footer__grid .footer__right .footer__nav {
  flex: 1;
}

.footer .footer__grid .footer__right .footer__nav h2 {
  padding-bottom: 1rem;
  color: var(--orange);
}

.footer .footer__grid .footer__right .footer__nav ul {
  color: var(--white);
  padding-left: 0;
}

.footer .footer__grid .footer__right .footer__nav ul li {
  transition: var(--fast-speed);
}

.footer .footer__grid .footer__right .footer__nav ul li:hover {
  color: var(--dark-orange);
}

.footer .footer__grid .footer__right .footer__social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .footer__grid .footer__right .footer__social a {
  transition: var(--fast-speed);
}

.footer .footer__grid .footer__right .footer__social a:hover {
  opacity: 0.8;
}

.footer .furniture {
  padding-top: 6rem;
  color: var(--light-grey);
  display: flex;
  font-size: 0.9rem;
}

.footer .furniture a {
  display: inline-block;
  transition: var(--fast-speed);
}

.footer .furniture a:hover {
  color: var(--orange);
}

.footer .furniture p {
  padding: 0 1rem;
}

.footer .furniture p:first-of-type {
  padding-left: 0;
}

.footer .furniture p:last-of-type {
  margin-left: auto;
  padding-right: 0;
}

@media only screen and (max-width: 1150px) {
  .footer .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .footer .footer__grid .footer__left svg {
    display: none;
  }
  .footer .footer__grid .footer__left .address {
    padding-left: 0;
  }
  .footer .footer__grid .footer__left a {
    padding-left: 0;
  }
}
@media only screen and (max-width: 900px) {
  .footer .furniture {
    padding-top: 4rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .furniture span {
    display: none;
  }
  .footer .furniture p {
    padding: 0.25rem 0;
  }
  .footer .furniture p:last-of-type {
    margin-left: 0;
  }
}
@media only screen and (max-width: 700px) {
  .footer .footer__grid .footer__right {
    flex-direction: column;
  }
  .footer .footer__grid .footer__right .footer__social {
    flex-direction: row;
    justify-content: center;
  }
  .footer .footer__grid .footer__right .footer__social a {
    margin: 0 0.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .footer {
    padding: 4rem 2rem;
  }
}
@media only screen and (max-width: 400px) {
  .footer {
    padding: 4rem 1rem;
  }
}

.navbar a,
.footer a {
  color: white;
  text-decoration: none;
  list-style-type: none;
}

li::marker {
  content: '';
}

/* WooCommerce Shop Styling */

#primary {
  padding: 2rem;
}

.entry-title {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 12rem;
  font-size: 2.5rem;
  font-family: var(--body-font);
}

.woocommerce-products-header__title {
  color: #00467e;
  font-size: 3rem;
  margin: 0;
  padding-top: 10rem;
  text-align: center;
  font-weight: 400;
}

.woocommerce-notices-wrapper {
  margin-bottom: 2rem;
}

.woocommerce-result-count {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  float: none !important;
  text-align: center;
}

.woocommerce-ordering {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
  padding-right: 2.5rem;
}

.woocommerce-ordering select {
  padding: 0.5rem;
  font-size: 1rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.5rem;
}

ul.products {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

ul.products li.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
  width: calc(25% - 2rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

ul.products li.product:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
  transform: translatey(-4px) !important;
  transition:  0.3s ease;
}

.woocommerce-LoopProduct-link {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 2rem;
  text-align: center;
}

.woocommerce-loop-product__title {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #00467e;
  font-weight: 400;
}

.price {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
a.button.product_type_variable.add_to_cart_button {
  background-color: #ffa800;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover,
a.button.product_type_variable.add_to_cart_button:hover 
{
  background-color: #e69500;
}

.woocommerce ul.products {
  padding: 5rem 0rem;
}

.woocommerce-loop-product__title {
  font-size: 1.5rem !important;
}

.woocommerce-Price-amount {
  color: var(--orange);
  font-size: 1.2rem;
}

#sidebar {
  display: none;
}

/* WooCommerce Product Page Styling */

#primary {
  padding: 2rem 3rem;
}

.woocommerce div.product {
  padding: 6rem 1rem;
}

.woocommerce-tabs ul.tabs {
  display: none;
}

.product_meta {
  display: none;
}

.product_title {
  color: #00467e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border-bottom: 0.2rem solid #ffa800;
  display: inline-block;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 2.2rem;
  color: #ffa800;
  font-weight: 600;
  margin: 1rem 0;
  text-align: left;
}

p.price bdi {
  font-size: 2rem;
}

.woocommerce-product-details__short-description {
  padding-bottom: 3rem;
  line-height: 2.2;
}

.woocommerce-product-details__short-description h3 {
  font-weight: 400;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  ul.products
  li.product
  .price {
  text-align: center;
}

.woocommerce div.product div.images {
  text-align: center;
  margin-bottom: 2.5rem;
}

.woocommerce div.product div.images img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.woocommerce div.product div.images img:hover {
  transform: scale(1.05);
}

.woocommerce-tabs .panel {
  background-color: #fff;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  padding: 2.5rem !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-tabs h2 {
  color: #00467e;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.woocommerce-tabs .panel p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

#tab-description h4,
h3 {
  font-weight: 400;
}

.woocommerce div.product form.cart .button {
  background-color: #ffa800;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.woocommerce div.product form.cart {
	margin-bottom: 0;
}

.woocommerce div.product form.cart .button:hover {
  background: linear-gradient(135deg, #e69500, #cc7a00);
}

.related.products {
  margin-top: 4rem;
  padding-top: 2rem;
}

.related.products h2 {
  color: #00467e;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.related.products ul.products {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related.products ul.products li.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
  width: calc(25% - 2rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.related.products ul.products li.product:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.3rem);
}

@media (max-width: 768px) {
  .related.products ul.products li.product {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 725px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .related.products ul.products li.product {
    width: 100%;
  }
}

.wcgs-carousel .wcgs-swiper-arrow.wcgs-swiper-button-next {
  right: 3rem !important;
}

.wcgs-carousel .wcgs-swiper-arrow.wcgs-swiper-button-prev {
  left: 3rem !important;
}

#wpgs-gallery {
  margin-bottom: 6.5rem;
}

.woocommerce-breadcrumb {
  position: relative;
  top: 8.5rem;
  z-index: 999;
}

.quantity input[type='number'] {
  width: 5rem;
  height: 3rem;
  font-size: 1.2rem;
  text-align: center;
  border: 1px solid black;
  border-radius: 0.5rem;
  margin-right: 1rem;
  color: #333;
  background-color: #f0f2f5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quantity input[type='number']:focus {
  box-shadow: 0 0.5rem 1rem rgba(0, 70, 126, 0.2);
}

/* Media Queries */
@media (max-width: 48rem) {
  ul.products li.product {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 30rem) {
  ul.products li.product {
    width: 100%;
  }
}

/* Add to basket popup */

.woocommerce-message {
  background-color: var(--dark-teal);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 1px var(--dark-teal);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  top: 6rem;
  right: 0.5rem;
  z-index: 999;
}

.woocommerce-message::before,
.woocommerce-message::after {
  pointer-events: none;
}

.woocommerce-message::before {
  display: none;
}

.woocommerce-message .button.wc-forward {
  background-color: var(--orange);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}

.woocommerce-message .button.wc-forward:hover {
  background-color: var(--dark-orange);

  color: white;
}

/* Basket Page Styling */

.page .header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 4rem;
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--dark-teal);
}

.page .header .entry-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
}

.wc-block-cart-items {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
  margin-bottom: 3rem;
}

.wc-block-cart-items th,
.wc-block-cart-items td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: none;
  background: #f9f9f9;
  border-radius: 0.5rem;
}

.wc-block-cart-items th {
  background-color: #00467e;
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 1.5rem;
  border-radius: 0.625rem 0.625rem 0 0;
}

.wc-block-cart-items td {
  background-color: #fff;
  color: #333;
  font-size: 1.2rem;
}

.wc-block-cart-items td:first-child {
  border-radius: 0;
}

.wc-block-cart-items td:last-child {
  border-radius: 0;
}

.wc-block-cart-items th,
.wc-block-cart-items td {
  border-radius: 0;
}

.wc-block-cart-item__image img {
  max-width: 7.5rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.wc-block-cart-item__product a.wc-block-components-product-name {
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.wc-block-cart-item__product a.wc-block-components-product-name:hover {
  color: #0085c3;
  text-decoration: underline;
}

.wc-block-cart-item__prices .price {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.wc-block-components-product-metadata__description {
  margin-top: 0.5rem;
  color: #777;
  font-size: 1.1rem;
}

.wc-block-cart-item__quantity {
  margin-top: 1.5rem;
}

.wc-block-components-quantity-selector__input {
  width: 4.5rem;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
}

.wc-block-components-quantity-selector__button {
  background-color: #00467e;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.3 ease, transform 0.2s ease;
}

.wc-block-components-quantity-selector__button:hover {
  background-color: #00365e;
  transform: scale(1.1);
}

.wc-block-cart-item__remove-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #e69500;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wc-block-cart-item__remove-link:hover {
  color: #b07500;
  text-decoration: underline;
}

.wc-block-cart__sidebar {
  background: linear-gradient(135deg, #f7f7f7 0%, #e0e0e0 100%);
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
}

.wc-block-cart__totals-title {
  color: var(--teal);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.wc-block-components-totals-item__label {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
}

.wc-block-components-totals-item__value {
  font-size: 1.6rem;
  color: black;
  font-weight: bold;
}

.wc-block-cart__submit-button {
  background-color: var(--orange);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 1.875rem;
  cursor: pointer;
  transition: background-color 1s ease, transform 0.2s ease;
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 2rem !important;
}

.wc-block-cart__submit-button:hover {
  background: linear-gradient(135deg, var(--dark-orange), #cc7a00);
}

.entry-content {
  padding: 2rem;
}

.wc-block-cart .wc-block-cart__submit-container--sticky {
  display: none !important;
}

@media (max-width: 768px) {
  .wc-block-cart__sidebar {
    padding: 2rem !important;
  }
}

.wc-block-components-sidebar {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.is-large.wc-block-cart .wc-block-cart-items th {
  color: rgb(58, 58, 58);
}

.is-large.wc-block-cart .wc-block-components-sidebar {
  max-height: max-content;
}

/* Checkout Page Styling */

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 3rem 2rem;
  background-color: rgb(240, 240, 240);
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wp-block-woocommerce-checkout h2 {
  color: var(--teal);
  font-size: 2rem;
  font-weight: var(--font-xbold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-address-form__input {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid rgb(219, 219, 219) !important;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  color: #333;
  background-color: #f0f2f5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input:focus,
.wp-block-woocommerce-checkout .wc-block-components-address-form__input:focus {
  border-color: var(--dark-teal);
  box-shadow: 0 0.5rem 1rem rgba(0, 70, 126, 0.2);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__title {
  font-size: 1.75rem;
  color: var(--dark-teal);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: var(--font-xbold);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__container {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  padding-right: 0.75rem !important;
}

.wc-block-checkout__payment-method .wc-block-components-checkout-step__content {
  padding-top: 0 !important;
}

.wc-block-checkout__order-notes .wc-block-components-checkout-step__content {
  margin-top: 0 !important;
}

.woocommerce-checkout .wc-block-components-product-metadata__description {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-address-card__edit {
  color: var(--orange);
  font-weight: var(--font-bold);
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.wp-block-woocommerce-checkout .wc-block-components-address-card__edit:hover {
  color: var(--dark-orange);
  transform: translateY(-0.1rem);
}

.wp-block-woocommerce-checkout .wc-block-components-address-form-wrapper {
  margin-top: 2rem;
}

.wp-block-woocommerce-checkout .wc-block-components-form {
  max-width: 100%;
}

.wp-block-woocommerce-checkout .wc-block-components-main {
  flex: 1 1 60%;
  margin-bottom: 3rem;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar {
  flex: 1 1 35%;
  background-color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar h2 {
  font-size: 2rem;
  color: var(--dark-teal);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: var(--font-xbold);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__content {
  margin-top: 2rem;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout .wc-block-components-totals-item__value {
  font-size: 1.6rem;
  color: var(--dark-teal);
  font-weight: var(--font-bold);
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__value {
  color: var(--orange);
}

.wp-block-woocommerce-checkout .wc-block-cart__submit-button {
  background-color: var(--orange);
  color: white;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 1.875rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background-color 1s ease, transform 0.2s ease;
}

.wp-block-woocommerce-checkout .wc-block-cart__submit-button:hover {
  background-color: var(--dark-orange);
  transform: translateY(-0.2rem);
}

@media (max-width: 768px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    flex-direction: column;
  }

  .wp-block-woocommerce-checkout .wc-block-components-sidebar,
  .wp-block-woocommerce-checkout .wc-block-components-main {
    width: 100%;
  }
}

.is-large .wc-block-checkout__sidebar {
  top: 12rem !important;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button.contained {
  background-color: #ffa800;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button.contained:hover {
  background-color: var(--dark-orange);
}

/* Empty Basket */
.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  mask-image: url(https://fans.aztecmedia.dev/wp-content/uploads/2024/09/fansolid.png) !important;
  background: #003563 !important;
}

:root :where(.wp-block-separator.is-style-dots):before {
  display: none;
}

.has-text-align-center {
  font-size: 2rem;
}

.wp-block-heading {
  font-size: 1.5rem !important;
}

.wc-block-cart__empty-cart__title {
  margin-bottom: 8rem;
}

ul.wc-block-grid__products {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

ul.wc-block-grid__products li.wc-block-grid__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
  width: calc(25% - 2rem);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  min-width: 15rem;
}

ul.wc-block-grid__products li.wc-block-grid__product:hover {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
}

.wc-block-grid__product-link {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 2rem;
  text-align: center;
}

.wc-block-grid__product-title {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #00467e;
}

.wc-block-grid__product-price {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.wp-block-button.wc-block-grid__product-add-to-cart .wp-block-button__link {
  background-color: #ffa800;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-button.wc-block-grid__product-add-to-cart
  .wp-block-button__link:hover {
  background-color: #e69500;
}

.wc-block-grid__product-title {
  font-size: 1.5rem !important;
}

.woocommerce-Price-amount {
  font-weight: 400;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  font-size: 1rem;
  font-weight: 400;
}

.woocommerce ul.products li.product {
  min-width: 19rem;
  margin-right: 0 !important;
}

.added_to_cart.wc-forward {
  background-color: var(--teal);
  color: white;
  border: none;
  padding: 0.5rem 2rem !important;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--body-font);
  font-weight: 500;
}

@media only screen and (max-width: 1550px) {
  .fb-header a.logo {
    margin-right: 0;
  }
}

@media only screen and (max-width: 540px) {
  .fb-header a.logo svg {
    display: none;
  }
  .is-large.wc-block-cart .wc-block-cart-items td {
    border-top: 0 !important;
  }
	.woocommerce-tabs .panel {
		padding: 1rem !important;
	}
}

@media only screen and (max-width: 460px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    padding: 0.5rem 0.5rem !important;
  }
  .wc-block-checkout__sidebar {
    padding-left: 0 !important;
  }
}


.wcpay-payment-request-wrapper {
	max-width: 17rem !important;
}


@media only screen and (max-width: 768px) {
	.woocommerce div.product div.summary {
		text-align: center;
	}
	.woocommerce div.product p.price {
		text-align: center;
	}
	.woocommerce div.product form.cart div.quantity {
		float: none;
		margin: 0 0 1rem 0;
	}
	.woocommerce div.product form.cart .button {
		float: none;
	}
	.quantity input[type='number'] {
		margin-right: 0 !important;
	}
	.wcpay-payment-request-wrapper {
		text-align: center;
		margin: auto;
	}
	.product_title {
		text-align: center;
	}
}

ul.products.columns-4::before {
	display: none !important;
}

.continue-shopping-button {
  background-color: var(--teal);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}

.continue-shopping-button:hover {
  background-color: var(--dark-teal);
}

	.woocommerce-error {
		margin-top: 6rem;
		z-index: 999;
		border-radius: 0.5rem;
	}

.wc-block-components-notice-banner.is-error {
font-size: 1.3rem;
}

@media only screen and (min-width: 768px) {
	.woocommerce div.product form.cart .variations {
		width: 50%;
	}
	}

.woocommerce-variation-price {
	margin-bottom: 2rem;
}

.single_variation_wrap bdi {
	font-size: 1.5rem !important;
}

.woocommerce ul.products li.product .button {
	margin-bottom: 2rem;
}

.product_type_variable {
    margin-bottom: 2rem;
    background-color: white;
    border: 2px solid lightgray;
    border-radius: 25px;
    padding: 1rem 2rem;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
    object-fit: contain;
}

.woocommerce div.product form.cart .variations {
	margin-bottom: 2rem;
}

.woocommerce div.product form.cart .variations select {
	    height: 3rem !important;
    border-radius: 10px;
    padding: 0rem 1rem;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	vertical-align: unset !important;
	padding-right: 1rem !important;
}

.download-images-button {
	 background-color: #00467e;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  margin: 2rem 0;
  
}