/* Basic resets */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* Modern reset for consistent styling */
}
textarea {
  resize: vertical; /* Allow vertical resizing */
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth; /* Smoother scroll experience */
}
*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
img, video {
  display: block;
  max-width: 100%; /* Ensures responsive scaling */
  height: auto;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; /* Full width by default */
}
td, th {
  padding: 0;
  text-align: left;
  font-weight: normal; /* Reset table heading weight */
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed; /* Clearer UI feedback */
}
button::-moz-focus-inner {
  border: 0;
}

/*---------- pages styles ----------*/
@-webkit-keyframes pulse {
  0% {
    /*-webkit-transform: scale(.9);
            transform: scale(.9);*/
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
  100% {
    /*-webkit-transform: scale(.9);
            transform: scale(.9);*/
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    /*transform: scale(.9);*/
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
  100% {
    /*transform: scale(.9);*/
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes pulsered {
  0% {
    /*transform: scale(0.9);*/
  }
  70% {
    /*transform: scale(1);*/
    -webkit-box-shadow: 0 0 0 30px rgba(216, 48, 31, 0);
            box-shadow: 0 0 0 30px rgba(216, 48, 31, 0);
  }
  100% {
    /*transform: scale(0.9);*/
    -webkit-box-shadow: 0 0 0 0 rgba(216, 48, 31, 0);
            box-shadow: 0 0 0 0 rgba(216, 48, 31, 0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
  height: 100%;
}
body:not(.page-template-homepage-tpl) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  margin-block: 0;
  padding-inline: 40px;
}
#homepage {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.homepage-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}
.homepage-logo img {
  max-width: 200px;
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
.homepage-content {
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  font-size: 22px;
  padding: 25px;
  background: rgba(0, 0, 0, .7);
  border-radius: 10px;
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
.homepage-content h1 {
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
}
.homepage-content a {
  color: inherit;
}
.homepage-content a:hover {
  text-decoration: none;
}
#homepage .container {
  max-width: 950px;
}
.homepage-cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  gap: 25px;
}
.homepage-cta {
  background: #fff;
  padding: 10px 45px;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000;
  font-size: 20px;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
/*  -webkit-animation: pulse 3s infinite;
          animation: pulse 3s infinite;*/
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
/*.homepage-cta:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.homepage-cta:nth-of-type(2) {
  -webkit-animation-delay: -1.5s;
          animation-delay: -1.5s;
}*/
main.page {
  padding-top: 130px;
  margin-bottom: 70px;
}
.header {
  background: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  z-index: 1;
  color: #fff;
}
.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}
.header-logo {
  height: 90%;
}
.header-logo img {
  height: 100%;
}
.header-cart {
  position: relative;
}
.cart-icon img {
  width: 50px;
}
#cart-counter {
  position: absolute;
  color: #fff;
  bottom: -7px;
  left: 100%;
}
#menu-top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
#menu-top-menu a {
  color: #fff;
  text-decoration: none;
}
#menu-top-menu a:hover {
  text-decoration: underline;
}
#menu-top-menu .current-menu-item {
  text-decoration: underline;
}
.product-category.product > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woo-categories .products.columns-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px 40px;
}
.woo-categories .products.columns-4:before,
.woo-categories .products.columns-4:after {
  display: none;
}
.woo-categories .products.columns-4 .product-category,
.woo-categories .products.columns-4 .product {
  float: none;
  width: 100%;
  margin: 0;
}
.woo-categories .product-category img,
.woo-categories .products .product img {
  border-radius: 10px;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75) !important;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75) !important;
}
.woo-categories .products.columns-4 .product-category:hover img,
.woo-categories .products .product:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.woo-categories .products .product:hover .product-badge {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  left: -31px;
}
.page-title {
  font-size: 35px;
  line-height: 1;
  margin-bottom: 50px;
  text-align: center;
  width: 100%;
}
.woo-categories .woocommerce-loop-category__title,
.woo-categories .woocommerce-loop-product__title {
  padding: 0 !important;
  color: #000;
}
.woocommerce-loop-category__title .count {
  background: transparent;
}
.woo-categories .product a {
  text-align: center;
  position: relative;
}
.woo-categories .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.5s ease forwards;
          animation: fadeInUp 0.5s ease forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.woo-categories .product.visible {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.woo-categories .product .price {
  font-weight: 500 !important;
  font-size: 1.3em !important;
  color: #884038 !important;
}
.woo-categories .add_to_cart_button,
.single_add_to_cart_button,
.woo-categories .button {
  background: rgba(0, 0, 0, .7) !important;
  border-radius: 50px !important;
  color: #fff !important;
  text-decoration: none !important;
  -webkit-transition: .3s background ease-in-out !important;
  -o-transition: .3s background ease-in-out !important;
  transition: .3s background ease-in-out !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 12px 40px !important;
}
.woo-categories .add_to_cart_button:hover,
.woo-categories .products .product:hover .add_to_cart_button,
.single_add_to_cart_button:hover,
.woo-categories .button {
  background: rgba(0, 0, 0, .8) !important;
}
.woo-categories .added_to_cart.wc-forward,
.wc-block-cart-item__prices,
.wc-block-components-shipping-address,
.wc-block-components-totals-item__description.wc-block-components-totals-shipping__via {
  display: none !important;
}
.wc-block-cart-item__image {
  padding-left: 0 !important;
}
.wc-block-cart-item__image img {
  border-radius: 5px;
}
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, .3);
  padding-block: 50px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
}
.footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  margin-bottom: 35px;
}
.footer-wrapper a {
  color: inherit;
}
.footer-wrapper a:hover {
  text-decoration: none;
}
.copyright {
  text-align: center;
}
.wp-block-woocommerce-cart-order-summary-totals-block,
.wp-block-woocommerce-checkout-order-summary-totals-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wp-block-woocommerce-cart-order-summary-subtotal-block,
.wp-block-woocommerce-checkout-order-summary-subtotal-block {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.wp-block-woocommerce-cart-order-summary-taxes-block,
.wp-block-woocommerce-checkout-order-summary-taxes-block {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.wp-block-woocommerce-cart-order-summary-shipping-block,
.wp-block-woocommerce-checkout-order-summary-shipping-block {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background: rgba(0, 0, 0, .7);
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .3s background ease-in-out !important;
  -o-transition: .3s background ease-in-out !important;
  transition: .3s background ease-in-out !important;
}
.wc-block-cart__submit-container .wc-block-components-button:hover,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background: rgba(0, 0, 0, .8);
}
/*----------  single page ----------*/
.single-page-template p:not(:last-child) {
  margin-bottom: 30px;
}
.single-page-template p:not(img) {
  text-indent: 30px;
}
.single-page-template img {
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75) !important;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75) !important;
}
/*----------  modal ----------*/
#add-to-cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
}
.modal-buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-buttons * {
  background: rgba(0, 0, 0, .7) !important;
  border-radius: 50px !important;
  color: #fff !important;
  text-decoration: none !important;
  -webkit-transition: .3s background ease-in-out !important;
  -o-transition: .3s background ease-in-out !important;
  transition: .3s background ease-in-out !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 1rem !important;
  line-height: 1;
  font-weight: 500 !important;
  padding: 12px 40px !important;
  text-decoration: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after {
  display: none;
}
.custom-single-product-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}
.custom-single-product-left * {
  width: 100%;
}
.custom-single-product-left img {
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
.custom-single-product-right .product-title {
  font-size: 35px;
  line-height: 1;
  margin-bottom: 25px;
  width: 100%;
}
.custom-single-product-right .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}
.custom-single-product-right .product-price .price {
  font-weight: 500 !important;
  font-size: 1.3em !important;
  color: #884038 !important;
}
.custom-single-product-right .quantity {
  display: none !important;
}
.related-products h2 {
  font-size: 35px;
  line-height: 1;
  margin-bottom: 50px;
  text-align: center;
  width: 100%;
}
.product-description ul {
  list-style: disc;
  padding-left: 35px;
  margin-block: 15px;
}
.product-description p {
  margin-bottom: 17px;
}
/*.wp-block-woocommerce-cart-items-block .wc-block-components-product-metadata {
  display: none;
}*/
.variations_form.cart tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
.variations_form.cart select {
  border: 1px solid;
  padding: 3px 7px;
  border-radius: 3px;
}
.variations_form.cart .variations {
  margin-bottom: 11px;
}
.variations_form.cart .variations label {
  font-weight: 600;
}
.woocommerce-variation.single_variation {
  line-height: 1;
  margin-bottom: 11px;
}
.product-description {
  margin-bottom: 35px;
}
.woocommerce-variation-description {
  margin-bottom: 11px;
  font-size: 15px;
}
.wc-block-components-totals-shipping__delivery-options-notice {
  display: none !important;
}
.wc-block-components-product-metadata__description p {
  text-indent: 0 !important;
}
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__via {
  display: none;
}
.yith-wapo-block {
  margin-bottom: 15px;
  margin-top: 35px;
}
.wapo-addon-title {
  margin-bottom: 3px;
  font-weight: 600;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  color: inherit;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  text-indent: 0;
}
/*---------- discount code ----------*/
.discound-code-button {
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  overflow: hidden;
  background-color: #d8301f;
  color: #fff;
  border-radius: 0 5px 5px 0;
  width: 35px;
  height: 105px;
}
.discound-code-button.expanded {
  width: 220px;
}
.discount-button {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 0;
  cursor: pointer;
  background-color: #d8301f;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/*.dicsount-button-content {
  padding: 0 25px;
  display: none;
  flex-grow: 1;
}*/
.dicsount-button-content {
  padding: 0 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease 0.3s;
  -o-transition: opacity 0.2s ease 0.3s;
  transition: opacity 0.2s ease 0.3s; /* Delay to match .expanded transition */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  pointer-events: none;
}
/*.discound-code-button.expanded .dicsount-button-content {
  display: block;
}*/
.discound-code-button.expanded .dicsount-button-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#discount-code:not(.expanded) {
  -webkit-box-shadow: 0 0 0 0 rgba(216, 48, 31, .5);
          box-shadow: 0 0 0 0 rgba(216, 48, 31, .5);
  animation: pulsered 1.5s infinite;
  -webkit-animation: pulsered 1.5s infinite;
}
/*---------- discount code END ----------*/
.woocommerce-variation-availability {
  margin-top: 10px;
  color: #d8301f;
  font-weight: bold;
}
.wc-block-cart-item__remove-link[aria-label="Remove Bag from cart"],
.woocommerce-checkout .clover-footer,
.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
  display: none !important;
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  background: #ddd;
}
.variations_form.cart input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
/*.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled,
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}*/
.product-badge {
  position: absolute;
  top: -9px;
  left: -21px;
  background: #d8301f;
  color: #fff;
  padding: 3px 23px;
  font-size: 13px;
  border-radius: 5px;
  z-index: 10;
  -webkit-transform: rotate(-35deg);
      -ms-transform: rotate(-35deg);
          transform: rotate(-35deg);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75) !important;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75) !important;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 1100px) {
  .homepage-logo img {
    max-width: 140px;
  }
  .homepage-cta {
    padding: 10px 35px;
    font-size: 16px;
  }
  .homepage-content {
    font-size: 20px;
  }
  .woo-categories .woocommerce-loop-category__title,
  .woo-categories .woocommerce-loop-product__title {
    font-size: 15px !important;
  }
  .woo-categories .products.columns-4 {
    gap: 45px 20px;
  }
  .custom-single-product-wrapper {
    gap: 35px;
    font-size: 14px;
  }
  .woo-categories .custom-single-product-wrapper .woocommerce-loop-product__title {
    font-size: 35px !important;
  }
  .product-description {
    padding: 25px;
  }
}
@media screen and (max-width: 999px) {
  .woo-categories .products.columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .custom-single-product-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .custom-single-product-right {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .homepage-content h1 {
    font-size: 30px;
  }
  .woo-categories .product {
    width: 100% !important;
    margin: 0 !important;
  }
  .page-title {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .woo-categories .products.columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .woo-categories .products.columns-4 .product-category:hover img,
  .woo-categories .products .product:hover img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  #modal-message {
    font-size: 16px;
  }
  .modal-content {
    max-width: 300px;
  }
  .modal-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal-buttons * {
    font-size: 14px !important;
  }
  .woo-categories .custom-single-product-wrapper .woocommerce-loop-product__title,
  .related-products h2 {
    font-size: 25px !important;
    text-align: center;
  }
  .custom-single-product-right .product-price {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .custom-single-product-wrapper {
    margin-bottom: 50px;
  }
  .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 30px;
  }
  .product-description {
    padding: 25px 0;
  }
  .product-description {
    margin-bottom: 0;
  }
  .variations_form.cart,
  .variations_form.cart select,
  .woocommerce-variation-add-to-cart.variations_button .button {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .homepage-cta-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .homepage-cta {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 480px) {
  #homepage {
    height: 100svh;
    overflow: hidden;
  }
  .container {
    padding-inline: 30px;
  }
  .homepage-content {
    gap: 10px;
    font-size: 14px;
  }
  .header-logo {
    height: 70%;
  }
  .cart-icon img {
    width: 40px;
  }
  #menu-top-menu a {
    font-size: 14px;
  }
  .footer {
    padding-block: 20px;
    font-size: 14px;
  }
  .footer-wrapper {
    gap: 15px;
    margin-bottom: 15px;
  }
  .woo-categories .button {
    padding-inline: 0 !important;
    font-size: 14px !important;
    width: 100%;
  }
  .product-description {
    padding: 0;
  }
  .woocommerce-order-received .page-title {
    margin-bottom: 15px;
  }
  .woocommerce ul.order_details li strong {
    font-size: 1.2em;
    line-height: 1.5;
  }
  .woocommerce ul.order_details li {
    margin-bottom: 13px;
  }
  .woocommerce td.product-name .wc-item-meta p {
    text-indent: 0;
  }
  .woocommerce table.shop_table td,
  .woocommerce .woocommerce-customer-details address {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 380px) {
  .woo-categories .products.columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .homepage-content h1 {
    font-size: 25px;
  }
  .homepage-content {
    padding: 20px 10px;
  }
  .woo-categories .woocommerce-loop-category__title,
  .woo-categories .woocommerce-loop-product__title {
    font-size: 13px !important;
  }
  .woo-categories .product-category img,
  .woo-categories .products .product img {
    margin-bottom: 10px !important;
  }
  .woo-categories .products.columns-4 {
    gap: 30px 20px;
  }
}