:root {
  --primary: #ff7300;
}

::selection {
  background-color: var(--primary);
  color: #fff;
}

*,
*::before,
*::after {
  transition: 200ms ease-in-out;
}

.custom-container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
@media (min-width: 1600px) {
  .custom-container {
    width: 80%;
  }
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.28); /* base translucency */
  backdrop-filter: blur(25px) saturate(180%); /* stronger, like iOS */
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 4px 20px rgba(0, 0, 0, 0.1); /* soft ambient shadow */
  /* iOS highlight sheen */
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.05) 50%);
}

@keyframes phone-pop {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.phone-pop {
  transform: translateY(120%);
  opacity: 0;
  animation: phone-pop 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.font-caveat {
  font-family: "Caveat", sans-serif;
}

.h2-after-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 38.5%;
  height: 2px;
  background-color: var(--primary);
}
@media screen and (max-width: 768px) {
  .h2-after-custom::after {
    width: 100%;
  }
}

#google-reviews .h2-after-custom::after {
  width: 31%;
}

.woocommerce .woocommerce-ordering {
  margin: 0;
}

.custom-products-wrapper .woocommerce-ordering {
  display: none;
}
.custom-products-wrapper .woocommerce-result-count {
  display: none;
}
.custom-products-wrapper .add_to_cart_button {
  display: none !important;
}

.wp-singular.product-template-default main.site-content {
  margin-top: 125px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
@media (min-width: 1600px) {
  .wp-singular.product-template-default main.site-content {
    width: 80%;
  }
}
.wp-singular.product-template-default main.site-content .summary.entry-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wp-singular.product-template-default main.site-content .summary.entry-summary h1.product_title {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
}
.wp-singular.product-template-default main.site-content .summary.entry-summary .woocommerce-Price-amount {
  color: var(--primary);
}
.wp-singular.product-template-default main.site-content .summary.entry-summary .attributes-table li {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
