@charset "UTF-8";
/*
Theme Name:   Storefront Tonic Child
Theme URI:    https://tonic.be
Description:  A custom child theme for Tonic boutique based on Storefront
Author:       Tonic
Author URI:   https://tonic.be
Template:     storefront
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  storefront-tonic-child
*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F1ED;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #7E6C6C;
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type=button]:focus, input[type=reset]:focus, input[type=submit]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus {
  outline: none !important;
}

a:focus, input:focus, textarea:focus, button:focus {
  outline: none !important;
}

.container,
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding: 0 2rem;
}

.site-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mb-lg {
  margin-bottom: 3rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mt-lg {
  margin-top: 3rem;
}

.mt-xl {
  margin-top: 4rem;
}

.p-xs {
  padding: 0.5rem;
}

.p-sm {
  padding: 1rem;
}

.p-md {
  padding: 2rem;
}

.p-lg {
  padding: 3rem;
}

.p-xl {
  padding: 4rem;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-secondary {
  background-color: #F5F1ED;
}

.bg-primary {
  background-color: #000000;
}

.section-padding {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.section-title {
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #848484;
  margin-bottom: 3rem;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.alignwide {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

.top-bar {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 0.4rem 0;
}
.top-bar .top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .top-bar .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.top-bar .top-bar-message {
  font-size: 0.875rem;
  flex: 1;
  text-align: left;
}
.top-bar .top-bar-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.top-bar .top-bar-social a {
  color: #FFFFFF;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.top-bar .top-bar-social a:hover {
  opacity: 0.8;
}

.site-header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #F0EDE9;
  position: relative;
  z-index: 1020;
  transition: padding 0.3s ease;
  padding-top: 0;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
}
.site-header.sticky .header-main {
  padding: 0rem 0;
}
.site-header.sticky .header-main .header-left, .site-header.sticky .header-main .header-right {
  height: 60px;
}
.site-header.sticky .main-navigation ul.menu > li > a,
.site-header.sticky .main-navigation ul.nav-menu > li > a {
  padding: 1em !important;
}
.site-header.sticky .custom-logo-link img,
.site-header.sticky .custom-logo-link svg {
  max-height: 50px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.6rem;
  gap: 2rem;
  position: relative;
  transition: padding 0.3s ease;
}
@media (max-width: 992px) {
  .header-main {
    padding: 1rem 0;
  }
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 0;
  height: 80px;
}
@media (max-width: 768px) {
  .header-left,
  .header-right {
    gap: 0.8rem;
    height: 50px;
  }
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.icon-link {
  display: flex;
  color: #333333;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
}
.icon-link:hover {
  color: #7E6C6C;
}
.icon-link i {
  display: block;
}

.lang-switch {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.08em;
  color: #333333;
  transition: all 0.3s ease;
}
.lang-switch:hover {
  color: #7E6C6C;
}
.lang-switch .lang-arrow {
  margin-left: 0.25rem;
  font-size: 0.65rem;
}

.account-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.08em;
  color: #333333;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.account-link:hover {
  color: #7E6C6C;
}
@media (max-width: 768px) {
  .account-link {
    display: none;
  }
}

.cart-icon {
  position: relative;
}
.cart-icon .cart-count {
  /*position: absolute;
  top: -8px;
  right: -8px;*/
  margin-left: 5px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wishlist-link .wishlist-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #7E6C6C;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-branding {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  margin-bottom: 0;
}
.site-branding .site-title {
  margin: 0;
  line-height: 1;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 992px) {
  .site-branding .site-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .site-branding .site-title {
    font-size: 1.2rem;
  }
}
.site-branding .site-title a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
}
.site-branding .site-title a:hover {
  color: #7E6C6C;
}
.site-branding .custom-logo-link {
  display: inline-block;
  line-height: 0;
}
.site-branding .custom-logo-link img,
.site-branding .custom-logo-link svg {
  max-height: 100px;
  width: auto;
  height: auto;
  transition: max-height 0.3s ease;
}
@media (max-width: 992px) {
  .site-branding .custom-logo-link img,
  .site-branding .custom-logo-link svg {
    max-height: 60px;
  }
}
@media (max-width: 768px) {
  .site-branding .custom-logo-link img,
  .site-branding .custom-logo-link svg {
    max-height: 50px;
  }
}
.site-branding .custom-logo-link svg {
  fill: currentColor;
  transition: all 0.3s ease;
}
.site-branding .custom-logo-link svg:hover {
  fill: #7E6C6C;
}

.main-navigation {
  position: relative;
  padding: 0 0;
  width: 100% !important;
  float: none !important;
  margin-right: 0 !important;
  clear: none !important;
}
.main-navigation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: #F0EDE9;
}
@media (max-width: 992px) {
  .main-navigation {
    display: none;
  }
  .main-navigation.active {
    display: block;
  }
}
.main-navigation .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: -1em !important;
  width: auto !important;
}
@media (max-width: 992px) {
  .main-navigation .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
}
.main-navigation .nav-menu li {
  position: relative;
}
.main-navigation .nav-menu a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.12em;
  color: #333333;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.main-navigation .nav-menu a:hover {
  color: #7E6C6C;
}
.main-navigation .nav-menu a .nav-arrow {
  margin-left: 0.3rem;
  font-size: 0.65rem;
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

body.modal-open {
  overflow: hidden;
}

.search-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  align-items: center;
  justify-content: center;
}
.search-modal.active {
  display: flex !important;
}
.search-modal .search-modal-content {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 4px;
  max-width: 600px;
  width: 90%;
  position: relative;
}
.search-modal .search-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333333;
  transition: all 0.3s ease;
}
.search-modal .search-modal-close:hover {
  color: #000000;
}
.search-modal .search-modal-body {
  margin-top: 1rem;
}
.search-modal .search-modal-body .search-field {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E5E5E5;
  border-radius: 4px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.search-modal .search-modal-body .search-field:focus {
  outline: none;
  border-color: #7E6C6C;
  box-shadow: 0 0 0 3px rgba(126, 108, 108, 0.1);
}
.search-modal .search-modal-body button[type=submit] {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.search-modal .search-modal-body button[type=submit]:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.search-modal .search-modal-body button[type=submit] {
  width: 100%;
  margin-top: 1rem;
}

.site-footer {
  background-color: #F5F1ED;
  color: #333333;
  margin-top: 0;
  padding: 0;
}
.site-footer a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer a:hover {
  color: #7E6C6C;
}

.footer-services {
  background-color: #F5F1ED;
  padding: 4rem 0;
  border-bottom: 1px solid #F0EDE9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 0;
}
.service-icon i {
  display: block;
}

.service-text {
  font-size: 16px;
  line-height: 1.6;
  color: #848484;
  max-width: 280px;
  margin: 0;
}

.footer-main {
  background-color: #F5F1ED;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo-column .custom-logo-link {
  display: inline-block;
}
.footer-logo-column .custom-logo-link img {
  max-height: 80px;
  width: auto;
}
.footer-logo-column .footer-brand {
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
  margin: 0;
  letter-spacing: 0.05em;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-menu li {
  margin: 0;
}
.footer-menu a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.08em;
  color: #333333;
}
.footer-menu a:hover {
  color: #7E6C6C;
}

.footer-newsletter-column {
  gap: 0.5rem;
}
@media (max-width: 992px) {
  .footer-newsletter-column {
    align-items: center;
  }
}

.newsletter-label {
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
  color: #333333;
}

.newsletter-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  color: #333333;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .footer-social-icons {
    justify-content: center;
  }
}
.footer-social-icons a {
  color: #333333;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.footer-social-icons a:hover {
  color: #7E6C6C;
}
.footer-social-icons a i {
  display: block;
}

.footer-bottom {
  background-color: #F5F1ED;
  padding: 2rem 0;
  border-top: 1px solid #F0EDE9;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-legal-menu {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .footer-legal-menu {
    justify-content: center;
  }
}
.footer-legal-menu a {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.08em;
  color: #333333;
  white-space: nowrap;
}
.footer-legal-menu a:hover {
  color: #7E6C6C;
}

.footer-payment-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .footer-payment-icons {
    justify-content: center;
  }
}
.footer-payment-icons i {
  font-size: 1.5rem;
  color: #333333;
  opacity: 0.6;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  border-radius: 0;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.btn-outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-white {
  background-color: #FFFFFF;
  color: #000000;
}
.btn-white:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.btn.has-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button {
  border-radius: 0;
}
.woocommerce .checkout-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.woocommerce .checkout-button:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.woocommerce .checkout-button {
  width: 100%;
  padding: 1rem;
}

#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1030;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#scroll-to-top:hover {
  background-color: #7E6C6C;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg, .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
  width: 24px;
}

.tonic-shop {
  padding: 2rem 0 4rem;
}

.tonic-shop-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E5E5E5;
}
.tonic-shop-header__title {
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}
.tonic-shop-header .term-description,
.tonic-shop-header .woocommerce-products-header__description {
  color: #848484;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}
.tonic-shop-header__breadcrumb .woocommerce-breadcrumb {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #848484;
  margin: 0;
}
.tonic-shop-header__breadcrumb .woocommerce-breadcrumb a {
  color: #848484;
  text-decoration: none;
}
.tonic-shop-header__breadcrumb .woocommerce-breadcrumb a:hover {
  color: #333333;
}
.tonic-shop-header__breadcrumb .woocommerce-breadcrumb .breadcrumb-separator,
.tonic-shop-header__breadcrumb .woocommerce-breadcrumb .separator {
  margin: 0 0.4rem;
}
@media (max-width: 992px) {
  .tonic-shop-header {
    grid-template-columns: 1fr;
  }
  .tonic-shop-header__breadcrumb {
    margin-top: 0.5rem;
  }
}

.woocommerce-products-header {
  display: none;
}

.tonic-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.tonic-shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .tonic-shop-toolbar__right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

.tonic-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.3rem;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333333;
  transition: all 0.15s ease;
}
.tonic-filter-toggle svg {
  display: block;
  width: 14px;
  height: 14px;
  color: currentColor;
  flex-shrink: 0;
}
.tonic-filter-toggle:hover, .tonic-filter-toggle.active {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.tonic-filter-toggle:hover svg, .tonic-filter-toggle.active svg {
  color: #FFFFFF;
}

.tonic-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tonic-filter-chip a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: #FFFFFF;
  border: none;
  color: #7E6C6C;
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.15s ease;
}
.tonic-filter-chip a i {
  font-size: 0.85rem;
  color: #7E6C6C;
  font-weight: 300;
}
.tonic-filter-chip a:hover {
  background: #7E6C6C;
  color: #FFFFFF;
}
.tonic-filter-chip a:hover i {
  color: #FFFFFF;
}

.tonic-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.tonic-sort__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333333;
  pointer-events: none;
  padding: 0.5rem 0;
}
.tonic-sort__arrow {
  font-size: 0.8em;
}
.tonic-sort__select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  font-size: inherit;
}
.tonic-sort__select:focus {
  outline: none;
}

.tonic-shop-sort .woocommerce-ordering {
  margin: 0;
}

.tonic-grid-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.tonic-grid-toggle__sep {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: #E5E5E5;
}
.tonic-grid-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #B9B9B9;
  transition: color 0.2s ease;
}
.tonic-grid-toggle__btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.tonic-grid-toggle__btn:hover, .tonic-grid-toggle__btn.active {
  color: #BAA199;
}

.related.products > ul.products,
.related.products ul.products,
.upsells.products > ul.products,
.upsells.products ul.products,
.cross-sells > ul.products,
.cross-sells ul.products, .tonic-shop-main ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.related.products ul.products::before,
.upsells.products ul.products::before,
.cross-sells > ul.products::before,
.cross-sells ul.products::before, .tonic-shop-main ul.products::before,
.related.products ul.products::after,
.upsells.products ul.products::after,
.cross-sells > ul.products::after,
.cross-sells ul.products::after, .tonic-shop-main ul.products::after {
  display: none;
}
@media (max-width: 1200px) {
  .related.products > ul.products,
  .related.products ul.products,
  .upsells.products > ul.products,
  .upsells.products ul.products,
  .cross-sells > ul.products,
  .cross-sells ul.products, .tonic-shop-main ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .related.products > ul.products,
  .related.products ul.products,
  .upsells.products > ul.products,
  .upsells.products ul.products,
  .cross-sells > ul.products,
  .cross-sells ul.products, .tonic-shop-main ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .related.products > ul.products,
  .related.products ul.products,
  .upsells.products > ul.products,
  .upsells.products ul.products,
  .cross-sells > ul.products,
  .cross-sells ul.products, .tonic-shop-main ul.products {
    grid-template-columns: 1fr;
  }
}

.tonic-shop-main {
  position: relative;
  min-height: 200px;
  transition: opacity 0.25s ease;
}
.tonic-shop-main.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.tonic-shop-main[data-grid=lg] ul.products {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .tonic-shop-main ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
  .tonic-shop-main[data-grid=lg] ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .tonic-shop-main ul.products, .tonic-shop-main[data-grid=lg] ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tonic-shop-main ul.products, .tonic-shop-main[data-grid=lg] ul.products {
    grid-template-columns: 1fr;
  }
}

.tonic-product-card {
  position: relative;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  float: none !important;
  background: transparent;
  text-align: left;
}
.tonic-product-card__link {
  display: block;
  color: #333333;
  text-decoration: none;
}
.tonic-product-card__link:hover, .tonic-product-card__link:focus {
  color: #333333;
}
.tonic-product-card__media {
  position: relative;
  aspect-ratio: 5/7;
  overflow: hidden;
  background: #F0EDE8;
}
.tonic-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.tonic-product-card__img--placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.tonic-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.tonic-product-card__link:hover .tonic-product-card__img--primary {
  opacity: 0;
}
.tonic-product-card__link:hover .tonic-product-card__img--hover {
  opacity: 1;
}
.tonic-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.35rem 0.7rem;
  background: #FFFFFF;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #333333;
  z-index: 2;
}
.tonic-product-card__badge--sale {
  background: #FFFFFF;
  color: #DC143C;
}
.tonic-product-card__badge--new {
  background: #000000;
  color: #FFFFFF;
}
.tonic-product-card__badge--out {
  background: rgba(255, 255, 255, 0.95);
  color: #333333;
}
.tonic-product-card.outofstock .tonic-product-card__img {
  opacity: 0.55;
}
.tonic-product-card__info {
  padding: 0.9rem 0 1.6rem;
  text-align: left;
}
.tonic-product-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  text-transform: none;
  text-align: left;
  color: #000;
  letter-spacing: 0;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tonic-product-card__title-text {
  flex: 1;
}
.tonic-product-card__arrow {
  display: block;
  width: 14px;
  height: auto;
  color: #000;
  margin-top: 8px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.tonic-product-card__link:hover .tonic-product-card__arrow {
  transform: translateX(3px);
}
.tonic-product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0;
  text-align: left;
  line-height: normal;
}
.tonic-product-card__price del {
  color: #848484;
  opacity: 0.7;
  font-weight: 300;
  order: 2;
}
.tonic-product-card__price ins {
  background: transparent;
  color: #DC143C;
  text-decoration: none;
  font-weight: 600;
  order: 1;
}
.tonic-product-card__price .woocommerce-Price-amount {
  font-weight: inherit;
}

.woocommerce ul.products li.product.tonic-product-card,
.woocommerce-page ul.products li.product.tonic-product-card {
  text-align: left;
}
.woocommerce ul.products li.product.tonic-product-card .tonic-product-card__title,
.woocommerce ul.products li.product.tonic-product-card .tonic-product-card__price,
.woocommerce ul.products li.product.tonic-product-card .price,
.woocommerce-page ul.products li.product.tonic-product-card .tonic-product-card__title,
.woocommerce-page ul.products li.product.tonic-product-card .tonic-product-card__price,
.woocommerce-page ul.products li.product.tonic-product-card .price {
  text-align: left;
}

.related.products,
.upsells.products,
.cross-sells {
  margin-top: 4rem;
  clear: both;
}
.related.products > h2,
.upsells.products > h2,
.cross-sells > h2 {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2rem;
}
.tonic-shop-main .onsale,
.tonic-product-card .onsale {
  display: none !important;
}

.shop-toolbar {
  display: none;
}

.widget-area {
  background: transparent;
  border: none;
  padding: 0;
}

.shop-content-wrapper {
  display: block;
  position: relative;
  margin-top: 0;
}

.tonic-filters {
  position: fixed;
  top: 0;
  left: -380px;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1050;
  overflow-y: auto;
  transition: left 0.3s ease;
  padding: 2rem 2rem 4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tonic-filters::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.tonic-filters::-webkit-scrollbar-track {
  background-color: #F5F1ED;
}
.tonic-filters::-webkit-scrollbar-thumb {
  background-color: #7E6C6C;
  border-radius: 4px;
}
.tonic-filters::-webkit-scrollbar-thumb:hover {
  background-color: #000000;
}
.tonic-filters.filters-open {
  left: 0;
}
.tonic-filters__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.tonic-filters__close {
  background: transparent;
  border: 1px solid #333333;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  color: #333333;
  transition: all 0.15s ease;
}
.tonic-filters__close:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.tonic-filters__form {
  display: flex;
  flex-direction: column;
}

body.filters-panel-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.tonic-filter-group {
  border-bottom: 1px solid #E5E5E5;
  padding: 1rem 0;
}
.tonic-filter-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.tonic-filter-group__header h3 {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  color: #333333;
}
.tonic-filter-group__toggle {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: #333333;
  cursor: pointer;
  padding: 0 0 0 1rem;
  min-width: 22px;
}
.tonic-filter-group__toggle span {
  display: inline-block;
  transition: transform 0.2s ease;
}
.tonic-filter-group__body {
  padding-top: 1rem;
  overflow: hidden;
}
.tonic-filter-group.is-collapsed .tonic-filter-group__body {
  display: none;
}
.tonic-filter-group.is-collapsed .tonic-filter-group__toggle span {
  transform: rotate(45deg);
}

.tonic-filter-pills {
  display: inline-flex;
  background: #F0EDE8;
  padding: 3px;
  border-radius: 2px;
  gap: 2px;
}

.tonic-filter-pill {
  margin: 0;
  cursor: pointer;
}
.tonic-filter-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tonic-filter-pill span {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  color: #7E6C6C;
  transition: all 0.15s ease;
}
.tonic-filter-pill input:checked + span {
  background: #BAA199;
  color: #FFFFFF;
}

.tonic-filter-models {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
}

.tonic-filter-model {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.2rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}
.tonic-filter-model input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tonic-filter-model__label {
  font-size: 0.7rem;
  color: #333333;
  letter-spacing: 0.02em;
}
.tonic-filter-model img, .tonic-filter-model__icon-placeholder {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.tonic-filter-model__icon-placeholder {
  background: #F0EDE8;
  display: block;
}
.tonic-filter-model:hover, .tonic-filter-model.active {
  border-color: #7E6C6C;
}
.tonic-filter-model:hover img,
.tonic-filter-model:hover .tonic-filter-model__icon-placeholder, .tonic-filter-model.active img,
.tonic-filter-model.active .tonic-filter-model__icon-placeholder {
  opacity: 1;
}

.tonic-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 220px;
  overflow-y: auto;
}
.tonic-filter-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.tonic-filter-list::-webkit-scrollbar-track {
  background-color: #F5F1ED;
}
.tonic-filter-list::-webkit-scrollbar-thumb {
  background-color: #7E6C6C;
  border-radius: 4px;
}
.tonic-filter-list::-webkit-scrollbar-thumb:hover {
  background-color: #000000;
}

.tonic-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.tonic-filter-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tonic-filter-checkbox__box {
  width: 16px;
  height: 16px;
  border: 1px solid #E5E5E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.tonic-filter-checkbox__box::after {
  content: "";
  width: 9px;
  height: 9px;
  background: #7E6C6C;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.tonic-filter-checkbox__label {
  color: #333333;
}
input[type=checkbox]:checked ~ .tonic-filter-checkbox__box {
  border-color: #7E6C6C;
}
input[type=checkbox]:checked ~ .tonic-filter-checkbox__box::after {
  opacity: 1;
}
.tonic-filter-checkbox:hover .tonic-filter-checkbox__label {
  color: #7E6C6C;
}

.tonic-color-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem 0.25rem;
  min-width: 0;
}

.tonic-color-swatch {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  position: relative;
  min-width: 0;
}
.tonic-color-swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tonic-color-swatch__dot {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
}
.tonic-color-swatch__dot.is-light {
  border-color: #E5E5E5;
}
.tonic-color-swatch__label {
  font-size: 0.58rem;
  color: #848484;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.tonic-color-swatch:hover .tonic-color-swatch__dot {
  transform: scale(1.08);
}
input:checked ~ .tonic-color-swatch__dot {
  box-shadow: 0 0 0 2px #FFFFFF inset, 0 0 0 2px #7E6C6C;
}
input:checked + .tonic-color-swatch__label, input:checked ~ .tonic-color-swatch__label {
  color: #333333;
  font-weight: 500;
}

.tonic-size-range {
  padding: 0.8rem 12px 0;
}
.tonic-size-range__track {
  position: relative;
  height: 1px;
  background: #E5E5E5;
  margin: 18px 0 10px;
  background-image: linear-gradient(to right, #E5E5E5 1px, transparent 1px);
  background-size: 14.2857142857% 100%;
  background-repeat: repeat-x;
}
.tonic-size-range__selected {
  position: absolute;
  top: 50%;
  height: 2px;
  background: #BAA199;
  transform: translateY(-50%);
}
.tonic-size-range__handle {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border: 1.5px solid #BAA199;
  border-radius: 50%;
  cursor: grab;
  transform: translate(-50%, -50%);
  padding: 0;
  transition: none;
  z-index: 2;
  box-shadow: none;
}
.tonic-size-range__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 6px;
  background: #BAA199;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.tonic-size-range__handle:active {
  cursor: grabbing;
}
.tonic-size-range__marks {
  display: flex;
  justify-content: space-between;
  margin: 0.4rem -6px 0;
  font-size: 0.7rem;
  color: #848484;
}
.tonic-size-range__mark {
  text-align: center;
  width: 14px;
}
.tonic-size-range__mark.is-active {
  color: #333333;
  font-weight: 500;
}

.tonic-modal {
  display: none;
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.tonic-modal-content {
  background-color: #FFFFFF;
  margin: 5% auto;
  padding: 3rem;
  border: 1px solid #E5E5E5;
  width: 90%;
  max-width: 700px;
  border-radius: 0;
  position: relative;
}
@media (max-width: 768px) {
  .tonic-modal-content {
    width: 95%;
    padding: 2rem;
  }
}

.tonic-modal-close {
  color: #848484;
  float: right;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tonic-modal-close:hover, .tonic-modal-close:focus {
  color: #000000;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.size-guide-table th,
.size-guide-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #E5E5E5;
}
.size-guide-table th {
  background-color: #F5F1ED;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.size-guide-table tr:nth-child(even) {
  background-color: #FAFAFA;
}

.size-guide-link {
  margin: 1rem 0;
  text-align: center;
}
.size-guide-link a {
  font-size: 0.9rem;
  text-decoration: underline;
  color: #7E6C6C;
}
.size-guide-link a:hover {
  color: #000000;
}

.size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7E6C6C;
  font-weight: 500;
  transition: all 0.3s ease;
}
.size-guide-trigger:hover {
  color: #000000;
}

.gform_wrapper#gform_wrapper_1 {
  margin: 0 auto;
  background-color: white;
  padding: 60px 120px;
}
.gform_wrapper#gform_wrapper_1.gform-theme {
  --gf-color-primary: #000000;
  --gf-color-primary-rgb: 0, 0, 0;
  --gf-ctrl-border-color: #E5E5E5;
  --gf-radius: 4px;
}
.gform_wrapper#gform_wrapper_1 .gform_heading {
  margin-bottom: 4rem;
}
.gform_wrapper#gform_wrapper_1 .gform_heading .gform_title {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  color: #000000;
}
@media (max-width: 992px) {
  .gform_wrapper#gform_wrapper_1 .gform_heading .gform_title {
    font-size: 2rem;
  }
}
.gform_wrapper#gform_wrapper_1 .gform_heading .gform_description {
  display: none;
}
.gform_wrapper#gform_wrapper_1 .gform_body {
  margin-bottom: 2rem;
}
.gform_wrapper#gform_wrapper_1 .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gform_wrapper#gform_wrapper_1 .gfield {
  margin: 0;
  padding: 0;
}
.gform_wrapper#gform_wrapper_1 .gfield .gfield_label,
.gform_wrapper#gform_wrapper_1 .gfield legend.gfield_label {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.5rem;
  display: block;
}
.gform_wrapper#gform_wrapper_1 .gfield .gfield_label .gfield_required,
.gform_wrapper#gform_wrapper_1 .gfield legend.gfield_label .gfield_required {
  color: #DC143C;
  margin-left: 0.25rem;
}
.gform_wrapper#gform_wrapper_1 .gfield .gfield_label .gfield_required .gfield_required_text,
.gform_wrapper#gform_wrapper_1 .gfield legend.gfield_label .gfield_required .gfield_required_text {
  display: none;
}
.gform_wrapper#gform_wrapper_1 .gfield .gfield_description {
  font-size: 0.875rem;
  color: #848484;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.gform_wrapper#gform_wrapper_1 .gfield .gform-field-label--type-sub {
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 0.25rem;
  font-weight: 400;
}
.gform_wrapper#gform_wrapper_1 .ginput_container_name .gform-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .gform_wrapper#gform_wrapper_1 .ginput_container_name .gform-grid-row {
    grid-template-columns: 1fr;
  }
}
.gform_wrapper#gform_wrapper_1 .ginput_container_email .gform-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .gform_wrapper#gform_wrapper_1 .ginput_container_email .gform-grid-row {
    grid-template-columns: 1fr;
  }
}
.gform_wrapper#gform_wrapper_1 input[type=text],
.gform_wrapper#gform_wrapper_1 input[type=email],
.gform_wrapper#gform_wrapper_1 input[type=tel],
.gform_wrapper#gform_wrapper_1 input[type=url],
.gform_wrapper#gform_wrapper_1 input[type=number],
.gform_wrapper#gform_wrapper_1 input[type=password],
.gform_wrapper#gform_wrapper_1 select,
.gform_wrapper#gform_wrapper_1 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  font-size: 16px;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.gform_wrapper#gform_wrapper_1 input[type=text]:focus,
.gform_wrapper#gform_wrapper_1 input[type=email]:focus,
.gform_wrapper#gform_wrapper_1 input[type=tel]:focus,
.gform_wrapper#gform_wrapper_1 input[type=url]:focus,
.gform_wrapper#gform_wrapper_1 input[type=number]:focus,
.gform_wrapper#gform_wrapper_1 input[type=password]:focus,
.gform_wrapper#gform_wrapper_1 select:focus,
.gform_wrapper#gform_wrapper_1 textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: none;
}
.gform_wrapper#gform_wrapper_1 input[type=text]::placeholder,
.gform_wrapper#gform_wrapper_1 input[type=email]::placeholder,
.gform_wrapper#gform_wrapper_1 input[type=tel]::placeholder,
.gform_wrapper#gform_wrapper_1 input[type=url]::placeholder,
.gform_wrapper#gform_wrapper_1 input[type=number]::placeholder,
.gform_wrapper#gform_wrapper_1 input[type=password]::placeholder,
.gform_wrapper#gform_wrapper_1 select::placeholder,
.gform_wrapper#gform_wrapper_1 textarea::placeholder {
  color: #848484;
}
.gform_wrapper#gform_wrapper_1 textarea {
  min-height: 180px;
  resize: vertical;
}
.gform_wrapper#gform_wrapper_1 .charleft {
  font-size: 0.875rem;
  color: #848484;
  margin-top: 0.5rem;
}
.gform_wrapper#gform_wrapper_1 .gfield_radio {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.gform_wrapper#gform_wrapper_1 .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin: 0;
}
.gform_wrapper#gform_wrapper_1 .gfield_radio .gchoice input[type=radio] {
  width: auto;
  margin: 0 0.75rem 0 0;
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #E5E5E5;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.gform_wrapper#gform_wrapper_1 .gfield_radio .gchoice input[type=radio]:checked {
  border-color: #204ce5;
  background-color: #204ce5;
}
.gform_wrapper#gform_wrapper_1 .gfield_radio .gchoice input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.gform_wrapper#gform_wrapper_1 .gfield_radio .gchoice input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 76, 229, 0.1);
}
.gform_wrapper#gform_wrapper_1 .gfield_radio .gchoice label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  color: #333333;
  font-size: 16px;
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin: 0;
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox .gchoice input[type=checkbox] {
  width: auto;
  margin: 0 0.75rem 0 0;
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #E5E5E5;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox .gchoice input[type=checkbox]:checked {
  border-color: #000000;
  background-color: #000000;
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox .gchoice input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox .gchoice input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.gform_wrapper#gform_wrapper_1 .gfield_checkbox .gchoice label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  color: #333333;
}
.gform_wrapper#gform_wrapper_1 .gform_footer {
  margin-top: 3rem;
  padding-top: 0;
}
.gform_wrapper#gform_wrapper_1 .gform_footer input[type=submit],
.gform_wrapper#gform_wrapper_1 .gform_footer .gform_button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.gform_wrapper#gform_wrapper_1 .gform_footer input[type=submit]:hover,
.gform_wrapper#gform_wrapper_1 .gform_footer .gform_button:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.gform_wrapper#gform_wrapper_1 .gform_footer input[type=submit],
.gform_wrapper#gform_wrapper_1 .gform_footer .gform_button {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background-color: #204ce5;
  color: #FFFFFF;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}
.gform_wrapper#gform_wrapper_1 .gform_footer input[type=submit]:hover,
.gform_wrapper#gform_wrapper_1 .gform_footer .gform_button:hover {
  background-color: rgb(21.9277108434, 59.0361445783, 188.0722891566);
}
.gform_wrapper#gform_wrapper_1 .gfield_error .gfield_label {
  color: #DC143C;
}
.gform_wrapper#gform_wrapper_1 .gfield_error input,
.gform_wrapper#gform_wrapper_1 .gfield_error textarea,
.gform_wrapper#gform_wrapper_1 .gfield_error select {
  border-color: #DC143C;
}
.gform_wrapper#gform_wrapper_1 .validation_error,
.gform_wrapper#gform_wrapper_1 .gform_validation_errors {
  background-color: #f8d0d8;
  border: 1px solid #DC143C;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  color: #DC143C;
}
.gform_wrapper#gform_wrapper_1 .validation_message,
.gform_wrapper#gform_wrapper_1 .gfield_description.validation_message {
  color: #DC143C;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.gform_wrapper#gform_wrapper_1 .gform_confirmation_message {
  background-color: rgb(235.65, 232.95, 232.95);
  border: 1px solid #7E6C6C;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}
.gform_wrapper#gform_wrapper_1 .gform_validation_container,
.gform_wrapper#gform_wrapper_1 .gform_wrapper .gfield_visibility_hidden {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}

.page-template-default.page-id-contact .page-content,
.page.contact-page .page-content {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
}

figure.wp-block-gallery {
  margin: 0 !important;
  gap: 20px;
}
figure.wp-block-gallery img {
  border-radius: 0;
}

.hentry,
.content-area, .widget-area {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.woocommerce-info, .woocommerce-noreviews, p.no-comments {
  background-color: #7E6C6C;
}

.hero-section {
  position: relative;
  height: 75vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 10vh;
}
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 600px;
  padding: 2rem;
}

.hero-title {
  color: #FFF;
  text-align: center;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 200 !important;
  line-height: normal;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 3rem;
  background-color: #FFFFFF;
  color: #000000;
}
.hero-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tonic-collection-intro {
  padding: 80px 0 0px;
}
.tonic-collection-intro .container {
  max-width: 1400px;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .tonic-collection-intro .container {
    padding: 0 2rem;
  }
}
.tonic-collection-intro__grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  row-gap: 0;
}
@media (max-width: 992px) {
  .tonic-collection-intro__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0;
    row-gap: 30px;
  }
}
.tonic-collection-intro__header {
  grid-column: 1/3;
  grid-row: 1;
  padding-right: 20px;
  max-width: 560px;
  margin-bottom: 6rem;
}
@media (max-width: 992px) {
  .tonic-collection-intro__header {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
    max-width: none;
  }
}
.tonic-collection-intro__title {
  font-family: "Urbanist", sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  color: #000;
  margin: 0.75rem 0 0.5rem;
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .tonic-collection-intro__title {
    font-size: 32px;
  }
}
.tonic-collection-intro__desc {
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #848484;
  margin: 0 0 2rem;
}

.tonic-eyebrow {
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7E6C6C;
}

.tonic-btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent !important;
  background-color: #fff !important;
  color: #000;
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s ease;
}
.tonic-btn-outline:hover {
  background: #000 !important;
  color: #FFFFFF;
}

.tonic-collection-card {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.tonic-collection-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/6;
  background-color: #F0EDE8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tonic-collection-card--small {
  grid-column: 2;
  grid-row: 2/4;
}
@media (max-width: 992px) {
  .tonic-collection-card--small {
    grid-column: 1;
    grid-row: auto;
  }
}
.tonic-collection-card--large {
  grid-column: 3;
  grid-row: 1/3;
}
@media (max-width: 992px) {
  .tonic-collection-card--large {
    grid-column: 1;
    grid-row: auto;
  }
}
.tonic-collection-card__label {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: inline-block;
  padding: 1rem 1.8rem;
  background: #FFFFFF;
  color: #000;
  font-family: "Urbanist", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}
.tonic-collection-card:hover .tonic-collection-card__media {
  filter: brightness(0.95);
}

.tonic-editorial {
  padding: 3rem 0 4rem;
}
.tonic-editorial .container {
  max-width: 1280px;
  padding: 0 2rem;
}
.tonic-editorial__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 992px) {
  .tonic-editorial__grid {
    grid-template-columns: 1fr;
  }
}
.tonic-editorial__item {
  margin: 0;
}
.tonic-editorial__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.tonic-editorial__media {
  aspect-ratio: 3/4;
  background-color: #F0EDE8;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
  transition: filter 0.3s ease;
}
.tonic-editorial__item:first-child .tonic-editorial__media, .tonic-editorial__item--wide .tonic-editorial__media {
  aspect-ratio: 3/2;
}
.tonic-editorial__link:hover .tonic-editorial__media {
  filter: brightness(0.97);
}
.tonic-editorial__title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.5rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}
.tonic-editorial__title span {
  flex: 0 0 auto;
}
.tonic-editorial__title i {
  font-size: 0.85rem;
  color: #000;
  transition: transform 0.25s ease;
}
.tonic-editorial__link:hover .tonic-editorial__title i {
  transform: translateX(4px);
}
.tonic-editorial__desc {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #848484;
  line-height: 1.55;
  margin: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.category-card:hover .category-image img {
  transition: all 0.6s ease;
}
.category-card:hover .category-image img:hover {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 3rem;
  color: #FFFFFF;
}

.category-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.category-count {
  font-size: 0.9rem;
  opacity: 0.9;
}

.color-palette-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.color-palette-item {
  text-align: center;
  transition: all 0.3s ease;
}
.color-palette-item:hover {
  transform: translateY(-5px);
}

.color-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  border: 3px solid #E5E5E5;
  transition: all 0.3s ease;
}
.color-palette-item:hover .color-circle {
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-name {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
}

.collections-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

.collection-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.collection-item:hover img {
  transform: scale(1.05);
}

.collection-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #FFFFFF;
}
.collection-content h3 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.btn-white {
  background-color: #FFFFFF;
  color: #000000;
}
.btn-white:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  padding: 2rem;
  transition: all 0.3s ease;
}
.store-card:hover {
  transition: all 0.3s ease;
}
.store-card:hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.store-card:hover .store-image img {
  transform: scale(1.05);
}

.store-info {
  padding: 2rem;
}
.store-info h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.page .content-area {
  background-color: #F5F1ED;
}

.page-header {
  padding: 0 0 3rem;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 4rem;
  background-color: #F5F1ED;
}
.page-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .page-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-header__content {
  max-width: 640px;
}
.page-header__breadcrumb .tonic-breadcrumb {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #848484;
}
.page-header__breadcrumb .tonic-breadcrumb a {
  color: #848484;
  transition: all 0.15s ease;
}
.page-header__breadcrumb .tonic-breadcrumb a:hover {
  color: #000000;
}
.page-header__breadcrumb .tonic-breadcrumb .separator {
  margin: 0 0.5rem;
}
.page-header__breadcrumb .tonic-breadcrumb .current {
  color: #333333;
}
@media (max-width: 992px) {
  .page-header__breadcrumb {
    margin-top: 0.5rem;
  }
}
.page-header .page-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 1.08px;
}
@media (max-width: 992px) {
  .page-header .page-title {
    font-size: 2rem;
  }
}
.page-header .page-description {
  color: #848484;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
}
.page-header .page-description p {
  margin: 0;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0;
}
.page-content p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
.page-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 3rem 0 2rem;
  line-height: 1.2;
}
.page-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  line-height: 1.2;
}
.page-content ul, .page-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.page-content ul li, .page-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.page-content .wp-block-image {
  margin-bottom: 2rem;
}
.page-content .wp-block-image figcaption {
  font-size: 0.875rem;
  color: #848484;
  text-align: center;
  margin-top: 0.5rem;
}
.page-content .wp-block-gallery {
  margin-bottom: 3rem;
}
.page-content .wp-block-quote {
  border-left: 4px solid #7E6C6C;
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #848484;
}
.page-content .wp-block-button {
  margin-bottom: 2rem;
}
.page-content .wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.page-content .wp-block-button .wp-block-button__link:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}

.page-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E5E5;
  font-weight: 600;
}
.page-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}
.page-links a:hover {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.page-links .post-page-numbers.current {
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border: 1px solid #000000;
}

.page-template-default.page-id-inspiration .inspiration-gallery,
.page.inspiration .inspiration-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .page-template-default.page-id-inspiration .inspiration-gallery,
  .page.inspiration .inspiration-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .page-template-default.page-id-inspiration .inspiration-gallery,
  .page.inspiration .inspiration-gallery {
    grid-template-columns: 1fr;
  }
}
.page-template-default.page-id-inspiration .inspiration-gallery .gallery-item,
.page.inspiration .inspiration-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.page-template-default.page-id-inspiration .inspiration-gallery .gallery-item img,
.page.inspiration .inspiration-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.page-template-default.page-id-inspiration .inspiration-gallery .gallery-item:hover img,
.page.inspiration .inspiration-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.single-product-wrapper {
  padding: 2rem 0;
}

.product-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .product-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-images-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.product-images-section .woocommerce-product-gallery {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}
.product-images-section .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 80px;
}
@media (max-width: 992px) {
  .product-images-section .woocommerce-product-gallery .flex-control-thumbs {
    flex-direction: row;
    max-width: 100%;
    overflow-x: auto;
  }
}
.product-images-section .woocommerce-product-gallery .flex-control-thumbs li {
  display: block;
  cursor: pointer;
  transition: all 0.15s ease;
  margin: 0 0 10px !important;
  width: 82px !important;
  float: none !important;
}
.product-images-section .woocommerce-product-gallery .flex-control-thumbs li:hover img, .product-images-section .woocommerce-product-gallery .flex-control-thumbs li.flex-active img {
  opacity: 1;
  border-color: #000000 !important;
}
.product-images-section .woocommerce-product-gallery .flex-control-thumbs li img {
  border: 1px solid transparent;
  display: block;
  width: 80px;
  max-width: none !important;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: 0;
}
.product-images-section .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  border-color: #000000 !important;
}
.product-images-section .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  flex: 1;
}
.product-images-section .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  margin: 0;
}
.product-images-section .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-images-section .woo-variation-product-gallery {
  float: none !important;
  display: block !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}
.product-images-section .woo-variation-gallery-wrapper {
  min-height: unset !important;
  min-width: unset !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-container {
  display: flex !important;
  flex-direction: row-reverse !important;
  gap: 20px;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-slider-wrapper {
  flex: 1 !important;
  width: auto !important;
  min-width: 0;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-slider .slick-list {
  height: auto !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-slider img:not(.zoomImg) {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-trigger {
  display: none;
}
.product-images-section .woo-variation-gallery-wrapper .wvg-slider-prev-arrow,
.product-images-section .woo-variation-gallery-wrapper .wvg-slider-next-arrow {
  display: none !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-wrapper {
  width: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
  flex-shrink: 0;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider {
  margin: 0 !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-list {
  height: auto !important;
  padding: 0 !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-track {
  display: flex !important;
  flex-direction: column !important;
  transform: none !important;
  width: 82px !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-slide {
  width: 82px !important;
  margin: 0 !important;
  float: none !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-slide > div {
  margin: 0 0 10px !important;
  overflow: visible !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-slide {
  display: block !important;
}
.product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-cloned {
  display: none !important;
}
.product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image {
  opacity: 1 !important;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 80px !important;
}
.product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image > div {
  width: 80px !important;
}
.product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image img {
  border: 1px solid transparent !important;
  display: block !important;
  width: 80px !important;
  height: auto !important;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}
.product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image.current-thumbnail img, .product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image:hover img {
  border-color: #000000 !important;
}
.product-images-section .woo-variation-gallery-wrapper .slick-current .wvg-gallery-thumbnail-image img,
.product-images-section .woo-variation-gallery-wrapper .slick-current.wvg-gallery-thumbnail-image img {
  border-color: #000000 !important;
}
.product-images-section .woo-variation-gallery-wrapper .wvg-thumbnail-prev-arrow,
.product-images-section .woo-variation-gallery-wrapper .wvg-thumbnail-next-arrow {
  display: none !important;
}
@media (max-width: 992px) {
  .product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-container {
    flex-direction: column !important;
    gap: 10px;
  }
  .product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-wrapper {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-track {
    flex-direction: row !important;
    width: auto !important;
  }
  .product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-slide {
    width: auto !important;
  }
  .product-images-section .woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider .slick-slide > div {
    margin: 0 10px 0 0 !important;
  }
  .product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image {
    width: 70px !important;
  }
  .product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image > div {
    width: 70px !important;
  }
  .product-images-section .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image img {
    width: 70px !important;
  }
}
.product-images-section .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.product-summary-section .summary {
  width: 100% !important;
}
.product-summary-section .summary .product_title {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 0;
  line-height: 1.2;
}
.product-summary-section .summary .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 15px !important;
}
.product-summary-section .summary .price del {
  opacity: 0.5;
  font-size: 1.2rem;
}
.product-summary-section .summary .woocommerce-product-details__short-description {
  color: #848484;
  line-height: 1.7;
  margin-bottom: 0;
}

.variations_form {
  margin-bottom: 2rem;
}
.variations_form .variations {
  margin-bottom: 2rem;
}
.variations_form .variations tr {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.variations_form .variations .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  font-size: 0.875rem;
  min-width: 80px;
  text-transform: capitalize;
  letter-spacing: normal;
  padding-top: 10px !important;
  margin-bottom: 0;
  color: #333333;
  text-transform: uppercase;
}
.variations_form .variations .label label {
  margin: 0;
}
.variations_form .variations .label .size-guide-link {
  margin-top: 5px;
  position: absolute;
  right: 0;
  font-size: 0.875rem;
}
.variations_form .variations .label .size-guide-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #848484;
  font-weight: 700;
  transition: all 0.15s ease;
  text-decoration: none;
  text-transform: none;
}
.variations_form .variations .label .size-guide-link a i {
  font-size: 0.875rem;
}
.variations_form .variations .label .size-guide-link a:hover {
  color: #000000;
}
.variations_form .variations .value {
  margin-bottom: 0 !important;
}
.variations_form .variations .value select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  font-size: 16px;
}
.variations_form .variations .value select:focus {
  outline: none;
  border-color: #000000;
}
.variations_form .reset_variations {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #848484;
  text-decoration: underline;
}
.variations_form .reset_variations:hover {
  color: #000000;
}

.color-variable-item,
.color-variable-item .variable-item-contents,
.color-variable-item .variable-item-contents .variable-item-span-color {
  border-radius: 50% !important;
}

.size-selector,
.button-variable-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2rem;
}
.size-selector .variable-item.button-variable-item,
.button-variable-items-wrapper .variable-item.button-variable-item {
  width: 40px !important;
  height: 40px !important;
  padding: 0.5rem 1rem !important;
  box-shadow: none !important;
  border: 1px solid #E5E5E5 !important;
  border-radius: 0 !important;
  background: #FFFFFF !important;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease !important;
  font-weight: 500;
}
.size-selector .variable-item.button-variable-item:hover,
.button-variable-items-wrapper .variable-item.button-variable-item:hover {
  border-color: #000000 !important;
}
.size-selector .variable-item.button-variable-item.selected, .size-selector .variable-item.button-variable-item.active,
.button-variable-items-wrapper .variable-item.button-variable-item.selected,
.button-variable-items-wrapper .variable-item.button-variable-item.active {
  border-color: #000000 !important;
}
.size-selector .variable-item.button-variable-item.disabled,
.button-variable-items-wrapper .variable-item.button-variable-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.color-selector,
.tonic-color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.color-selector .color-option,
.tonic-color-selector .color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #E5E5E5;
  cursor: pflex;
  align-items: center;
  margin-bottom: 1rem;
}
.color-selector .color-option .screen-reader-text,
.tonic-color-selector .color-option .screen-reader-text {
  position: absolute;
  left: -9999px;
}
.color-selector .color-option input.qty,
.tonic-color-selector .color-option input.qty {
  width: 80px;
  padding: 0.75rem;
  border: 1px solid #E5E5E5;
  text-align: center;
  font-size: 16px;
}
.color-selector .color-option input.qty:focus,
.tonic-color-selector .color-option input.qty:focus {
  outline: none;
  border-color: #000000;
}
.color-selector .single_add_to_cart_button,
.tonic-color-selector .single_add_to_cart_button {
  width: 100%;
  padding: 0.6rem 2rem !important;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #585e6a;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.color-selector .single_add_to_cart_button:hover,
.tonic-color-selector .single_add_to_cart_button:hover {
  background-color: #000000;
}
.color-selector .single_add_to_cart_button:disabled,
.tonic-color-selector .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-additional-info .add-to-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: all 0.15s ease;
}
.product-additional-info .add-to-wishlist i {
  font-size: 1.1rem;
}
.product-additional-info .add-to-wishlist:hover {
  color: #DC143C;
}

.woocommerce-variation-add-to-cart {
  margin-bottom: 2rem;
  display: flex;
}
.woocommerce-variation-add-to-cart .quantity {
  display: inline-block;
  margin-right: 1rem;
}
.woocommerce-variation-add-to-cart .quantity .qty {
  width: 60px;
  padding: 0.75rem;
  border: 1px solid #E5E5E5;
  text-align: center;
}
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
  width: 100%;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.product-meta {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.product-meta-item {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #848484;
}
.product-meta-item:last-child {
  margin-bottom: 0;
}
.product-meta-item .meta-label {
  font-weight: 600;
  color: #333333;
}
.product-meta-item a {
  color: #848484;
  text-decoration: none;
  transition: all 0.15s ease;
}
.product-meta-item a:hover {
  color: #000000;
}

.product-accordions {
  border-top: 1px solid #E5E5E5;
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid #E5E5E5;
}

.accordion-header {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal;
  padding: 1rem 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s ease;
  color: #333333;
}
.accordion-header::after {
  content: "";
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.15s ease;
  color: #333333;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-header.active::after {
  content: "";
  background-color: #333333;
  color: #FFFFFF;
}
.accordion-header:hover {
  color: #000000;
}
.accordion-header:hover::after {
  border-color: #000000;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content > div {
  padding: 25px 0;
}
.accordion-content h2 {
  display: none;
}
.accordion-content.active {
  max-height: 2000px;
  padding-bottom: 2rem;
}
.accordion-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #848484;
  margin-bottom: 1rem;
}
.accordion-content p:last-child {
  margin-bottom: 0;
}

.size-guide-link {
  margin-bottom: 1rem;
}
.size-guide-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #333333;
  text-decoration: underline;
}
.size-guide-link a i {
  font-size: 1rem;
}
.size-guide-link a:hover {
  color: #000000;
}

.product-features {
  margin: 2rem 0;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #E5E5E5;
}
.product-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-features .features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #848484;
  margin-bottom: 0.5rem;
}
.product-features .features-list li i {
  color: #7E6C6C;
  font-size: 0.875rem;
}
.product-features .features-list li:last-child {
  margin-bottom: 0;
}

.product-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.product-share .share-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-share .share-buttons {
  display: flex;
  gap: 0.5rem;
}
.product-share .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F5F1ED;
  color: #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.product-share .share-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.back-to-products {
  display: none;
}

.related.products,
.upsells.products {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #E5E5E5;
}
.related.products h2,
.upsells.products h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.stores-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.store-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .store-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.store-item--reverse .store-item__gallery {
  order: 2;
}
@media (max-width: 992px) {
  .store-item--reverse .store-item__gallery {
    order: 1;
  }
}
.store-item--reverse .store-item__info {
  order: 1;
}
@media (max-width: 992px) {
  .store-item--reverse .store-item__info {
    order: 2;
  }
}

.store-item__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-gallery__main {
  width: 100%;
  overflow: hidden;
}
.store-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.store-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.store-gallery__thumb {
  width: 100%;
  overflow: hidden;
}
.store-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.store-item__info {
  padding: 2rem 0;
}
@media (max-width: 992px) {
  .store-item__info {
    padding: 0;
  }
}

.store-name {
  font-size: 2rem;
  font-weight: 400 !important;
  margin: 0 0 3rem !important;
  color: #000000;
}
@media (max-width: 992px) {
  .store-name {
    font-size: 1.75rem;
  }
}

.store-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.store-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-left: 60px;
}
.store-detail svg {
  font-size: 1.25rem;
  color: #848484;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 24px;
}
.store-detail__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.store-detail__label {
  font-weight: 400;
  color: #333333;
  text-transform: capitalize;
}
.store-detail__value {
  font-size: 16px;
  color: #848484;
  line-height: 1.6;
}
.store-detail a {
  color: #986150;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}
.store-detail a:hover {
  color: #7E6C6C;
  text-decoration: underline;
}

.woocommerce-page .content-area,
.page-template-default .content-area {
  background-color: #F5F1ED;
}

.woocommerce-product-gallery {
  margin-bottom: 2rem;
}
.woocommerce-product-gallery__image {
  border: 1px solid #E5E5E5;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  padding: 2rem;
  transition: all 0.3s ease;
  padding: 2rem;
  margin-bottom: 2rem;
}
.woocommerce-checkout h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E5E5E5;
  border-radius: 0;
}
.woocommerce-checkout #place_order {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #FFFFFF;
}
.woocommerce-checkout #place_order:hover {
  background-color: #7E6C6C;
  color: #FFFFFF;
}
.woocommerce-checkout #place_order {
  width: 100%;
  padding: 1rem;
}

.woocommerce span.onsale {
  background-color: #000000;
  color: #FFFFFF;
}

.home.blog .site-header, .home.page:not(.page-template-template-homepage) .site-header, .home.post-type-archive-product .site-header {
  margin-bottom: 0 !important;
}

.woocommerce-breadcrumb {
  font-size: 0.875rem;
  color: #848484;
  padding: 1rem 0;
}
.woocommerce-breadcrumb a {
  color: #848484;
  transition: all 0.3s ease;
}
.woocommerce-breadcrumb a:hover {
  color: #000000;
}

.storefront-breadcrumb,
.storefront-breadcrumb .col-full {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce nav.woocommerce-pagination,
nav.woocommerce-pagination,
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 4rem 0 2rem;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul.page-numbers,
nav.woocommerce-pagination ul,
nav.woocommerce-pagination ul.page-numbers,
.woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}
.woocommerce nav.woocommerce-pagination li,
nav.woocommerce-pagination li,
.woocommerce-pagination li {
  display: inline-block;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination a.page-numbers,
.woocommerce nav.woocommerce-pagination span.page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
nav.woocommerce-pagination a.page-numbers,
nav.woocommerce-pagination span.page-numbers,
nav.woocommerce-pagination ul li a,
nav.woocommerce-pagination ul li span,
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.7rem;
  border: 1px solid #E5E5E5;
  background: #FFFFFF;
  color: #333333;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1;
  transition: all 0.15s ease;
  letter-spacing: 0.02em;
  outline: none;
  border-radius: 0;
}
.woocommerce nav.woocommerce-pagination span.current,
.woocommerce nav.woocommerce-pagination a.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
nav.woocommerce-pagination span.current,
nav.woocommerce-pagination a.current,
nav.woocommerce-pagination ul li span.current,
.woocommerce-pagination span.current,
.woocommerce-pagination a.current,
.woocommerce-pagination ul li span.current {
  background: #FFFFFF;
  color: #333333;
  border-color: #000000;
  font-weight: 500;
}
.woocommerce nav.woocommerce-pagination a.page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover,
nav.woocommerce-pagination a.page-numbers:hover,
nav.woocommerce-pagination ul li a:hover,
.woocommerce-pagination a.page-numbers:hover,
.woocommerce-pagination ul li a:hover {
  border-color: #000000;
}
.woocommerce nav.woocommerce-pagination a:focus,
.woocommerce nav.woocommerce-pagination a:focus-visible,
.woocommerce nav.woocommerce-pagination span:focus,
.woocommerce nav.woocommerce-pagination span:focus-visible,
nav.woocommerce-pagination a:focus,
nav.woocommerce-pagination a:focus-visible,
nav.woocommerce-pagination span:focus,
nav.woocommerce-pagination span:focus-visible,
.woocommerce-pagination a:focus,
.woocommerce-pagination a:focus-visible,
.woocommerce-pagination span:focus,
.woocommerce-pagination span:focus-visible {
  outline: none;
  box-shadow: none;
}
.woocommerce nav.woocommerce-pagination .dots,
nav.woocommerce-pagination .dots,
.woocommerce-pagination .dots {
  border-color: transparent;
  background: transparent;
}

.tonic-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1070;
  display: none;
  font-weight: 600;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
