:root {
  --dark-bg: #231f20;
  --dark-text: #3d3a3a;
  --gray: #54595f;
  --light-gray: #7a7a7a;
  --pink: #76072e;
  --white-text: #ededed;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

/*
  9. Improve link defaults
*/
a {
  text-decoration: none;
  display: inline-block;
}

.large-container {
  width: min(1522px, 90%);
  margin-inline: auto;
}

.small-container {
  width: min(1140px, 90%);
  margin-inline: auto;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.grid {
  display: grid;
  height: 100%;
  width: 100%;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-evenly {
  justify-content: space-evenly;
}

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

.align-end {
  align-items: flex-end;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

html {
  scroll-behavior: smooth;
}
html body {
  direction: rtl;
  font-family: "OpenSans";
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
}
html body .contact-form {
  width: min(550px, 100%);
}
html body .contact-form h2 {
  color: var(--pink);
  margin-bottom: 8px;
  font-size: clamp(20px, 2.6vw, 32px);
}
html body .contact-form form {
  display: grid;
  row-gap: 16px;
}
html body .contact-form form .wpcf7-form-control-wrap {
  height: 50px;
  border: 1px var(--dark-bg) solid;
}
html body .contact-form form .wpcf7-form-control-wrap[data-name=message] {
  height: max(6.25vw, 100px);
}
html body .contact-form form .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  height: 100%;
  direction: rtl;
  padding-right: 8px;
  border: unset;
  outline: none;
  resize: none;
}
html body .contact-form form .wpcf7-submit {
  height: 50px;
  background-color: var(--pink);
  color: white;
  border: unset;
  outline: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
html body .contact-form form .wpcf7-submit:hover {
  background-color: #ad0b44;
}

header {
  position: relative;
  background-color: var(--dark-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  header .large-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-block: 30px;
  }
}
header .large-container .menu-mobile-switcher-wrapper {
  cursor: pointer;
}
header .large-container .menu-mobile-switcher-wrapper .menu-mobile-switcher {
  display: none;
  width: 35px;
  height: 5px;
  background-color: white;
  border-radius: 5px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  margin-block: 4px;
}
@media only screen and (max-width: 768px) {
  header .large-container .menu-mobile-switcher-wrapper .menu-mobile-switcher {
    display: block;
  }
}
header .large-container .menu-main-container {
  padding-block: 42px;
  flex-grow: 1;
}
@media only screen and (max-width: 768px) {
  header .large-container .menu-main-container {
    position: absolute;
    right: 0;
    top: 91px;
    width: 100%;
    background-color: var(--dark-bg);
    z-index: 99 !important;
    max-height: 0;
    padding-block: unset;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
}
header .large-container .menu-main-container.show {
  max-height: 338px;
  padding-block: 42px;
  visibility: visible;
  opacity: 1;
}
header .large-container .menu-main-container #menu-main {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: min(58px, 4vw);
  padding: unset;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  header .large-container .menu-main-container #menu-main {
    flex-direction: column;
    row-gap: 15px;
  }
}
header .large-container .menu-main-container #menu-main .cart-button svg,
header .large-container .menu-main-container #menu-main .account-button svg {
  min-width: 17px;
}
header .large-container .menu-main-container #menu-main .cart-button .cart-quantity,
header .large-container .menu-main-container #menu-main .account-button .cart-quantity {
  top: -13px;
  right: -16px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 14px;
  z-index: -1;
  pointer-events: unset;
}
header .large-container .menu-main-container #menu-main .cart-button:hover svg path,
header .large-container .menu-main-container #menu-main .cart-button:hover svg g,
header .large-container .menu-main-container #menu-main .cart-button:hover svg circle,
header .large-container .menu-main-container #menu-main .account-button:hover svg path,
header .large-container .menu-main-container #menu-main .account-button:hover svg g,
header .large-container .menu-main-container #menu-main .account-button:hover svg circle {
  fill: #737980;
}
header .large-container .menu-main-container #menu-main .cart-button svg path,
header .large-container .menu-main-container #menu-main .cart-button svg g,
header .large-container .menu-main-container #menu-main .cart-button svg circle,
header .large-container .menu-main-container #menu-main .account-button svg path,
header .large-container .menu-main-container #menu-main .account-button svg g,
header .large-container .menu-main-container #menu-main .account-button svg circle {
  transition: all 0.5s ease;
}
header .large-container .menu-main-container #menu-main .account-button {
  padding-left: min(90px, 5vw);
}
@media only screen and (max-width: 768px) {
  header .large-container .menu-main-container #menu-main .account-button {
    padding-left: unset;
  }
}
header .large-container .menu-main-container #menu-main .item:hover a {
  color: #737980;
}
header .large-container .menu-main-container #menu-main .item.current_page_item a {
  text-decoration: underline;
}
header .large-container .menu-main-container #menu-main .item#item-41 {
  flex-grow: 1;
}
header .large-container .menu-main-container #menu-main .item > a {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--white-text);
  transition: all 0.5s ease;
}
header .large-container .custom-logo-link {
  margin-inline: min(136px, 8vw);
  width: 82px;
}
@media only screen and (max-width: 768px) {
  header .large-container .custom-logo-link {
    padding-top: unset;
  }
}
header .large-container .custom-logo-link img {
  object-fit: contain;
}
header .delivery-message {
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  background-color: black;
  padding-block: 10px;
  z-index: 1;
  display: none;
}
@media only screen and (max-width: 768px) {
  header .delivery-message {
    top: 100px;
  }
}
@media only screen and (max-width: 768px) {
  header .delivery-message > .large-container {
    padding-block: min(30px, 2vw);
  }
}
header .delivery-message.hide {
  display: none;
}
header .delivery-message p {
  color: white;
}
header .delivery-message p a {
  color: white;
  text-decoration: underline;
}
header .over-18-popup {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
header .over-18-popup .popup {
  background-color: var(--dark-bg);
  width: min(600px, 90%);
  text-align: center;
  padding: 60px 10px;
  border-radius: 30px;
}
header .over-18-popup .popup h2 {
  font-size: clamp(23px, 2.7vw, 27px);
  line-height: 1.3;
  color: var(--white-text);
  margin-block: 30px 20px;
}
header .over-18-popup .popup .buttons {
  row-gap: 16px;
}
header .over-18-popup .popup .buttons a {
  font-size: 30px;
  width: 90%;
  padding-block: 10px;
}
header .over-18-popup .popup .buttons a.over-18 {
  background-color: var(--pink);
  color: #fff;
}
header .over-18-popup .popup .buttons a.under-18 {
  background-color: var(--white-text);
  color: var(--dark-bg);
}

footer {
  background-color: var(--dark-bg);
}
footer .small-container {
  padding-block: 60px 40px;
}
footer .small-container .image-wrapper {
  top: -54px;
  transform: translateX(-50%);
  left: 50%;
}
footer .small-container .title {
  color: white;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2.4px;
  margin-bottom: 20px;
}
footer .small-container h3 {
  font-size: clamp(18px, 2.4vw, 32px);
  color: white;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 400;
}
footer .small-container .links-rights-wrapper {
  direction: ltr;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  footer .small-container .links-rights-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
footer .small-container .links-rights-wrapper p {
  font-size: 12px;
  color: #fff;
}
footer .small-container .links-rights-wrapper p a {
  color: #cc3366;
  margin-left: 4px;
  font-size: 16px;
}
footer .small-container .links-rights-wrapper .social-media {
  column-gap: 30px;
}
footer .small-container .links-rights-wrapper .social-media a {
  max-width: 19px;
  max-height: 19px;
}
footer .small-container .links-rights-wrapper .social-media a:last-child {
  max-width: unset;
  max-height: unset;
  color: #fff;
}
footer .small-container .links-rights-wrapper .social-media a img {
  object-fit: contain;
  object-position: center;
}

body.woocommerce-cart .container {
  width: min(1140px, 95%);
  margin-inline: auto;
  min-height: 56.9vh;
  height: unset !important;
  margin-top: 160px;
}
body.woocommerce-cart .container .woocommerce .woocommerce-notices-wrapper {
  margin-top: 50px;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper {
  margin-bottom: 100px;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table {
  text-align: right;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table thead th {
  font-size: 17px;
  color: var(--gray);
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table tbody tr td {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray);
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table tbody tr td.product-remove a {
  color: black !important;
  transition: all 0.4s ease;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table tbody tr td.product-remove a:hover {
  background-color: unset;
  color: red !important;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table tbody tr td.product-name a {
  color: var(--pink);
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table tbody tr td.product-thumbnail img {
  width: 100px;
  object-fit: contain;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .shop_table tbody tr td.product-quantity .quantity button {
  display: none;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .woocommerce-cart-form .coupon-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 20px;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 20px;
  margin-top: 40px;
  width: min(700px, 95%);
  margin-inline: auto;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals .cart_totals {
  width: 100%;
  float: unset;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals .cart_totals table {
  border: unset;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals .cart_totals table th {
  text-align: right;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals .cart_totals table .woocommerce-shipping-totals .shipping-calculator-button {
  color: #000;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
  background-color: var(--pink);
  font-size: 17px;
  transition: all 0.5s ease;
}
body.woocommerce-cart .container .woocommerce .cart-wrapper .cart-collaterals .cart_totals .wc-proceed-to-checkout a:hover {
  background-color: black;
}

body.woocommerce-account .container {
  width: min(1140px, 95%);
  margin-inline: auto;
  min-height: 62.1vh;
  height: unset !important;
  margin-top: 160px;
}
body.woocommerce-account .container .woocommerce {
  padding-top: min(50px, 5vw);
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form .woocommerce-form-row label,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form .woocommerce-form-row label {
  text-align: right;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form .woocommerce-form-row input,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form .woocommerce-form-row input {
  height: 32px;
  padding: unset;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form .woocommerce-form-row .show-password-input,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form .woocommerce-form-row .show-password-input {
  right: unset;
  left: 0;
  top: unset;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form p:nth-child(3),
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form p:nth-child(3) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form p:nth-child(3) .woocommerce-button,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form p:nth-child(3) .woocommerce-button {
  margin-right: unset;
  margin-left: 1em;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form .woocommerce-LostPassword,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form .woocommerce-LostPassword {
  text-align: right;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form .woocommerce-LostPassword a,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form .woocommerce-LostPassword a {
  color: #c36;
  text-decoration: underline;
  transition: all 0.3s ease;
}
body.woocommerce-account .container .woocommerce .u-columns .u-column1 .woocommerce-form .woocommerce-LostPassword a:hover,
body.woocommerce-account .container .woocommerce .u-columns .u-column2 .woocommerce-form .woocommerce-LostPassword a:hover {
  color: #336;
}

body.woocommerce-checkout .container {
  height: unset !important;
  width: min(1140px, 95%);
  margin-inline: auto;
  margin-top: 160px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set {
  display: flex;
  flex-direction: column;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 {
  width: 100%;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 h3 {
  color: var(--pink);
  font-size: clamp(18px, 2.4vw, 30px);
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.form-row-first, body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.form-row-last {
  width: 49%;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row#billing_country_field {
  display: none;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row label {
  font-size: clamp(16px, 1.8vw, 20px);
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper input {
  height: 38px;
  border-radius: 10px;
  border-width: 1px;
  font-size: 18px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2 .select2-selection {
  height: 38px;
  border-radius: 10px;
  border-width: 1px;
  font-size: 18px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2 .select2-selection .select2-selection__rendered {
  height: 100%;
  line-height: 1.8;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 {
  width: 100%;
  margin-top: 25px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label input {
  width: 20px;
  height: 18px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label span {
  color: var(--pink);
  font-size: clamp(16px, 1.9vw, 22px);
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .form-row.form-row-first, body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .form-row.form-row-last {
  width: 49%;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .form-row#shipping_country_field {
  display: none;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .form-row label {
  font-size: clamp(16px, 1.8vw, 20px);
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .form-row .woocommerce-input-wrapper input {
  height: 38px;
  border-radius: 10px;
  border-width: 1px;
  font-size: 18px;
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-additional-fields .notes label {
  font-size: clamp(16px, 1.8vw, 20px);
}
body.woocommerce-checkout .container .woocommerce-checkout .col2-set .col-2 .woocommerce-additional-fields .notes .woocommerce-input-wrapper textarea {
  resize: none;
  border-radius: 10px;
  border-width: 1px;
  height: 5em;
  outline: none;
  font-size: 18px;
}
body.woocommerce-checkout .container .woocommerce-checkout #order_review_heading {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--pink);
  margin-block: 20px 10px;
}
body.woocommerce-checkout .container .woocommerce-checkout #order_review {
  margin-bottom: 90px;
}
body.woocommerce-checkout .container .woocommerce-checkout #order_review #payment .place-order #place_order {
  background-color: var(--pink);
  transition: all 0.5s ease;
}
body.woocommerce-checkout .container .woocommerce-checkout #order_review #payment .place-order #place_order:hover {
  background-color: black;
}
body.woocommerce-checkout .container .woocommerce-checkout #order_review .ppc-button-wrapper {
  width: min(340px, 100%);
}
body.woocommerce-checkout .container .w2t-tranzila-form-page {
  flex-direction: column;
}
body.woocommerce-checkout .container .w2t-tranzila-form-page #tranzila_iframe {
  width: 100%;
  height: 700px;
}/*# sourceMappingURL=theme.min.css.map */