:root {
  --storzen-body: #0F1F1F;
  --storzen-black: #000;
  --storzen-white: #fff;
  --storzen-theme: #FF3636;
  --storzen-theme-2: #F4B400;
  --storzen-header: #0C0C0C;
  --storzen-text: #AAAAAA;
  --storzen-border: #49515b4d;
  --storzen-bg: #F9F8F4;
  --storzen-bg-2: #003B49;
  --storzen-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--storzen-text);
  background-color: var(--storzen-white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--storzen-text);
  outline: none;
}

input {
  color: var(--storzen-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--storzen-header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 115%;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 142%;
}
@media (max-width: 1399px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 575px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--storzen-header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.shop-card-items {
  margin-top: 30px;
  position: relative;
  z-index: 99;
}
@media (max-width: 575px) {
  .shop-card-items {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.shop-card-items .image {
  background: #F6F6F6;
  z-index: 1;
  position: relative;
  text-align: center;
  padding-bottom: 110%;
}
.shop-card-items .image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #FFE1E1;
  transition: all 0.4s ease-in-out;
}
.shop-card-items .image .badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}
.shop-card-items .image .badges span {
  color: white;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 5px;
  text-transform: uppercase;
  background-color: #FF3636;
}
.shop-card-items .image .social-style-two {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  justify-content: center;
  transform: translateY(-50%);
  margin-top: -20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.shop-card-items .image .social-style-two a {
  width: 44px;
  height: 44px;
  background: white;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  color: #000;
}
.shop-card-items .image .social-style-two a:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
/* Cart: WooCommerce .button + Font Awesome icon — flex-center so icon matches wishlist/compare circles */
.shop-card-items .image .social-style-two a.swp-add-to-cart,
.shop-card-items .image .social-style-two a.button.add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}
.shop-card-items .image .social-style-two a.swp-add-to-cart .fa-cart-shopping,
.shop-card-items .image .social-style-two a.swp-add-to-cart .fa-shopping-cart,
.shop-card-items .image .social-style-two a.button.add_to_cart_button .fa-cart-shopping,
.shop-card-items .image .social-style-two a.button.add_to_cart_button .fa-shopping-cart {
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
}
/* Wishlist (WT Wishlist Pro) + compare (WT Product Compare) — match cart / quick-view circles */
.shop-card-items .image .social-style-two .wtwp-btn,
.shop-card-items .image .social-style-two .wtpc-icon-btn {
  flex-shrink: 0;
}
.shop-card-items .image .social-style-two .wtwp-btn {
  margin-top: 0;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 50%;
  color: #000;
  transform: none;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only:hover {
  background-color: var(--storzen-theme) !important;
  color: var(--storzen-white);
  transform: none;
  box-shadow: none !important;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only svg {
  width: 18px;
  height: 18px;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only svg path {
  stroke: currentColor !important;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only:not(.wtwp-btn--active) svg path {
  fill: none !important;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only.wtwp-btn--active {
  color: var(--storzen-theme);
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only.wtwp-btn--active svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
}
.shop-card-items .image .social-style-two .wtwp-btn--icon-only.wtwp-btn--active:hover {
  color: var(--storzen-white);
}
.shop-card-items .image .social-style-two .wtpc-icon-btn {
  --wtpc-icon-size: 44px;
  border: none !important;
  box-shadow: none !important;
  background: #fff !important;
  color: #000;
  transform: none;
}
.shop-card-items .image .social-style-two .wtpc-icon-btn:hover {
  background-color: var(--storzen-theme) !important;
  color: var(--storzen-white) !important;
  border-color: transparent !important;
  transform: none;
  box-shadow: none !important;
}
.shop-card-items .image .social-style-two .wtpc-icon-btn--active {
  background-color: var(--storzen-theme) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.shop-card-items .image .social-style-two .wtpc-icon-btn--active:hover {
  background-color: var(--storzen-theme) !important;
  color: #fff !important;
}

/* ───────────────────────────────────────────────────────────────────────────
 * Storzen native modules in the card overlay — Quick View, Compare, Wishlist.
 * Normalize all of them to the same circular icon button as the cart:
 *   • 44px white circle, dark icon, no border
 *   • Red (theme) background + white icon on hover / active
 *   • Icon-only (text labels visually hidden)
 * ─────────────────────────────────────────────────────────────────────────── */
.shop-card-items .image .social-style-two .sz-qv-btn--overlay,
.shop-card-items .image .social-style-two .sz-compare-btn--overlay,
.shop-card-items .image .social-style-two .sz-wishlist-btn,
.shop-card-items .image .social-style-two .storzen-qc-btn--loop {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  gap: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  color: #000 !important;
  transform: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.shop-card-items .image .social-style-two .sz-qv-btn--overlay:hover,
.shop-card-items .image .social-style-two .sz-compare-btn--overlay:hover,
.shop-card-items .image .social-style-two .sz-wishlist-btn:hover,
.shop-card-items .image .social-style-two .sz-compare-btn--overlay.is-added,
.shop-card-items .image .social-style-two .sz-wishlist-btn.is-added,
.shop-card-items .image .social-style-two .storzen-qc-btn--loop:hover {
  background-color: var(--storzen-theme) !important;
  color: var(--storzen-white) !important;
  transform: none;
}
/* All module overlay icons share one size — do NOT force display here,
 * wishlist.css controls which heart icon is visible via is-added toggle. */
.shop-card-items .image .social-style-two .sz-qv-btn--overlay i,
.shop-card-items .image .social-style-two .sz-compare-btn--overlay i,
.shop-card-items .image .social-style-two .sz-wishlist-btn i,
.shop-card-items .image .social-style-two .storzen-qc-btn--loop svg {
  font-size: 16px;
  line-height: 1;
  width: 18px;
  height: 18px;
}
/* Hide the text labels — overlay buttons are icon-only */
.shop-card-items .image .social-style-two .sz-qv-btn--overlay .sz-qv-btn__label,
.shop-card-items .image .social-style-two .sz-compare-btn--overlay .sz-compare-btn__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-card-items .image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
.shop-card-items .content {
  padding: 20px 25px;
  border: 1px solid #DDDDDD;
  border-top: none;
}
.shop-card-items .content .category {
  display: inline-block;
}
.shop-card-items .content h6 {
  font-weight: 600;
  font-size: 16px;
}
.shop-card-items .content h6 a:hover {
  color: var(--storzen-theme);
}
.shop-card-items .content .prices {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.shop-card-items .content .prices span {
  color: var(--storzen-header);
}
.shop-card-items:hover .image::before {
  opacity: 1;
}
.shop-card-items:hover .image .social-style-two {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.shop-card-items.hover-style-2 .image {
  overflow: hidden;
}
.shop-card-items.hover-style-2 .image .social-style-two {
  left: initial;
  right: -20px;
  display: grid;
  margin-top: 0;
}
.shop-card-items.hover-style-2:hover .image .social-style-two {
  right: 15px;
}
.shop-card-items.hover-style-3 .image {
  overflow: hidden;
}
.shop-card-items.hover-style-3 .image .social-style-two {
  top: initial;
  transform: initial;
  margin-top: 0;
  bottom: -100px;
}
.shop-card-items.hover-style-3 .image .social-style-two a,
.shop-card-items.hover-style-3 .image .social-style-two .wtwp-btn--icon-only,
.shop-card-items.hover-style-3 .image .social-style-two .wtpc-icon-btn {
  border-radius: 10px !important;
}
.shop-card-items.hover-style-3:hover .image .social-style-two {
  bottom: 15px;
}
.shop-card-items.hover-style-4 .image {
  overflow: hidden;
}
.shop-card-items.hover-style-4 .image .social-style-two {
  left: initial;
  display: grid;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  right: 15px;
}
.shop-card-items.hover-style-4 .image .social-style-two a {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s 0.5s;
  visibility: hidden;
}
.shop-card-items.hover-style-4 .image .social-style-two .icon1 {
  transition-delay: 0s;
}
.shop-card-items.hover-style-4 .image .social-style-two .icon2 {
  transition-delay: 0.18s;
}
.shop-card-items.hover-style-4 .image .social-style-two .icon3 {
  transition-delay: 0.25s;
}
.shop-card-items.hover-style-4 .image img {
  transform: translate(-50%, -50%) scale3d(1.15, 1.15, 1);
  transition: all 0.45s;
}
.shop-card-items.hover-style-4:hover .image .social-style-two {
  bottom: 15px;
}
.shop-card-items.hover-style-4:hover .image img {
  transform: translate(-50%, -50%) scaleX(1);
}
.shop-card-items.hover-style-4:hover .image a {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.bgc-black {
  background-color: #212121 !important;
}

.shop-sidebar .widget {
  padding: 30px;
}
/* Search Widget */
.shop-sidebar .widget-search {
  margin-bottom: 30px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.shop-sidebar .widget-search:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #ff4545;
}
.shop-sidebar .widget-search .widget-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}
.shop-sidebar .widget-search .widget-title::before {
  content: "\f002";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 400;
  margin-right: 10px;
  color: #ff4545;
  font-size: 16px;
}
.shop-sidebar .widget-search .szp-keyword-filter-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.shop-sidebar .widget-search .szp-keyword-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  color: #2c3e50;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}
.shop-sidebar .widget-search .szp-keyword-input:focus {
  border-color: #ff4545;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 69, 69, 0.1);
}
.shop-sidebar .widget-search .szp-keyword-input::placeholder {
  color: #95a5a6;
}
.shop-sidebar .widget-search button[type="submit"] {
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff4545 0%, #e63939 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 69, 69, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shop-sidebar .widget-search button[type="submit"]:hover {
  background: linear-gradient(135deg, #e63939 0%, #cc2f2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 69, 0.4);
}
.shop-sidebar .widget-search button[type="submit"]:active {
  transform: translateY(0);
}
.shop-sidebar .widget-menu {
  margin-bottom: 30px;
  border: 1px solid #DDDDDD;
}
.shop-sidebar .widget-menu .widget-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 28px;
  text-transform: capitalize;
  line-height: 1.2;
}
.shop-sidebar .widget-menu .widget-title::before {
  width: 20px;
  margin-top: 12px;
  margin-right: 10px;
  content: "";
  height: 2px;
  background: var(--storzen-theme);
}
.shop-sidebar .widget-menu .widget-title::after {
  position: absolute;
  width: 12px;
  left: 8px;
  top: 7px;
  background: var(--storzen-theme);
  content: "";
  height: 2px;
}
.shop-sidebar .widget-menu ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
}
.shop-sidebar .widget-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: capitalize;
}
.shop-sidebar .widget-menu ul li a::before {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  content: "\f111";
  margin-right: 10px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
}
.shop-sidebar .widget-menu ul li a span {
  margin-left: 5px;
}
.shop-sidebar .widget-menu ul li:hover {
  border-bottom: 1px solid var(--storzen-theme);
}
.shop-sidebar .widget-menu ul li:hover a::before {
  content: "\f192";
  font-weight: 400;
  color: var(--storzen-theme);
}
.shop-sidebar .widget-menu .price-filter-wrap .ui-widget-content {
  height: 5px;
  border: none;
  cursor: pointer;
  margin-bottom: 35px;
  background: #DDDDDD;
}
.shop-sidebar .widget-color {
  border: 1px solid #DDDDDD;
  margin-bottom: 30px;
}
.shop-sidebar .widget-color .widget-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 28px;
  text-transform: capitalize;
  line-height: 1.2;
}
.shop-sidebar .widget-color .widget-title::before {
  width: 20px;
  margin-top: 12px;
  margin-right: 10px;
  content: "";
  height: 2px;
  background: var(--storzen-theme);
}
.shop-sidebar .widget-color .widget-title::after {
  position: absolute;
  width: 12px;
  left: 8px;
  top: 7px;
  background: var(--storzen-theme);
  content: "";
  height: 2px;
}

.widget-filter {
  border: 1px solid #DDDDDD;
  margin-bottom: 30px;
}
.widget-filter .widget-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 28px;
  text-transform: capitalize;
  line-height: 1.2;
}
.widget-filter .widget-title::before {
  width: 20px;
  margin-top: 12px;
  margin-right: 10px;
  content: "";
  height: 2px;
  background: var(--storzen-theme);
}
.widget-filter .widget-title::after {
  position: absolute;
  width: 12px;
  left: 8px;
  top: 7px;
  background: var(--storzen-theme);
  content: "";
  height: 2px;
}

.widget-products {
  border: 1px solid #DDDDDD;
}
.widget-products .widget-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 28px;
  text-transform: capitalize;
  line-height: 1.2;
}
.widget-products .widget-title::before {
  width: 20px;
  margin-top: 12px;
  margin-right: 10px;
  content: "";
  height: 2px;
  background: var(--storzen-theme);
}
.widget-products .widget-title::after {
  position: absolute;
  width: 12px;
  left: 8px;
  top: 7px;
  background: var(--storzen-theme);
  content: "";
  height: 2px;
}

.widget-color ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-color ul li a span {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lighter-color);
}

.widget-color ul li a span.pink {
  background: #FF9FF3;
}

.widget-color ul li a span.red {
  background: var(--primary-color);
}

.widget-color ul li a span.yellow {
  background: #FECA57;
}

.widget-color ul li a span.green {
  background: #1DD1A1;
}

.widget-color ul li a span.blue {
  background: #0ABDE3;
}

.widget-color ul li a:after {
  content: "\f105";
  margin-left: auto;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
}

.widget-color ul li:not(:last-child) {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E1E1E1;
}

.widget-post ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-post ul > li .image {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 100px;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-post ul > li .image {
    max-width: 80px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .widget-post ul > li .image {
    max-width: 80px;
    margin-right: 15px;
  }
}
.widget-post ul > li .content b {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.widget-post ul > li .content h6 {
  margin-bottom: 0;
  line-height: 1.65;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-post ul > li .content h6 {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 375px) {
  .widget-post ul > li .content h6 {
    font-size: 14px;
    line-height: 1.4;
  }
}
.widget-post ul > li:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E1E1E1;
}

.widget-products ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-products ul > li .image {
  width: 70px;
  height: 70px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  background: #F6F6F6;
}

.widget-products ul > li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E1E1;
}

.widget-products ul li .content h6 {
  font-weight: 600;
  margin-bottom: 5px;
}
.widget-products ul li .content b {
  font-size: 16px;
  font-weight: 500;
  color: #0C0C0C;
}

.price-filter-wrap .btn-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.price-filter-wrap .btn-price button {
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  margin-right: 20px;
  text-transform: uppercase;
  background: var(--storzen-theme);
}

.price-filter-wrap .btn-price input {
  padding: 0;
  width: auto;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--storzen-header);
}

/* jQuery UI range slider: needs full width so handle positions calculate correctly */
.szp-shop-sidebar .price-filter-wrap .price-slider-range.ui-slider-horizontal,
.shop-sidebar .price-filter-wrap .price-slider-range.ui-slider-horizontal {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/*
 * jQuery UI Slider theme is NOT loaded with jquery-ui-slider (WP only ships JS).
 * Without base rules, handles are plain <a>/<span> and look like broken bars.
 */
.szp-shop-sidebar .price-filter-wrap .ui-slider,
.shop-sidebar .price-filter-wrap .ui-slider {
  position: relative;
  text-align: left;
}
.szp-shop-sidebar .price-filter-wrap .ui-slider-horizontal,
.shop-sidebar .price-filter-wrap .ui-slider-horizontal {
  height: 5px;
}
.szp-shop-sidebar .price-filter-wrap .ui-slider-horizontal .ui-slider-range,
.shop-sidebar .price-filter-wrap .ui-slider-horizontal .ui-slider-range {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  border: 0;
  border-radius: 3px;
  background: var(--storzen-theme);
}
.szp-shop-sidebar .price-filter-wrap .ui-slider .ui-slider-handle,
.shop-sidebar .price-filter-wrap .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  top: -5px;
  margin-left: -7.5px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: ew-resize;
  -ms-touch-action: none;
  touch-action: none;
  box-sizing: border-box;
  background: var(--storzen-theme);
  outline: none;
  text-decoration: none;
}
.szp-shop-sidebar .price-filter-wrap .ui-slider .ui-slider-handle:focus-visible,
.shop-sidebar .price-filter-wrap .ui-slider .ui-slider-handle:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

.ui-widget.ui-widget-content {
  height: 5px;
  border: none;
  cursor: pointer;
  margin-bottom: 35px;
  background: #E1E1E1;
}

.ui-widget-header {
  background: var(--storzen-theme);
}

.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider-horizontal .ui-slider-range {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  border: 0;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  top: -5px;
  margin-left: -7.5px;
  padding: 0;
  border: none;
  cursor: ew-resize;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--storzen-theme);
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  -ms-touch-action: none;
  touch-action: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.pagination .page-item .previous {
  height: 44px;
  line-height: 44px;
  background-color: #F6F6F6;
  display: inline-block;
  padding: 0 18px;
  font-size: 14px;
  color: #535353;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
}
.pagination .page-item .previous:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
.pagination .number-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination .number-icon .number,
.pagination .number-icon button.number {
  height: 44px;
  min-width: 44px;
  padding: 0 14px;
  line-height: 44px;
  background-color: #F6F6F6;
  color: #0C0C0C;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination .number-icon .number:hover,
.pagination .number-icon button.number:hover:not(.current):not(:disabled) {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
.pagination .number-icon .number.current,
.pagination .number-icon button.number.current {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  cursor: default;
}
.pagination .number-icon button.number.current:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

.shop-shorter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .shop-shorter {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.shop-shorter .sort-text {
  color: #535353;
}
.shop-shorter .shorter-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .shop-shorter .shorter-right {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.shop-shorter .shorter-right .grid-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-shorter .shorter-right .grid-list li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 2px;
  background-color: #F6F6F6;
}
.shop-shorter .shorter-right .grid-list li a:hover {
  background: #0C0C0C;
  color: #fff;
}
/* Grid / list view toggle (buttons — same look as anchor in theme) */
.shop-shorter .shorter-right .grid-list li button.szp-view-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 2px;
  background-color: #F6F6F6;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.shop-shorter .shorter-right .grid-list li button.szp-view-btn:hover {
  background: var(--storzen-theme);
  color: var(--storzen-white, #fff);
}
.shop-shorter .shorter-right .grid-list li button.szp-view-btn.active {
  background: var(--storzen-theme);
  color: var(--storzen-white, #fff);
}

.szp-shop-sidebar__main.szp-layout-grid .szp-product-loop--list {
  display: none !important;
}
.szp-shop-sidebar__main.szp-layout-list .szp-product-loop--grid {
  display: none !important;
}

.shop-shorter .shorter-right .sort-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.shop-shorter .shorter-right .sort-label {
  font-size: 16px;
  color: #535353;
}
.shop-shorter .shorter-right .custom-select {
  position: relative;
  width: 240px;
  font-size: 15px;
}
.shop-shorter .shorter-right .select-selected {
  padding: 12px 40px 12px 15px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: #fff;
  position: relative;
  color: #535353;
}
.shop-shorter .shorter-right {
  /* Chevron Icon */
}
.shop-shorter .shorter-right .select-selected::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}
.shop-shorter .shorter-right .select-items {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 99;
  color: #535353;
}
.shop-shorter .shorter-right .select-items li {
  padding: 10px 15px;
  cursor: pointer;
}
.shop-shorter .shorter-right .select-items li:hover {
  background: #f5f5f5;
}
.shop-shorter .shorter-right .custom-select.active .select-items {
  display: block;
}

.shop-list-sidebar {
  margin-top: 30px;
  border: 1px solid #E1E1E1;
  padding: 20px;
  max-width: none;
}
@media (min-width: 768px) {
  .shop-list-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.shop-list-sidebar .thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 30%;
  margin-right: 30px;
  padding-bottom: 35%;
  background: #F6F6F6;
  z-index: 1;
  position: relative;
}
@media (max-width: 1199px) {
  .shop-list-sidebar .thumb {
    padding-bottom: 55%;
  }
}
@media (max-width: 767px) {
  .shop-list-sidebar .thumb {
    width: 100%;
    margin-bottom: 20px;
  }
}
.shop-list-sidebar .thumb img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
.shop-list-sidebar .content .ratting {
  margin-bottom: 5px;
  font-size: 12px;
  color: #FFA818;
}
.shop-list-sidebar .content h6 {
  font-size: 18px;
  font-weight: 600;
}
.shop-list-sidebar .content h6 a:hover {
  color: var(--storzen-theme);
}
.shop-list-sidebar .content .prices {
  font-weight: 500;
  margin-top: 5px;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.shop-list-sidebar .content .prices span {
  color: var(--storzen-header);
}
.shop-list-sidebar .content p {
  font-size: 15px;
  color: var(--storzen-header);
}
.shop-list-sidebar .content .cart-btns {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .shop-list-sidebar .content .cart-btns {
    flex-wrap: wrap;
  }
}
.shop-list-sidebar .content .cart-btns .theme-btn {
  font-size: 14px;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff4545 0%, #e63939 100%);
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 69, 69, 0.3);
  transition: all 0.3s ease;
}
.shop-list-sidebar .content .cart-btns .theme-btn i {
  margin-right: 8px;
  font-size: 16px;
}
.shop-list-sidebar .content .cart-btns .theme-btn:hover {
  background: linear-gradient(135deg, #e63939 0%, #cc2f2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 69, 0.4);
}
/* WooCommerce “View cart” after AJAX add — same look as Add to cart (+ basket icon) */
.shop-list-sidebar .content .cart-btns a.added_to_cart.wc-forward::before {
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f291";
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 16px;
}
.shop-list-sidebar .content .cart-btns a.added_to_cart.wc-forward {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  min-height: 44px;
  line-height: 1.25;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, #ff4545 0%, #e63939 100%);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(255, 69, 69, 0.3);
  transition: all 0.3s ease;
}
.shop-list-sidebar .content .cart-btns a.added_to_cart.wc-forward:hover {
  background: linear-gradient(135deg, #e63939 0%, #cc2f2f 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 69, 0.4);
}
.shop-list-sidebar .content .cart-btns .shop-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}
.shop-list-sidebar .content .cart-btns .shop-icon button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #000;
  text-align: center;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  line-height: 1 !important;
  background-color: #ffffff;
  font-size: 16px;
  border-radius: 50% !important;
  cursor: pointer;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  transition: all 0.4s ease-in-out;
}
.shop-list-sidebar .content .cart-btns .shop-icon button:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
.shop-list-sidebar .content .cart-btns .shop-icon a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #000;
  text-align: center;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  line-height: 1 !important;
  background-color: #ffffff;
  font-size: 16px;
  border-radius: 50% !important;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
.shop-list-sidebar .content .cart-btns .shop-icon a:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
.shop-list-sidebar .content .cart-btns .shop-icon a i,
.shop-list-sidebar .content .cart-btns .shop-icon button i {
  margin: 0 !important;
  line-height: 1 !important;
}
/* Wishlist and Compare buttons in list view */
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn,
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  border: none !important;
  flex-shrink: 0 !important;
  transition: all 0.4s ease-in-out !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn:hover,
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only:hover {
  background-color: var(--storzen-theme) !important;
  color: var(--storzen-white) !important;
  transform: none !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn svg,
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only svg {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn svg path,
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only svg path {
  stroke: currentColor !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only:not(.wtwp-btn--active) svg path {
  fill: none !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only.wtwp-btn--active {
  color: var(--storzen-theme) !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only.wtwp-btn--active svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtwp-btn--icon-only.wtwp-btn--active:hover {
  color: var(--storzen-white) !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtpc-icon-btn {
  --wtpc-icon-size: 44px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #fff !important;
  border-radius: 50% !important;
  color: #000 !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s ease-in-out !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtpc-icon-btn:hover {
  background-color: var(--storzen-theme) !important;
  color: var(--storzen-white) !important;
  transform: none !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtpc-icon-btn--active {
  background-color: var(--storzen-theme) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.shop-list-sidebar .content .cart-btns .shop-icon .wtpc-icon-btn--active:hover {
  background-color: var(--storzen-theme) !important;
  color: #fff !important;
}

/* Add to Cart Button Styles - Match grid style */
.shop-list-sidebar .content .cart-btns .button.swp-add-to-cart,
.shop-list-sidebar .content .cart-btns a.button.add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  color: #000;
  background: #ffffff;
  border: none;
  box-shadow: none;
  flex-shrink: 0 !important;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
  line-height: 1 !important;
  box-sizing: border-box;
}

.shop-list-sidebar .content .cart-btns .button.swp-add-to-cart i,
.shop-list-sidebar .content .cart-btns a.button.add_to_cart_button i {
  margin: 0 !important;
  font-size: 16px;
  line-height: 1 !important;
  vertical-align: middle;
}

.shop-list-sidebar .content .cart-btns .button.swp-add-to-cart:hover,
.shop-list-sidebar .content .cart-btns a.button.add_to_cart_button:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

@media (max-width: 575px) {
  .shop-section {
    padding-right: 25px !important;
  }
}

.swiper-dot {
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #E6E8EB;
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--storzen-theme);
  transition: 0.6s;
  position: relative;
}

.swiper-dot2 {
  position: relative;
}
.swiper-dot2 .swiper-pagination-bullet {
  width: 18px;
  height: 8px;
  transition: 0.6s;
  background-color: #E6E8EB;
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.swiper-dot2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--storzen-theme);
  transition: 0.6s;
  position: relative;
  width: 28px;
}

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

.shop-section {
  position: relative;
}
.shop-section .array-button {
  position: absolute;
  top: 40%;
  left: 14%;
  right: 14%;
  transform: translateY(-50%);
  z-index: 9;
}
@media (max-width: 1899px) {
  .shop-section .array-button {
    left: 6%;
    right: 6%;
  }
}
@media (max-width: 1399px) {
  .shop-section .array-button {
    left: 2%;
    right: 2%;
  }
}
@media (max-width: 1199px) {
  .shop-section .array-button {
    display: none;
  }
  /* Keep related-products slider arrows/dots visible (section still uses .shop-section) */
  .szp-related-products-section.shop-section .array-button {
    display: flex;
  }
}

/* Related products (Elementor): nav is inside .wco-container — position to container so arrows align with the swiper row (matches storzen/shop-details.html). */
.szp-related-products-section > .wco-container {
  position: relative;
}
/* Swiper: without loop (small catalogs) slides must keep width/height so .image padding-bottom ratio works */
.szp-related-products-section .szp-related-shop-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.szp-related-products-section .szp-related-shop-slider .swiper-wrapper {
  align-items: stretch;
}
.szp-related-products-section .szp-related-shop-slider .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.szp-related-products-section .szp-related-shop-slider .swiper-slide > .shop-card-items {
  width: 100%;
  max-width: 100%;
}
/* Storzen shop-details: far cart icon; WooCommerce .button can break circle alignment */
.szp-related-products-section .shop-card-items .image .social-style-two a.swp-add-to-cart,
.szp-related-products-section .shop-card-items .image .social-style-two a.button.add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}
.szp-related-products-section .shop-card-items .image .social-style-two a.swp-add-to-cart .fa-cart-shopping,
.szp-related-products-section .shop-card-items .image .social-style-two a.swp-add-to-cart .fa-shopping-cart {
  font-size: 16px;
  line-height: 1;
}
.szp-related-products-section .array-button {
  left: 0;
  right: 0;
  /* Above .shop-card-items (z-index: 99) so prev/next receive clicks; next was under 4th card + hover icons */
  z-index: 100;
}
/* Dots sit below slides; right bullet was under last card / overlap — keep pagination above slides */
.szp-related-products-section .shop-slider > .swiper-dot {
  position: relative;
  z-index: 100;
  margin-top: 1.25rem;
}
.szp-related-products-section .shop-slider > .swiper-dot .swiper-pagination-bullet {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
/* Match both arrows; Swiper adds .swiper-button-disabled — avoid theme/hover mismatch (pink vs white) */
.szp-related-products-section .array-button .array-prev,
.szp-related-products-section .array-button .array-next {
  background-color: var(--storzen-white) !important;
  color: var(--storzen-header) !important;
  border: 1px solid #e1e1e1 !important;
}
.szp-related-products-section .array-button .array-prev:hover:not(.swiper-button-disabled),
.szp-related-products-section .array-button .array-next:hover:not(.swiper-button-disabled) {
  background-color: var(--storzen-theme) !important;
  color: var(--storzen-white) !important;
  border-color: var(--storzen-theme) !important;
}
.szp-related-products-section .array-button .array-prev.swiper-button-disabled,
.szp-related-products-section .array-button .array-next.swiper-button-disabled {
  opacity: 0.45;
  background-color: var(--storzen-white) !important;
  color: var(--storzen-header) !important;
  border-color: #e1e1e1 !important;
}
.array-button .array-prev .szp-slider-nav-icon,
.array-button .array-next .szp-slider-nav-icon {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
}

.shop-section .style-heading {
  margin-bottom: 40px;
  font-size: 45px;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
}
.shop-section .style-heading.text-left {
  text-align: left;
}
.shop-section .style-heading.text-right {
  text-align: right;
}
.shop-section .custom-tabs .tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.shop-section .custom-tabs .tab-buttons.left-align {
  justify-content: start;
}
.shop-section .custom-tabs .tab-buttons.right-align {
  justify-content: end;
}
@media (max-width: 575px) {
  .shop-section .custom-tabs .tab-buttons {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.shop-section .custom-tabs .tab-buttons .tab-btn {
  cursor: pointer;
  color: var(--storzen-header);
  padding: 14px 24px;
  border-radius: 30px;
  border: 1px solid #E1E1E1;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
}
.shop-section .custom-tabs .tab-buttons .tab-btn.active {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  border-color: var(--storzen-theme);
}
.shop-section .custom-tabs {
  width: 100%;
}
.shop-section .tab-content .tab {
  display: none;
}
.shop-section .tab-content .tab.active {
  display: block;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--storzen-theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--storzen-theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.array-button .array-prev, .array-button .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: var(--storzen-header);
  background-color: var(--storzen-white);
  cursor: pointer;
  border: 1px solid #E1E1E1;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  border-color: var(--storzen-theme);
}

.header-container {
  max-width: 1616px;
  margin: 0 auto;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.footer-bg {
  background-color: #162726;
}

.footer-bg-2 {
  background-color: #F2F4F7;
}

.ml-40 {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .ml-40 {
    margin-left: 0;
  }
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--storzen-bg);
  border: none;
  color: var(--storzen-header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--storzen-header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  border: none;
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--storzen-white);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--storzen-border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--storzen-white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--storzen-white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--storzen-header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--storzen-border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--storzen-theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--storzen-theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
.section-title h6 {
  color: var(--storzen-theme);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 15px;
  color: var(--storzen-theme-2);
}
@media (max-width: 1199px) {
  .section-title h6 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section-title h6 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .section-title h6 {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.section-title-area p {
  max-width: 532px;
}
.section-title-area .nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .section-title-area .nav {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.section-title-area .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #6C706F;
}
.section-title-area .nav .nav-item .nav-link.active {
  color: var(--storzen-header);
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--storzen-bg);
}

.section-bg-2 {
  background-color: var(--storzen-bg-2);
}

.theme-bg {
  background-color: var(--storzen-theme);
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}


.added .fa-cart-shopping:before,
.added .fa-shopping-cart:before {
  content: "\f00c";
}

.add_to_cart_button.swp-readmore-arrow-btn.added, .added_to_cart.wc-forward{
    display: none;
}

/* Shop With Sidebar — filter buttons (AJAX, theme accent, no heavy solid block) */
.szp-shop-sidebar .szp-filter-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  color: var(--storzen-header, #0c0c0c);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
/* Hover: keep text fully readable; subtle theme tint (not muddy gray) */
.szp-shop-sidebar .szp-filter-link:hover:not(.is-active) {
  color: var(--storzen-header, #0c0c0c);
  opacity: 1;
  background-color: color-mix(in srgb, var(--storzen-theme) 9%, #ffffff);
  border-color: color-mix(in srgb, var(--storzen-theme) 22%, #e4e4e4);
  box-shadow: none;
}
@supports not (background-color: color-mix(in srgb, var(--storzen-theme) 9%, #ffffff)) {
  .szp-shop-sidebar .szp-filter-link:hover:not(.is-active) {
    background-color: #f7f7f7;
    border-color: rgba(0, 0, 0, 0.1);
  }
}
.szp-shop-sidebar .szp-filter-list--color .szp-filter-link:hover:not(.is-active) {
  color: var(--storzen-header, #0c0c0c);
}
.szp-shop-sidebar .szp-filter-link.is-active:hover {
  color: var(--storzen-theme);
}
.szp-shop-sidebar .szp-filter-link.is-active {
  font-weight: 600;
  color: var(--storzen-theme);
  border-color: color-mix(in srgb, var(--storzen-theme) 35%, #e8e8e8);
  background-color: color-mix(in srgb, var(--storzen-theme) 10%, #ffffff);
  box-shadow: inset 3px 0 0 var(--storzen-theme);
}
@supports not (border-color: color-mix(in srgb, var(--storzen-theme) 35%, #e8e8e8)) {
  .szp-shop-sidebar .szp-filter-link.is-active {
    border-color: rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.04);
    box-shadow: inset 3px 0 0 var(--storzen-theme);
  }
}

.szp-shop-sidebar .szp-shop-sidebar__main.szp-is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.szp-brands-empty {
  font-size: 0.9em;
  margin: 0;
  line-height: 1.45;
}


/* ============================================================
   Migrated from main-old.css (unique styles not in main-new.css)
   ============================================================ */

/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --storzen-body: #0F1F1F;
  --storzen-black: #000;
  --storzen-white: #fff;
  --storzen-theme: #FF3636;
  --storzen-theme-2: #F4B400;
  --storzen-header: #0C0C0C;
  --storzen-text: #AAAAAA;
  --storzen-border: #49515b4d;
  --storzen-bg: #F9F8F4;
  --storzen-bg-2: #003B49;
  --storzen-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.shop-card-items.hover-style-3 .image .social-style-two a {
  border-radius: 10px !important;
}

.widget-color ul li a span {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border-radius: 50%;
  background: #F6F6F6;
}

.widget-color ul li a span.red {
  background: #FF3636;
}

.ui-slider .ui-slider-handle {
  width: 15px;
  height: 15px;
  top: -5px;
  border: none;
  cursor: e-resize;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--storzen-theme);
}

.pagination .number-icon .number {
  height: 44px;
  line-height: 44px;
  width: 44px;
  background-color: #F6F6F6;
  color: #0C0C0C;
  text-align: center;
  border-radius: 50%;
}

.pagination .number-icon .number:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

.cart-table table {
  width: 100%;
  border: 1px solid #DDDDDD;
}

.title {
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .cart-table table thead {
    display: none;
  }
}

.cart-table table tr {
  border-bottom: 1px solid #DDDDDD;
}

.cart-table table tr th {
  font-weight: 700;
  padding: 20px 30px;
  color: #0C0C0C;
  font-family: "Montserrat", sans-serif;
}

.cart-table table tr th:last-child {
  text-align: right;
}

.cart-table table tr td {
  padding: 30px;
}

.cart-table table tr td:last-child {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .cart-table table tr td:last-child {
    padding-top: 0;
    text-align: center;
  }
}

.cart-table table tr td:last-child .price {
  font-size: 18px;
  font-weight: 500;
  margin-right: 5px;
  color: #0C0C0C;
}

.cart-table table tr td:last-child button {
  color: #888888;
  background: transparent;
}

.cart-table table tr td .image {
  padding: 5px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F6F6F6;
}

.cart-table table tr td b {
  font-weight: 500;
  color: #0C0C0C;
}

.cart-table table tr td .quantity-input {
  margin: auto;
}

@media only screen and (min-width: 768px) {
  .cart-table table tr td .quantity-input {
    padding: 10px;
    max-width: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cart-table table tr td .quantity-input input {
    padding: 10px 5px;
  }
}

.cart-table table tbody tr:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 767px) {
  .cart-table table tbody tr {
    display: -ms-grid;
    display: grid;
  }
}

@media only screen and (min-width: 768px) {
  .cart-table table tbody tr td:nth-child(1) {
    padding-right: 0;
  }
  .cart-table table tbody tr td:nth-child(3) {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .cart-table table tbody tr td:nth-child(2) {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }
}

.update-shopping .theme-btn {
  border-radius: 0;
}

.update-shopping .theme-btn:not(:last-child) {
  margin-right: 7px;
}

.cart-total,
.order-summery {
  padding: 30px;
  border: 1px solid #DDDDDD;
}

.cart-total .title,
.order-summery .title {
  margin-bottom: 35px;
  padding-bottom: 12px;
  text-transform: capitalize;
  border-bottom: 1px solid #DDDDDD;
}

.cart-total table,
.order-summery table {
  width: 100%;
  margin-bottom: 30px;
}

.cart-total table tr td,
.order-summery table tr td {
  font-size: 16px;
  padding-bottom: 22px;
}

.cart-total table tr td:first-child,
.order-summery table tr td:first-child {
  font-weight: 500;
  color: #0C0C0C;
}

.cart-total table tr td:last-child,
.order-summery table tr td:last-child {
  text-align: right;
}

.cart-total table tr td strong,
.order-summery table tr td strong {
  font-size: 18px;
  font-weight: 500;
}

.cart-total table tr td .price,
.order-summery table tr td .price {
  font-size: 20px;
  font-weight: 500;
  color: #FF3636;
}

.cart-total table tr:last-child,
.order-summery table tr:last-child {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.cart-total table tr:last-child td,
.order-summery table tr:last-child td {
  padding-top: 25px;
  padding-bottom: 8px;
}

.cart-total .form-group input,
.order-summery .form-group input {
  margin-right: 5px;
}

.cart-total .form-group label,
.order-summery .form-group label {
  font-weight: 400;
}

.cart-total .theme-btn,
.order-summery .theme-btn {
  border-radius: 3px;
}

.cart-note .form-group,
.order-summery .form-group,
.billing-address .form-group,
.shipping-calculate .form-group {
  margin-bottom: 20px;
}

.cart-note .form-group:after,
.order-summery .form-group:after,
.billing-address .form-group:after,
.shipping-calculate .form-group:after {
  display: block;
  clear: both;
  content: "";
}

.cart-note .form-group input,
.cart-note .form-group textarea,
.cart-note .form-group .nice-select,
.order-summery .form-group input,
.order-summery .form-group textarea,
.order-summery .form-group .nice-select,
.billing-address .form-group input,
.billing-address .form-group textarea,
.billing-address .form-group .nice-select,
.shipping-calculate .form-group input,
.shipping-calculate .form-group textarea,
.shipping-calculate .form-group .nice-select {
  font-size: 15px;
  border-radius: 0;
  line-height: 1.6;
  padding: 15px 20px;
}

.cart-note .form-group .nice-select:after,
.order-summery .form-group .nice-select:after,
.billing-address .form-group .nice-select:after,
.shipping-calculate .form-group .nice-select:after {
  border-width: 1px;
}

.cart-note .form-group.coupon,
.order-summery .form-group.coupon,
.billing-address .form-group.coupon,
.shipping-calculate .form-group.coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-note .form-group.coupon input,
.order-summery .form-group.coupon input,
.billing-address .form-group.coupon input,
.shipping-calculate .form-group.coupon input {
  margin-right: 10px;
}

.cart-note .form-group.coupon .theme-btn,
.order-summery .form-group.coupon .theme-btn,
.billing-address .form-group.coupon .theme-btn,
.shipping-calculate .form-group.coupon .theme-btn {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cart-note label,
.order-summery label,
.billing-address label,
.shipping-calculate label {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.cart-note .title,
.order-summery .title,
.billing-address .title,
.shipping-calculate .title {
  font-weight: 700;
  margin-bottom: 15px;
}

@media only screen and (min-width: 376px) {
  .cart-note .title,
  .order-summery .title,
  .billing-address .title,
  .shipping-calculate .title {
    font-size: 18px;
  }
}

.cart-note .theme-btn,
.order-summery .theme-btn,
.billing-address .theme-btn,
.shipping-calculate .theme-btn {
  border-radius: 0;
}

.billing-address .click-for-login {
  font-weight: 500;
  padding: 22px 30px;
  background: #F6F6F6;
}

.billing-address .click-for-login i {
  margin-right: 5px;
}

.billing-address .click-for-login a {
  color: #FF3636;
}

@media only screen and (max-width: 375px) {
  .order-summery {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.order-summery table tr:last-child td {
  padding-bottom: 25px;
}

.order-summery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DDDDDD;
}

.order-summery-item .image {
  width: 100px;
  height: 100px;
  padding: 15px;
  margin-right: 25px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F6F6F6;
}

@media only screen and (max-width: 375px) {
  .order-summery-item .image {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
}

.order-summery-item h6 {
  margin-right: auto;
  margin-bottom: 15px;
}

.order-summery-item .price {
  margin-left: 15px;
  margin-bottom: 15px;
}

.preview-images-wrap {
  position: relative;
  background: #F6F6F6;
}

.preview-images-wrap .preview-image-item .image {
  position: relative;
  padding-bottom: 125%;
}

.preview-images-wrap .preview-image-item .image img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}

.preview-images-wrap .badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}

.preview-images-wrap .badges span {
  color: white;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.preview-images-wrap:not(.szp-preview-images-wrap) .add-wishlist {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  font-size: 20px;
  width: 50px;
  height: 50px;
  background: white;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
}

.preview-images-wrap:not(.szp-preview-images-wrap) .add-wishlist:hover {
  color: white;
  background: #FF3636;
}

/* WordPress single product preview wishlist - simple absolute positioning */
.szp-preview-images-wrap .add-wishlist,
.szp-preview-images-wrap .szp-add-wishlist {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  line-height: normal;
}

/* Style the wishlist button (from plugin or fallback) */
.szp-preview-images-wrap .szp-add-wishlist a,
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn,
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn--icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
}

/* Hover state */
.szp-preview-images-wrap .szp-add-wishlist a:hover,
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn:hover,
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn--icon-only:hover {
  background: #FF3636;
  color: #fff;
}

/* Active/added state */
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn--active,
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn--icon-only.wtwp-btn--active {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}

/* Style SVG icons from wishlist plugin to match HTML heart outline */
.szp-preview-images-wrap .szp-add-wishlist svg {
  width: 18px;
  height: 18px;
}

.szp-preview-images-wrap .szp-add-wishlist svg path {
  fill: none !important;
  stroke: #111 !important;
  stroke-width: 1.8 !important;
}

.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn--active svg path,
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn--icon-only.wtwp-btn--active svg path {
  fill: none !important;
  stroke: #111 !important;
}

/* Keep loading spinner behavior aligned with other wishlist buttons */
.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn.wtwp-loading {
  opacity: 1;
}

.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn.wtwp-loading svg {
  opacity: 0;
}

.szp-preview-images-wrap .szp-add-wishlist .wtwp-btn.wtwp-loading::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: 0;
  transform: translate(-50%, -50%);
  border-width: 2px;
  border-style: solid;
  border-color: #111;
  border-top-color: transparent;
  border-radius: 50%;
  animation: wtwp-spin .6s linear infinite;
}

@media only screen and (min-width: 1200px) {
  .preview-images-wrap.style-two {
    margin-right: -65px;
  }
}

.preview-images {
  background: #F6F6F6;
}

.preview-images .preview-image-item .image {
  position: relative;
  padding-bottom: 100%;
}

.preview-images .preview-image-item .image img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Thumb Images */
.thumb-images {
  margin-left: -10px;
  margin-right: -10px;
}

.thumb-images .thumb-image-item {
  margin-left: 10px;
  margin-right: 10px;
}

.thumb-images .thumb-image-item .image {
  position: relative;
  padding-bottom: 100%;
  background: #F6F6F6;
}

.thumb-images .thumb-image-item .image img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.thumb-images .slick-arrow {
  position: absolute;
  left: 25px;
  top: 50%;
  z-index: 2;
  font-size: 18px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: transparent;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.thumb-images .slick-arrow.product-thumb-next {
  left: auto;
  right: 25px;
}

.thumb-images .slick-arrow:focus, .thumb-images .slick-arrow:hover {
  color: #FF3636;
}

/* Thumb Images Two */
.thumb-images-two {
  height: calc(100% - 10px);
}

@media only screen and (min-width: 1200px) {
  .thumb-images-two {
    margin-left: 65px;
  }
}

@media only screen and (max-width: 767px) {
  .thumb-images-two {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.thumb-images-two .thumb-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  margin-bottom: 20px;
  background: #F6F6F6;
}

@media only screen and (max-width: 767px) {
  .thumb-images-two .thumb-item {
    padding-bottom: 25%;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.thumb-images-two .thumb-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 60%;
  max-height: 60%;
}

/* Product Details content */
.product-details-content .in-stock {
  color: white;
  font-size: 14px;
  padding: 0 10px;
  font-weight: 500;
  border-radius: 3px;
  background: #0CC281;
  margin-bottom: 10px;
  display: inline-block;
}

.product-details-content b {
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  color: #0C0C0C;
}

.product-details-content h5 {
  font-size: 18px;
  margin-bottom: 13px;
}

.product-details-content .price-vat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-details-content .price-vat .price {
  font-size: 20px;
  font-weight: 700;
  margin-right: 10px;
  color: #FF3636;
  font-family: "Montserrat", sans-serif;
}

.product-details-content .price-vat .vat-text {
  font-size: 14px;
}

.product-details-content .price-vat del {
  color: #AAAAAA;
  font-size: 20px;
}

.product-details-content .radio-item {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px 0;
}

.product-details-content .radio-item input {
  position: absolute;
  z-index: -1;
}

.product-details-content .radio-item input:checked ~ label {
  border-color: #FF3636;
}

.product-details-content .radio-item label {
  padding: 10px;
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #DDDDDD;
}

.product-details-content .custom-products-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-details-content .custom-products-color .radio-item label {
  width: 70px;
  height: 74px;
}

.product-details-content .custom-products-size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-details-content .custom-products-size .radio-item label {
  width: 50px;
  height: 50px;
}

.product-details-content .realtime span {
  color: white;
  padding: 3px 8px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 3px;
  background: #FF3636;
}

.product-details-content .theme-btn {
  border-radius: 3px;
}

.product-details-content .quantity-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}

.product-details-content .quantity-btn .quantity-input {
  border-radius: 3px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.product-details-content .quantity-btn .theme-btn {
  width: 100%;
  margin-bottom: 10px;
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
}

/* WooCommerce add-to-cart in Elementor: same row as Storzen quantity-input + red CTA */
/* WooCommerce session notices (success/error) inside Elementor Add to Cart widget */
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper {
  margin-bottom: 18px;
  width: 100%;
}

/*
 * Single-product success notice: global rules use red bar + “View cart” .button, which often
 * inherits dark text on red. Use a light card + theme accent so copy and CTA match ADD TO CART.
 */
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-info,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 18px 14px 48px;
  margin-bottom: 0;
  background-color: var(--storzen-white);
  color: var(--storzen-header);
  border: 1px solid rgba(73, 81, 91, 0.25);
  border-left: 4px solid var(--storzen-theme);
  border-radius: 6px;
  -webkit-box-shadow: var(--storzen-box-shadow);
  box-shadow: var(--storzen-box-shadow);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message:before,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-info:before,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-error:before {
  color: var(--storzen-theme);
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message a:not(.button),
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-info a:not(.button) {
  color: var(--storzen-theme);
  text-decoration: underline;
  font-weight: 600;
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message a:not(.button):hover,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-info a:not(.button):hover {
  color: var(--storzen-header);
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message a.button,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message a.wc-forward,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-info a.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  padding: 10px 22px;
  min-height: 44px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--storzen-theme) !important;
  background: var(--storzen-theme) !important;
  color: var(--storzen-white) !important;
  border: 1px solid var(--storzen-theme) !important;
  border-radius: 3px;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  -o-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message a.button:hover,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover,
.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-info a.button:hover {
  background-color: #000000 !important;
  background: #000000 !important;
  border-color: #000000 !important;
  color: var(--storzen-white) !important;
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-error {
  border-left-color: #b32d2e;
}

.product-details-content .szp-product-add-to-cart > .woocommerce-notices-wrapper .woocommerce-error:before {
  color: #b32d2e;
}

.product-details-content .szp-wc-add-to-cart .szp-atc-qty-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-details-content .szp-wc-add-to-cart .quantity-btn.szp-wc-atc-row {
  display: block;
  width: 100%;
  padding-bottom: 0;
}

.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 0 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media only screen and (max-width: 575px) {
  .product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/* Wider than global .quantity-input max-width:140px — number inputs + spinners overflowed and sat under the CTA */
.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart .quantity.quantity-input {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 10px;
  max-width: 188px;
  min-width: 148px;
  width: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  float: none;
  /* One outer frame (Storzen); height matches Add to cart */
  min-height: 52px;
  padding: 0 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
}

.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart .quantity.quantity-input .qty {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  width: 3rem;
  max-width: 4.5rem;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  outline: none !important;
  padding: 4px 8px !important;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--storzen-text, #111);
}

.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart .quantity.quantity-input .quantity-down,
.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart .quantity.quantity-input .quantity-up {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  color: var(--storzen-text, #111111) !important;
  font-size: 22px;
  line-height: 1;
  padding: 0 2px;
  min-width: 1.25rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart .quantity.quantity-input .quantity-down:focus-visible,
.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row form.cart .quantity.quantity-input .quantity-up:focus-visible {
  outline: 2px solid #cccccc;
  outline-offset: 2px;
}

/* Match Storzen: no browser spinners on type=number */
.product-details-content .szp-wc-add-to-cart input.qty::-webkit-outer-spin-button,
.product-details-content .szp-wc-add-to-cart input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details-content .szp-wc-add-to-cart input.qty[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row .single_add_to_cart_button.button.alt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 8rem;
  width: auto;
  margin-bottom: 10px;
  /* Do not stack above the quantity box (was overlapping the + control) */
  z-index: 0;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 3px;
  text-align: center;
  /* Same visual height as .quantity-input (52px) */
  min-height: 52px;
  padding: 0 28px;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
  border: 1px solid #FF3636;
  line-height: 1.2;
}

.product-details-content .szp-wc-add-to-cart .szp-wc-atc-row .single_add_to_cart_button.button.alt:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

/* WooCommerce / theme form controls often add borders (incl. accent); reinforce Storzen single-frame look */
.woocommerce .product-details-content .szp-wc-add-to-cart .quantity.quantity-input input.input-text.qty {
  border: none !important;
  box-shadow: none !important;
}

.woocommerce .product-details-content .szp-wc-add-to-cart .single_add_to_cart_button.button.alt {
  min-height: 52px;
  padding-top: 0;
  padding-bottom: 0;
}

.product-details-content .quantity-btn .theme-btn:hover {
  background-color: #000;
}

.buy-now {
  width: 100%;
  margin-bottom: 10px;
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #000;
}

.buy-now:hover {
  background: #FF3636;
}

.product-details-content .quantity-btn.style-two {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-details-content .quantity-btn.style-two .quantity-input {
  max-width: 120px;
}

.product-details-content .quantity-btn.style-two .theme-btn {
  width: auto;
  margin-right: 10px;
  width: 100%;
  margin-bottom: 10px;
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
}

.product-details-content .quantity-btn.style-two .theme-btn:hover {
  background-color: #000;
}

.product-details-content .quantity-btn.style-two .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-details-content .quantity-btn.style-two .btns button {
  width: 54px;
  height: 54px;
  font-size: 18px;
  line-height: 54px;
  border-radius: 3px;
  text-align: center;
  background: #F6F6F6;
}

.product-details-content .quantity-btn.style-two .btns button:not(:last-child) {
  margin-right: 10px;
}

.product-details-content .compare-shipping-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-details-content .compare-shipping-question li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-details-content .compare-shipping-question li:last-child {
  margin-left: auto;
}

.product-details-content .compare-shipping-question li i {
  margin-right: 5px;
  color: #FF3636;
}

.product-details-content .sku-category-tags li {
  margin-bottom: 10px;
}

.product-details-content .sku-category-tags li b {
  margin-bottom: 0;
}

.product-details-content .sku-category-tags li a:not(:last-child):after {
  content: ",";
}

.product-details-content .sku-category-tags.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-details-content .sku-category-tags.inline li {
  margin-right: 10px;
}

.product-details-content .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px -5px 0;
}

.product-details-content .social-share a {
  color: white;
  padding: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.44;
  border-radius: 3px;
  margin: 0 5px 5px 0;
  background: #FF3636;
}

.product-details-content .social-share a.facebook {
  background: #3B5998;
}

.product-details-content .social-share a.twitter {
  background: #139AF0;
}

.product-details-content .social-share a.instagram {
  background: #E70C88;
}

.product-details-content .social-share a.youtube {
  background: #FF0000;
}

.quantity-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 140px;
  padding: 10px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #DDDDDD;
}

.quantity-input input {
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 15px;
  text-align: center;
}

.quantity-input button {
  font-size: 25px;
  background: transparent;
}

/* Product Preview Three */
@media only screen and (min-width: 576px) {
  .thumbnail-and-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 576px) {
  .thumbnail-and-preview .thumb-images-three {
    width: 20%;
  }
}

@media only screen and (max-width: 575px) {
  .thumbnail-and-preview .thumb-images-three {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-right: -10px;
  }
}

.thumbnail-and-preview .thumb-images-three .thumb-item {
  height: 110px;
  padding: 10px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #F6F6F6;
}

@media only screen and (max-width: 575px) {
  .thumbnail-and-preview .thumb-images-three .thumb-item {
    height: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}

@media only screen and (min-width: 576px) {
  .thumbnail-and-preview .preview-images-wrap.style-three {
    width: calc(100% - 110px);
  }
}

.thumbnail-and-preview .preview-images-wrap.style-three .preview-image-item .image {
  padding-bottom: 130%;
}

/* Product Details Info */
.product-details-info .info-item.style-two {
  min-width: auto;
  padding: 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-bottom: 20px;
}

.product-details-info .info-item.style-two p {
  font-size: 15px;
  color: #535353;
  font-weight: 400;
  margin-top: 10px;
}

@media only screen and (max-width: 375px) {
  .product-details-info .info-item.style-two {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.product-details-info .info-item.style-two .icon {
  font-size: 35px;
  margin-top: 5px;
  margin-right: 15px;
  color: #FF3636;
}

/* Product Details Info Two */
.product-details-info-two {
  padding: 30px;
  background: #F6F6F6;
}

.product-details-info-two .info-item {
  min-width: auto;
  margin-bottom: 0;
}

.product-details-info-two .info-item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E3E3E3;
}

.product-details-info-two .info-item .content h6 {
  text-transform: capitalize;
}

.product-details-info-two .info-item .content p {
  font-size: 15px;
}

.product-details-info-two .info-item .icon {
  font-size: 35px;
  margin-top: 5px;
  margin-right: 15px;
  color: #FF3636;
}

/* Product Description Tab */
.product-description-tab {
  border: 1px solid #DDDDDD;
}

.product-description-tab .nav {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: -1px;
}

.product-description-tab .nav .nav-link {
  font-weight: 600;
  padding: 17px 33px;
  background: transparent;
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

@media only screen and (max-width: 767px) {
  .product-description-tab .nav .nav-link {
    padding: 10px 20px;
  }
}

.product-description-tab .nav .nav-link.active {
  color: white;
  background: #FF3636;
  border-color: #FF3636;
}

.product-description-tab .tab-content {
  padding: 30px;
}

@media only screen and (max-width: 575px) {
  .product-description-tab .tab-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.product-description-tab .tab-content .tab-pane p:not(:last-child) {
  margin-bottom: 20px;
}

.product-description-tab .tab-content .tab-pane p:last-child {
  margin-bottom: 0;
}

/* Product Description Tab Two */
.product-des-two-tab .tab-content p, .product-des-two-tab .tab-content h1, .product-des-two-tab .tab-content h2, .product-des-two-tab .tab-content h3, .product-des-two-tab .tab-content h4, .product-des-two-tab .tab-content h5, .product-des-two-tab .tab-content h6 {
  margin-bottom: 20px;
}

/* Product Details Bottom */
.product-detail-bottom .content h4 {
  margin-bottom: 25px;
}

.product-detail-bottom .content p:not(:last-child) {
  margin-bottom: 25px;
}

/* Related Product Slider */
.related-product-slider {
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 575px) {
  .related-product-slider {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.related-product-slider .product-item {
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (max-width: 575px) {
  .related-product-slider .product-item {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Related Product Two Slider */
@media only screen and (max-width: 575px) {
  .related-product-two-slider {
    max-width: 350px;
  }
}

.related-product-two-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.related-product-two-slider .slick-list {
  padding-right: 2px;
  margin-right: -2px;
  padding-bottom: 1px;
}

.related-product-two-slider .product-item-two {
  margin: 0 -1px -1px 0;
  height: auto;
  max-width: none;
}

.recommended-item-area .product-item-two {
  margin: 0 -1px -1px 0;
  height: calc(100% + 1px);
}

input, select, textarea, .nice-select, .form-control {
  width: 100%;
}

.quantity-input input {
  color: #0C0C0C;
}

table {
  /* caption-side:bottom; */
  border-collapse: collapse;
}

.product-details-info .info-item {
  background-color: #F6F6F6;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody, td, tfoot, th, thead, tr {
  /* border-color:inherit; */
  /* border-style:solid; */
  /* border-width:0; */
}

/*======= Input Styles =======*/
input,
select,
textarea,
.nice-select,
.form-control {
  width: 100%;
  height: auto;
  border-radius: 5px;
  padding: 18px 30px;
  /* background-color: #fff; */
  border: 1px solid #DDDDDD;
}

.nice-select {
  font-size: 18px;
  line-height: 1.3;
}

.nice-select:after {
  height: 8px;
  width: 8px;
  right: 25px;
  border-color: var(--heading-color);
}

.nice-select .list {
  width: 100%;
  border-radius: 0;
}

textarea {
  display: inherit;
  padding-top: 20px;
}

label {
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--base-color);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

input:focus,
button:focus,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #cfdbf1;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=checkbox], input[type=radio] {
  height: auto;
  width: auto;
}

/* For Scroll Animation */
html {
  scroll-behavior: unset !important;
}

.mt-30 {
  margin-top: 30px;
}

.cart-total .theme-btn {
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
  text-align: center;
  width: 100%;
  display: inline-block;
  padding: 12px 35px;
  position: relative;
  text-transform: uppercase;
  background: #0C0C0C;
}

.cart-total .theme-btn:hover {
  background-color: #FF3636;
}

.cart-total .title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 20px;
}

.cart-total .form-group input, .order-summery .form-group input {
  position: relative;
  top: -3px;
}

.cart-total img {
  width: 100%;
}

.shipping-calculate .nice-select {
  border: solid 1px #e8e8e8;
}

.shipping-calculate .theme-btn {
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
  text-align: center;
  padding: 18px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  text-transform: uppercase;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
  width: 100%;
}

.shipping-calculate .theme-btn:hover {
  background-color: #000;
}

.cart-note label, .order-summery label, .billing-address label, .shipping-calculate label {
  margin-bottom: 10px;
  text-transform: capitalize;
  display: inline-block;
  color: #000;
}

.form-group .postal-code {
  border: solid 1px #e8e8e8;
}

.mt-45 {
  margin-top: 45px;
}

.cart-note textarea {
  border: solid 1px #e8e8e8;
}

.cart-note .coupon input {
  border: solid 1px #e8e8e8;
}

.cart-note .coupon .theme-btn {
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
}

.cart-note .coupon .theme-btn:hover {
  background-color: #000;
}

/*******************************************************/
/************** ## Padding Margin Spacing *************/
/*******************************************************/
/* Padding Around */
.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.p-55 {
  padding: 55px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

.p-105 {
  padding: 105px;
}

.p-110 {
  padding: 110px;
}

.p-115 {
  padding: 115px;
}

.p-120 {
  padding: 120px;
}

.p-125 {
  padding: 125px;
}

.p-130 {
  padding: 130px;
}

.p-135 {
  padding: 135px;
}

.p-140 {
  padding: 140px;
}

.p-145 {
  padding: 145px;
}

.p-150 {
  padding: 150px;
}

.p-155 {
  padding: 155px;
}

.p-160 {
  padding: 160px;
}

.p-165 {
  padding: 165px;
}

.p-170 {
  padding: 170px;
}

.p-175 {
  padding: 175px;
}

.p-180 {
  padding: 180px;
}

.p-185 {
  padding: 185px;
}

.p-190 {
  padding: 190px;
}

.p-195 {
  padding: 195px;
}

.p-200 {
  padding: 200px;
}

.p-205 {
  padding: 205px;
}

.p-210 {
  padding: 210px;
}

.p-215 {
  padding: 215px;
}

.p-220 {
  padding: 220px;
}

.p-225 {
  padding: 225px;
}

.p-230 {
  padding: 230px;
}

.p-235 {
  padding: 235px;
}

.p-240 {
  padding: 240px;
}

.p-245 {
  padding: 245px;
}

.p-250 {
  padding: 250px;
}

.pt-10,
.py-10 {
  padding-top: 10px;
}

.pt-15,
.py-15 {
  padding-top: 15px;
}

.pt-20,
.py-20 {
  padding-top: 20px;
}

.pt-25,
.py-25 {
  padding-top: 25px;
}

.pt-30,
.py-30 {
  padding-top: 30px;
}

.pt-35,
.py-35 {
  padding-top: 35px;
}

.pt-40,
.py-40 {
  padding-top: 40px;
}

.pt-45,
.py-45 {
  padding-top: 45px;
}

.pt-50,
.py-50 {
  padding-top: 50px;
}

.pt-55,
.py-55 {
  padding-top: 55px;
}

.pt-60,
.py-60 {
  padding-top: 60px;
}

.pt-65,
.py-65 {
  padding-top: 65px;
}

.pt-70,
.py-70 {
  padding-top: 70px;
}

.pt-75,
.py-75 {
  padding-top: 75px;
}

.pt-80,
.py-80 {
  padding-top: 80px;
}

.pt-85,
.py-85 {
  padding-top: 85px;
}

.pt-90,
.py-90 {
  padding-top: 90px;
}

.pt-95,
.py-95 {
  padding-top: 95px;
}

.pt-100,
.py-100 {
  padding-top: 100px;
}

.pt-105,
.py-105 {
  padding-top: 105px;
}

.pt-110,
.py-110 {
  padding-top: 110px;
}

.pt-115,
.py-115 {
  padding-top: 115px;
}

.pt-120,
.py-120 {
  padding-top: 120px;
}

.pt-125,
.py-125 {
  padding-top: 125px;
}

.pt-130,
.py-130 {
  padding-top: 130px;
}

.pt-135,
.py-135 {
  padding-top: 135px;
}

.pt-140,
.py-140 {
  padding-top: 140px;
}

.pt-145,
.py-145 {
  padding-top: 145px;
}

.pt-150,
.py-150 {
  padding-top: 150px;
}

.pt-155,
.py-155 {
  padding-top: 155px;
}

.pt-160,
.py-160 {
  padding-top: 160px;
}

.pt-165,
.py-165 {
  padding-top: 165px;
}

.pt-170,
.py-170 {
  padding-top: 170px;
}

.pt-175,
.py-175 {
  padding-top: 175px;
}

.pt-180,
.py-180 {
  padding-top: 180px;
}

.pt-185,
.py-185 {
  padding-top: 185px;
}

.pt-190,
.py-190 {
  padding-top: 190px;
}

.pt-195,
.py-195 {
  padding-top: 195px;
}

.pt-200,
.py-200 {
  padding-top: 200px;
}

.pt-205,
.py-205 {
  padding-top: 205px;
}

.pt-210,
.py-210 {
  padding-top: 210px;
}

.pt-215,
.py-215 {
  padding-top: 215px;
}

.pt-220,
.py-220 {
  padding-top: 220px;
}

.pt-225,
.py-225 {
  padding-top: 225px;
}

.pt-230,
.py-230 {
  padding-top: 230px;
}

.pt-235,
.py-235 {
  padding-top: 235px;
}

.pt-240,
.py-240 {
  padding-top: 240px;
}

.pt-245,
.py-245 {
  padding-top: 245px;
}

.pt-250,
.py-250 {
  padding-top: 250px;
}

/* Padding Bottom */
.pb-5,
.py-5 {
  padding-bottom: 5px !important;
}

.pb-10,
.py-10 {
  padding-bottom: 10px;
}

.pb-15,
.py-15 {
  padding-bottom: 15px;
}

.pb-20,
.py-20 {
  padding-bottom: 20px;
}

.pb-25,
.py-25 {
  padding-bottom: 25px;
}

.pb-30,
.py-30 {
  padding-bottom: 30px;
}

.pb-35,
.py-35 {
  padding-bottom: 35px;
}

.pb-40,
.py-40 {
  padding-bottom: 40px;
}

.pb-45,
.py-45 {
  padding-bottom: 45px;
}

.pb-50,
.py-50 {
  padding-bottom: 50px;
}

.pb-55,
.py-55 {
  padding-bottom: 55px;
}

.pb-60,
.py-60 {
  padding-bottom: 60px;
}

.pb-65,
.py-65 {
  padding-bottom: 65px;
}

.pb-70,
.py-70 {
  padding-bottom: 70px;
}

.pb-75,
.py-75 {
  padding-bottom: 75px;
}

.pb-80,
.py-80 {
  padding-bottom: 80px;
}

.pb-85,
.py-85 {
  padding-bottom: 85px;
}

.pb-90,
.py-90 {
  padding-bottom: 90px;
}

.pb-95,
.py-95 {
  padding-bottom: 95px;
}

.pb-100,
.py-100 {
  padding-bottom: 100px;
}

.pb-105,
.py-105 {
  padding-bottom: 105px;
}

.pb-110,
.py-110 {
  padding-bottom: 110px;
}

.pb-115,
.py-115 {
  padding-bottom: 115px;
}

.pb-120,
.py-120 {
  padding-bottom: 120px;
}

.pb-125,
.py-125 {
  padding-bottom: 125px;
}

.pb-130,
.py-130 {
  padding-bottom: 130px;
}

.pb-135,
.py-135 {
  padding-bottom: 135px;
}

.pb-140,
.py-140 {
  padding-bottom: 140px;
}

.pb-145,
.py-145 {
  padding-bottom: 145px;
}

.pb-150,
.py-150 {
  padding-bottom: 150px;
}

.pb-155,
.py-155 {
  padding-bottom: 155px;
}

.pb-160,
.py-160 {
  padding-bottom: 160px;
}

.pb-165,
.py-165 {
  padding-bottom: 165px;
}

.pb-170,
.py-170 {
  padding-bottom: 170px;
}

.pb-175,
.py-175 {
  padding-bottom: 175px;
}

.pb-180,
.py-180 {
  padding-bottom: 180px;
}

.pb-185,
.py-185 {
  padding-bottom: 185px;
}

.pb-190,
.py-190 {
  padding-bottom: 190px;
}

.pb-195,
.py-195 {
  padding-bottom: 195px;
}

.pb-200,
.py-200 {
  padding-bottom: 200px;
}

.pb-205,
.py-205 {
  padding-bottom: 205px;
}

.pb-210,
.py-210 {
  padding-bottom: 210px;
}

.pb-215,
.py-215 {
  padding-bottom: 215px;
}

.pb-220,
.py-220 {
  padding-bottom: 220px;
}

.pb-225,
.py-225 {
  padding-bottom: 225px;
}

.pb-230,
.py-230 {
  padding-bottom: 230px;
}

.pb-235,
.py-235 {
  padding-bottom: 235px;
}

.pb-240,
.py-240 {
  padding-bottom: 240px;
}

.pb-245,
.py-245 {
  padding-bottom: 245px;
}

.pb-250,
.py-250 {
  padding-bottom: 250px;
}

/* Margin Around */
.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-30 {
  margin: 30px;
}

.m-35 {
  margin: 35px;
}

.m-40 {
  margin: 40px;
}

.m-45 {
  margin: 45px;
}

.m-50 {
  margin: 50px;
}

.m-55 {
  margin: 55px;
}

.m-60 {
  margin: 60px;
}

.m-65 {
  margin: 65px;
}

.m-70 {
  margin: 70px;
}

.m-75 {
  margin: 75px;
}

.m-80 {
  margin: 80px;
}

.m-85 {
  margin: 85px;
}

.m-90 {
  margin: 90px;
}

.m-95 {
  margin: 95px;
}

.m-100 {
  margin: 100px;
}

.m-105 {
  margin: 105px;
}

.m-110 {
  margin: 110px;
}

.m-115 {
  margin: 115px;
}

.m-120 {
  margin: 120px;
}

.m-125 {
  margin: 125px;
}

.m-130 {
  margin: 130px;
}

.m-135 {
  margin: 135px;
}

.m-140 {
  margin: 140px;
}

.m-145 {
  margin: 145px;
}

.m-150 {
  margin: 150px;
}

.m-155 {
  margin: 155px;
}

.m-160 {
  margin: 160px;
}

.m-165 {
  margin: 165px;
}

.m-170 {
  margin: 170px;
}

.m-175 {
  margin: 175px;
}

.m-180 {
  margin: 180px;
}

.m-185 {
  margin: 185px;
}

.m-190 {
  margin: 190px;
}

.m-195 {
  margin: 195px;
}

.m-200 {
  margin: 200px;
}

.m-205 {
  margin: 205px;
}

.m-210 {
  margin: 210px;
}

.m-215 {
  margin: 215px;
}

.m-220 {
  margin: 220px;
}

.m-225 {
  margin: 225px;
}

.m-230 {
  margin: 230px;
}

.m-235 {
  margin: 235px;
}

.m-240 {
  margin: 240px;
}

.m-245 {
  margin: 245px;
}

.m-250 {
  margin: 250px;
}

/* Margin Top */
.mt-10,
.my-10 {
  margin-top: 10px;
}

.mt-15,
.my-15 {
  margin-top: 15px;
}

.mt-20,
.my-20 {
  margin-top: 20px;
}

.mt-25,
.my-25 {
  margin-top: 25px;
}

.mt-30,
.my-30 {
  margin-top: 30px;
}

.mt-35,
.my-35 {
  margin-top: 35px;
}

.mt-40,
.my-40 {
  margin-top: 40px;
}

.mt-45,
.my-45 {
  margin-top: 45px;
}

.mt-50,
.my-50 {
  margin-top: 50px;
}

.mt-55,
.my-55 {
  margin-top: 55px;
}

.mt-60,
.my-60 {
  margin-top: 60px;
}

.mt-65,
.my-65 {
  margin-top: 65px;
}

.mt-70,
.my-70 {
  margin-top: 70px;
}

.mt-75,
.my-75 {
  margin-top: 75px;
}

.mt-80,
.my-80 {
  margin-top: 80px;
}

.mt-85,
.my-85 {
  margin-top: 85px;
}

.mt-90,
.my-90 {
  margin-top: 90px;
}

.mt-95,
.my-95 {
  margin-top: 95px;
}

.mt-100,
.my-100 {
  margin-top: 100px;
}

.mt-105,
.my-105 {
  margin-top: 105px;
}

.mt-110,
.my-110 {
  margin-top: 110px;
}

.mt-115,
.my-115 {
  margin-top: 115px;
}

.mt-120,
.my-120 {
  margin-top: 120px;
}

.mt-125,
.my-125 {
  margin-top: 125px;
}

.mt-130,
.my-130 {
  margin-top: 130px;
}

.mt-135,
.my-135 {
  margin-top: 135px;
}

.mt-140,
.my-140 {
  margin-top: 140px;
}

.mt-145,
.my-145 {
  margin-top: 145px;
}

.mt-150,
.my-150 {
  margin-top: 150px;
}

.mt-155,
.my-155 {
  margin-top: 155px;
}

.mt-160,
.my-160 {
  margin-top: 160px;
}

.mt-165,
.my-165 {
  margin-top: 165px;
}

.mt-170,
.my-170 {
  margin-top: 170px;
}

.mt-175,
.my-175 {
  margin-top: 175px;
}

.mt-180,
.my-180 {
  margin-top: 180px;
}

.mt-185,
.my-185 {
  margin-top: 185px;
}

.mt-190,
.my-190 {
  margin-top: 190px;
}

.mt-195,
.my-195 {
  margin-top: 195px;
}

.mt-200,
.my-200 {
  margin-top: 200px;
}

.mt-205,
.my-205 {
  margin-top: 205px;
}

.mt-210,
.my-210 {
  margin-top: 210px;
}

.mt-215,
.my-215 {
  margin-top: 215px;
}

.mt-220,
.my-220 {
  margin-top: 220px;
}

.mt-225,
.my-225 {
  margin-top: 225px;
}

.mt-230,
.my-230 {
  margin-top: 230px;
}

.mt-235,
.my-235 {
  margin-top: 235px;
}

.mt-240,
.my-240 {
  margin-top: 240px;
}

.mt-245,
.my-245 {
  margin-top: 245px;
}

.mt-250,
.my-250 {
  margin-top: 250px;
}

/* Margin Bottom */
.mb-5,
.my-5 {
  margin-bottom: 5px !important;
}

.mb-10,
.my-10 {
  margin-bottom: 10px;
}

.mb-15,
.my-15 {
  margin-bottom: 15px;
}

.mb-20,
.my-20 {
  margin-bottom: 20px;
}

.mb-25,
.my-25 {
  margin-bottom: 25px;
}

.mb-30,
.my-30 {
  margin-bottom: 30px;
}

.mb-35,
.my-35 {
  margin-bottom: 35px;
}

.mb-40,
.my-40 {
  margin-bottom: 40px;
}

.mb-45,
.my-45 {
  margin-bottom: 45px;
}

.mb-50,
.my-50 {
  margin-bottom: 50px;
}

.mb-55,
.my-55 {
  margin-bottom: 55px;
}

.mb-60,
.my-60 {
  margin-bottom: 60px;
}

.mb-65,
.my-65 {
  margin-bottom: 65px;
}

.mb-70,
.my-70 {
  margin-bottom: 70px;
}

.mb-75,
.my-75 {
  margin-bottom: 75px;
}

.mb-80,
.my-80 {
  margin-bottom: 80px;
}

.mb-85,
.my-85 {
  margin-bottom: 85px;
}

.mb-90,
.my-90 {
  margin-bottom: 90px;
}

.mb-95,
.my-95 {
  margin-bottom: 95px;
}

.mb-100,
.my-100 {
  margin-bottom: 100px;
}

.mb-105,
.my-105 {
  margin-bottom: 105px;
}

.mb-110,
.my-110 {
  margin-bottom: 110px;
}

.mb-115,
.my-115 {
  margin-bottom: 115px;
}

.mb-120,
.my-120 {
  margin-bottom: 120px;
}

.mb-125,
.my-125 {
  margin-bottom: 125px;
}

.mb-130,
.my-130 {
  margin-bottom: 130px;
}

.mb-135,
.my-135 {
  margin-bottom: 135px;
}

.mb-140,
.my-140 {
  margin-bottom: 140px;
}

.mb-145,
.my-145 {
  margin-bottom: 145px;
}

.mb-150,
.my-150 {
  margin-bottom: 150px;
}

.mb-155,
.my-155 {
  margin-bottom: 155px;
}

.mb-160,
.my-160 {
  margin-bottom: 160px;
}

.mb-165,
.my-165 {
  margin-bottom: 165px;
}

.mb-170,
.my-170 {
  margin-bottom: 170px;
}

.mb-175,
.my-175 {
  margin-bottom: 175px;
}

.mb-180,
.my-180 {
  margin-bottom: 180px;
}

.mb-185,
.my-185 {
  margin-bottom: 185px;
}

.mb-190,
.my-190 {
  margin-bottom: 190px;
}

.mb-195,
.my-195 {
  margin-bottom: 195px;
}

.mb-200,
.my-200 {
  margin-bottom: 200px;
}

.mb-205,
.my-205 {
  margin-bottom: 205px;
}

.mb-210,
.my-210 {
  margin-bottom: 210px;
}

.mb-215,
.my-215 {
  margin-bottom: 215px;
}

.mb-220,
.my-220 {
  margin-bottom: 220px;
}

.mb-225,
.my-225 {
  margin-bottom: 225px;
}

.mb-230,
.my-230 {
  margin-bottom: 230px;
}

.mb-235,
.my-235 {
  margin-bottom: 235px;
}

.mb-240,
.my-240 {
  margin-bottom: 240px;
}

.mb-245,
.my-245 {
  margin-bottom: 245px;
}

.mb-250,
.my-250 {
  margin-bottom: 250px;
}

/* Responsive Padding Margin */
@media only screen and (max-width: 991px) {
  /* Padding Around */
  .rp-0 {
    padding: 0px !important;
  }
  .rp-5 {
    padding: 5px !important;
  }
  .rp-10 {
    padding: 10px;
  }
  .rp-15 {
    padding: 15px;
  }
  .rp-20 {
    padding: 20px;
  }
  .rp-25 {
    padding: 25px;
  }
  .rp-30 {
    padding: 30px;
  }
  .rp-35 {
    padding: 35px;
  }
  .rp-40 {
    padding: 40px;
  }
  .rp-45 {
    padding: 45px;
  }
  .rp-50 {
    padding: 50px;
  }
  .rp-55 {
    padding: 55px;
  }
  .rp-60 {
    padding: 60px;
  }
  .rp-65 {
    padding: 65px;
  }
  .rp-70 {
    padding: 70px;
  }
  .rp-75 {
    padding: 75px;
  }
  .rp-80 {
    padding: 80px;
  }
  .rp-85 {
    padding: 85px;
  }
  .rp-90 {
    padding: 90px;
  }
  .rp-95 {
    padding: 95px;
  }
  .rp-100 {
    padding: 100px;
  }
  .rp-105 {
    padding: 105px;
  }
  .rp-110 {
    padding: 110px;
  }
  .rp-115 {
    padding: 115px;
  }
  .rp-120 {
    padding: 120px;
  }
  .rp-125 {
    padding: 125px;
  }
  .rp-130 {
    padding: 130px;
  }
  .rp-135 {
    padding: 135px;
  }
  .rp-140 {
    padding: 140px;
  }
  .rp-145 {
    padding: 145px;
  }
  .rp-150 {
    padding: 150px;
  }
  /* Padding Top */
  .rpt-0,
  .rpy-0 {
    padding-top: 0px !important;
  }
  .rpt-5,
  .rpy-5 {
    padding-top: 5px !important;
  }
  .rpt-10,
  .rpy-10 {
    padding-top: 10px;
  }
  .rpt-15,
  .rpy-15 {
    padding-top: 15px;
  }
  .rpt-20,
  .rpy-20 {
    padding-top: 20px;
  }
  .rpt-25,
  .rpy-25 {
    padding-top: 25px;
  }
  .rpt-30,
  .rpy-30 {
    padding-top: 30px;
  }
  .rpt-35,
  .rpy-35 {
    padding-top: 35px;
  }
  .rpt-40,
  .rpy-40 {
    padding-top: 40px;
  }
  .rpt-45,
  .rpy-45 {
    padding-top: 45px;
  }
  .rpt-50,
  .rpy-50 {
    padding-top: 50px;
  }
  .rpt-55,
  .rpy-55 {
    padding-top: 55px;
  }
  .rpt-60,
  .rpy-60 {
    padding-top: 60px;
  }
  .rpt-65,
  .rpy-65 {
    padding-top: 65px;
  }
  .rpt-70,
  .rpy-70 {
    padding-top: 70px;
  }
  .rpt-75,
  .rpy-75 {
    padding-top: 75px;
  }
  .rpt-80,
  .rpy-80 {
    padding-top: 80px;
  }
  .rpt-85,
  .rpy-85 {
    padding-top: 85px;
  }
  .rpt-90,
  .rpy-90 {
    padding-top: 90px;
  }
  .rpt-95,
  .rpy-95 {
    padding-top: 95px;
  }
  .rpt-100,
  .rpy-100 {
    padding-top: 100px;
  }
  .rpt-105,
  .rpy-105 {
    padding-top: 105px;
  }
  .rpt-110,
  .rpy-110 {
    padding-top: 110px;
  }
  .rpt-115,
  .rpy-115 {
    padding-top: 115px;
  }
  .rpt-120,
  .rpy-120 {
    padding-top: 120px;
  }
  .rpt-125,
  .rpy-125 {
    padding-top: 125px;
  }
  .rpt-130,
  .rpy-130 {
    padding-top: 130px;
  }
  .rpt-135,
  .rpy-135 {
    padding-top: 135px;
  }
  .rpt-140,
  .rpy-140 {
    padding-top: 140px;
  }
  .rpt-145,
  .rpy-145 {
    padding-top: 145px;
  }
  .rpt-150,
  .rpy-150 {
    padding-top: 150px;
  }
  /* Padding Bottom */
  .rpb-0,
  .rpy-0 {
    padding-bottom: 0px !important;
  }
  .rpb-5,
  .rpy-5 {
    padding-bottom: 5px !important;
  }
  .rpb-10,
  .rpy-10 {
    padding-bottom: 10px;
  }
  .rpb-15,
  .rpy-15 {
    padding-bottom: 15px;
  }
  .rpb-20,
  .rpy-20 {
    padding-bottom: 20px;
  }
  .rpb-25,
  .rpy-25 {
    padding-bottom: 25px;
  }
  .rpb-30,
  .rpy-30 {
    padding-bottom: 30px;
  }
  .rpb-35,
  .rpy-35 {
    padding-bottom: 35px;
  }
  .rpb-40,
  .rpy-40 {
    padding-bottom: 40px;
  }
  .rpb-45,
  .rpy-45 {
    padding-bottom: 45px;
  }
  .rpb-50,
  .rpy-50 {
    padding-bottom: 50px;
  }
  .rpb-55,
  .rpy-55 {
    padding-bottom: 55px;
  }
  .rpb-60,
  .rpy-60 {
    padding-bottom: 60px;
  }
  .rpb-65,
  .rpy-65 {
    padding-bottom: 65px;
  }
  .rpb-70,
  .rpy-70 {
    padding-bottom: 70px;
  }
  .rpb-75,
  .rpy-75 {
    padding-bottom: 75px;
  }
  .rpb-80,
  .rpy-80 {
    padding-bottom: 80px;
  }
  .rpb-85,
  .rpy-85 {
    padding-bottom: 85px;
  }
  .rpb-90,
  .rpy-90 {
    padding-bottom: 90px;
  }
  .rpb-95,
  .rpy-95 {
    padding-bottom: 95px;
  }
  .rpb-100,
  .rpy-100 {
    padding-bottom: 100px;
  }
  .rpb-105,
  .rpy-105 {
    padding-bottom: 105px;
  }
  .rpb-110,
  .rpy-110 {
    padding-bottom: 110px;
  }
  .rpb-115,
  .rpy-115 {
    padding-bottom: 115px;
  }
  .rpb-120,
  .rpy-120 {
    padding-bottom: 120px;
  }
  .rpb-125,
  .rpy-125 {
    padding-bottom: 125px;
  }
  .rpb-130,
  .rpy-130 {
    padding-bottom: 130px;
  }
  .rpb-135,
  .rpy-135 {
    padding-bottom: 135px;
  }
  .rpb-140,
  .rpy-140 {
    padding-bottom: 140px;
  }
  .rpb-145,
  .rpy-145 {
    padding-bottom: 145px;
  }
  .rpb-150,
  .rpy-150 {
    padding-bottom: 150px;
  }
  /* Margin Around */
  .rm-0 {
    margin: 0px !important;
  }
  .rm-5 {
    margin: 5px !important;
  }
  .rm-10 {
    margin: 10px;
  }
  .rm-15 {
    margin: 15px;
  }
  .rm-20 {
    margin: 20px;
  }
  .rm-25 {
    margin: 25px;
  }
  .rm-30 {
    margin: 30px;
  }
  .rm-35 {
    margin: 35px;
  }
  .rm-40 {
    margin: 40px;
  }
  .rm-45 {
    margin: 45px;
  }
  .rm-50 {
    margin: 50px;
  }
  .rm-55 {
    margin: 55px;
  }
  .rm-60 {
    margin: 60px;
  }
  .rm-65 {
    margin: 65px;
  }
  .rm-70 {
    margin: 70px;
  }
  .rm-75 {
    margin: 75px;
  }
  .rm-80 {
    margin: 80px;
  }
  .rm-85 {
    margin: 85px;
  }
  .rm-90 {
    margin: 90px;
  }
  .rm-95 {
    margin: 95px;
  }
  .rm-100 {
    margin: 100px;
  }
  .rm-105 {
    margin: 105px;
  }
  .rm-110 {
    margin: 110px;
  }
  .rm-115 {
    margin: 115px;
  }
  .rm-120 {
    margin: 120px;
  }
  .rm-125 {
    margin: 125px;
  }
  .rm-130 {
    margin: 130px;
  }
  .rm-135 {
    margin: 135px;
  }
  .rm-140 {
    margin: 140px;
  }
  .rm-145 {
    margin: 145px;
  }
  .rm-150 {
    margin: 150px;
  }
  /* Margin Top */
  .rmt-0,
  .rmy-0 {
    margin-top: 0px !important;
  }
  .rmt-5,
  .rmy-5 {
    margin-top: 5px !important;
  }
  .rmt-10,
  .rmy-10 {
    margin-top: 10px;
  }
  .rmt-15,
  .rmy-15 {
    margin-top: 15px;
  }
  .rmt-20,
  .rmy-20 {
    margin-top: 20px;
  }
  .rmt-25,
  .rmy-25 {
    margin-top: 25px;
  }
  .rmt-30,
  .rmy-30 {
    margin-top: 30px;
  }
  .rmt-35,
  .rmy-35 {
    margin-top: 35px;
  }
  .rmt-40,
  .rmy-40 {
    margin-top: 40px;
  }
  .rmt-45,
  .rmy-45 {
    margin-top: 45px;
  }
  .rmt-50,
  .rmy-50 {
    margin-top: 50px;
  }
  .rmt-55,
  .rmy-55 {
    margin-top: 55px;
  }
  .rmt-60,
  .rmy-60 {
    margin-top: 60px;
  }
  .rmt-65,
  .rmy-65 {
    margin-top: 65px;
  }
  .rmt-70,
  .rmy-70 {
    margin-top: 70px;
  }
  .rmt-75,
  .rmy-75 {
    margin-top: 75px;
  }
  .rmt-80,
  .rmy-80 {
    margin-top: 80px;
  }
  .rmt-85,
  .rmy-85 {
    margin-top: 85px;
  }
  .rmt-90,
  .rmy-90 {
    margin-top: 90px;
  }
  .rmt-95,
  .rmy-95 {
    margin-top: 95px;
  }
  .rmt-100,
  .rmy-100 {
    margin-top: 100px;
  }
  .rmt-105,
  .rmy-105 {
    margin-top: 105px;
  }
  .rmt-110,
  .rmy-110 {
    margin-top: 110px;
  }
  .rmt-115,
  .rmy-115 {
    margin-top: 115px;
  }
  .rmt-120,
  .rmy-120 {
    margin-top: 120px;
  }
  .rmt-125,
  .rmy-125 {
    margin-top: 125px;
  }
  .rmt-130,
  .rmy-130 {
    margin-top: 130px;
  }
  .rmt-135,
  .rmy-135 {
    margin-top: 135px;
  }
  .rmt-140,
  .rmy-140 {
    margin-top: 140px;
  }
  .rmt-145,
  .rmy-145 {
    margin-top: 145px;
  }
  .rmt-150,
  .rmy-150 {
    margin-top: 150px;
  }
  /* Margin Bottom */
  .rmb-0,
  .rmy-0 {
    margin-bottom: 0px !important;
  }
  .rmb-5,
  .rmy-5 {
    margin-bottom: 5px !important;
  }
  .rmb-10,
  .rmy-10 {
    margin-bottom: 10px;
  }
  .rmb-15,
  .rmy-15 {
    margin-bottom: 15px;
  }
  .rmb-20,
  .rmy-20 {
    margin-bottom: 20px;
  }
  .rmb-25,
  .rmy-25 {
    margin-bottom: 25px;
  }
  .rmb-30,
  .rmy-30 {
    margin-bottom: 30px;
  }
  .rmb-35,
  .rmy-35 {
    margin-bottom: 35px;
  }
  .rmb-40,
  .rmy-40 {
    margin-bottom: 40px;
  }
  .rmb-45,
  .rmy-45 {
    margin-bottom: 45px;
  }
  .rmb-50,
  .rmy-50 {
    margin-bottom: 50px;
  }
  .rmb-55,
  .rmy-55 {
    margin-bottom: 55px;
  }
  .rmb-60,
  .rmy-60 {
    margin-bottom: 60px;
  }
  .rmb-65,
  .rmy-65 {
    margin-bottom: 65px;
  }
  .rmb-70,
  .rmy-70 {
    margin-bottom: 70px;
  }
  .rmb-75,
  .rmy-75 {
    margin-bottom: 75px;
  }
  .rmb-80,
  .rmy-80 {
    margin-bottom: 80px;
  }
  .rmb-85,
  .rmy-85 {
    margin-bottom: 85px;
  }
  .rmb-90,
  .rmy-90 {
    margin-bottom: 90px;
  }
  .rmb-95,
  .rmy-95 {
    margin-bottom: 95px;
  }
  .rmb-100,
  .rmy-100 {
    margin-bottom: 100px;
  }
  .rmb-105,
  .rmy-105 {
    margin-bottom: 105px;
  }
  .rmb-110,
  .rmy-110 {
    margin-bottom: 110px;
  }
  .rmb-115,
  .rmy-115 {
    margin-bottom: 115px;
  }
  .rmb-120,
  .rmy-120 {
    margin-bottom: 120px;
  }
  .rmb-125,
  .rmy-125 {
    margin-bottom: 125px;
  }
  .rmb-130,
  .rmy-130 {
    margin-bottom: 130px;
  }
  .rmb-135,
  .rmy-135 {
    margin-bottom: 135px;
  }
  .rmb-140,
  .rmy-140 {
    margin-bottom: 140px;
  }
  .rmb-145,
  .rmy-145 {
    margin-bottom: 145px;
  }
  .rmb-150,
  .rmy-150 {
    margin-bottom: 150px;
  }
}

.checkout-items-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

*, ::after, ::before {
  box-sizing: border-box;
}

.form-group input,
.form-group textarea {
  width: 100%;
  display: inline-block;
}

input[type=checkbox], input[type=radio] {
  height: auto;
  width: auto !important;
}

.theme-btn {
  border-radius: 0 !important;
}

.update-shopping {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.update-shopping .theme-btn {
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
  text-align: center;
  display: inline-block;
  padding: 12px 32px;
  position: relative;
  text-transform: uppercase;
  background: #FF3636;
}

.update-shopping .theme-btn.style-two {
  background-color: #000;
}

.update-shopping .theme-btn.style-two:hover {
  background-color: #FF3636 !important;
}

.update-shopping .theme-btn:hover {
  background-color: #FF3636;
}

.update-shopping .theme-btn:hover:hover {
  background-color: #000;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

.order-summery .theme-btn {
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
}

.order-summery .theme-btn:hover {
  background-color: #000;
}

.order-summery .coupon input {
  top: 0;
}

.order-summery .accordion-box {
  position: relative;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .order-summery .accordion-box {
    margin-top: 30px;
  }
}

.order-summery .accordion-box .block {
  position: relative;
  background-color: #F6F6F6;
  border: none;
  margin-bottom: 17px;
  line-height: 1;
  border-radius: 0;
  padding: 24px 25px;
}

@media (max-width: 991px) {
  .order-summery .accordion-box .block {
    padding: 20px 20px;
  }
}

.order-summery .accordion-box .block .acc-btn {
  position: relative;
  font-size: 16px;
  color: #0C0C0C;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .order-summery .accordion-box .block .acc-btn {
    padding-right: 40px;
    line-height: 1.4;
  }
}

.order-summery .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: -8px;
  font-size: 16px;
  line-height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  color: var(--storzen-header);
  text-align: center;
}

.order-summery .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}

@media (max-width: 470px) {
  .order-summery .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.order-summery .accordion-box .block .acc-content .content {
  position: relative;
}

.order-summery .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 15px;
  font-weight: 400;
  color: #535353;
}

@media (max-width: 1199px) {
  .order-summery .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .order-summery .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.order-summery .accordion-box .block .acc-content.current {
  display: block;
}

.order-summery .active-block .acc-btn .icon::before {
  content: "\f00d";
  color: #FF3636;
}

.order-summery .accordion-box .block .acc-btn.active {
  color: #000;
}

.order-summery .accordion-box .block:last-child {
  margin-bottom: 0;
}

.order-summery .checout-btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.checkout-main-item-2 {
  padding: 0 40px;
  display: flex;
  gap: 30px;
  /* Common title */
}

.checkout-main-item-2 .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.checkout-main-item-2 {
  /* ======================
     Checkout Left
  ====================== */
}

.checkout-main-item-2 .checkout-left {
  flex: 1;
}

.checkout-main-item-2 .checkout-left .login-prompt {
  padding: 18px;
  margin-bottom: 35px;
  font-size: 14px;
  background: transparent;
  border: 1px dashed #D4D4D4;
}

.checkout-main-item-2 .checkout-left .login-prompt a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #111;
}

.checkout-main-item-2 .checkout-left .section-box {
  margin-bottom: 20px;
}

.checkout-main-item-2 .checkout-left .form-grid input,
.checkout-main-item-2 .checkout-left .form-grid select,
.checkout-main-item-2 .checkout-left .form-grid textarea {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--storzen-text);
  border-radius: 0;
}

.checkout-main-item-2 .checkout-left .form-grid input.full-width,
.checkout-main-item-2 .checkout-left .form-grid select.full-width,
.checkout-main-item-2 .checkout-left .form-grid textarea.full-width {
  grid-column: span 2;
}

.checkout-main-item-2 .checkout-left {
  /* Custom select */
}

.checkout-main-item-2 .checkout-left .nice-select-wrapper {
  position: relative;
}

.checkout-main-item-2 .checkout-left .nice-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.checkout-main-item-2 .checkout-left .nice-select-wrapper i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #888;
  pointer-events: none;
}

.checkout-main-item-2 .checkout-left {
  /* Payment section */
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods {
  margin-bottom: 25px;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .payment-option {
  border: 1px solid #D4D4D4;
  padding: 32px 24px;
  margin-bottom: 16px;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-header {
  border: 1px solid #D4D4D4;
  padding: 20px 24px;
  line-height: 1;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-header label {
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
  cursor: pointer;
  color: #000;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-transfer label {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content {
  margin-top: 10px;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .desc {
  font-size: 15px;
  margin-bottom: 15px;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .full-width {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--storzen-text);
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box {
  position: relative;
  margin: 15px 0;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box input {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--storzen-header);
  border-radius: 0;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box input::placeholder {
  color: var(--storzen-header);
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box .card-icons {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  max-width: 255px;
}

@media (max-width: 575px) {
  .checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box .card-icons {
    position: static;
    transform: initial;
    margin-top: 10px;
  }
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box .card-icons img {
  height: 16px;
  width: 100%;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .form-grid-3 select {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--storzen-text);
  border-radius: 0;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .form-grid-3 input {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--storzen-text);
  border-radius: 0;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .save-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item .method-content .save-card input {
  width: 16px;
  height: 16px;
  accent-color: #111;
  top: -2px;
  position: relative;
}

.checkout-main-item-2 .checkout-left .payment-section .payment-methods .method-item:not(.active) .method-content {
  display: none;
}

.checkout-main-item-2 .checkout-left .payment-section .theme-btn {
  width: 100%;
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  padding: 16px 20px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
}

.checkout-main-item-2 .checkout-left .payment-section .theme-btn:hover {
  background-color: var(--storzen-header);
}

.checkout-main-item-2 {
  /* ======================
     Checkout Right
  ====================== */
}

.checkout-main-item-2 .checkout-right {
  flex: 1;
}

.checkout-main-item-2 .checkout-right .order-list-box {
  padding: 32px 24px;
  border: 1px solid #D4D4D4;
}

.checkout-main-item-2 .checkout-right .order-list-box .list-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #999;
  border-bottom: 1px solid #D4D4D4;
}

.checkout-main-item-2 .checkout-right .order-list-box .list-head span {
  color: #808080;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D4D4D4;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .item-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .item-img img {
  width: 60px !important;
  height: 80px !important;
  text-align: center;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .item-info {
  flex: 1;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .item-info .cat {
  font-size: 12px;
  color: #808080;
  font-weight: 500;
  line-height: 1;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .item-info .name {
  font-size: 16px;
  font-weight: 600;
  margin: 3px 0;
  color: var(--storzen-header);
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .item-info .price {
  font-size: 14px;
  font-weight: 500;
  color: var(--storzen-header);
  line-height: 1;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .qty-box {
  display: flex;
  border: 1px solid #D4D4D4;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .qty-box .minus {
  border-right: 1px solid #D4D4D4;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .qty-box .plus {
  border-left: 1px solid #D4D4D4;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .qty-box button {
  width: 30px;
  height: 30px;
  font-size: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .qty-box input {
  width: 30px;
  border: none;
  text-align: center;
  font-size: 13px;
  outline: none;
  background-color: transparent;
  color: red;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .qty-box input::placeholder {
  color: red;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .del {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}

.checkout-main-item-2 .checkout-right .order-list-box .order-item .qty-control .del:hover {
  color: var(--storzen-theme);
}

.checkout-main-item-2 .checkout-right {
  /* Coupon Card */
}

.checkout-main-item-2 .checkout-right .orange-coupon {
  position: relative;
  margin: 30px 0;
  background: var(--storzen-theme);
  color: #fff;
}

.checkout-main-item-2 .checkout-right .orange-coupon .top {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px dashed #D4D4D4;
}

.checkout-main-item-2 .checkout-right .orange-coupon .top .lbl {
  font-size: 14px;
  color: var(--storzen-white);
}

.checkout-main-item-2 .checkout-right .orange-coupon .top h3 {
  font-size: 24px;
  color: #fff;
}

.checkout-main-item-2 .checkout-right .orange-coupon .top .txt-right {
  text-align: right;
  font-size: 14px;
  color: var(--storzen-white);
  text-transform: capitalize;
  font-weight: 500;
}

.checkout-main-item-2 .checkout-right .orange-coupon .bottom {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-main-item-2 .checkout-right .orange-coupon .bottom p {
  font-weight: 400;
  color: #fff;
}

.checkout-main-item-2 .checkout-right .orange-coupon .bottom .apply-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.checkout-main-item-2 .checkout-right .orange-coupon .bottom .apply-btn:hover {
  background-color: var(--storzen-white);
  color: var(--storzen-header);
}

.checkout-main-item-2 .checkout-right .orange-coupon::before, .checkout-main-item-2 .checkout-right .orange-coupon::after {
  content: "";
  position: absolute;
  top: 58%;
  width: 28px;
  height: 28px;
  background: var(--storzen-white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.checkout-main-item-2 .checkout-right .orange-coupon::before {
  left: -5px;
}

.checkout-main-item-2 .checkout-right .orange-coupon::before {
  left: -9px;
}

.checkout-main-item-2 .checkout-right .orange-coupon::after {
  right: -9px;
}

.checkout-main-item-2 .checkout-right {
  /* Coupon input */
}

.checkout-main-item-2 .checkout-right .coupon-field {
  margin-bottom: 30px;
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 24px;
}

.checkout-main-item-2 .checkout-right .coupon-field h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.checkout-main-item-2 .checkout-right .coupon-field .input-grp {
  display: flex;
}

@media (max-width: 575px) {
  .checkout-main-item-2 .checkout-right .coupon-field .input-grp {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.checkout-main-item-2 .checkout-right .coupon-field .input-grp input {
  flex: 1;
  padding: 16px 16px;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--storzen-text);
  font-size: 14px;
}

.checkout-main-item-2 .checkout-right .coupon-field .input-grp button {
  padding: 0 30px;
  background: var(--storzen-header);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .checkout-main-item-2 .checkout-right .coupon-field .input-grp button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.checkout-main-item-2 .checkout-right .coupon-field .input-grp button:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

.checkout-main-item-2 .checkout-right {
  /* Totals */
}

.checkout-main-item-2 .checkout-right .totals .rows {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
  color: #424242;
}

.checkout-main-item-2 .checkout-right .totals .rows.grand-total {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #D4D4D4;
  font-size: 20px;
  color: #111;
}

/* ======================
Responsive
====================== */
@media (max-width: 1200px) {
  .checkout-main-item-2 {
    flex-direction: column;
  }
  .checkout-main-item-2 .checkout-left,
  .checkout-main-item-2 .checkout-right {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 650px) {
  .checkout-main-item-2 {
    padding: 0 15px;
  }
  .checkout-main-item-2 .form-grid {
    grid-template-columns: 1fr;
  }
  .checkout-main-item-2 .form-grid .full-width {
    grid-column: span 1;
  }
  .checkout-main-item-2 .form-grid-3 {
    grid-template-columns: 1fr;
  }
  .checkout-main-item-2 .order-item {
    flex-direction: column;
    text-align: center;
  }
  .checkout-main-item-2 .order-item .qty-control {
    margin-top: 10px;
  }
}

.shop-cart-wrapper .cart-main-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  /* =========================
      CART LEFT
  ========================= */
}

.shop-cart-wrapper .cart-main-content .cart-left {
  flex: 1;
  min-width: 60%;
  /* Cart Header */
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-header {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #888;
  font-size: 14px;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-name {
  flex: 3;
  color: var(--storzen-header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-qty {
  flex: 1.5;
  color: var(--storzen-header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-remove {
  flex: 1.5;
  color: var(--storzen-header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-total {
  flex: 0.5;
  text-align: right;
  color: var(--storzen-header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info {
  flex: 3;
  display: flex;
  gap: 20px;
  align-items: center;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-img {
  width: 100px;
  height: 120px;
  background: #ebebeb;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-img img {
  width: 61px;
  height: 81px;
  object-fit: cover;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-details .category {
  font-size: 12px;
  margin-bottom: 5px;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-details .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-details .price {
  font-size: 16px;
  font-weight: 500;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .quantity-input input {
  background: transparent;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty {
  flex: 1.5;
  display: flex;
  align-items: center;
  gap: 15px;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box button {
  width: 35px;
  height: 40px;
  border: none;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: 0.3s;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box button:hover {
  background: #eee;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box button i {
  font-size: 12px;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input {
  width: 40px;
  border: none;
  text-align: center;
  outline: none;
  font-weight: 600;
  color: #000;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input::placeholder {
  color: #000;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input {
  /* Remove number arrows */
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input::-webkit-outer-spin-button, .shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .remove-btn {
  background: none;
  border: none;
  color: #808080;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .remove-btn:hover {
  color: var(--storzen-theme);
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .remove-btns {
  flex: 1.3;
  display: flex;
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item {
  /* Total Price */
}

.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-total {
  flex: 0.5;
  text-align: right;
  font-weight: 600;
  font-size: 16px;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-left {
  /* =========================
      COUPON SECTION
  ========================= */
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section {
  margin-top: 50px;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input {
  display: flex;
  margin-bottom: 30px;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--storzen-text);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input .apply-now-btn {
  padding: 0 40px;
  border: none;
  background: var(--storzen-header);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input .apply-now-btn:hover {
  background-color: var(--storzen-theme);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card::before {
  position: absolute;
  top: 54%;
  left: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  background-color: var(--storzen-bg);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card::after {
  position: absolute;
  top: 54%;
  right: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  background-color: var(--storzen-bg);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.white {
  background: #F6F6F6;
  color: #111;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.orange {
  background-color: var(--storzen-theme);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.orange .card-bottom p {
  color: var(--storzen-white);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.orange .apply-code:hover {
  background-color: var(--storzen-white) !important;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 25px;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top .disc-label {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top h2 {
  font-size: 20px;
  font-weight: 600;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top .card-info {
  text-align: right;
  font-size: 14px;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top .card-info p {
  font-weight: 500;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom p {
  font-weight: 500;
  font-size: 18px;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom .apply-code {
  padding: 10px 30px;
  border: none;
  background: var(--storzen-header);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom .apply-code:hover {
  background-color: var(--storzen-theme);
}

.shop-cart-wrapper .cart-main-content {
  /* =========================
      CART RIGHT
  ========================= */
}

.shop-cart-wrapper .cart-main-content .cart-right {
  flex: 0 0 420px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box {
  background: #F6F6F6;
  padding: 40px 32px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .shipping-text {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 30px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .progress-bar .fill {
  height: 100%;
  background: #111;
  border-radius: 10px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .subtotal-row h3 {
  font-size: 22px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .subtotal-row .tax-info {
  font-size: 14px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .order-note {
  margin-bottom: 20px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .order-note label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .order-note textarea {
  width: 100%;
  border: 1px solid #eee;
  padding: 10px;
  resize: none;
  outline: none;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .terms input {
  width: 16px;
  height: 16px;
  accent-color: #111;
  position: relative;
  top: -4px;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .terms label {
  font-size: 14px;
  color: var(--storzen-header);
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .checkout-btn {
  width: 100%;
  padding: 15px;
  background: #111;
  color: #fff;
  border: none;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-align: center;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .checkout-btn:hover {
  background-color: var(--storzen-theme);
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .continue-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: var(--storzen-header);
  border: 1px solid #D4D4D4;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-weight: 600;
}

.shop-cart-wrapper .cart-main-content .cart-right .summary-box .continue-btn:hover {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

@media (max-width: 992px) {
  .shop-cart-wrapper .cart-main-content {
    flex-direction: column;
  }
  .shop-cart-wrapper .cart-main-content .cart-left {
    width: 100%;
  }
  .shop-cart-wrapper .cart-main-content .cart-right {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 600px) {
  .shop-cart-wrapper {
    padding: 0 15px;
  }
  .shop-cart-wrapper .cart-header {
    display: none;
  }
  .shop-cart-wrapper .cart-item {
    flex-direction: column;
    text-align: center;
  }
  .shop-cart-wrapper .cart-item .product-info {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  .shop-cart-wrapper .cart-item .product-total {
    text-align: center;
    margin-top: 10px;
  }
}

.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--storzen-header);
  text-transform: capitalize;
}

.checkout-radio {
  padding: 24px;
}

.checkout-radio h4 {
  color: var(--storzen-header);
  margin-bottom: 16px;
  font-weight: 600;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(15, 49, 58, 0.1);
  font-weight: 500;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--storzen-header);
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--storzen-header);
  margin-bottom: 2rem;
  font-weight: 600;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(15, 49, 58, 0.1);
  padding: 18px 24px;
  color: var(--storzen-header);
  text-transform: capitalize;
  font-weight: 500;
  border-radius: 7px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--storzen-header);
  font-size: 15px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--storzen-header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--storzen-white);
  height: initial;
  line-height: initial;
  padding: 13px 20px;
  border: 1px solid rgba(15, 49, 58, 0.1);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 16px;
  color: var(--storzen-header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--storzen-header);
  border-bottom: 1px solid var(--storzen-header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .list {
  width: 100%;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .option {
  background-color: var(--storzen-bg);
  border: none;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--storzen-header);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid rgba(15, 49, 58, 0.1);
  background: transparent;
  text-transform: capitalize;
  border-radius: 7px;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(15, 49, 58, 0.1);
  background-color: var(--storzen-theme);
  outline: none;
  color: var(--storzen-header);
  border-radius: 7px;
  position: relative;
  top: -6px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
}

.checkout-single-wrapper .theme-btn {
  padding: 18px 38px;
  background-color: var(--storzen-theme);
  color: #fff;
}

.checkout-single-wrapper .theme-btn:hover {
  background-color: #000;
}

.woocommerce-table th,
.woocommerce-table td {
  border: 1px solid #ebebeb;
}

.woocommerce-message,
.woocommerce-info {
  position: relative;
  padding: 11px 20px 11px 50px;
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 0;
}

.woocommerce-message a,
.woocommerce-info a {
  color: var(--storzen-white);
  text-decoration: underline;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover {
  color: #000;
}

.woocommerce-message:before,
.woocommerce-info:before {
  content: "\f06a";
  font-weight: 900;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  left: 20px;
  top: 11px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

.woocommerce-notices-wrapper .woocommerce-message:before {
  content: "\f14a";
  font-weight: 300;
}

.woocommerce-form-login-toggle .woocommerce-info {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
}

.woocommerce-form-login-toggle .woocommerce-info a {
  color: var(--storzen-white);
}

.woocommerce-form-login-toggle .woocommerce-info a:hover {
  color: var(--storzen-theme);
}

.woocommerce-form-register,
.woocommerce-form-coupon,
.woocommerce-form-login {
  padding: 35px 40px 35px 40px;
  background-color: var(--storzen-white);
  box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.1);
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .woocommerce-form-register,
  .woocommerce-form-coupon,
  .woocommerce-form-login {
    padding: 40px 20px;
  }
}

.woocommerce-form-register .form-group,
.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
  margin-bottom: 20px;
}

.woocommerce-form-register .form-group:last-child,
.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
  margin-bottom: 0;
}

.woocommerce-form-login {
  margin-bottom: 30px;
}

.woocommerce-error {
  background-color: var(--storzen-theme);
  color: #fff;
  list-style: none;
  padding: 10px 26px;
  margin: 0 0 30px 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

nav.woocommerce-MyAccount-navigation li {
  border: 1px solid #ddd;
  margin: 0;
  border-top: none;
}

nav.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid #ddd;
}

nav.woocommerce-MyAccount-navigation li a {
  color: #000;
  font-weight: 700;
  padding: 7px 17px;
  display: block;
}

nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
  color: var(--storzen-white);
  background-color: var(--storzen-theme);
}

.woocommerce-MyAccount-content h3 {
  margin-top: -0.3em;
}

.woocommerce-MyAccount-content .btn {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 700;
}

.woocommerce-MyAccount-content .btn:hover {
  background-color: #000;
  color: var(--storzen-white);
}

.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
  margin-bottom: 0;
}

.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
  margin-bottom: 0;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below {
  margin-top: -35px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--above {
  position: relative;
  bottom: -30px;
}

.woocommerce-checkout .select2-dropdown {
  border: 1px solid #e3e6e9;
  border-top: none;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
  border-radius: 0;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container--default .select2-selection--single .form-control:focus {
  color: var(--storzen-text);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #eee;
  padding: 0;
}

.woocommerce-form-login select,
.woocommerce-form-login .form-select,
.woocommerce-form-login .form-control,
.woocommerce-form-login .select2,
.woocommerce-form-login .select2-container,
.woocommerce-form-coupon select,
.woocommerce-form-coupon .form-select,
.woocommerce-form-coupon .form-control,
.woocommerce-form-coupon .select2,
.woocommerce-form-coupon .select2-container,
.woocommerce-checkout select,
.woocommerce-checkout .form-select,
.woocommerce-checkout .form-control,
.woocommerce-checkout .select2,
.woocommerce-checkout .select2-container {
  margin-bottom: var(--bs-gutter-x);
}

#ship-to-different-address {
  margin-top: 15px;
}

.woocommerce-checkout .nice-select:active,
.woocommerce-checkout .nice-select.open,
.woocommerce-checkout .nice-select:focus {
  border-color: none !important;
}

.woocommerce-checkout .nice-select {
  border: none !important;
  font-size: 16px;
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: 1px solid #e3e6e9;
}

.select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid #e3e6e9;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
  padding-left: 30px;
  padding-right: 25px;
}

.woocommerce-billing-fields .form-row {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin: 0;
  border: none;
  top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
  line-height: 60px;
  margin-right: 30px;
}

span.select2-selection.select2-selection--single:focus {
  outline: none;
}

.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
  height: 40px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 0;
  background-position: right 13px center;
}

.shipping-calculator-form .as-btn {
  font-size: 14px;
  padding: 0 20px;
  width: max-content;
  height: 40px;
}

.checkout-ordertable th,
.checkout-ordertable td {
  text-align: right;
  padding: 5px 20px;
  vertical-align: top;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.checkout-ordertable th {
  font-weight: 800;
  text-align: left;
}

.checkout-ordertable ul {
  margin: 0;
  padding: 0;
}

.checkout-ordertable .order-total .amount {
  color: var(--storzen-theme);
}

.checkout-ordertable input[type=hidden] ~ label {
  color: var(--storzen-theme);
}

.woocommerce-checkout .form-group input:not(:last-child) {
  margin-bottom: var(--bs-gutter-x);
}

.woocommerce-checkout-payment {
  text-align: left;
}

.woocommerce-checkout-payment ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.woocommerce-checkout-payment ul li {
  padding-top: 12px;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 4px;
  font-size: 16px;
}

.woocommerce-checkout-payment ul input[type=radio] ~ label {
  margin-bottom: 17px;
  color: var(--storzen-text);
}

.woocommerce-checkout-payment ul input[type=radio] ~ label img {
  margin-bottom: -2px;
  margin-left: 10px;
}

.woocommerce-checkout-payment .place-order {
  padding-top: 30px;
}

.woocommerce-checkout-payment .payment_box {
  color: #a1b1bc;
  background-color: #ecf0f1;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}

.woocommerce-checkout-payment .payment_box p {
  margin: 0;
}

.as-checkout-wrapper form.woocommerce-form {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  tfoot.checkout-ordertable th {
    display: none;
  }
  .woocommerce-checkout-payment ul input[type=radio] ~ label img {
    max-width: 150px;
  }
  .checkout-ordertable th,
  .checkout-ordertable td {
    padding: 5px 20px 5px 60px;
  }
}

.checkout-wrapper {
  margin-bottom: -1.8em;
}

.new-cart-wrapper {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  font-family: sans-serif;
  margin-top: 20px;
  /* Header */
}

.new-cart-wrapper .cart-header {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr 1fr;
  background: #f5f5f5;
  padding: 15px 30px;
  font-weight: bold;
}

.new-cart-wrapper .cart-header div {
  color: #000;
}

.new-cart-wrapper {
  /* Item */
}

.new-cart-wrapper .cart-item {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 15px 30px;
  border-top: 1px solid #eee;
}

.new-cart-wrapper .cart-item .cart-col {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.new-cart-wrapper .cart-item img {
  width: 70px;
  border-radius: 8px;
}

.new-cart-wrapper {
  /* Footer */
}

.new-cart-wrapper .cart-footer {
  padding: 15px 30px;
  border-top: 1px solid #ddd;
}

.new-cart-wrapper .cart-footer span {
  color: #000;
}

.new-cart-wrapper .cart-footer .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (max-width: 450px) {
  .new-cart-wrapper .cart-footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.new-cart-wrapper .cart-footer .total {
  font-weight: bold;
  font-size: 18px;
}

.new-cart-wrapper {
  /* Responsive */
}

@media (max-width: 768px) {
  .new-cart-wrapper .cart-header {
    grid-template-columns: repeat(4, 1fr);
  }
  .new-cart-wrapper .cart-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .new-cart-wrapper .cart-col {
    display: flex;
    justify-content: space-between;
  }
  .new-cart-wrapper .cart-col::before {
    content: attr(data-label);
    font-weight: bold;
  }
}

@media (max-width: 450px) {
  .new-cart-wrapper .cart-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.wc_payment_methods li {
  border-radius: 0;
  padding-bottom: 12px;
}

.place-order .theme-btn {
  background-color: var(--storzen-theme);
  color: var(--storzen-white);
  padding: 16px 30px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.place-order .theme-btn:hover {
  background-color: var(--storzen-header);
}

.tab-pane {
  display: none;
  transition: 0.4s ease-in-out;
}

.tab-pane.active {
  display: block;
}

.product-detail-bottom p {
  font-size: 15px;
  color: #535353;
}

.product-details-content .ratting {
  font-size: 14px;
  color: #FFA818;
}

.product-details-content .ratting span {
  color: #535353;
}

.product-detail-bottom .image img {
  width: 100%;
}

.product-details-two-area .preview-item {
  display: none;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.product-details-two-area .preview-item.active {
  display: block;
  opacity: 1;
}

.product-details-two-area .thumb-item {
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s;
}

.product-details-two-area .thumb-item.active {
  border-color: #FF3636;
}

.product-description-tab .tab-content p {
  font-size: 15px;
  color: #535353;
}

.add-too-cart {
  width: auto !important;
  margin-right: 10px;
  margin-bottom: 10px;
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #FF3636;
}

.but-it-now {
  width: 100%;
  margin-right: 10px;
  margin-bottom: 10px;
  z-index: 1;
  color: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 12px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background: #000;
}

.but-it-now:hover {
  background: #FF3636;
}

.tab-btn-two {
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #F6F6F6;
}

.tab-btn-two button {
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 16px 35px;
  border-radius: 10px;
  color: #0C0C0C;
  background: transparent;
  text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
  .tab-btn-two button {
    font-size: 14px;
    padding: 10px 25px;
  }
}

@media only screen and (max-width: 479px) {
  .tab-btn-two button {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tab-btn-two button:hover, .tab-btn-two button.active {
  color: white;
  background: #F61818;
}

.product-des-two-tab p {
  font-size: 15px;
  color: #535353;
}

.product-des-two-tab h5 {
  font-size: 20px;
  font-weight: 700;
  color: #0C0C0C;
}

.product-des-two-tab .list-style-three li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  font-size: 15px;
  color: #535353;
}

.product-des-two-tab .list-style-three li:before {
  content: "\f00c";
  margin-right: 8px;
  color: #F61818;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
}

.product-details-area p {
  font-size: 15px;
  color: #535353;
}

.product-details-area span {
  color: #535353;
}

.product-details-area-3 p {
  font-size: 15px;
  color: #535353;
}

.product-details-area-3 .preview-item {
  display: none;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.product-details-area-3 .preview-item.active {
  display: block;
  opacity: 1;
}

.product-details-area-3 .thumb-item {
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.product-details-area-3 .thumb-item.active {
  border-color: #F61818;
}

.product-details-area-3 .theme-btn {
  width: initial !important;
}

.product-details-area-3 .buy-now {
  width: 100% !important;
}

.product-details-area-3 .product-description-tab-two img {
  width: 100%;
}

.product-details-area-3 .tab-btn-three {
  border-bottom: 1px solid #DDDDDD;
}

.product-details-area-3 .tab-btn-three button {
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 17px 35px;
  margin-bottom: -1px;
  color: var(--heading-color);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
  .product-details-area-3 .tab-btn-three button {
    font-size: 14px;
    padding: 10px 25px;
  }
}

@media only screen and (max-width: 479px) {
  .product-details-area-3 .tab-btn-three button {
    padding-left: 19px;
    padding-right: 19px;
  }
}

.product-details-area-3 .tab-btn-three button:hover {
  color: var(--primary-color);
}

.product-details-area-3 .tab-btn-three button.active {
  color: white;
  background: #F61818;
}

.product-details-area-3 .product-description-tab-two .tab-pane {
  display: none;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.product-details-area-3 .product-description-tab-two .tab-pane.active {
  display: block;
  opacity: 1;
}

.preview-images-wrap .badges {
  top: 0;
}

/* Elementor: Mini Cart Drawer widget */
body.szp-mini-cart-open {
  overflow: hidden;
}

.szp-mini-cart-drawer-wrap {
  position: relative;
  display: inline-block;
}

.szp-mini-cart-toggle .szp-mini-cart-count {
  display: inline-block;
  min-width: 1.25em;
  text-align: center;
}

.szp-mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.szp-mini-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.szp-mini-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 100vh;
  background: #fff;
  z-index: 100001;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 0;
  margin: 0;
}

.szp-mini-cart-panel.is-open {
  transform: translateX(0);
}

.szp-mini-cart-panel[hidden] {
  display: block !important;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
}

.szp-mini-cart-panel.is-open[hidden] {
  display: block !important;
}

.szp-mini-cart-close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  font-size: 28px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #111;
}

.szp-mini-cart-inner {
  padding: 48px 20px 24px;
}

.szp-mini-cart-inner .woocommerce-mini-cart__empty-message {
  margin: 0;
}

/* Elementor editor: show mini cart content inline (no slide-in) */
.szp-mini-cart-panel--editor {
  position: relative !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* ── WooCommerce cart (classic) — plugin theme #FF3636, hovers → black ─────── */

/* Coupon row: input + APPLY COUPON on one line (Storzen-style) */
.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon,
.woocommerce.szp-cart-table .woocommerce-cart-form .coupon,
.woocommerce.szp-cart-coupon .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* Elementor Cart Coupon widget: .woocommerce and .szp-cart-coupon share one wrapper — force inline row */
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form .coupon {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form .coupon button,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form .coupon .button {
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon .input-text,
.woocommerce-cart .woocommerce.szp-cart-coupon .coupon .input-text,
.woocommerce.szp-cart-coupon .coupon .input-text,
.woocommerce.szp-cart-table .woocommerce-cart-form .coupon .input-text,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form .coupon .input-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 160px;
  flex: 1 1 160px;
  max-width: min(100%, 280px);
  min-width: 120px;
  width: auto !important;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  padding: 10px 14px;
  min-height: 46px;
  box-sizing: border-box;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon .button,
.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon button,
.woocommerce.szp-cart-coupon .coupon .button,
.woocommerce.szp-cart-coupon .coupon button,
.woocommerce.szp-cart-table .woocommerce-cart-form .coupon .button,
.woocommerce.szp-cart-table .woocommerce-cart-form .coupon button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

/*
 * Cart table actions row (colspan cell): do NOT use display:flex on <td> — it breaks
 * colspan/borders (phantom “extra” column line). Use table-cell + float layout.
 */
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions {
  display: table-cell !important;
  width: 100%;
  padding: 20px 16px !important;
  vertical-align: middle;
  overflow: hidden;
}

.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions .coupon {
  float: left;
  clear: none;
  margin: 0 16px 0 0;
  max-width: calc(100% - 200px);
}

.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[name="update_cart"],
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions button[name="update_cart"] {
  float: right;
  clear: none;
  margin: 0 !important;
}

.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions::after,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}

/* Update cart — same solid theme red as Apply coupon (themes often fade secondary .button) */
.woocommerce-cart table.shop_table.cart tbody td.actions button[name="update_cart"],
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions button[name="update_cart"] {
  background-color: var(--storzen-theme) !important;
  color: #ffffff !important;
  border: 1px solid var(--storzen-theme) !important;
  opacity: 1 !important;
  -webkit-filter: none !important;
  filter: none !important;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 3px;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.woocommerce-cart table.shop_table.cart tbody td.actions button[name="update_cart"]:hover,
.woocommerce-cart table.shop_table.cart tbody td.actions button[name="update_cart"]:focus,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions button[name="update_cart"]:hover,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.actions button[name="update_cart"]:focus {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

/* Checkout — coupon form (form-row-first / last): single inline row when open */
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}

.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first,
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last {
  float: none !important;
  width: auto !important;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon .form-row-first {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 160px;
  flex: 1 1 160px;
  max-width: min(100%, 280px);
  min-width: 120px;
}

.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon .form-row-first .input-text {
  width: 100% !important;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  padding: 10px 14px;
  min-height: 46px;
  box-sizing: border-box;
}

.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon .form-row-last {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon .clear {
  display: none;
}

@media only screen and (max-width: 575px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon,
  .woocommerce.szp-cart-table table.shop_table.cart tbody td.actions .coupon {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 0 0 14px;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[name="update_cart"],
  .woocommerce.szp-cart-table table.shop_table.cart tbody td.actions button[name="update_cart"] {
    float: none;
    width: 100%;
    margin-left: 0 !important;
  }

  .woocommerce-cart .woocommerce .woocommerce-cart-form .coupon .input-text,
  .woocommerce.szp-cart-table .woocommerce-cart-form .coupon .input-text {
    max-width: 100%;
  }

  .woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form .coupon {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
}

.woocommerce-cart .woocommerce .product-name a,
.woocommerce.szp-cart-table .product-name a {
  color: var(--storzen-theme);
  text-decoration: none;
  transition: color 0.25s ease;
}

.woocommerce-cart .woocommerce .product-name a:hover,
.woocommerce.szp-cart-table .product-name a:hover {
  color: #000000;
}

.woocommerce-cart .woocommerce .product-remove a,
.woocommerce.szp-cart-table .product-remove a {
  color: var(--storzen-theme);
  transition: color 0.25s ease;
}

.woocommerce-cart .woocommerce .product-remove a:hover,
.woocommerce.szp-cart-table .product-remove a:hover {
  color: #000000;
}

/* Primary actions: Apply coupon, Update cart, Proceed to checkout (+ Elementor cart widgets) */
.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon .button,
.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon button.button,
.woocommerce-cart .woocommerce .woocommerce-cart-form button[name="update_cart"],
.woocommerce-cart .woocommerce .woocommerce-cart-form button[name="apply_coupon"],
.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button,
.woocommerce.szp-cart-table .woocommerce-cart-form .coupon .button,
.woocommerce.szp-cart-table .woocommerce-cart-form button[name="update_cart"],
.woocommerce.szp-cart-table .woocommerce-cart-form button[name="apply_coupon"],
.woocommerce.szp-cart-totals .checkout-button,
.woocommerce.szp-cart-coupon .coupon .button,
.woocommerce.szp-cart-coupon .coupon button.button,
.woocommerce.szp-cart-coupon button.button,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form button.button,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form button[name="apply_coupon"],
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button.button,
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button[name="apply_coupon"] {
  background-color: var(--storzen-theme) !important;
  color: #ffffff !important;
  border: 1px solid var(--storzen-theme) !important;
  border-radius: 3px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  line-height: 1.25;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon .button:hover,
.woocommerce-cart .woocommerce .woocommerce-cart-form .coupon .button:focus,
.woocommerce-cart .woocommerce .woocommerce-cart-form button[name="update_cart"]:hover,
.woocommerce-cart .woocommerce .woocommerce-cart-form button[name="update_cart"]:focus,
.woocommerce-cart .woocommerce .woocommerce-cart-form button[name="apply_coupon"]:hover,
.woocommerce-cart .woocommerce .woocommerce-cart-form button[name="apply_coupon"]:focus,
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:focus,
.woocommerce.szp-cart-table .woocommerce-cart-form .coupon .button:hover,
.woocommerce.szp-cart-table .woocommerce-cart-form button[name="update_cart"]:hover,
.woocommerce.szp-cart-table .woocommerce-cart-form button[name="apply_coupon"]:hover,
.woocommerce.szp-cart-totals .checkout-button:hover,
.woocommerce.szp-cart-totals .checkout-button:focus,
.woocommerce.szp-cart-coupon .coupon .button:hover,
.woocommerce.szp-cart-coupon .coupon .button:focus,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form button.button:hover,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form button.button:focus,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form button[name="apply_coupon"]:hover,
.woocommerce.szp-cart-coupon form.woocommerce-cart-coupon-form button[name="apply_coupon"]:focus,
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button.button:hover,
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button.button:focus {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

/* Cart totals box */
.woocommerce-cart .woocommerce .cart_totals,
.woocommerce.szp-cart-totals .cart_totals {
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  padding: 24px 28px;
}

.woocommerce-cart .woocommerce .cart_totals > h2,
.woocommerce.szp-cart-totals .cart_totals > h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #DDDDDD;
}

/* Table + quantity cell polish */
.woocommerce-cart .woocommerce table.shop_table.cart,
.woocommerce.szp-cart-table table.shop_table.cart {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  overflow: hidden;
}

.woocommerce-cart .woocommerce table.shop_table.cart thead th,
.woocommerce.szp-cart-table table.shop_table.cart thead th {
  font-weight: 700;
  color: #0C0C0C;
  background: #F9F9F9;
}

/* Narrow remove (×) column; wider thumbnail column + larger product images */
.woocommerce-cart table.shop_table.cart thead th.product-remove,
.woocommerce-cart table.shop_table.cart tbody td.product-remove,
.woocommerce.szp-cart-table table.shop_table.cart thead th.product-remove,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.product-remove {
  width: 2.75rem;
  max-width: 3rem;
  padding: 12px 4px;
  text-align: center;
  vertical-align: middle;
}

.woocommerce-cart table.shop_table.cart thead th.product-thumbnail,
.woocommerce-cart table.shop_table.cart tbody td.product-thumbnail,
.woocommerce.szp-cart-table table.shop_table.cart thead th.product-thumbnail,
.woocommerce.szp-cart-table table.shop_table.cart tbody td.product-thumbnail {
  width: 150px;
  min-width: 130px;
  max-width: 180px;
  padding: 16px 12px;
  vertical-align: middle;
}

/* Uniform cart thumbnails: fixed square frame so portrait/landscape assets align */
.woocommerce-cart table.shop_table.cart td.product-thumbnail a,
.woocommerce.szp-cart-table table.shop_table.cart td.product-thumbnail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
  overflow: hidden;
  background: #f6f6f6;
  border-radius: 3px;
}

.woocommerce-cart table.shop_table.cart .product-thumbnail img,
.woocommerce.szp-cart-table table.shop_table.cart .product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media only screen and (max-width: 767px) {
  .woocommerce-cart table.shop_table.cart thead th.product-thumbnail,
  .woocommerce-cart table.shop_table.cart tbody td.product-thumbnail,
  .woocommerce.szp-cart-table table.shop_table.cart thead th.product-thumbnail,
  .woocommerce.szp-cart-table table.shop_table.cart tbody td.product-thumbnail {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .woocommerce-cart table.shop_table.cart td.product-thumbnail a,
  .woocommerce.szp-cart-table table.shop_table.cart td.product-thumbnail a {
    width: min(120px, 35vw);
    height: min(120px, 35vw);
  }
}

.woocommerce-cart .woocommerce table.shop_table.cart .quantity .qty,
.woocommerce.szp-cart-table table.shop_table.cart .quantity .qty {
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  padding: 8px 10px;
  min-height: 44px;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.woocommerce-cart .woocommerce table.shop_table.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart .woocommerce table.shop_table.cart .quantity .qty::-webkit-inner-spin-button,
.woocommerce.szp-cart-table table.shop_table.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce.szp-cart-table table.shop_table.cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Mini cart drawer — match checkout / theme buttons */
.szp-mini-cart-inner .woocommerce-mini-cart__buttons .button.checkout,
.szp-mini-cart-inner .woocommerce-mini-cart__buttons a.checkout {
  background-color: var(--storzen-theme) !important;
  color: #fff !important;
  border: 1px solid var(--storzen-theme) !important;
  border-radius: 3px;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.szp-mini-cart-inner .woocommerce-mini-cart__buttons .button.checkout:hover,
.szp-mini-cart-inner .woocommerce-mini-cart__buttons a.checkout:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #fff !important;
}