:root {
  --bg-color: #f5f5f5;
  --text-color: #000000;
  --accent-color: #fdc631;
  --contrast-color: #dac399;
  --contrast-color-transparent: rgba(218, 195, 153, 0.9);
  --gray-color: #ccc;
  --red-color: #ee6e73;
  --light-grey-color: #eee;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn,
.dropdown-menu,
.form-control,
.form-select {
  border-radius: 0;
}

hr {
  border: none;
  border-top: 6px solid var(--accent-color);
}

textarea {
  resize: none;
}

/* .btn-warning:hover,
.btn-warning:active {
    color: #fff !important;
    background-color: var(--text-color) !important;
    border-color: var(--text-color) !important;
} */

.btn-outline-danger {
  border: none;
  font-size: 25px;
}

.btn-outline-danger:hover,
.btn-outline-danger:active {
  background-color: transparent !important;
  color: var(--red-color) !important;
}

/* ============================= For the search field modal ============================ */

.form-control:focus,
.form-select:focus {
  color: var(--text-color);
  border-color: var(--contrast-color);
  box-shadow: none;
}

.form-control::placeholder {
  color: var(--gray-color);
}

.modal-body .btn {
  color: var(--text-color);
  background-color: var(--contrast-color);
  border: none;
}

.modal-body .btn:active {
  color: #fff;
  background-color: var(--contrast-color);
  border: none;
}

/* ============================= For the search field modal ============================ */

/* ============================= General rules ============================ */
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main.main {
  flex: 1 1 auto;
}

section {
  padding: 50px 0;
}

.also-buy-products {
  padding: 0;
}

.section-title {
  position: relative;
  text-transform: uppercase;
  color: var(--text-color);
  font-size: 19px;
  font-weight: 700;
}

.section-title span {
  background-color: var(--bg-color);
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
  z-index: 1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 100%;
  top: 50%;
  left: 0;
  border-top: 1px dashed var(--text-color);
}

label.required::before {
  content: "* ";
  color: #dc3545;
  font-weight: bold;
}

.error-message {
  text-align: center;
  font-size: 75px;
  font-weight: 900;
}

/* ============================= General rules ============================ */

/* ============================= Header rules ============================ */
ul.social-icons {
  list-style: none;
  padding: 0;
}

.notice-message {
  margin-bottom: 0;
  margin-top: 5px;
}

.header-top-email a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
  transition: all 0.3s;
}

.header-middle {
  background-color: var(--contrast-color);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.header-middle .navbar {
  background-color: var(--contrast-color) !important;
}

.header-middle .navbar .dropdown-menu {
  background-color: transparent;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.dropdown-item:active {
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
  background-color: transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: transparent;
}

.header-middle .navbar .nav-link {
  color: var(--text-color);
  transition: 0.3s all;
  /*    letter-spacing: .1rem; */
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.header-middle .navbar .nav-link:hover {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
}

.header-middle .navbar .nav-link.active {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
}

.offcanvas-custom {
  background-color: var(--contrast-color-transparent);
}

.offcanvas-title,
.modal-title {
  font-size: 20px;
  font-weight: 600;
}

.navbar-toggler-custom {
  border-color: var(--contrast-color);
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

/* Гамбургер меню */
.navbar-toggler-icon {
  background-image: none;
  /* убираем стандартные полоски */
  width: 1.5em;
  height: 1.5em;
  position: relative;
}

/* создаём кастомные палочки */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  /* цвет палочек */
  transition: 0.3s;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler-icon div {
  top: 50%;
  transform: translateY(-50%);
}

/* Гамбургер меню */
.btn-close {
  filter: brightness(0);
  /* делает крестик чёрным */
  opacity: 1;
  /* чтобы не было полупрозрачности */
}

.cart-buttons .btn,
.cart-buttons a,
.cart-buttons-mobile .btn,
.cart-buttons-mobile a {
  color: var(--text-color);
  transition: all 0.3s;
  border: none;
  /* добавил сам что бы черные бордеры пропали */
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

/* .cart-buttons-mobile .btn:focus,
.cart-buttons-mobile a:focus {
    color: var(--accent-color); 
} */

.cart-buttons .btn:hover,
.cart-buttons a:hover {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
  transition: all 0.3s;
}

.cart-buttons .login-button:hover {
  color: var(--text-color);
  text-shadow: none;
}

.cart-buttons .cart-badge,
.cart-buttons-mobile .cart-badge {
  text-shadow: none;
  position: relative;
  top: -5.5px;
}

.cart-buttons i {
  position: relative;
  top: -2px;
}

.offcanvasCart-table .btn-danger {
  margin-top: -10px;
}

.offcanvasCart-table .product-img-td {
  width: 70px;
  text-align: center;
}

.offcanvasCart-table img {
  max-width: 50px;
}

.offcanvasCart-table a {
  display: block;
}

.offcanvasCart-table a:hover {
  font-weight: 500;
  text-decoration: underline;
}

.offcanvas-body .btn,
.offcanvas-body .btn:active {
  background-color: transparent;
  border: 0;
  color: var(--red-color);
}

.offcanvas-body .text-end .btn,
.offcanvas-body .text-center .btn {
  background-color: var(--accent-color);
  color: var(--text-color);
  border: 0;
}

.offcanvas-body .text-end .btn:hover,
.offcanvas-body .text-center .btn:hover {
  background-color: var(--text-color);
  color: #fff;
  border: 0;
  transition: all 0.3s;
}

.empty-cart-body {
  margin-top: 300px;
}

.account-dropdown-menu {
  background-color: var(--contrast-color);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

.card-body {
  background-color: var(--bg-color);
}

/* ============================= Header rules ============================ */

/* ============================= Main ============================ */

/* ============================= Carousel ============================ */
.carousel-main {
  border: 2px solid var(--contrast-color);
}

.carousel-caption {
  /* text-shadow: 0 0 2px rgba(0, 0, 0, 1); */
  top: 50%;
  bottom: auto;
  left: 15%;
  /* смещение влево */
  right: auto;
  transform: translateY(-50%);
  text-align: left;
}

.carousel-caption p {
  font-size: 22px;
}

.carousel-caption h2 {
  font-size: 26px;
}

.carousel-item {
  max-height: 631px;
}

/* ============================= Carousel ============================ */

/* ============================= About Us/ Contact ============================ */
.advantages .item {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  display: flex;
  /* flex-direction: column; */
  height: 100%;
  transition: all 0.3s;
}

.advantages .item:hover {
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

.advantages i {
  font-size: 70px;
  color: var(--accent-color);
  margin-right: 1rem;
}

.advantages img {
  width: 65px;
  height: 65px;
  top: 0;
  left: 0;
}

.our-contacts .item {
  /* background-color: #fff; */
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 440px;
}

.our-contacts i {
  font-size: 70px;
  color: var(--accent-color);
  margin-right: 1rem;
}

.staff .item {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  /* display: flex; */
  /* flex-direction: column; */
  height: 100%;
  width: 440px;
  transition: all 0.3s;
}

.staff .item:hover {
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

.staff .member-role {
  color: var(--accent-color);
}

.video-presentation {
  max-width: 880px;
  width: 100%;
}

.contact-form {
  max-width: 690px;
  width: 100%;
}

.contact-form .btn {
  width: 200px;
}

.img-fluid {
  max-height: 350px;
}

.our-contacts img {
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
}

/* ============================= About Us/ Contact ============================ */

/* ============================= Featured products ============================ */

/* ============================= Product card ============================ */
.product-card {
  transition: all 0.3s;
  border: 1px solid var(--gray-color);
  background-color: #fff;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 10px 20px -15px rgba(0, 0, 0, 0.75);
}

/* .also-buy-products .product-card {
    max-width: 300px;
} */

.product-card-offer {
  color: #fff;
  position: absolute;
  top: 5px;
  right: 5px;
  text-transform: uppercase;
  opacity: 0.5;
}

.product-card-offer>div {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 4px;
}

/* .also-buy-products .product-card-offer>div {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 10px;
} */

.offer-hit {
  background-color: blue;
}

.offer-new {
  background-color: var(--contrast-color);
}

.offer-discount {
  background-color: var(--red-color);
}

/* ============================= Stock statuses ============================= */
.in-stock {
  text-align: center;
  color: green;
  font-weight: 500;
  margin-bottom: 0;
}

.out-of-stock {
  text-align: center;
  color: red;
  font-weight: 500;
  margin-bottom: 0;
}

.on-backorder {
  text-align: center;
  color: orange;
  font-weight: 500;
  margin-bottom: 0;
}

/* .also-buy-products .in-stock,
.also-buy-products .out-of-stock,
.also-buy-products .on-backorder {
    font-size: 10px;
} */

/* ============================= Stock statuses ============================= */

.product-thumb {
  text-align: center;
}

.product-thumb img {
  max-height: 150px;
  /* для карточек на странице категории */
}

/* .featured-products .product-thumb img,
.new-products .product-thumb img {
    max-height: 150px;
} */

/* .also-buy-products .product-thumb img {
     max-height: 275px;
} */

.product-details {
  padding: 5px 10px;
}

/* .also-buy-products .product-details {
    padding: 5px 10px;
} */

.product-details h2 a,
.product-details h3 a {
  height: 45px;
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* .product-details h2 a:hover,
.product-details h3 a:hover {
    color: var(--accent-color);
} */

/* .also-buy-products .product-details h3 a {
    height: 20px;
    font-size: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
} */

.product-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 45px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.product-bottom-details {
  border-top: 1px solid var(--light-grey-color);
  padding-top: 0.25rem;
  align-items: center;
}

/* .also-buy-products .product-bottom-details {
    padding-top: 0.5rem;
} */

.product-price {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 600;
}

/* .also-buy-products .product-price {
    font-size: 14px;
    color:var(--accent-color);
    font-weight: 600;
} */

.product-price small {
  color: var(--gray-color);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 0.8rem;
}

/* .also-buy-products .product-price small {
    font-size: 11px;
} */

.owl-carousel-full .owl-item img {
  display: inline-block;
  width: auto;
}

/* ============================= Product card ============================ */

/* ============================= Featured products ============================ */

/* ============================= About Us ============================ */
.about-us {
  background-color: #fff;
}

.about-us .section-title span,
.bg-white .section-title span,
.cart-summary .section-title span {
  background-color: #fff;
}

/* ============================= About Us ============================ */

/* ============================= Main ============================ */

/* ============================= Footer ============================ */
footer {
  background-color: var(--contrast-color);
  padding: 30px 0 15px 0;
  color: var(--text-color);
  font-size: 18px;
}

footer p {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

footer a {
  color: var(--text-color);
  transition: all 0.3s;
}

footer a:hover {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
}

.footer-email a:hover {
  text-decoration: underline;
}

.opening-hours li {
  display: flex;
  justify-content: start;
  font-weight: 700;
}

.opening-hours .day {
  min-width: 100px;
}

.for-germany {
  font-size: 12px;
}

/* ============================= Footer ============================ */

#top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-color);
  opacity: 0.5;
  color: var(--text-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 0;
  font-size: 25px;
  transition: all 0.5s;
  z-index: 10;
  display: none;
}

#top:hover {
  opacity: 1;
}

/* ============================= Category Page ============================ */
.breadcrumbs {
  margin: 5px 0;
  padding: 1rem;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.breadcrumbs a {
  transition: all 0.5s;
  margin-right: 0.5rem;
}

.breadcrumbs a:hover {
  color: var(--contrast-color);
}

.breadcrumbs a::after {
  content: "/";
  padding-left: 0.5rem;
  color: var(--text-color);
}

.category-description {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  margin-right: 20px;
  margin-left: 20px;
}

.category-description a:hover {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
  transition: all 0.3s;
}

.sidebar {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.sidebar p {
  text-align: center;
  margin-bottom: 20px;
  padding-right: 45px;
  font-size: 24px;
  font-weight: 600;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar ul li {
  margin-bottom: 0.5rem;
  font-size: 18px;
}

.sidebar ul li a {
  display: inline-block;
  width: 200px;
  text-align: start;
  white-space: normal;
  word-wrap: break-word;
  transition: all 0.3s;
}

.sidebar ul .sidebar-subitem {
  margin-bottom: 0.125rem;
}

.sidebar ul .sidebar-subitem a {
  font-size: 16px;
  white-space: nowrap;
}

/* .sidebar ul li a:hover {
color: var(--accent-color);
text-shadow: 0 0 2px rgba(0, 0, 0, .9);
} */

.sidebar-collapse-button {
  border: 0;
}

/* .sidebar-collapse-button:hover,
.sidebar-collapse-button:active {
color: var(--accent-color) !important;
text-shadow: 0 0 2px rgba(0, 0, 0, .9);
} */

.page-link {
  color: var(--text-color);
  transition: all 0.3s;
}

.active>.page-link,
.page-link.active {
  background-color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.page-link:hover,
.page-link:active,
.page-link:focus {
  background-color: var(--contrast-color);
  border-color: var(--contrast-color);
  color: #fff;
  box-shadow: none;
}

.category-selectors .form-select:focus {
  border-color: var(--contrast-color);
  box-shadow: none;
}

/* ============================= Category Page ============================ */

/* ============================= Sub-Category Menu ============================ */
.subcategory-image img {
  width: 300px;
  height: 300px;
  border-style: solid;
  border-width: 8px;
  border-color: var(--gray-color);
  border-radius: 0 !important;
}

.subcategory-box {
  transition: all 0.3s;
}

.subcategory-title h2 {
  font-size: 22px;
}

/* .subcategory-title:hover {
    color: var(--accent-color);
    text-shadow: 0 0 2px rgba(0, 0, 0, .9);
} */

/* .subcategory-box:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .7);
    color: var(--accent-color);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .9);
} */
/* ============================= Sub-Category Menu ============================ */

/* ============================= Product Page ============================ */
.product-content .product-price {
  font-size: 25px;
}

.product-content .input-group {
  width: 250px;
}

.product-content .card i {
  color: var(--accent-color);
}

.product-content .card {
  padding-left: 20px;
  font-size: 14px;
}

.product-content .card ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}

.product-title {
  font-size: 27px;
}

.nav-tabs .nav-link {
  border-radius: 0;
  color: var(--text-color);
}

.tab-content {
  padding-top: 20px;
}

.product-options .form-select {
  width: 200px;
  border-radius: 0;
  box-shadow: none;
}

.product-options .form-select:focus {
  border-color: var(--text-color);
}

/* .product-add2cart .btn-warning:hover {
    transition: all .3s;
    color: #fff;
    background-color: var(--text-color);
    border-color: var(--text-color);
} */

.img-thumbnail {
  margin-bottom: 1rem;
}

/* ============================= Product Page ============================ */

/* ============================= Cart Page ============================ */
.cart-summary {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.cart-content table img,
.cart-summary img {
  max-width: 50px;
}

.cart-content table th {
  text-align: center;
}

.cart-content table td {
  padding: 1rem;
}

.cart-content-title {
  display: block;
}

.cart-errors {
  margin: 0;
  font-size: 10px;
  color: var(--red-color);
}

.cart-content .table td:not(:nth-child(2)) {
  text-align: center;
  vertical-align: middle;
}

.table-dark tr th {
  background-color: var(--contrast-color);
  border-color: var(--contrast-color);
  color: var(--text-color);
}

.cart-qty {
  width: 80px;
}

.btn-coupon {
  color: var(--text-color);
  text-decoration: none;
}

.btn-coupon {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
}

.btn-coupon:hover,
.btn-coupon:active {
  color: var(--accent-color) !important;
}

/* .cart-summary .btn {
    padding: 1rem;
} */

.cart-summary p {
  font-size: 16px;
  font-weight: 600;
}

.cart-total p {
  font-size: 20px;
  font-weight: 600;
}

.cart-empty {
  font-size: 18px;
  font-weight: 600;
}

.card-text {
  color: var(--accent-color);
  font-weight: 500;
}

.card-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-total-title {
  font-size: 28px;
}

/* ============================= Countries-Cities lists ============================ */
#checkoutForm {
  position: relative;
}

.ajax-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  display: none;
  opacity: o;
  transition: opacity 1s;
}

.ajax-loader.fade {
  display: block;
  opacity: 1;
}

.ajax-loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check-input {
  border-color: #000;
}

/* ============================= Countries-Cities lists ============================ */
/* ============================= Cart Page ============================ */

/* ============================= Checkout Page ============================ */
.checkout-back-button {
  color: var(--text-color);
  border-color: var(--text-color);
}

.checkout-back-button i {
  padding-right: 1rem;
}

/* .cart2checkout-button {
    height: 40px;
} */

/* .cart2checkout-button:hover,
.cart-refresh-button:hover {
   color: #fff;
   background-color: var(--text-color);
   border-color: var(--text-color);
   transition: all .3s;
} */

.form-check i {
  padding-right: 5px;
}

#selfcollection p {
  border: 1px solid var(--text-color);
  border-width: auto;
  padding: 6px 4px;
}

.cart-summary .badge {
  position: absolute;
  background-color: rgba(218, 195, 153, 0.9);
  color: var(--text-color);
  left: 55px;
}

.cart-summary .table-responsive tfoot tr:last-child {
  height: 75px;
  font-size: 20px;
}

.checkout-form-text,
.register-form-text {
  font-size: 13px;
  margin-bottom: 0;
}

.birthdate-input {
  text-transform: uppercase;
}

/* ============================= Checkout Page ============================ */

/* ============================= Register/Login/Lost Password Pages ============================ */
/* .register-button:hover,
.login-button:hover,
.reset-password-button:hover {
   color: #fff;
   background-color: var(--text-color);
   border-color: var(--text-color);
   transition: all .3s;
} */

.google-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #444;
  border: 1px solid #ccc;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.2s;
}

.google-login img {
  width: 18px;
  height: 18px;
}

/* .google-login:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-color: #bbb;
} */

.toggle-password {
  background: none;
  border: none;
  padding: 0 0.5rem;
}

.toggle-password:hover {
  color: #000;
  background-color: var(--bg-color);
}

.toggle-password:focus,
.toggle-password:active {
  background: none !important;
  box-shadow: none !important;
}

.form-check-label {
  color: var(--text-color) !important;
}

.form-check-label-cart {
  position: relative;
  cursor: pointer;
}

.form-check-label-cart::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.form-check-label-cart:hover::after {
  width: 100%;
}

.login-form-control {
  width: 96%;
}

/* ============================= Register/Login/Lost Password  Pages ============================ */
.parallax-section {
  height: 230px;
  width: 100%;
  background-image: url("/assets/img/bg.jpg");
  /* замените на нужный путь */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  position: relative;
}

/* ============================= Account Pages ============================ */
.account-menu-button {
  height: 65px;
  width: 300px;
  border-radius: 4px;
  border-color: var(--contrast-color);
  color: var(--text-color);
}

/* .account-menu-button:hover {
color: #fff;
} */

.dashboard-head {
  font-size: 25px;
}

.dashboard-body {
  font-size: 18px;
}

.account-orders-content,
.account-order-details-content {
  padding: 0.5rem 1rem;
}

.billing-address,
.shipping-address {
  padding: 1rem;
}

.account-addresses-content .billing-address,
.account-addresses-content .shipping-address {
  border: 2px solid;
}

.account-edit .form-label,
.account-billing-address-edit .form-label,
.account-shipping-address-edit .form-label {
  margin-bottom: 0;
}

.account-edit p {
  font-style: italic;
}

.account-edit span {
  font-size: 20px;
  font-weight: 600;
}

/* ============================= Account Pages ============================ */

@media only screen and (max-width: 500px) {
  .product-content-details .nav-tabs .nav-link {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 1400px) {
  .cart-content-title {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .offcanvasCart-table td a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*
*
* ================== FIXES ====================== 
 */

.woocommerce .cart-content table.shop_table td {
  padding: 1rem;
}

.woocommerce div.product form.cart.product-options .variations select {
  min-width: 200px;
}

#variant-price {
  margin-bottom: 10px;
}

div.product .single_variation_wrap .woocommerce-variation-availability .stock,
#variant-price.product-price ins,
#variant-price.product-price .price {
  color: var(--accent-color);
  font-size: 25px;
  font-weight: 600;
}

.product-content .product-price del,
.product-card .product-price del,
#variant-price.product-price del {
  color: var(--gray-color);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 0.8rem;
}

.input-group .quantity .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.table-responsive .offcanvasCart-table .btn-danger {
  margin-top: 0px;
}

.woocommerce form.edit-account .form-row .required,
.woocommerce form.woocommerce-checkout .form-row .required,
.woocommerce form.account-address .form-row .required {
  color: inherit;
  font-weight: inherit;
}

.woocommerce form.woocommerce-checkout .form-row.woocommerce-invalid label,
.woocommerce form.account-address .form-row.woocommerce-invalid label {
  color: var(--wc-red);
}

.woocommerce-invalid-required-field input {
  border: var(--wc-form-border-width) solid var(--wc-red) !important;
}

form.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce form.woocommerce-checkout .form-row .input-text,
.woocommerce form.woocommerce-checkout .form-row select,
form.account-address .select2-container--default .select2-selection--single,
.woocommerce form.account-address .form-row .input-text,
.woocommerce form.account-address .form-row select {
  border: none;
}

.woocommerce form.woocommerce-checkout .form-row-first,
.woocommerce form.woocommerce-checkout .form-row-last,
.woocommerce-page form.woocommerce-checkout .form-row-first,
.woocommerce-page form.woocommerce-checkout .form-row-last {
  width: 100%;
  overflow: visible;
}

form.account-address [aria-hidden="true"],
.woocommerce form.edit-account .form-row .required [aria-hidden="true"],
form.woocommerce-checkout [aria-hidden="true"] {
  display: none;
}

tr.woocommerce-shipping-totals.shipping td {
  border: none !important;
  padding: 7px 0;
}

.woocommerce #add_payment_method #payment,
.woocommerce .woocommerce-cart #payment,
.woocommerce .woocommerce-checkout #payment {
  background: initial;
  border-radius: initial;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 0;
  border-bottom: 1px solid rgba(104, 87, 125, 0.14);
  margin: 0;
  list-style: none outside;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 0;
  line-height: initial;
}

.woocommerce .shipping ul#shipping_method li,
#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 0;
  line-height: initial;
  text-align: left;
  margin-bottom: 6px;
  font-weight: 400;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 0;
}

#order_review .woocommerce-remove-coupon {
  display: none;
}

.woocommerce form.woocommerce-checkout .form-row .required {
  visibility: visible;
}

.wrapper .parallax-section {
  background-image: url(img/bg.jpg);
}

.woocommerce .quantity .qty.cart-qty {
  width: 80px;
  text-align: center;
}

.sidebar ul li a.account-menu-button {
  height: 65px;
  width: 300px;
  border-radius: 4px;
  border-color: var(--contrast-color);
  color: var(--text-color);
}

p.order-again .button,
a.woocommerce-button.button.invoice.order-actions-button,
.woocommerce .container-fluid input.button,
.woocommerce .container-fluid button.button {
  background-color: rgb(255, 193, 7);
  border-color: rgb(255, 193, 7);
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 38px;
  transition: all 0.3s ease;
  display: inline-block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  padding: 6px 12px !important;
  height: auto !important;
  line-height: 24px !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
  flex: 0 0 auto !important;
}

p.order-again .button:hover,
a.woocommerce-button.button.invoice.order-actions-button:hover,
.woocommerce .container-fluid input.button:hover,
.woocommerce .container-fluid button.button:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

a.reset_variations {
  display: none !important;
}

.woocommerce form .form-row .form-label.required {
  visibility: visible;
}

.select2-selection.is-invalid {
  border: 1px solid #dc3545 !important;
}

.select2-container .select2-selection.valid {
  border-color: var(--bs-form-valid-border-color) !important;
  border-width: 1px !important;
  border-style: solid !important;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

#terms-and-conditions-checkbox-text {
  line-height: initial;
  border: none;
}

.variations {
  table-layout: auto !important;
  width: 100% !important;
}

.variations th.label {
  width: 1% !important;
  white-space: nowrap !important;
  padding-right: 80px !important;
}

.breadcrumbs .breadcrumb-item a,
nav.breadcrumbs ol.breadcrumb a::after {
  content: "";
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

nav.breadcrumbs ol.breadcrumb a::before {
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

.ppc-button-wrapper {
  margin-top: 10px;
}

.cart-summary table {
  border-top: 1px solid #000 !important;
}

div.category-description {
  font-weight: initial;
}

div.product-not-found h1 {
  font-family: "Roboto", Sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 90px;
  color: #3e320e;
  text-align: center;
}

.woocommerce div.product div.product-content p.in-stock {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 15px;
  color: black;
  font-size: 16px;
}

.product-attribute-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations label.form-label {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-weight: initial;
}

.woocommerce div.product form.cart .variations select.form-select {
  background-color: white;
}

.woocommerce .product-thumb img,
.woocommerce .upsells .product-thumb img {
  max-height: 150px;
  max-width: 150px;
}

.terms-container {
  position: relative;
}

#terms {
  position: absolute;
  top: 0px;
}

#terms-and-conditions-checkbox-text {
  font-size: 16px;
  padding-left: 25px;
  display: block;
  line-height: 1.5;
}

#terms_description {
  font-weight: normal;
  padding-left: 25px;
}

#add_payment_method .checkout .checkout-inline-error-message,
.woocommerce-cart .checkout .checkout-inline-error-message,
.woocommerce-checkout .checkout .checkout-inline-error-message {
  font-size: 0.875em !important;
}

.checkout-hide-errors-container,
.checkout-not-filtered-errors {
  display: none;
}

.woocommerce-checkout ul.woocommerce-error {
  display: none !important;
}

.wc-bacs-bank-details-heading,
.wc-bacs-bank-details-account-name {
  display: none;
}

#wp-admin-bar-edit {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.woocommerce .quantity input.form-control.qty.cart-qty {
  text-align: left;
  width: 100px;
}

#lightbox .lb-caption {
  display: none !important;
}

.lb-image {
  border: none !important;
  background: transparent !important;
}

#pass-strength-result {
  margin-top: 0.5rem;
  font-weight: 600;
}

#pass-strength-result.pw-score-0 {
  color: #d32f2f;
}

#pass-strength-result.pw-score-1 {
  color: #ef6c00;
}

#pass-strength-result.pw-score-2 {
  color: #fbc02d;
}

#pass-strength-result.pw-score-3 {
  color: #388e3c;
}

#pass-strength-result.pw-score-4 {
  color: #2e7d32;
}

.cart-buttons-mobile .login-button.btn:focus {
  color: black;
}

.ajax-login-form .login-error.invalid-feedback {
  display: none;
}

#billing_phone_field {
  padding-bottom: 6px;
  margin-bottom: 1px;
}

.alert a.showlogin {
  font-weight: normal;
}

.alert a {
  font-weight: bold;
}

.owl-carousel-upsells .owl-item img {
  display: inline-block;
  width: auto;
}

.product-content table.table-responsive td,
.product-content table.table-responsive {
  border: 1px solid #ddd !important;
  text-align: center;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  padding-top: 0px;
}

.blockUI.blockOverlay {
  background: none !important;
}

.woocommerce-checkout-review-order-table .product-name {
  position: relative;
}

.woocommerce-checkout-review-order-table .badge {
  left: 40px;
}

.product-card .product-details h2 a,
.product-card .product-details h3 a,
.product-details .product-excerpt {
  -webkit-line-clamp: none;
}

#cart-form .cart_item td {
  padding-top: 25px;
  vertical-align: top;
}

#cart-form table td.product-name,
#cart-form table td.cart-price-col,
#cart-form table td.product-subtotal {
  padding-top: 32px;
}

#cart-form .quantity input.form-control {
  text-align: center;
}

.product-price ins {
  text-decoration: none;
}



#cart-form .cart-table .woocommerce-notices-wrapper div {
  margin: 2px 0 2px auto !important;
  font-weight: normal;
  text-align: left;

}
