
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: rgb(7, 7, 7);
  font-family: 'Quicksand', sans-serif; /* or 'Poppins', sans-serif */
  font-weight: 400;
}
.landing-section,
.about-section,
.care-section,
.community-section,
.contact-section,
.products-section {
  min-height: 920px; /* Allow content to dictate height */
  padding-top: 5rem; /* Make sure all sections have the same top padding */
  padding-bottom: 5rem; /* Adjust bottom padding as needed */
  margin-bottom: 0px;
  margin-top: 2rem;
  overflow-x: hidden;
}

.landing-section,
.about-section,
.care-section,
.community-section,
.contact-section,
.products-section {
  color: #fff;
}


@media (max-width: 767px) {
  .landing-section,
  .about-section,
  .services-section {
    padding-top: 2rem;
  }
}

/* header */
.rye-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

header {
  /* min-height: 20vh; */
  margin-bottom: 0;
  /* background-color: rgb(7, 7, 7); */
  position: relative;
}

.header-link {
  display: inline-block;
  vertical-align: middle;
}
.header-link a:hover {
  color: #29ab87;
  transition: all 0.5s ease;
}
.header-link a:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.rye-regular.active {
    color: #29ab87 !important; /* Using !important as a last resort to override Bootstrap */
    transition: all 0.5s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.navbar {
  display: flex;
  justify-content: space-between;
}

.navbar-nav {
  align-self: flex-start;
}
/* For the home page logo/brand when active */
.navbar-brand.rye-regular.active {
    color: #29ab87 !important;
}


.navbar-toggler {
  border-color: #fff;
  border: 1px solid;
}

/* banner */
.page-banner {
  /* background-color: #fff; */
  /* z-index: -1; */
  /* background-color: rgb(7, 7, 7); */
}

/* .hotd-logo{
  width: 300px !important;
  height: 150px;
  display: inline;
} */

/* .logo{
  width: 300px !important;
  height: 150px;
  display: inline;
} */

.page-banner.bg-image {

  /* filter: brightness(60%); */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: bottom right;
}

@media screen and (max-width: 800px) {
  .page-banner.bg-image {
    background-image: url("../images/test2.png");
    height: 449px;
  }
  
}
@media screen and (min-width: 801px) and (max-width: 1024px) {
  .page-banner.bg-image {
    height: 70vh;
    background-position: center right;
    background-image: url("../images/test2.png");
  }
}
@media screen and (min-width: 1024px) {
  .page-banner.bg-image {
    height: 80vh;
    background-position: center right;
    background-image: url("../images/test2.png");
  }
  
}
.banner-text {
  background-color: transparent;
  padding: 1rem;
}
.banner-text h3 {
  /* color: #fff; */
  text-align: center;
  background-color: transparent;
}

.banner-text h1 {
  color: #fff;
  text-align: center;
  background-color: transparent;
}


/* landing section */

.image-wrapper {
  position: relative;
  display: inline-block;
}

.category-image {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.category-image.faded {
  opacity: 0.4;
}

.soldout-overlay {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

.landing-section{
  padding-top: 5rem;
}



.landing-section,
.landing-section h1,
.landing-section h3 {

  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}



.content-product-list-container {
  width: 100%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1 / 1; /* Keeps square shape */
  object-fit: cover;
  background-size: cover;
  background-position: center;
  border: 2px solid rgb(7, 7, 7);
  border-radius: 25px;
  margin: 10px auto;
}

/* Responsive image sizing */
.landing-section .category-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1 / 1; /* Keeps square shape */
  object-fit: cover;
  background-size: cover;
  background-position: center;
  border: 2px solid rgb(7, 7, 7);
  border-radius: 25px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  margin: 0 auto;
}

/* Hover effect stays the same */
.category-image:hover {
  cursor: pointer;
  transform: scale(1.05);
  animation: breathe 1s ease-in-out infinite;
}

/* Morph label tweaks for tighter layout */
.morph-label {
  margin-top: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #ffffff;
  transition: color 0.5s ease;
}

.morph-label:hover {
  cursor: pointer;
  color: #29ab87;
}

/* Responsive padding for grid items */
.landing-section .category-column {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.debug-grid {
  outline: 2px dashed red;
}

.featured-morph-text {
  margin-top: 5rem;
  text-align: center;
}

.featured-morph-image {
  width: 600px;
  height: 600px;
  border-radius: 25px;
  display: block;      /* This helps with centering */
  margin: 0 auto;      /* This centers the image */
}

/* Add padding and centering for the text container */
.featured-morph-description {
  padding: 2rem;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .featured-morph-image {
    max-width: 300px;
    height: 300px;
  }
}

@media screen and (min-width: 701px) {
  .featured-morph-image {
    max-width: 500px;
    height: 500px;
  }
}

/* Keyframes for the breathing effect */
@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Scale up slightly */
  }
  100% {
    transform: scale(1); /* Scale back down to original */
  }
}




/* Center the third review only on tablet screens */
@media (min-width: 768px) and (max-width: 1024px) {
  .center-on-tablet {
    margin: 0 auto;
    max-width: 480px; /* Optional: You can adjust the max-width to limit the size */
  }
}



.icon {
  width: 100px; /* Set your desired width */
  height: 100x;
  animation: glowimage 1.5s linear infinite alternate;
}

@keyframes glowshadow {
  to {
    box-shadow: 0px 0px 35px 15px #fff;
  }
}

@keyframes glowImage {
  to {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
}

.heading-text{
  font-family: 'Cinzel Decorative', serif;;
  color: rgb(184, 187, 191);
}

.description-text{
  font-family: 'IM Fell English', serif;
  color: rgb(184, 187, 191);
}

.heading-text.category-heading{
  /* font-family: 'Cinzel Decorative', serif;;
  color: rgb(184, 187, 191); */
  margin: 4rem 0  4rem 0;
}

.description-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.col {
  padding: 0 1rem;
}

.spacer-left,
.spacer-right {
  flex: 1;
}

.center-content {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .spacer-left,
  .spacer-right {
    display: none;
  }

  .center-content {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

/* somae catalog section starting spacing */
.catalog-section{
  padding-top: 2.5rem;
}

.about{
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.about.active {
  color: #29ab87;
}
.about:hover{
  color: #29ab87;
}

.hidden {
  display: none !important;}

.about-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1rem;
}

.about-section .col {
  flex: 1 1 500px;
  max-width: 600px;
  padding: 1rem;
  text-align: center;
}

.profile-picture
{
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 25px;
  padding: 0.5rem;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.lair-picture {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  height: auto;
  border-radius: 25px;
  padding: 0.5rem;
  object-fit: cover;
}

.about-section p {
  text-align: center;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.lair-pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.lair-pair .col {
  flex: 1 1 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .lair-pair .col {
    flex: 1 1 45%;
  }
}

/* community section */

@media (max-width: 768px) {
  .community-section .row {
    display: flex;
    flex-direction: column;
  }

  .community-section .mobile-first {
    order: -1;
  }

  .community-section .mobile-last {
    order: 1;
  }
}
.community-section{
  display: block;  
}
.community-section .draguana-picture{
 border-radius: 25px;
 width: 488px;
 height: 561px;
}

.community-section .col {
  flex: 1;
  max-width: 500px; /* Slightly reduced from 600px */
  /* margin: 0 2rem; Increased from 0 auto to add horizontal spacing */
  padding: 0 1rem;
  text-align: center;
}

.community-section .row {
  padding: 3rem;
  display: flex;
  justify-content: space-between; /* Changed from center to space-between */
  gap: 3rem; /* Adds consistent spacing between columns */
}


/* New class for the owner info container */
.owner-info {
  text-align: left; /* Override the center alignment for this section */
  width: 100%;
}

.owner-info {
  min-width: 500px;
}

/* Mobile screens */
@media screen and (max-width: 1200px) {
  .owner-info {
      min-width: 300px;  /* Smaller min-width for mobile */
      width: 90%;        /* Take up most of the screen width */
      margin: 0 auto;    /* Center the container */
  }

  .community-section .draguana-picture{
    border-radius: 25px;
    width: 388px;
    height: 461px;
    margin: 0 auto;
   }

   .community-section .col {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

}

.owner-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  margin-bottom: .5rem;
}

.feedback-section {
  display: block; /* Change from flex to block */
}

.feedback-section h5 {
  display: inline; /* Make the heading inline */
  margin-right: 0.5rem; /* Add some space between "Feedback:" and the text */
}

.feedback-section p {
  display: inline; /* Make paragraph inline */
  margin: 0; /* Remove default paragraph margins */
}

/* care & housing */


.housing-line-break{
  color: rgb(184, 187, 191);
  size: 5px;
}
.care-section {
  /* padding: 3rem 1rem; */
}

.care-section .row-odd {
  display: flex;
  flex-wrap: wrap;
  justify-content:left;
  align-items:center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.care-section .row-even {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* .care-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
} */

.care-section .col {
  flex: 1 1 500px;
  max-width: 600px;
  padding: 1rem;
  text-align: center;
}

.care-section p {
  text-align: center;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.care-picture,
.care-iframe {
  width: 100%;
  height: auto;
  min-height: 344px;
  border-radius: 25px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  padding: 0.5rem;
  border-radius: 25px;
}

/* Optional fixed height for video only on wider screens */
@media screen and (min-width: 768px) {
  .care-iframe {
    height: 444px;
  }
}
/* footer stuff */
footer {
  color: #fff; /* Footer text color */
  width: 100%; /* Full width */
  padding: 20px; /* Padding for footer content */
  text-align: center; /* Center footer content */
  max-height: 600px; /* Adjust as needed */
  bottom: 0;
  position: relative;
  margin-top: 3rem;
  font-family: "Poppins", serif;

}


.footer-col {
  padding: 0 15px;
  width: 33%;
  padding: 15px;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: #fff;
}

.footer-col a .about {
  text-decoration: none;
  transition: all 0.25s ease;

}

.footer-col a .about:hover {
  color: #29ab87;
  transition: all 0.25s ease;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: 10px 10px 10px 0;
  transition: transform 0.3s ease;
}

.footer-col .social-links a .morph,
.footer-col .social-links a .snap,
.footer-col .social-links a .instagram,
.footer-col .social-links a .facebook {
  transition: transform 0.3s ease;
}

.footer-col .social-links a:hover .snap i {
  color: yellow;
}

.footer-col .social-links a:hover .instagram i {
  color: #833ab4;
}

.footer-col .social-links a:hover .facebook i {
  color: #316ff6;
}
.footer-col .social-links a .morph {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-col .social-links a:hover .morph {
  filter: brightness(60%);
}
.footer-col .social-links a:hover .morph,
.footer-col .social-links a:hover .snap,
.footer-col .social-links a:hover .instagram,
.footer-col .social-links a:hover .facebook {
  transform: scale(1.25);
}


.copyright {
  text-align: center;
  margin: 0 auto;
}

.footer-col hr {
  width: 20%;
  margin: auto;
}


/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
    margin: 0 auto;
  }
}

.product-container{
  min-height: 100vh; /* Allow content to dictate height */
}

/* woo commerce stuff */
.product-title{
  margin: 5px;
  text-align: center;
  color: #fff;
}

.add-button{
  background-color: #22816d;
  color: #fff;
  /* top bottom spacing */
  margin: .5rem 0 .5rem 0;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  width: 100px; /* added width property */
  text-decoration: none;
  display: block;
  margin: 0 auto;
  margin-top: 4px;

  transition: transform 0.3s ease;
}



.approve-button{
  background-color: #2974ab;
  color: #fff;
  /* top bottom spacing */
  margin: .5rem 0 .5rem 0;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  width: 100px; /* added width property */
  text-decoration: none;
  display: block;
  margin: 0 auto;
  margin-top: 4px;

  transition: transform 0.3s ease;
}

.approve-button:hover, .add-button:hover {
  transform: scale(1.1); /* 👈 Use transform instead of scale for better compatibility */
  cursor: pointer;
  color: #fff;
}


.woocommerce div.product form.cart button.single_add_to_cart_button{
  background-color: #22816d;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  background-position: center;
  transition: transform 0.3s ease; /* 👈 Add this here */
  float: none;
}
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  transform: scale(1.1); /* 👈 Use transform instead of scale for better compatibility */
  cursor: pointer;
  color: #fff;
}

.inquire-button{
  background-color: #22816d;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  background-position: center;
  transition: transform 0.3s ease; /* 👈 Add this here */
}

.all-iguanas-button{
  background-color: #3f90c6;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  background-position: center;
  transition: transform 0.3s ease; /* 👈 Add this here */
}

.inquire-button:hover , .all-iguanas-button:hover {
  transform: scale(1.1); /* 👈 Use transform instead of scale for better compatibility */
  cursor: pointer;
  color: #fff;
}
#wpforms-110-field_9 {
  text-align: center !important;
}

.wpforms-submit {
  background-color: black !important;
  color: white !important;
  border: none;
  border-radius: 3px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.wpforms-submit:hover {
  background-color: #29ab87 !important;
  color: white!important;
  cursor: pointer;
}



/* woo commerce add/edit admin buttons catalog view */
.admin-buttons{
  display: flex;
  justify-content: center;
}

.admin-buttons .li{
  margin: 2px;
}
/* category list */
.products.columns-4{
  all: unset;
}
.category-list {
  list-style: none;
  margin-top: 3rem;
  padding: 0;
  align-items: center;
  text-align: center;

}

.category-list li {
  display: inline-block;
  margin-right: 10px;
  /* background-color: #29ab87; */
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.category-list li:hover {
color: #29ab87;
}

.category-list li.active {
  color: #29ab87;
}

.empty-category{
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 5rem;
}

.more-button{
  background-color: #22816d;
  color: #fff;
  /* top bottom spacing */
  margin: .5rem 0 .5rem 0;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  width: 100px; /* added width property */
  text-decoration: none;
  display: block;
  margin: 0 auto;
}

.more-button-edit{
  background-color: #ffc107;
  color: #fff;
  /* top bottom spacing */
  margin: .5rem 0 .5rem 0;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  width: 100px; /* added width property */
  text-decoration: none;
  display: block;
  margin: 0 auto;
}

.more-button-remove{
  background-color: #dc3545;
  color: #fff;
  /* top bottom spacing */
  margin: .5rem 0 .5rem 0;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  width: 100px; /* added width property */
  text-decoration: none;
  display: block;
  margin: 0 auto;
}



.more-button-edit, 
.more-button-remove {
  margin: 5px;
}


.more-button:hover, 
.more-button-edit:hover {
  opacity: 0.8;
  transition: all 0.5s ease;
  cursor: pointer;
  color: #fff;
}
.more-button-remove:hover{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  animation: breathe 1s ease-in-out infinite;
}

.more-margin{
  margin-top: 1rem;
  margin-bottom: 1rem;
}



/* add edit product form */
.iguana-form {
  background-color: #1a1a1a;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  display: block;
  margin: 5rem auto;
}

.iguana-form .form-row {
  margin-bottom: 1.5rem;
}

.iguana-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.iguana-form input[type="text"],
.iguana-form input[type="number"],
.iguana-form input[type="file"],
.iguana-form select,
.iguana-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: black;
  font-size: 1rem;
}

.iguana-form textarea {
  min-height: 100px;
}

.iguana-form .form-submit-btn {
  background-color: black;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.iguana-form .form-submit-btn:hover {
  background-color: #22816d;
  transition: all 0.5s ease;
}

.required {
  color: #ff4a4a;
}


.catalog-container{
  display: block;
  margin:  10px 10px 10px 10px;
}

/* single product view */

/* removrs mag glass */
.woocommerce-product-gallery__trigger{
  display: none;
}

/* single products default class & its parent div */
.woocommerce-product-gallery__image--placeholder{
  border: none !important;
}
.wp-post-image{
  border-radius: 25px;
}
.single-product-centered {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3rem;
  padding: 2rem;


}

.more-products{
 gap: 1rem;
 margin-bottom: 5rem;
}

.more-products img{
border-radius: 25px;
 }

.more-products-name {
  color: #29ab87;
  transition: all 0.5s ease;
}

.more-products-name:hover {
  transform: scale(1.1); /* use transform instead of scale directly */
  cursor: pointer;
  font-weight: 600;
}

.more-products-name a {
  color: #29ab87;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block; /* ensures the <a> scales nicely if hovered */
}

.more-products-name a:hover {
  color: #29ab87;
  text-decoration: none;
}

/* approval link */
.generate-link-button {
  background-color: #2974ab;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.generate-link-button:hover {
  background-color: #3f90c6;
}
#product-container ul.products {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 1200px;
}

#product-container ul.products li.product {
  flex: 0 0 23%;
  max-width: 23%;
  margin: 1% !important;
  box-sizing: border-box;
  text-align: center;
}

#product-container ul.products li.product a img {
  border-radius: 25px;
}
/* Tablet: 3 per row */
@media screen and (max-width: 1023px) {
  #product-container ul.products li.product {
    flex: 0 0 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }
}

@media screen and (max-width: 767px) {
  #product-container ul.products li.product {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

.cart-container{
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img
{
  border-radius: 12px;
}
/* hides quantity option on the cart page */
.wc-block-components-quantity-selector {
  display: none !important;
}
/* hides couponm button */
.wc-block-components-totals-coupon .wc-block-components-panel__button{
  display: none !important;
}

.inquire-button,
.custom-inquire-button.wc-block-cart__submit-button {
  background-color: #22816d;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  background-position: center;
  transition: transform 0.3s ease;
  transform: scale(1);
}

.inquire-button:hover,
.custom-inquire-button.wc-block-cart__submit-button:hover {
  transform: scale(1.1);
  cursor: pointer;
  color: #fff;
}

.wc-block-cart-item__product{
  text-decoration: none !important;
}

.wc-block-cart-item__prices{
  display: none;
}

.wc-block-components-product-name{
  text-decoration: none;
  transition: all 0.5s ease;
}

.wc-block-components-product-name:hover{
  color: #29ab87;
  
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper{
  color: #29ab87;
}


/* makes cart div less choppy when different radio buttons are selected because of label size */

.payment-fee-line {
  min-width: 320px; /* Make the note text the same width as the widest radio button label */
}

@media (min-width: 768px) {
  .payment-fee-line {
    min-width: 400px;
  }
}

.wc-block-cart .wc-block-cart__submit-container--sticky:before{
  all: unset
}

.wc-block-cart__submit-container.wc-block-cart__submit-container--sticky{
  all: unset
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button {

  background-color: #22816d;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  transform: scale(1);
}


.wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover {
  scale: 1.1;
  cursor: pointer;
  color: #fff;
}
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.disabled {
  pointer-events: none;
  opacity: .5;
}

.disclaimer-label{
  text-decoration: underline #fff;
  transition: all 0.3s ease;
}

.disclaimer-required{
  text-decoration: underline #f00;
}

.disclaimer-description{
  color: #d4af37;
  transition: all 0.7s ease;
}

.cart-disclaimer{
  transition: all 0.3s ease;
}
.cart-disclaimer:hover{
  opacity: .5;
}

.wc-block-components-spinner{
  all:unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hide-spinner{
  display: none;
}

