﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --bg-0: #f8f6f2;
  --bg-1: #efe9df;
  --surface: #ffffff;
  --surface-soft: #f6f3ee;
  --ink: #131313;
  --muted: #626262;
  --line: rgba(19, 19, 19, 0.11);
  --line-soft: rgba(19, 19, 19, 0.06);
  --accent-1: #f4b24d;
  --accent-2: #f78b1f;
  --accent-3: #f9482d;
  --accent-4: #ff2a3b;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 16px 36px rgba(16, 15, 14, 0.1);
  --shadow-strong: 0 26px 56px rgba(16, 15, 14, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 139, 31, 0.1), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(255, 42, 59, 0.09), transparent 28%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(19, 19, 19, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 19, 19, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

#wrapper,
#main,
#content,
.page-content,
main {
  position: relative;
  z-index: 1;
}

#wrapper > .container {
  max-width: 1320px;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.products-section-title,
.page-title,
.block-category h1 {
  margin-top: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

a {
  color: #b9491a;
}

a:hover {
  color: #7f2f11;
  text-decoration: none;
}

/* Keep this hidden as requested before */
#search_widget,
.search-widgets {
  display: none !important;
}

#header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(14px);
}

#header .header-nav {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line-soft);
}

#header .header-top {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(247, 139, 31, 0.34);
}

#header .header-top .container > .row {
  align-items: center;
}

#_desktop_contact_link a,
#contact-link a {
  color: #2b2a29 !important;
  font-size: 0.92rem;
  font-weight: 500;
}

#_desktop_user_info .user-info,
#_desktop_cart .blockcart {
  border-radius: 999px;
  border: 1px solid rgba(19, 19, 19, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(16, 15, 14, 0.1);
}

#_desktop_user_info .user-info a,
#_desktop_cart .blockcart .header,
#_desktop_cart .blockcart .material-icons {
  color: #222222 !important;
  font-weight: 600;
}

#_desktop_logo a,
#_mobile_logo a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#_desktop_logo img,
#_mobile_logo img,
.logo {
  max-height: 78px;
  width: auto;
  filter: none !important;
}

#_desktop_top_menu,
#_desktop_top_menu .top-menu {
  width: 100%;
}

#_desktop_top_menu .top-menu[data-depth="0"] {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li {
  list-style: none;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a {
  position: relative;
  padding: 0.78rem 0.12rem;
  background: transparent;
  border: 0;
  color: #212121 !important;
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a:hover,
#_desktop_top_menu .top-menu[data-depth="0"] > li.current > a {
  color: #0f0f0f !important;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a:hover::before,
#_desktop_top_menu .top-menu[data-depth="0"] > li.current > a::before {
  transform: scaleX(1);
  opacity: 1;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > .popover {
  margin-top: 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

#_desktop_top_menu .sub-menu .top-menu a {
  color: #232323;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

#_desktop_top_menu .sub-menu .top-menu a:hover {
  color: #b9491a;
}

#mobile_top_menu_wrapper,
#mobile_top_menu_wrapper .js-top-menu-bottom {
  background: #ffffff;
}

#mobile_top_menu_wrapper a,
#mobile_top_menu_wrapper .material-icons {
  color: #212121 !important;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb li,
.breadcrumb li a {
  color: #5a544d;
}

#carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(19, 19, 19, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  padding: 0.8rem;
}

#carousel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(247, 139, 31, 0.16), rgba(247, 139, 31, 0));
  z-index: 0;
  pointer-events: none;
}

#carousel::after {
  content: "Future-ready tech for Guatemala";
  position: absolute;
  left: 1.6rem;
  top: 1.15rem;
  z-index: 2;
  font-family: 'Sora', sans-serif;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f5348;
  pointer-events: none;
}

#carousel .carousel-inner {
  border-radius: 22px;
  overflow: hidden;
}

#carousel .carousel-item img {
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  object-fit: cover;
}

#carousel .carousel-control {
  width: 52px;
  height: 52px;
  top: calc(50% - 26px);
  border-radius: 999px;
  border: 1px solid rgba(19, 19, 19, 0.2);
  background: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

#carousel .left.carousel-control {
  left: 0.9rem;
}

#carousel .right.carousel-control {
  right: 0.9rem;
}

#carousel .carousel-control .material-icons {
  color: #333333;
}

#carousel .carousel-indicators li {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.22);
}

#carousel .carousel-indicators li.active {
  background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}

#custom-text,
.banner {
  display: none !important;
}

.featured-products,
.products,
.product-accessories {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(19, 19, 19, 0.09);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.featured-products {
  margin-top: 1.5rem;
  padding: 1.6rem 1.45rem 1.75rem;
}

.featured-products .products-section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2.3vw, 1.9rem);
  color: #171717;
}

.featured-products .products-section-title::after,
.page-title::after,
.block-category h1::after {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}

.featured-products .products.row,
.page-category #js-product-list .products.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 0;
}

.featured-products .js-product.product,
.page-category #js-product-list .js-product.product {
  width: auto;
  max-width: none;
  flex: initial;
  margin: 0;
  padding: 0;
}

.product-miniature .thumbnail-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(14, 13, 12, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-miniature:hover .thumbnail-container {
  transform: translateY(-4px);
  border-color: rgba(247, 139, 31, 0.6);
  box-shadow: 0 20px 34px rgba(14, 13, 12, 0.16);
}

.product-miniature .thumbnail-top {
  padding: 0.8rem;
  background: linear-gradient(180deg, #f8f5ef, #f0e9de);
}

.product-miniature .thumbnail-top .product-thumbnail {
  display: block;
  border-radius: 13px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  background: #ffffff;
  padding: 0.4rem;
}

.product-miniature .thumbnail-top img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
}

.product-miniature .product-description {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem 1rem;
  background: #ffffff;
  border-top: 1px solid rgba(19, 19, 19, 0.06);
  min-height: 138px;
}

.product-title,
.product-title a,
.product-name a {
  color: #1f1f1f !important;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.34;
}

.product-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-title a:hover,
.product-name a:hover {
  color: #7f2f11 !important;
}

.product-price,
.price,
.current-price,
.current-price-value,
.product-price-and-shipping {
  color: #bd4f1c !important;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.regular-price {
  color: #7e7469 !important;
}

.product-miniature .quick-view {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 19, 19, 0.13);
  color: #3b352f;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
}

.product-flags,
.product-miniature .product-flags {
  top: 0.62rem;
  left: 0.62rem;
}

li.product-flag,
.product-flags li.product-flag {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}

#left-column > * + * {
  margin-top: 1rem;
}

#left-column .block-categories,
#left-column #search_filters_brands,
#left-column #search_filters_wrapper,
.page-category .block-category,
.page-category .card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(19, 19, 19, 0.09);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

#left-column .block-categories {
  padding: 1rem 1rem 0.85rem;
}

#left-column .block-categories .h6,
#left-column .block-categories a.text-uppercase {
  color: #232323 !important;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
}

#left-column .block-categories .category-sub-menu > li > a,
#left-column .block-categories .category-sub-link {
  color: #3e3a35 !important;
  font-weight: 600;
}

#left-column .block-categories .category-sub-menu > li > a:hover,
#left-column .block-categories .category-sub-link:hover {
  color: #9d3e16 !important;
}

#left-column .block-categories .navbar-toggler .material-icons {
  color: #8f3a16 !important;
}

#search_filters_suppliers,
#subcategories {
  display: none !important;
}

.btn,
button,
input[type="submit"],
.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 12px;
  border: 1px solid rgba(19, 19, 19, 0.16);
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--accent-3), var(--accent-2));
  box-shadow: 0 12px 22px rgba(184, 73, 26, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(184, 73, 26, 0.28);
}

.form-control,
.custom-select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border-radius: 10px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  background: #ffffff;
  color: #252525;
}

#footer {
  margin-top: 3rem;
  background: #161412;
  border-top: 3px solid rgba(247, 139, 31, 0.85);
  color: #ece7df;
}

#footer .container {
  max-width: 1320px;
}

#footer > .container > .row {
  min-height: 54px;
  align-items: center;
  justify-content: flex-end;
  padding: 0.6rem 0;
}

#footer .block-social {
  margin-left: auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  padding: 0;
}

#footer .block-social ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
}

#footer .block-social ul li {
  margin: 0;
}

#footer .block-social ul li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(247, 139, 31, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

#footer .footer-container {
  background: transparent;
  padding: 1.3rem 0 1rem;
}

#footer .footer-container .row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1fr);
  gap: 2.1rem;
  align-items: start;
}

#footer .footer-container .col-md-6.links {
  display: none !important;
}

#block_myaccount_infos,
#footer .block-contact {
  padding: 0;
  max-width: none;
}

#block_myaccount_infos .myaccount-title a,
#footer .block-contact .block-contact-title {
  color: #ffffff !important;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#block_myaccount_infos ul,
#footer .block-contact #contact-infos {
  margin-top: 0.5rem;
}

#block_myaccount_infos ul li a,
#footer .block-contact #contact-infos,
#footer .block-contact #contact-infos a,
#footer p,
#footer li,
#footer span {
  color: #d7cec2 !important;
}

#block_myaccount_infos ul li a:hover,
#footer .block-contact #contact-infos a:hover,
#footer a:hover {
  color: #ffd0a3 !important;
}

#footer .copyright,
#footer .text-sm-center,
#footer .text-xs-center {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bfae9d !important;
  text-align: center;
}

body#checkout {
  background: linear-gradient(180deg, #f7f4ef, #ede6db);
  color: #1f1f1f;
}

body#checkout #header .header-top,
body#checkout #header .header-nav {
  background: rgba(255, 255, 255, 0.92);
}

body#checkout section.checkout-step,
body#checkout .cart-summary,
body#checkout .block-promo,
body#checkout .order-summary-content {
  border-radius: var(--radius-md);
  border: 1px solid rgba(19, 19, 19, 0.1);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

body#checkout .step-title {
  color: #181818;
  font-family: 'Sora', sans-serif;
}

body#checkout .address-item {
  border-radius: 12px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  background: #ffffff;
}

.pagination .page-list,
.pagination .page-item,
.pagination .page-link {
  border-color: rgba(19, 19, 19, 0.16);
}

.page-item.active .page-link,
.page-link:hover {
  color: #ffffff;
  border-color: rgba(247, 139, 31, 0.9);
  background: linear-gradient(120deg, var(--accent-3), var(--accent-2));
}

@media (max-width: 991px) {
  #header {
    position: relative;
  }

  #_desktop_logo img,
  #_mobile_logo img,
  .logo {
    max-height: 64px;
  }

  #carousel::after {
    left: 1rem;
    top: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  #carousel .carousel-item img {
    height: clamp(240px, 48vw, 340px);
  }

  .featured-products .products.row,
  .page-category #js-product-list .products.row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  #footer .footer-container .row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 767px) {
  .featured-products,
  .products,
  .product-accessories,
  #left-column .block-categories,
  .page-category .block-category,
  .page-category .card {
    border-radius: 14px;
  }

  h1,
  .h1,
  .products-section-title,
  .page-title {
    font-size: 1.18rem;
  }

  #carousel {
    border-radius: 16px;
    padding: 0.5rem;
  }

  #carousel .carousel-inner {
    border-radius: 12px;
  }

  #carousel .carousel-control {
    width: 42px;
    height: 42px;
    top: calc(50% - 21px);
  }

  #carousel .left.carousel-control {
    left: 0.55rem;
  }

  #carousel .right.carousel-control {
    right: 0.55rem;
  }
}

/* Keep checkout addresses full width on >=768px */
@media (min-width: 768px) {
  body#checkout .address-selector .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ========== REQUESTED TWEAKS V7 ========== */
#header .header-nav,
#header .header-top,
body#checkout #header .header-top,
body#checkout #header .header-nav {
  background: #fefaf1 !important;
}

#header .header-nav {
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
}

#header .header-top {
  border-bottom: 1px solid rgba(247, 139, 31, 0.38);
}

#_desktop_contact_link a,
#contact-link a,
#_desktop_top_menu .top-menu[data-depth="0"] > li > a,
#_desktop_user_info .user-info a,
#_desktop_cart .blockcart .header,
#_desktop_cart .blockcart .material-icons {
  color: #202020 !important;
}

/* Heart button in product cards: white border like stock badge text */
.products article .wishlist-button-add,
.wishlist-button-add {
  border: 1px solid #ffffff !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 14px rgba(20, 20, 20, 0.16);
}

.products article .wishlist-button-add i,
.wishlist-button-add i,
.products article .wishlist-button-add svg,
.wishlist-button-add svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.products article .wishlist-button-add:hover,
.wishlist-button-add:hover {
  background: rgba(255, 255, 255, 0.32) !important;
}

/* More futuristic accent without dark blue */
.featured-products {
  position: relative;
  overflow: hidden;
}

.featured-products::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(244, 178, 77, 0.9), rgba(249, 72, 45, 0.82), rgba(255, 42, 59, 0.72));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.featured-products::after {
  content: "";
  position: absolute;
  left: -18%;
  top: -70%;
  width: 40%;
  height: 260%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: allinV7Sweep 7s linear infinite;
}

@keyframes allinV7Sweep {
  0% {
    left: -28%;
  }
  100% {
    left: 125%;
  }
}

/* Social icons in footer */
#footer .block-social ul li.facebook a::before,
#footer .block-social ul li.instagram a::before,
#footer .block-social ul li.whatsapp a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#footer .block-social ul li.facebook a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffd5ab' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

#footer .block-social ul li.instagram a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffd5ab' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9 114.9-51.3 114.9-114.9S287.7 141 224.1 141zm0 189.6c-41.3 0-74.7-33.4-74.7-74.7s33.4-74.7 74.7-74.7 74.7 33.4 74.7 74.7-33.4 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.9-26.9 26.9-14.9 0-26.9-12-26.9-26.9 0-14.9 12-26.9 26.9-26.9 14.9 0 26.9 12 26.9 26.9zM398.8 80c-26.4-26.4-61.5-41-98.8-41H148c-77 0-139.5 62.5-139.5 139.5v152c0 77 62.5 139.5 139.5 139.5h152c77 0 139.5-62.5 139.5-139.5v-152c0-37.3-14.6-72.4-41.2-98.8zM398 330.5c0 54.5-44.3 98.8-98.8 98.8h-152c-54.5 0-98.8-44.3-98.8-98.8v-152c0-54.5 44.3-98.8 98.8-98.8h152c54.5 0 98.8 44.3 98.8 98.8v152z'/%3E%3C/svg%3E");
}

#footer .block-social ul li.whatsapp a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffd5ab' d='M380.9 97.1C339-6.1 212.7-36.5 118.7 26.4 24.8 89.4-10.2 211.4 29.7 312.5L0 424l114.3-29.3c96.5 52.8 218.6 18.4 281.5-76.6 42.7-64.5 48.1-146.8 14.2-216zm-156.8 285c-38 0-75.2-10.2-107.8-29.5l-7.7-4.6-67.8 17.4 17.9-66.1-5-8.2c-41.5-68-20.1-156.8 47.9-198.3 68-41.5 156.8-20.1 198.3 47.9 41.5 68 20.1 156.8-47.9 198.3-22.8 13.9-49 21.3-75.9 21.3zm78.7-106.8c-4.3-2.2-25.7-12.7-29.7-14.2-4-1.5-6.9-2.2-9.8 2.2-2.9 4.3-11.3 14.2-13.8 17.1-2.5 2.9-5.1 3.3-9.4 1.1-25.7-12.8-42.6-22.8-59.5-51.6-4.5-7.7 4.5-7.1 12.8-23.5 1.4-2.9.7-5.4-.4-7.7-1.1-2.2-9.8-23.6-13.4-32.3-3.5-8.5-7.1-7.4-9.8-7.5-2.5-.1-5.4-.1-8.3-.1s-7.7 1.1-11.8 5.4c-4 4.3-15.4 15.1-15.4 36.8s15.8 42.7 18 45.7c2.2 2.9 31 47.3 75.1 66.3 10.5 4.5 18.7 7.2 25.1 9.2 10.5 3.3 20.1 2.8 27.6 1.7 8.4-1.3 25.7-10.5 29.3-20.7 3.6-10.2 3.6-18.9 2.5-20.7-1.1-1.8-4-2.9-8.3-5.1z'/%3E%3C/svg%3E");
}

#footer .block-social ul li.facebook a,
#footer .block-social ul li.instagram a,
#footer .block-social ul li.whatsapp a {
  font-size: 0 !important;
}
/* ========== END REQUESTED TWEAKS V7 ========== */

/* Heart fix: keep orange style, only white border */
.products article .wishlist-button-add,
.wishlist-button-add {
  border: 1px solid #ffffff !important;
  background: linear-gradient(120deg, var(--accent-3), var(--accent-2)) !important;
  border-radius: 999px !important;
}

.products article .wishlist-button-add i,
.wishlist-button-add i,
.products article .wishlist-button-add svg,
.wishlist-button-add svg {
  color: #fff4e7 !important;
  fill: #fff4e7 !important;
  stroke: #fff4e7 !important;
}

/* ========== FIX SOCIAL ICONS + CATEGORY HEADER GAP (V7C) ========== */
#footer .block-social ul {
  gap: 0.7rem !important;
}

#footer .block-social ul li {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#footer .block-social ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  background-image: none !important;
  border: 1px solid rgba(247, 139, 31, 0.5) !important;
  border-radius: 50% !important;
  text-indent: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
}

#footer .block-social ul li a::before {
  content: "" !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

#footer .block-social ul li a::after {
  content: none !important;
}

/* Remove large empty area below category title */
.page-category #js-product-list-header .block-category {
  min-height: 0 !important;
  margin-bottom: 0.8rem !important;
  padding: 1rem 1.2rem 0.85rem !important;
}

.page-category #js-product-list-header .block-category .block-category-inner {
  margin: 0 !important;
  padding: 0 !important;
}

.page-category #js-product-list-header .block-category .block-category-inner:empty {
  display: none !important;
}

.page-category #js-product-list-header .block-category h1 {
  margin-bottom: 0 !important;
}
/* ========== END FIX SOCIAL ICONS + CATEGORY HEADER GAP (V7C) ========== */

/* ========== FUTURISTIC REWORK V8D ========== */
:root {
  --allin-bg-main: #fefaf1;
  --allin-bg-soft: #fff4e3;
  --allin-ink: #17120f;
  --allin-muted: #6f5a49;
  --allin-orange: #f58816;
  --allin-orange-2: #f56e1f;
  --allin-red: #ff3d2f;
  --allin-card-line: rgba(245, 136, 22, 0.32);
  --allin-glow: 0 18px 40px rgba(50, 28, 13, 0.13);
}

body {
  background:
    radial-gradient(circle at 15% -10%, rgba(245, 136, 22, 0.2), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(255, 61, 47, 0.15), transparent 38%),
    linear-gradient(180deg, #fefaf1 0%, #f5ecde 100%) !important;
  color: var(--allin-ink) !important;
}

#header {
  border-bottom: 1px solid rgba(245, 136, 22, 0.22);
}

#header .header-nav,
#header .header-top,
body#checkout #header .header-top,
body#checkout #header .header-nav {
  background: #fefaf1 !important;
}

#header .header-nav {
  border-bottom: 1px solid rgba(23, 18, 15, 0.08) !important;
}

#header .header-top {
  position: relative;
  border-bottom: 1px solid rgba(245, 136, 22, 0.36) !important;
}

#header .header-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 136, 22, 0), rgba(245, 136, 22, 0.7), rgba(255, 61, 47, 0.6), rgba(245, 136, 22, 0));
  pointer-events: none;
}

#_desktop_logo img,
#_mobile_logo img,
.logo {
  max-height: 74px !important;
}

#_desktop_top_menu .top-menu[data-depth="0"] {
  gap: 0.72rem !important;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a {
  padding: 0.7rem 1.08rem !important;
  border: 1px solid rgba(245, 136, 22, 0.42) !important;
  border-radius: 14px !important;
  background: linear-gradient(140deg, #fffbf5 0%, #ffefd8 100%) !important;
  color: #241a14 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 22px rgba(67, 37, 18, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 6px 50%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a::before {
  height: 2px !important;
  bottom: 0.18rem !important;
  background: linear-gradient(90deg, var(--allin-red), var(--allin-orange)) !important;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a:hover,
#_desktop_top_menu .top-menu[data-depth="0"] > li.current > a {
  color: #130e0b !important;
  border-color: rgba(245, 136, 22, 0.72) !important;
  box-shadow: 0 14px 28px rgba(67, 37, 18, 0.19), 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  transform: translateY(-1px);
}

#_desktop_user_info .user-info,
#_desktop_cart .blockcart {
  border: 1px solid rgba(245, 136, 22, 0.48) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: 0 8px 18px rgba(42, 23, 11, 0.12) !important;
}

#carousel,
.featured-products,
.products,
.product-accessories,
#category #js-product-list-header .block-category,
.page-category #js-product-list-header .block-category {
  background: linear-gradient(160deg, rgba(255, 252, 246, 0.96), rgba(255, 241, 216, 0.9)) !important;
  border: 1px solid var(--allin-card-line) !important;
  box-shadow: var(--allin-glow) !important;
}

#carousel {
  padding: 0.9rem !important;
}

#carousel .carousel-inner {
  border-radius: 20px !important;
}

#carousel .carousel-control {
  border: 1px solid rgba(245, 136, 22, 0.42) !important;
  background: rgba(26, 20, 15, 0.72) !important;
}

#carousel .carousel-control .material-icons {
  color: #ffe9d1 !important;
}

.featured-products {
  position: relative;
  overflow: hidden;
  margin-top: 1.65rem !important;
  padding: 1.7rem 1.55rem 1.85rem !important;
}

.featured-products::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(125deg, rgba(245, 136, 22, 0.95), rgba(255, 61, 47, 0.76), rgba(245, 136, 22, 0.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.68;
}

.featured-products::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -55%;
  width: 36%;
  height: 220%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: allinV8Sweep 8s linear infinite;
}

@keyframes allinV8Sweep {
  0% {
    left: -36%;
  }
  100% {
    left: 122%;
  }
}

.featured-products .products-section-title {
  color: #1d1410 !important;
  letter-spacing: 0.05em !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.featured-products .products-section-title::after,
.page-title::after,
.block-category h1::after {
  background: linear-gradient(90deg, var(--allin-red), var(--allin-orange)) !important;
}

.product-miniature .thumbnail-container {
  border: 1px solid rgba(245, 136, 22, 0.34) !important;
  background: linear-gradient(180deg, #fffdf9 0%, #fff3e4 100%) !important;
  box-shadow: 0 12px 24px rgba(36, 20, 10, 0.12) !important;
}

.product-miniature:hover .thumbnail-container {
  border-color: rgba(245, 136, 22, 0.72) !important;
  box-shadow: 0 18px 30px rgba(36, 20, 10, 0.18) !important;
}

.product-miniature .thumbnail-top {
  background: linear-gradient(180deg, #fff8ec, #ffe8cb) !important;
}

.product-title a,
.product-name a {
  color: #201611 !important;
}

.product-price,
.price,
.current-price,
.current-price-value,
.product-price-and-shipping {
  color: #bf4b17 !important;
}

li.product-flag,
.product-flags li.product-flag {
  background: linear-gradient(90deg, #ff6f1f, #f58816) !important;
  color: #fff9ef !important;
}

/* Keep orange heart, only white border */
.products article .wishlist-button-add,
.wishlist-button-add {
  border: 1px solid #ffffff !important;
  background: linear-gradient(120deg, #ff6f1f, #f58816) !important;
  box-shadow: 0 8px 16px rgba(56, 29, 12, 0.24) !important;
}

.products article .wishlist-button-add i,
.wishlist-button-add i,
.products article .wishlist-button-add svg,
.wishlist-button-add svg {
  color: #fff8ee !important;
  fill: #fff8ee !important;
  stroke: #fff8ee !important;
}

/* Category header gap fix (hard override) */
#category #js-product-list-header,
.page-category #js-product-list-header {
  margin-bottom: 0.55rem !important;
}

#category #js-product-list-header .block-category,
.page-category #js-product-list-header .block-category {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0.65rem !important;
  padding: 0.95rem 1.2rem 0.85rem !important;
}

#category #js-product-list-header .block-category h1,
.page-category #js-product-list-header .block-category h1 {
  margin: 0 !important;
  font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
  color: #1a130f !important;
}

#category #js-product-list-header .block-category .block-category-inner,
.page-category #js-product-list-header .block-category .block-category-inner {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  line-height: 0 !important;
}

#category #js-product-list-header .block-category .block-category-inner:empty,
.page-category #js-product-list-header .block-category .block-category-inner:empty {
  display: none !important;
}

/* Keep this panel hidden as requested */
#subcategories,
#search_filters_suppliers,
#left-column #search_filters_brands,
.page-category #left-column #search_filters_wrapper {
  display: none !important;
}

#footer {
  margin-top: 2.8rem !important;
  background:
    radial-gradient(circle at 12% -80%, rgba(245, 136, 22, 0.35), transparent 42%),
    radial-gradient(circle at 88% -70%, rgba(255, 61, 47, 0.23), transparent 40%),
    #130f0d !important;
  border-top: 1px solid rgba(245, 136, 22, 0.58) !important;
  color: #f7e9d8 !important;
}

#footer > .container > .row {
  justify-content: center !important;
  padding: 0.95rem 0 0.55rem !important;
}

#footer .block-social {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  text-align: center !important;
}

#footer .block-social ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 0.8rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

#footer .block-social ul li,
#footer .block-social ul li.facebook,
#footer .block-social ul li.instagram,
#footer .block-social ul li.whatsapp {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

#footer .block-social ul li a,
#footer .block-social ul li.facebook a,
#footer .block-social ul li.instagram a,
#footer .block-social ul li.whatsapp a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  border-radius: 50% !important;
  border: 1.6px solid rgba(255, 255, 255, 0.9) !important;
  background: linear-gradient(135deg, #ff7a22, #f58816) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 167, 102, 0.28) inset !important;
  text-indent: -9999px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  color: transparent !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

#footer .block-social ul li a::before {
  content: "" !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

#footer .block-social ul li.facebook a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff9ef' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E") !important;
}

#footer .block-social ul li.instagram a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff9ef' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9 114.9-51.3 114.9-114.9S287.7 141 224.1 141zm0 189.6c-41.3 0-74.7-33.4-74.7-74.7s33.4-74.7 74.7-74.7 74.7 33.4 74.7 74.7-33.4 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.9-26.9 26.9-14.9 0-26.9-12-26.9-26.9 0-14.9 12-26.9 26.9-26.9 14.9 0 26.9 12 26.9 26.9zM398.8 80c-26.4-26.4-61.5-41-98.8-41H148c-77 0-139.5 62.5-139.5 139.5v152c0 77 62.5 139.5 139.5 139.5h152c77 0 139.5-62.5 139.5-139.5v-152c0-37.3-14.6-72.4-41.2-98.8zM398 330.5c0 54.5-44.3 98.8-98.8 98.8h-152c-54.5 0-98.8-44.3-98.8-98.8v-152c0-54.5 44.3-98.8 98.8-98.8h152c54.5 0 98.8 44.3 98.8 98.8v152z'/%3E%3C/svg%3E") !important;
}

#footer .block-social ul li.whatsapp a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff9ef' d='M380.9 97.1C339-6.1 212.7-36.5 118.7 26.4 24.8 89.4-10.2 211.4 29.7 312.5L0 424l114.3-29.3c96.5 52.8 218.6 18.4 281.5-76.6 42.7-64.5 48.1-146.8 14.2-216zm-156.8 285c-38 0-75.2-10.2-107.8-29.5l-7.7-4.6-67.8 17.4 17.9-66.1-5-8.2c-41.5-68-20.1-156.8 47.9-198.3 68-41.5 156.8-20.1 198.3 47.9 41.5 68 20.1 156.8-47.9 198.3-22.8 13.9-49 21.3-75.9 21.3zm78.7-106.8c-4.3-2.2-25.7-12.7-29.7-14.2-4-1.5-6.9-2.2-9.8 2.2-2.9 4.3-11.3 14.2-13.8 17.1-2.5 2.9-5.1 3.3-9.4 1.1-25.7-12.8-42.6-22.8-59.5-51.6-4.5-7.7 4.5-7.1 12.8-23.5 1.4-2.9.7-5.4-.4-7.7-1.1-2.2-9.8-23.6-13.4-32.3-3.5-8.5-7.1-7.4-9.8-7.5-2.5-.1-5.4-.1-8.3-.1s-7.7 1.1-11.8 5.4c-4 4.3-15.4 15.1-15.4 36.8s15.8 42.7 18 45.7c2.2 2.9 31 47.3 75.1 66.3 10.5 4.5 18.7 7.2 25.1 9.2 10.5 3.3 20.1 2.8 27.6 1.7 8.4-1.3 25.7-10.5 29.3-20.7 3.6-10.2 3.6-18.9 2.5-20.7-1.1-1.8-4-2.9-8.3-5.1z'/%3E%3C/svg%3E") !important;
}

#footer .block-social ul li a:hover {
  transform: translateY(-1px) scale(1.03) !important;
  filter: brightness(1.03) !important;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 185, 127, 0.35) inset !important;
}

#footer .footer-container {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

#footer .footer-container .row {
  gap: 1.6rem !important;
}

#block_myaccount_infos .myaccount-title a,
#footer .block-contact .block-contact-title {
  color: #ffe7cf !important;
}

#block_myaccount_infos ul li a,
#footer .block-contact #contact-infos,
#footer .block-contact #contact-infos a,
#footer p,
#footer li,
#footer span {
  color: #e6d2bc !important;
}

#footer .copyright,
#footer .text-sm-center,
#footer .text-xs-center {
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #d2b89e !important;
}

@media (max-width: 991px) {
  #_desktop_top_menu .top-menu[data-depth="0"] > li > a {
    clip-path: none;
    border-radius: 12px !important;
  }

  #category #js-product-list-header .block-category,
  .page-category #js-product-list-header .block-category {
    padding: 0.85rem 1rem 0.8rem !important;
  }
}

@media (max-width: 767px) {
  #footer .block-social ul {
    gap: 0.62rem !important;
  }

  #footer .block-social ul li a {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
}
/* ========== END FUTURISTIC REWORK V8D ========== */

/* ========== BUTTON & WHATSAPP POLISH V8E ========== */
:root {
  --allin-btn-grad: linear-gradient(135deg, #ffab3d 0%, #ff7d27 48%, #ff4f2f 100%);
  --allin-btn-line: rgba(255, 255, 255, 0.9);
  --allin-btn-shadow: 0 14px 26px rgba(74, 36, 14, 0.26), 0 0 0 1px rgba(255, 180, 118, 0.35) inset;
}

/* Top menu buttons: cleaner and more premium */
#_desktop_top_menu .top-menu[data-depth="0"] > li > a {
  padding: 0.72rem 1.15rem !important;
  border-radius: 12px !important;
  clip-path: none !important;
  border: 1px solid rgba(245, 136, 22, 0.5) !important;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(255, 236, 202, 0.94)) !important;
  color: #241710 !important;
  box-shadow: 0 10px 20px rgba(61, 33, 16, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a::before {
  display: none !important;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4f2f, #ff9b36);
  transform: scaleX(0.18);
  transform-origin: left center;
  opacity: 0.64;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a:hover,
#_desktop_top_menu .top-menu[data-depth="0"] > li.current > a {
  border-color: rgba(245, 136, 22, 0.78) !important;
  box-shadow: 0 14px 26px rgba(61, 33, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
  transform: translateY(-1px);
}

#_desktop_top_menu .top-menu[data-depth="0"] > li > a:hover::after,
#_desktop_top_menu .top-menu[data-depth="0"] > li.current > a::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Main CTA buttons */
.btn,
button,
input[type="submit"],
input[type="button"],
.btn-primary {
  position: relative;
  overflow: hidden;
  border-radius: 14px !important;
  border: 1px solid var(--allin-btn-line) !important;
  background: var(--allin-btn-grad) !important;
  color: #fff8ef !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase;
  box-shadow: var(--allin-btn-shadow) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn::after,
button::after,
input[type="submit"]::after,
input[type="button"]::after,
.btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 48%;
  height: 300%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 30px rgba(74, 36, 14, 0.32), 0 0 0 1px rgba(255, 205, 164, 0.38) inset !important;
}

/* Secondary buttons remain elegant but lighter */
.btn-secondary,
.btn-tertiary,
.products-sort-order .select-title {
  border-radius: 12px !important;
  border: 1px solid rgba(245, 136, 22, 0.5) !important;
  background: linear-gradient(160deg, #fffaf2, #ffe8c8) !important;
  color: #2b1d14 !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 18px rgba(61, 33, 16, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.btn-secondary:hover,
.btn-tertiary:hover,
.products-sort-order .select-title:hover {
  border-color: rgba(245, 136, 22, 0.72) !important;
  color: #1f140d !important;
  box-shadow: 0 12px 22px rgba(61, 33, 16, 0.16) !important;
}

/* Social icons polish + crisp WhatsApp glyph */
#footer .block-social ul li a {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border: 1.8px solid rgba(255, 255, 255, 0.95) !important;
  background: linear-gradient(135deg, #ff8a2b, #f56f1f) !important;
}

#footer .block-social ul li a::before {
  width: 19px !important;
  height: 19px !important;
}

#footer .block-social ul li.whatsapp a::before {
  width: 20px !important;
  height: 20px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20.4 11.8a8.4 8.4 0 0 1-12.5 7.4L3 20.2l1.1-4.8A8.4 8.4 0 1 1 20.4 11.8Z' stroke='%23fff9ef' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.6 8.3c.2-.3.4-.4.7-.4h.6c.2 0 .4.1.5.3l.8 1.8c.1.3.1.6-.1.8l-.6.7c.5 1 1.4 1.9 2.5 2.4l.7-.5c.3-.2.5-.2.8-.1l1.8.8c.3.1.4.3.4.5v.6c0 .2-.1.4-.3.6-.4.3-1.1.5-1.8.3-3.2-.8-5.8-3.4-6.6-6.6-.2-.7 0-1.4.3-1.8Z' fill='%23fff9ef'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
}

#footer .block-social ul li a:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 205, 162, 0.42) inset !important;
}

@media (max-width: 767px) {
  #footer .block-social ul li a {
    width: 41px !important;
    height: 41px !important;
    min-width: 41px !important;
    min-height: 41px !important;
  }
}
/* ========== END BUTTON & WHATSAPP POLISH V8E ========== */

/* ========== HEADER ACTION BUTTONS + CONTACT EMAIL RULE V8F ========== */
#header .header-nav .right-nav {
  align-items: center !important;
  gap: 0.55rem !important;
}

#header .header-nav #_desktop_user_info,
#header .header-nav #_desktop_cart {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

#header .header-nav #_desktop_user_info .user-info,
#header .header-nav #_desktop_cart .blockcart {
  margin: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 0.92rem !important;
  border-radius: 12px !important;
  border: 1px solid rgba(245, 136, 22, 0.56) !important;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 215, 0.94)) !important;
  box-shadow: 0 10px 18px rgba(61, 33, 16, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#header .header-nav #_desktop_cart .blockcart {
  padding: 0 1.04rem !important;
}

#header .header-nav #_desktop_user_info .user-info a,
#header .header-nav #_desktop_cart .blockcart .header {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.34rem !important;
  line-height: 1 !important;
  color: #22170f !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.012em !important;
  white-space: nowrap;
}

#header .header-nav #_desktop_user_info .user-info a:hover,
#header .header-nav #_desktop_cart .blockcart .header:hover {
  text-decoration: none !important;
}

#header .header-nav #_desktop_user_info .material-icons,
#header .header-nav #_desktop_cart .material-icons {
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 1.22rem !important;
  color: #2a1a10 !important;
}

#header .header-nav #_desktop_cart .cart-products-count {
  margin-left: 0.08rem !important;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #5b3519 !important;
}

#header .header-nav #_desktop_user_info .user-info:hover,
#header .header-nav #_desktop_cart .blockcart:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 136, 22, 0.78) !important;
  box-shadow: 0 14px 24px rgba(61, 33, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

/* Safety fallback in case contact module cache still outputs old email */
#footer #contact-infos a[href^="mailto:admingt@allingt.com"] {
  display: none !important;
}

@media (max-width: 767px) {
  #header .header-nav #_desktop_user_info .user-info,
  #header .header-nav #_desktop_cart .blockcart {
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 10px !important;
  }
}
/* ========== END HEADER ACTION BUTTONS + CONTACT EMAIL RULE V8F ========== */

/* ========== HEADER ACTION SIZE + CART TEXT V8G ========== */
#header .header-nav #_desktop_user_info .user-info,
#header .header-nav #_desktop_cart .blockcart {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 0.72rem !important;
  border-radius: 10px !important;
}

#header .header-nav #_desktop_cart .blockcart {
  padding: 0 0.82rem !important;
}

#header .header-nav #_desktop_user_info .user-info a,
#header .header-nav #_desktop_cart .blockcart .header,
#header .header-nav #_desktop_cart .blockcart .header .hidden-sm-down,
#header .header-nav #_desktop_cart .cart-products-count {
  color: #141414 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
}

#header .header-nav #_desktop_user_info .material-icons,
#header .header-nav #_desktop_cart .material-icons,
#header .header-nav #_desktop_cart .shopping-cart {
  color: #141414 !important;
  font-size: 1.06rem !important;
}

#header .header-nav #_desktop_cart .cart-products-count {
  margin-left: 0.12rem !important;
  color: #141414 !important;
}

/* Keep cart readable when PrestaShop sets it active */
#header .header-nav .cart-preview.active,
#header .header-nav #_desktop_cart .blockcart.active {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 215, 0.94)) !important;
  border-color: rgba(245, 136, 22, 0.68) !important;
}

#header .header-nav .cart-preview.active a,
#header .header-nav .cart-preview.active i,
#header .header-nav .cart-preview.active .header,
#header .header-nav .cart-preview.active .cart-products-count,
#header .header-nav .blockcart.active a,
#header .header-nav .blockcart.active i,
#header .header-nav .blockcart.active .header,
#header .header-nav .blockcart.active .cart-products-count {
  color: #111111 !important;
}

@media (max-width: 767px) {
  #header .header-nav #_desktop_user_info .user-info,
  #header .header-nav #_desktop_cart .blockcart {
    height: 34px !important;
    min-height: 34px !important;
    border-radius: 9px !important;
  }
}
/* ========== END HEADER ACTION SIZE + CART TEXT V8G ========== */


/* ========== CHECKOUT DATA CAPTURE + MANUAL PAYMENT PANEL V9 ========== */
body#checkout .allin-hidden {
  display: none !important;
}

body#checkout .allin-radio-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

body#checkout .allin-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-weight: 600;
  color: #2a1a10;
}

body#checkout .allin-address-form input.is-cf {
  background: #f6efe4 !important;
  color: #5a4433 !important;
  font-weight: 700;
}

body#checkout .allin-payment-panel {
  border: 1px solid rgba(245, 136, 22, 0.32);
  background: linear-gradient(160deg, #fffaf2 0%, #ffeed7 100%);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 16px 28px rgba(57, 31, 15, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

body#checkout .allin-payment-head h4 {
  margin: 0 0 0.35rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #241810;
}

body#checkout .allin-payment-head p {
  margin: 0 0 0.85rem;
  color: #5f4635;
  font-size: 0.93rem;
}

body#checkout .allin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

body#checkout .allin-summary-card {
  border: 1px solid rgba(245, 136, 22, 0.24);
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  background: rgba(255, 255, 255, 0.66);
}

body#checkout .allin-summary-card span {
  display: block;
  font-size: 0.76rem;
  color: #7c5a42;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body#checkout .allin-summary-card strong {
  font-family: 'Sora', sans-serif;
  color: #1f140d;
  font-weight: 700;
}

body#checkout .allin-summary-card.is-total {
  background: linear-gradient(160deg, #fff2dd 0%, #ffdcb2 100%);
  border-color: rgba(245, 111, 31, 0.56);
}

body#checkout .allin-payment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.95rem;
}

body#checkout .allin-field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

body#checkout .allin-field label,
body#checkout .allin-block-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2b1d14;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

body#checkout .allin-field-full {
  grid-column: 1 / -1;
}

body#checkout .allin-pill {
  border: 1px solid rgba(245, 136, 22, 0.4);
  background: linear-gradient(150deg, #fff7ea, #ffe6c4);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  color: #4d3221;
  font-weight: 700;
  font-size: 0.84rem;
  width: fit-content;
}

body#checkout .allin-help {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: #76543a;
}

body#checkout .allin-help.is-warning {
  color: #9f2b18;
  font-weight: 700;
}

body#checkout .allin-payment-methods-block {
  border: 1px solid rgba(245, 136, 22, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.74rem;
}

body#checkout .allin-methods-grid {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 0.62rem;
}

body#checkout .allin-method-card {
  border: 1px solid rgba(245, 136, 22, 0.34);
  border-radius: 11px;
  background: linear-gradient(145deg, #fffaf4, #ffeed5);
  padding: 0.6rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  cursor: pointer;
  color: #2a1b12;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

body#checkout .allin-method-card:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 111, 31, 0.66);
  box-shadow: 0 11px 20px rgba(66, 35, 16, 0.14);
}

body#checkout .allin-method-card input {
  margin-top: 0;
}

body#checkout .allin-method-card.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body#checkout .allin-installments-wrap {
  margin-top: 0.68rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  max-width: 360px;
}

body#checkout .allin-installment-preview {
  margin: 0;
  color: #341f12;
  font-weight: 700;
}

body#checkout #allin-panel-error {
  margin-top: 0.72rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  body#checkout .allin-summary-grid,
  body#checkout .allin-payment-form-grid,
  body#checkout .allin-methods-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== END CHECKOUT DATA CAPTURE + MANUAL PAYMENT PANEL V9 ========== */


/* ========== CHECKOUT FIXES V9B ========== */
body#checkout .allin-hide-total-excl {
  display: none !important;
}

body#checkout .allin-hide-tax-line {
  display: none !important;
}

body#checkout .allin-address-form .form-control-select,
body#checkout .allin-address-form select.form-control,
body#checkout .allin-payment-panel select.form-control,
body#checkout .allin-payment-panel .form-control {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
}

body#checkout .allin-address-form .form-group.row > [class*='col-'] {
  min-width: 0;
}

body#checkout .allin-address-form .js-allin-municipio-row,
body#checkout .allin-address-form .js-allin-zona-row,
body#checkout .allin-address-form .js-allin-rural-row,
body#checkout .allin-address-form .js-allin-billing-row,
body#checkout .allin-address-form .js-allin-nit-row {
  margin-left: 0;
  margin-right: 0;
}

body#checkout .allin-address-form .allin-zona-input {
  max-width: 220px;
}

body#checkout .allin-address-form .js-allin-address1-row {
  margin-left: 0;
  margin-right: 0;
}

body#checkout .allin-address-form .allin-address1-input {
  min-height: 56px;
  font-size: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

@media (max-width: 767px) {
  body#checkout .allin-address-form .form-group.row > .col-md-3,
  body#checkout .allin-address-form .form-group.row > .col-md-6,
  body#checkout .allin-address-form .form-group.row > .col-md-8,
  body#checkout .allin-address-form .form-group.row > .col-md-9,
  body#checkout .allin-address-form .form-group.row > .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  body#checkout .allin-address-form .form-group.row > .col-md-3 {
    margin-bottom: 0.3rem;
  }

  body#checkout .allin-address-form .allin-zona-input {
    max-width: 100%;
  }
}
/* ========== END CHECKOUT FIXES V9B ========== */

/* ========== ADDRESS CARD LAYOUT FIX V9C ========== */
body#checkout .address-selector .address-item {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
  padding: 0.9rem !important;
}

body#checkout .address-selector .address-item .h4,
body#checkout .address-selector .address-item header.h4 {
  margin: 0 0 0.6rem !important;
}

body#checkout .address-selector .address-item .radio-block {
  display: block !important;
}

body#checkout .address-selector .address-item .address-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  margin-top: 0.45rem !important;
}

body#checkout .address-selector .address-item .address-buttons .btn {
  margin: 0 !important;
  min-height: auto !important;
  padding: 0.5rem 0.85rem !important;
  font-size: 0.82rem !important;
}

body#checkout .address-selector .address-item .address-body {
  margin-top: 0.25rem !important;
}

body#checkout .address-selector .address-item .address {
  min-height: 0 !important;
  height: auto !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}
/* ========== END ADDRESS CARD LAYOUT FIX V9C ========== */

/* ========== CATALOG GRID + CONTACT V10 ========== */
.featured-products .products,
.featured-products .products.row,
.page-category #js-product-list .products,
.page-category #js-product-list .products.row,
.page-best-sales #js-product-list .products,
.page-best-sales #js-product-list .products.row,
.page-new-products #js-product-list .products,
.page-new-products #js-product-list .products.row,
.page-search #js-product-list .products,
.page-search #js-product-list .products.row,
.page-manufacturer #js-product-list .products,
.page-manufacturer #js-product-list .products.row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.3rem;
  margin: 0;
  padding: 0.45rem;
  justify-content: start;
  align-items: stretch;
  box-sizing: border-box;
}

.featured-products .js-product.product,
.page-category #js-product-list .js-product.product,
.page-best-sales #js-product-list .js-product.product,
.page-new-products #js-product-list .js-product.product,
.page-search #js-product-list .js-product.product,
.page-manufacturer #js-product-list .js-product.product {
  width: 100%;
  max-width: none;
  flex: initial;
  float: none;
  margin: 0;
  padding: 0;
}

#footer .block-contact .block-contact-title::after {
  content: " / Servicio al cliente";
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 231, 207, 0.72);
}

@media (max-width: 767px) {
  .featured-products {
    padding: 1.2rem 1rem 1.3rem !important;
  }

  .featured-products .products,
  .featured-products .products.row,
  .page-category #js-product-list .products,
  .page-category #js-product-list .products.row,
  .page-best-sales #js-product-list .products,
  .page-best-sales #js-product-list .products.row,
  .page-new-products #js-product-list .products,
  .page-new-products #js-product-list .products.row,
  .page-search #js-product-list .products,
  .page-search #js-product-list .products.row,
  .page-manufacturer #js-product-list .products,
  .page-manufacturer #js-product-list .products.row {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.95rem;
    padding: 0.2rem;
  }
}
/* ========== END CATALOG GRID + CONTACT V10 ========== */

/* ========== PRODUCT BADGES + STOCK + WARRANTY V11 ========== */
.product-flags,
.product-miniature .product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  width: auto;
  max-width: calc(100% - 1.24rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

li.product-flag,
.product-flags li.product-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.34rem 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.page-product .images-container .product-flags,
.quickview .images-container .product-flags {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  max-width: none;
}

.page-product #content > .product-flags,
.page-product .page-content > .product-flags {
  width: 100%;
  max-width: 452px;
  margin: 0 0 0.65rem;
}

.page-product .images-container .product-flags .product-flag.on-sale,
.quickview .images-container .product-flags .product-flag.on-sale,
.page-product #content > .product-flags .product-flag.on-sale,
.page-product .page-content > .product-flags .product-flag.on-sale {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.page-product .images-container .product-flags .product-flag.discount,
.page-product .images-container .product-flags .product-flag.new,
.quickview .images-container .product-flags .product-flag.discount,
.quickview .images-container .product-flags .product-flag.new,
.page-product #content > .product-flags .product-flag.discount,
.page-product #content > .product-flags .product-flag.new,
.page-product .page-content > .product-flags .product-flag.discount,
.page-product .page-content > .product-flags .product-flag.new {
  flex: 0 0 auto;
}

.product-miniature .product-description {
  min-height: 164px;
}

.allin-card-stock {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #56473a;
}

.allin-card-stock-label {
  font-weight: 700;
  color: #2e2016;
}

.allin-card-stock-value {
  font-weight: 600;
}

.allin-card-stock.is-in-stock .allin-card-stock-value,
.allin-stock-detail.is-in-stock {
  color: #1f7b4d;
}

.allin-card-stock.is-out-stock .allin-card-stock-value,
.allin-stock-detail.is-out-stock {
  color: #b64022;
}

.product-quantities {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.product-quantities .label {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2b1d14;
}

.allin-stock-detail {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 136, 22, 0.34);
  background: linear-gradient(160deg, #fff8ef, #ffeaca);
  font-weight: 700;
}

.allin-warranty-box {
  margin-top: 1.1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 136, 22, 0.28);
  background: linear-gradient(165deg, rgba(255, 250, 241, 0.96), rgba(255, 237, 208, 0.9));
  box-shadow: 0 14px 28px rgba(57, 31, 15, 0.08);
}

.allin-warranty-box .h6 {
  margin-bottom: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #23170f;
}

.allin-warranty-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #46362b;
}

.allin-warranty-list li + li {
  margin-top: 0.38rem;
}

.allin-warranty-summary {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 136, 22, 0.24);
  background: linear-gradient(165deg, rgba(255, 249, 239, 0.96), rgba(255, 236, 205, 0.88));
}

.allin-warranty-summary-title {
  margin: 0 0 0.32rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #261910;
}

.allin-warranty-summary-text {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #503d30;
}

.page-product .blockreassurance_product {
  display: none !important;
}

@media (max-width: 767px) {
  .page-product .images-container .product-flags,
  .quickview .images-container .product-flags {
    top: 0.55rem;
    left: 0.55rem;
    right: 0.55rem;
  }

  .page-product .images-container .product-flags .product-flag.on-sale,
  .quickview .images-container .product-flags .product-flag.on-sale,
  .page-product #content > .product-flags .product-flag.on-sale,
  .page-product .page-content > .product-flags .product-flag.on-sale {
    max-width: 100%;
  }
}
/* ========== END PRODUCT BADGES + STOCK + WARRANTY V11 ========== */

/* ========== PRODUCT MODAL SAFETY V33 ========== */
#product-modal .modal-dialog {
  max-width: min(1100px, calc(100vw - 2rem));
  margin: 1.5rem auto;
}

#product-modal {
  z-index: 1200 !important;
}

.modal-backdrop {
  z-index: 1190 !important;
}

#product-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(19, 19, 19, 0.18);
}

#product-modal .modal-body {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 188px !important;
  align-items: start;
  gap: 1.25rem;
  padding: 2.45rem 1.35rem 1.15rem;
  background: #ffffff;
  margin-left: 0 !important;
}

#product-modal figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding-right: 3.35rem;
}

#product-modal figure picture {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbf8f4 0%, #f6f2eb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

#product-modal #thumbnails {
  width: 188px;
  min-width: 188px;
  margin: 0;
}

#product-modal .js-modal-mask {
  max-height: min(72vh, 800px);
}

#product-modal .product-cover-modal {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(64vh, 540px);
  height: auto;
  margin: 0 auto;
}

#product-modal .image-caption {
  margin-top: 1rem;
  overflow-wrap: anywhere;
}

#product-modal .allin-product-modal-close {
  position: absolute !important;
  top: 0.8rem !important;
  right: 0.8rem !important;
  z-index: 30 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ff9c3f 0%, #ff5b34 100%) !important;
  box-shadow: 0 12px 26px rgba(19, 19, 19, 0.2) !important;
  color: #ffffff !important;
  text-shadow: none !important;
  opacity: 1 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#product-modal .allin-product-modal-close:hover,
#product-modal .allin-product-modal-close:focus {
  background: linear-gradient(135deg, #ff9c3f 0%, #ff5b34 100%) !important;
  box-shadow: 0 16px 30px rgba(19, 19, 19, 0.24) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  filter: brightness(1.03);
  transform: translateY(-1px);
}

#product-modal .allin-product-modal-close span {
  display: block !important;
  line-height: 1 !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: inherit !important;
}

#product-modal .product-cover-modal,
.page-product .js-qv-product-cover,
.page-product .js-thumb,
#product-modal .js-modal-thumb {
  background: #ffffff;
  object-fit: contain;
}

@media (max-width: 1199px) {
  #product-modal .modal-dialog {
    max-width: min(960px, calc(100vw - 1.5rem));
  }
}

@media (max-width: 991px) {
  #product-modal .modal-dialog {
    max-width: calc(100vw - 1rem);
  }

  #product-modal .modal-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding-top: 2.15rem;
  }

  #product-modal figure {
    padding-right: 2.9rem;
  }

  #product-modal #thumbnails {
    width: 100%;
    min-width: 0;
  }

  #product-modal .js-modal-mask {
    max-height: none;
  }
}

@media (max-width: 767px) {
  #product-modal .modal-dialog {
    max-width: calc(100vw - 1rem);
    margin: 0.5rem auto;
  }

  #product-modal .modal-body {
    padding: 1rem 1rem 0.95rem;
  }

  #product-modal figure {
    padding-right: 2.8rem;
  }

  #product-modal .product-cover-modal {
    max-height: min(52vh, 420px);
  }

  #product-modal .allin-product-modal-close {
    top: 0.55rem !important;
    right: 0.55rem !important;
    width: 42px !important;
    height: 42px !important;
  }
}
/* ========== END PRODUCT MODAL SAFETY V33 ========== */

/* ========== CATALOG FRAME + CHECKOUT COUPON V16 ========== */
.featured-products,
.page-category #js-product-list,
.page-best-sales #js-product-list,
.page-new-products #js-product-list,
.page-search #js-product-list,
.page-manufacturer #js-product-list {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(19, 19, 19, 0.09);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.featured-products {
  padding: 1.85rem 1.65rem 1.85rem;
}

.page-category #js-product-list,
.page-best-sales #js-product-list,
.page-new-products #js-product-list,
.page-search #js-product-list,
.page-manufacturer #js-product-list {
  padding: 1.5rem 1.4rem 1.55rem;
}

.featured-products .products,
.featured-products .products.row,
.page-category #js-product-list .products,
.page-category #js-product-list .products.row,
.page-best-sales #js-product-list .products,
.page-best-sales #js-product-list .products.row,
.page-new-products #js-product-list .products,
.page-new-products #js-product-list .products.row,
.page-search #js-product-list .products,
.page-search #js-product-list .products.row,
.page-manufacturer #js-product-list .products,
.page-manufacturer #js-product-list .products.row {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  gap: 1.35rem;
  margin: 0;
  padding: 0.12rem 0.12rem 0.2rem;
  align-content: start;
}

.featured-products .products-section-title {
  margin-bottom: 1.25rem;
}

.featured-products .all-product-link {
  float: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 1.3rem;
  padding-top: 0.15rem;
}

.page-category #js-product-list .products-selection,
.page-best-sales #js-product-list .products-selection,
.page-new-products #js-product-list .products-selection,
.page-search #js-product-list .products-selection,
.page-manufacturer #js-product-list .products-selection {
  margin-bottom: 1.15rem;
}

.product-miniature .thumbnail-container {
  margin: 0;
}

.product-miniature .thumbnail-top {
  padding: 1rem;
}

.product-miniature .thumbnail-top .product-thumbnail {
  padding: 0.5rem;
}

.product-miniature .thumbnail-top img {
  image-rendering: auto;
}

body#checkout .allin-checkout-coupon-wrap {
  margin: 1rem 0 1.05rem;
}

body#checkout .allin-checkout-coupon-wrap .block-promo {
  border-radius: 16px;
  border: 1px solid rgba(245, 136, 22, 0.3);
  background: linear-gradient(160deg, #fffaf2 0%, #ffedd3 100%);
  box-shadow: 0 14px 26px rgba(57, 31, 15, 0.09);
}

body#checkout .allin-checkout-coupon-wrap .cart-voucher {
  padding: 1rem;
}

body#checkout .allin-checkout-coupon-wrap .promo-code-button {
  margin: 0;
}

body#checkout .allin-checkout-coupon-wrap .promo-code-button a {
  color: #7c3a16;
  font-weight: 700;
  text-decoration: none;
}

body#checkout .allin-checkout-coupon-wrap #promo-code {
  margin-top: 0.85rem;
}

body#checkout .allin-checkout-coupon-wrap .promo-code form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

body#checkout .allin-checkout-coupon-wrap .promo-input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  background: #fffdf9;
  color: #22170f;
  padding: 0.75rem 0.95rem;
}

body#checkout .allin-checkout-coupon-wrap .promo-code .btn {
  min-height: 46px;
  padding: 0 1.1rem;
}

body#checkout .allin-checkout-coupon-wrap .promo-name,
body#checkout .allin-checkout-coupon-wrap .promo-discounts {
  margin: 0 0 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 136, 22, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
  .featured-products {
    padding: 1.45rem 1.2rem 1.45rem;
  }

  .page-category #js-product-list,
  .page-best-sales #js-product-list,
  .page-new-products #js-product-list,
  .page-search #js-product-list,
  .page-manufacturer #js-product-list {
    padding: 1.2rem 1rem 1.25rem;
  }

  .featured-products .products,
  .featured-products .products.row,
  .page-category #js-product-list .products,
  .page-category #js-product-list .products.row,
  .page-best-sales #js-product-list .products,
  .page-best-sales #js-product-list .products.row,
  .page-new-products #js-product-list .products,
  .page-new-products #js-product-list .products.row,
  .page-search #js-product-list .products,
  .page-search #js-product-list .products.row,
  .page-manufacturer #js-product-list .products,
  .page-manufacturer #js-product-list .products.row {
    gap: 1rem;
    padding: 0.08rem;
  }
}

@media (max-width: 767px) {
  .featured-products {
    padding: 1.15rem 0.95rem 1.2rem !important;
  }

  .page-category #js-product-list,
  .page-best-sales #js-product-list,
  .page-new-products #js-product-list,
  .page-search #js-product-list,
  .page-manufacturer #js-product-list {
    padding: 1rem 0.85rem 1.1rem;
  }

  body#checkout .allin-checkout-coupon-wrap .promo-code form {
    grid-template-columns: 1fr;
  }

  body#checkout .allin-checkout-coupon-wrap .promo-code .btn {
    width: 100%;
  }
}
/* ========== END CATALOG FRAME + CHECKOUT COUPON V16 ========== */

/* ========== CART + CHECKOUT SUMMARY POLISH V17 ========== */
body#cart .cart-summary,
body#checkout .cart-summary {
  border-radius: 20px;
  overflow: hidden;
}

body#cart .cart-summary-products,
body#checkout .cart-summary-products {
  padding: 1.2rem 1.35rem 0.4rem;
}

body#cart .cart-summary .card-block,
body#checkout .cart-summary .card-block {
  padding: 1.1rem 1.35rem;
}

body#cart .cart-summary-subtotals-container,
body#checkout .cart-summary-subtotals-container {
  padding-top: 0.2rem;
  padding-bottom: 0.8rem;
}

body#cart .cart-summary-line,
body#checkout .cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
}

body#cart .cart-summary-line .label,
body#checkout .cart-summary-line .label {
  flex: 1 1 auto;
  min-width: 0;
}

body#cart .cart-summary-line .value,
body#checkout .cart-summary-line .value {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

body#cart .cart-summary-totals > .cart-summary-line:not(.cart-total):first-child,
body#cart .cart-summary-totals > .cart-summary-line:last-child,
body#checkout .cart-summary-totals > .cart-summary-line:not(.cart-total):first-child,
body#checkout .cart-summary-totals > .cart-summary-line:last-child {
  display: none;
}

body#cart .cart-summary-totals,
body#checkout .cart-summary-totals {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

body#cart .cart-summary-totals .cart-total,
body#checkout .cart-summary-totals .cart-total {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

body#cart .cart-summary .block-promo,
body#checkout .allin-checkout-coupon-wrap .block-promo {
  margin: 0.5rem 0 0;
  border-radius: 18px;
  border: 1px solid rgba(245, 136, 22, 0.22);
  background: linear-gradient(180deg, #fffdf9 0%, #fff4e6 100%);
  box-shadow: 0 12px 26px rgba(57, 31, 15, 0.08);
}

body#cart .cart-voucher,
body#checkout .allin-checkout-coupon-wrap .cart-voucher {
  padding: 1rem 1.15rem 1rem;
}

body#cart .promo-code-button,
body#checkout .allin-checkout-coupon-wrap .promo-code-button {
  margin: 0;
}

body#cart .promo-code-button > a,
body#checkout .allin-checkout-coupon-wrap .promo-code-button > a {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
}

body#cart #promo-code,
body#checkout .allin-checkout-coupon-wrap #promo-code {
  margin-top: 0.8rem;
}

body#cart .promo-code form,
body#checkout .allin-checkout-coupon-wrap .promo-code form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 136px);
  gap: 0.8rem;
  align-items: center;
  margin: 0 0 0.7rem;
}

body#cart .promo-input,
body#checkout .allin-checkout-coupon-wrap .promo-input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  box-sizing: border-box;
}

body#cart .promo-code .btn,
body#checkout .allin-checkout-coupon-wrap .promo-code .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0 !important;
  padding: 0 1rem;
  white-space: nowrap;
}

body#cart .cancel-promo,
body#checkout .allin-checkout-coupon-wrap .cancel-promo {
  display: inline-flex;
  justify-content: center;
  margin: 0.1rem auto 0;
  color: #1d9fd1;
  font-weight: 600;
}

body#cart .cart-detailed-actions.card-block,
body#checkout .cart-detailed-actions.card-block {
  padding-top: 1rem;
}

body#cart .cart-summary .card-block,
body#checkout .cart-summary .card-block {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

body#cart .cart-summary-products,
body#checkout .cart-summary-products {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

@media (max-width: 767px) {
  body#cart .cart-summary-products,
  body#checkout .cart-summary-products,
  body#cart .cart-summary .card-block,
  body#checkout .cart-summary .card-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body#cart .promo-code form,
  body#checkout .allin-checkout-coupon-wrap .promo-code form {
    grid-template-columns: 1fr;
  }

  body#cart .promo-code .btn,
  body#checkout .allin-checkout-coupon-wrap .promo-code .btn {
    width: 100%;
  }
}
/* ========== END CART + CHECKOUT SUMMARY POLISH V17 ========== */
/* ========== HERO SLIDER FIXED FRAME V18 ========== */
#carousel {
  padding: 0.8rem !important;
}

#carousel .carousel-inner {
  aspect-ratio: 11 / 4;
  min-height: 360px;
  max-height: 400px;
  background: #ffffff;
}

#carousel .carousel-item,
#carousel .carousel-item figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

#carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  background: #ffffff;
}

#carousel .carousel-control {
  top: 50% !important;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  #carousel .carousel-inner {
    aspect-ratio: 11 / 4;
    min-height: 260px;
    max-height: none;
  }
}

@media (max-width: 767px) {
  #carousel .carousel-inner {
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  #carousel .carousel-item img {
    object-fit: contain !important;
  }
}
/* ========== END HERO SLIDER FIXED FRAME V18 ========== */
/* ========== HERO SLIDER DESKTOP TUNE V19 ========== */
@media (min-width: 992px) {
  #carousel .carousel-inner {
    aspect-ratio: 5 / 2;
    min-height: 420px;
    max-height: 460px;
  }

  #carousel .carousel-item img {
    object-fit: cover !important;
    object-position: center center;
  }
}
/* ========== END HERO SLIDER DESKTOP TUNE V19 ========== */
/* ========== SLIDER CONTROLS REFINED V20 ========== */
#carousel .carousel-control {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 245, 232, 0.42);
  background: linear-gradient(145deg, rgba(78, 64, 55, 0.9), rgba(58, 46, 39, 0.86)) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(41, 28, 21, 0.22);
  opacity: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#carousel .carousel-control:hover {
  transform: translateY(-50%) scale(1.04);
  background: linear-gradient(145deg, rgba(93, 75, 64, 0.94), rgba(66, 52, 44, 0.9)) !important;
  box-shadow: 0 20px 36px rgba(41, 28, 21, 0.28);
}

#carousel .carousel-control .icon-prev,
#carousel .carousel-control .icon-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}

#carousel .carousel-control .material-icons {
  display: block;
  margin: 0 !important;
  font-size: 2.2rem !important;
  line-height: 1 !important;
  color: #fff8ef !important;
  text-shadow: none;
}

#carousel .left.carousel-control {
  left: 0.75rem;
}

#carousel .right.carousel-control {
  right: 0.75rem;
}

@media (max-width: 767px) {
  #carousel .carousel-control {
    width: 48px;
    height: 48px;
  }

  #carousel .carousel-control .material-icons {
    font-size: 1.95rem !important;
  }
}
/* ========== END SLIDER CONTROLS REFINED V20 ========== */
/* ========== SLIDER CONTROLS CENTER FIX V21 ========== */
#carousel .carousel-control .icon-prev,
#carousel .carousel-control .icon-next {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0 !important;
}

#carousel .carousel-control .material-icons {
  display: none !important;
}

#carousel .carousel-control .icon-prev::before,
#carousel .carousel-control .icon-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 4px solid #fff8ef;
  border-right: 4px solid #fff8ef;
  box-sizing: border-box;
}

#carousel .carousel-control .icon-prev::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

#carousel .carousel-control .icon-next::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

@media (max-width: 767px) {
  #carousel .carousel-control .icon-prev::before,
  #carousel .carousel-control .icon-next::before {
    width: 14px;
    height: 14px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}
/* ========== END SLIDER CONTROLS CENTER FIX V21 ========== */
/* ========== SLIDER CONTROLS HARD RESET V22 ========== */
#carousel .carousel-control .material-icons {
  display: none !important;
}

#carousel .carousel-control .icon-prev,
#carousel .carousel-control .icon-next {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

#carousel .carousel-control .icon-prev::before,
#carousel .carousel-control .icon-prev::after,
#carousel .carousel-control .icon-next::before,
#carousel .carousel-control .icon-next::after {
  content: none !important;
  display: none !important;
}

#carousel .left.carousel-control::before,
#carousel .right.carousel-control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 4px solid #fff8ef;
  border-right: 4px solid #fff8ef;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
}

#carousel .left.carousel-control::before {
  transform: translate(-34%, -50%) rotate(-135deg);
}

#carousel .right.carousel-control::before {
  transform: translate(-66%, -50%) rotate(45deg);
}

@media (max-width: 767px) {
  #carousel .left.carousel-control::before,
  #carousel .right.carousel-control::before {
    width: 13px;
    height: 13px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}
/* ========== END SLIDER CONTROLS HARD RESET V22 ========== */
/* ========== CATEGORY HEADER TITLE ONLY V23 ========== */
#category #js-product-list-header .block-category,
.page-category #js-product-list-header .block-category {
  padding: 0.95rem 1.2rem 0.9rem !important;
}

#category #js-product-list-header .block-category .block-category-inner,
.page-category #js-product-list-header .block-category .block-category-inner,
#category #js-product-list-header #category-description,
.page-category #js-product-list-header #category-description,
#category #js-product-list-header .category-cover,
.page-category #js-product-list-header .category-cover {
  display: none !important;
}

#category #js-product-list-header .block-category h1,
.page-category #js-product-list-header .block-category h1 {
  margin: 0 !important;
}
/* ========== END CATEGORY HEADER TITLE ONLY V23 ========== */
/* ========== ACCOUNT HEADER + ACCOUNT PAGE POLISH V25 ========== */
#_desktop_user_info,
#_mobile_user_info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#_desktop_user_info .user-info,
#_mobile_user_info .user-info {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#_desktop_user_info .user-info > a,
#_mobile_user_info .user-info > a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(16, 15, 14, 0.08);
  color: #1f1f1f !important;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#_desktop_user_info .user-info > a:hover,
#_mobile_user_info .user-info > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(16, 15, 14, 0.12);
}

#_desktop_user_info .user-info > a .material-icons,
#_mobile_user_info .user-info > a .material-icons {
  margin: 0 !important;
  font-size: 1.02rem;
  line-height: 1;
}

#_desktop_user_info .user-info > a.account,
#_mobile_user_info .user-info > a.account {
  order: 1;
  padding-inline: 1.05rem 1.2rem;
  border-color: rgba(19, 19, 19, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

#_desktop_user_info .user-info > a.account span.hidden-sm-down,
#_mobile_user_info .user-info > a.account span.hidden-sm-down {
  display: inline-block;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

#_desktop_user_info .user-info > a.logout,
#_mobile_user_info .user-info > a.logout {
  order: 2;
  padding-inline: 0.95rem 1.05rem;
  border-color: rgba(247, 139, 31, 0.34);
  background: linear-gradient(135deg, #fff9f2 0%, #ffe2c4 100%);
  color: #8a3613 !important;
}

#_desktop_user_info .user-info > a.logout .material-icons,
#_mobile_user_info .user-info > a.logout .material-icons {
  color: #8a3613 !important;
}

body#my-account #order-slips-link,
.page-my-account #order-slips-link,
.page-customer-account.page-my-account #order-slips-link,
body#my-account #psgdpr-link,
.page-my-account #psgdpr-link,
.page-customer-account.page-my-account #psgdpr-link {
  display: none !important;
}

body#my-account .page-footer .text-sm-center,
.page-my-account .page-footer .text-sm-center,
.page-customer-account.page-my-account .page-footer .text-sm-center {
  margin-top: 1.85rem;
}

body#my-account .page-footer .text-sm-center .account-logout-button,
.page-my-account .page-footer .text-sm-center .account-logout-button,
.page-customer-account.page-my-account .page-footer .text-sm-center .account-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 139, 31, 0.34);
  background: linear-gradient(135deg, #fff8ef 0%, #ffe4c8 100%);
  box-shadow: 0 12px 24px rgba(57, 31, 15, 0.1);
  color: #8a3613 !important;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body#my-account .page-footer .text-sm-center .account-logout-button:hover,
.page-my-account .page-footer .text-sm-center .account-logout-button:hover,
.page-customer-account.page-my-account .page-footer .text-sm-center .account-logout-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(57, 31, 15, 0.14);
  background: linear-gradient(135deg, #fffaf4 0%, #ffd7aa 100%);
}

@media (max-width: 991px) {
  #_desktop_user_info .user-info,
  #_mobile_user_info .user-info {
    gap: 0.45rem;
  }

  #_desktop_user_info .user-info > a,
  #_mobile_user_info .user-info > a {
    min-height: 40px;
    padding: 0.66rem 0.88rem;
    font-size: 0.76rem;
  }

  #_desktop_user_info .user-info > a.account span.hidden-sm-down,
  #_mobile_user_info .user-info > a.account span.hidden-sm-down {
    max-width: 9.5rem;
  }
}
/* ========== END ACCOUNT HEADER + ACCOUNT PAGE POLISH V25 ========== */

/* ========== ACCOUNT HEADER HARD RESET V26 ========== */
#header .header-nav #_desktop_user_info,
#header .header-nav #_mobile_user_info,
#_desktop_user_info,
#_mobile_user_info {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

#header .header-nav #_desktop_user_info .user-info,
#header .header-nav #_mobile_user_info .user-info,
#_desktop_user_info .user-info,
#_mobile_user_info .user-info {
  display: inline-grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: max-content !important;
  align-items: center !important;
  justify-content: end !important;
  gap: 0.7rem !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

#header .header-nav #_desktop_user_info .user-info::before,
#header .header-nav #_desktop_user_info .user-info::after,
#header .header-nav #_mobile_user_info .user-info::before,
#header .header-nav #_mobile_user_info .user-info::after,
#_desktop_user_info .user-info::before,
#_desktop_user_info .user-info::after,
#_mobile_user_info .user-info::before,
#_mobile_user_info .user-info::after {
  content: none !important;
  display: none !important;
}

#header .header-nav #_desktop_user_info .user-info:hover,
#header .header-nav #_mobile_user_info .user-info:hover,
#_desktop_user_info .user-info:hover,
#_mobile_user_info .user-info:hover {
  transform: none !important;
}

#header .header-nav #_desktop_user_info .user-info > a,
#header .header-nav #_mobile_user_info .user-info > a,
#_desktop_user_info .user-info > a,
#_mobile_user_info .user-info > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  float: none !important;
  position: relative !important;
  inset: auto !important;
  z-index: 2 !important;
  width: auto !important;
  min-width: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 1.05rem !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

#header .header-nav #_desktop_user_info .user-info > a.account,
#header .header-nav #_mobile_user_info .user-info > a.account,
#_desktop_user_info .user-info > a.account,
#_mobile_user_info .user-info > a.account {
  background: #ffffff !important;
  border: 1px solid rgba(19, 19, 19, 0.12) !important;
  box-shadow: 0 8px 18px rgba(16, 15, 14, 0.08) !important;
  color: #1d1d1d !important;
}

#header .header-nav #_desktop_user_info .user-info > a.logout,
#header .header-nav #_mobile_user_info .user-info > a.logout,
#_desktop_user_info .user-info > a.logout,
#_mobile_user_info .user-info > a.logout {
  background: linear-gradient(135deg, #fff8ef 0%, #ffe2c4 100%) !important;
  border: 1px solid rgba(247, 139, 31, 0.36) !important;
  box-shadow: 0 8px 18px rgba(138, 54, 19, 0.12) !important;
  color: #8a3613 !important;
}

#header .header-nav #_desktop_user_info .user-info > a .material-icons,
#header .header-nav #_mobile_user_info .user-info > a .material-icons,
#_desktop_user_info .user-info > a .material-icons,
#_mobile_user_info .user-info > a .material-icons {
  margin: 0 0.42rem 0 0 !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

#header .header-nav #_desktop_user_info .user-info > a.account span.hidden-sm-down,
#header .header-nav #_mobile_user_info .user-info > a.account span.hidden-sm-down,
#_desktop_user_info .user-info > a.account span.hidden-sm-down,
#_mobile_user_info .user-info > a.account span.hidden-sm-down {
  display: inline-block !important;
  max-width: 11rem !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 991px) {
  #header .header-nav #_desktop_user_info .user-info,
  #header .header-nav #_mobile_user_info .user-info,
  #_desktop_user_info .user-info,
  #_mobile_user_info .user-info {
    gap: 0.45rem !important;
  }

  #header .header-nav #_desktop_user_info .user-info > a,
  #header .header-nav #_mobile_user_info .user-info > a,
  #_desktop_user_info .user-info > a,
  #_mobile_user_info .user-info > a {
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 0.9rem !important;
  }
}
/* ========== END ACCOUNT HEADER HARD RESET V26 ========== */
/* ========== ACCOUNT HEADER HOVER ISOLATION V27 ========== */
#header .header-nav #_desktop_user_info .user-info,
#header .header-nav #_mobile_user_info .user-info,
#_desktop_user_info .user-info,
#_mobile_user_info .user-info,
#header .header-nav #_desktop_user_info .user-info:hover,
#header .header-nav #_mobile_user_info .user-info:hover,
#_desktop_user_info .user-info:hover,
#_mobile_user_info .user-info:hover {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: none !important;
}

#header .header-nav #_desktop_user_info .user-info > a,
#header .header-nav #_mobile_user_info .user-info > a,
#_desktop_user_info .user-info > a,
#_mobile_user_info .user-info > a {
  transform: none !important;
}

#header .header-nav #_desktop_user_info .user-info > a:not(:hover),
#header .header-nav #_mobile_user_info .user-info > a:not(:hover),
#_desktop_user_info .user-info > a:not(:hover),
#_mobile_user_info .user-info > a:not(:hover) {
  filter: none !important;
}

#header .header-nav #_desktop_user_info .user-info > a:hover,
#header .header-nav #_mobile_user_info .user-info > a:hover,
#_desktop_user_info .user-info > a:hover,
#_mobile_user_info .user-info > a:hover {
  z-index: 3 !important;
}
/* ========== END ACCOUNT HEADER HOVER ISOLATION V27 ========== */
/* ========== CHECKOUT COUPON APPLIED POLISH V28 ========== */
body#checkout .allin-checkout-coupon-wrap .promo-name.card-block,
body#checkout #js-checkout-summary .promo-name.card-block,
body#cart .cart-summary .promo-name.card-block {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(245, 136, 22, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff6ea 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block .cart-summary-line,
body#checkout #js-checkout-summary .promo-name.card-block .cart-summary-line,
body#cart .cart-summary .promo-name.card-block .cart-summary-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block .label,
body#checkout #js-checkout-summary .promo-name.card-block .label,
body#cart .cart-summary .promo-name.card-block .label {
  display: block;
  margin: 0;
  min-width: 0;
  color: #2d1f14;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block .float-xs-right,
body#checkout #js-checkout-summary .promo-name.card-block .float-xs-right,
body#cart .cart-summary .promo-name.card-block .float-xs-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  white-space: nowrap;
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block .float-xs-right > span,
body#checkout #js-checkout-summary .promo-name.card-block .float-xs-right > span,
body#cart .cart-summary .promo-name.card-block .float-xs-right > span {
  color: #f58816;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block [data-link-action='remove-voucher'],
body#checkout #js-checkout-summary .promo-name.card-block [data-link-action='remove-voucher'],
body#cart .cart-summary .promo-name.card-block [data-link-action='remove-voucher'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(34, 25, 18, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #221912;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(34, 25, 18, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block [data-link-action='remove-voucher']:hover,
body#checkout #js-checkout-summary .promo-name.card-block [data-link-action='remove-voucher']:hover,
body#cart .cart-summary .promo-name.card-block [data-link-action='remove-voucher']:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 136, 22, 0.38);
  box-shadow: 0 10px 22px rgba(34, 25, 18, 0.12);
}

body#checkout .allin-checkout-coupon-wrap .promo-name.card-block [data-link-action='remove-voucher'] .material-icons,
body#checkout #js-checkout-summary .promo-name.card-block [data-link-action='remove-voucher'] .material-icons,
body#cart .cart-summary .promo-name.card-block [data-link-action='remove-voucher'] .material-icons {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1;
}

body#checkout .allin-checkout-coupon-wrap .promo-code-button.display-promo,
body#checkout #js-checkout-summary .promo-code-button.display-promo,
body#cart .cart-summary .promo-code-button.display-promo {
  margin-top: 0.15rem;
}

body#checkout .allin-checkout-coupon-wrap .promo-code-button.display-promo > a,
body#checkout #js-checkout-summary .promo-code-button.display-promo > a,
body#cart .cart-summary .promo-code-button.display-promo > a {
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  body#checkout .allin-checkout-coupon-wrap .promo-name.card-block .cart-summary-line,
  body#checkout #js-checkout-summary .promo-name.card-block .cart-summary-line,
  body#cart .cart-summary .promo-name.card-block .cart-summary-line {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  body#checkout .allin-checkout-coupon-wrap .promo-name.card-block .float-xs-right,
  body#checkout #js-checkout-summary .promo-name.card-block .float-xs-right,
  body#cart .cart-summary .promo-name.card-block .float-xs-right {
    justify-content: space-between;
  }
}
/* ========== END CHECKOUT COUPON APPLIED POLISH V28 ========== */

/* ========== CHECKOUT CONTAINER HEIGHT FIX V29 ========== */
body#checkout #header .container,
body#checkout #notifications .container {
  min-height: 0 !important;
}

body#checkout #header,
body#checkout #header .header-nav,
body#checkout #notifications {
  height: auto !important;
  min-height: 0 !important;
}
/* ========== END CHECKOUT CONTAINER HEIGHT FIX V29 ========== */

/* ========== CART / CHECKOUT COUPON LAYOUT FIX V30 ========== */
body#cart,
body#checkout {
  min-height: 100vh;
}

body#cart main,
body#checkout main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body#cart #wrapper,
body#checkout #wrapper {
  flex: 1 0 auto;
}

body#cart #footer,
body#checkout #footer {
  margin-top: auto !important;
}

body#cart .cart-summary .promo-code form,
body#cart .cart-summary .cart-voucher form,
body#checkout #js-checkout-summary .promo-code form,
body#checkout #js-checkout-summary .cart-voucher form,
body#checkout .allin-checkout-coupon-wrap .promo-code form,
body#checkout .allin-checkout-coupon-wrap .cart-voucher form {
  grid-template-columns: 1fr !important;
}

body#cart .cart-summary .promo-input,
body#checkout #js-checkout-summary .promo-input,
body#checkout .allin-checkout-coupon-wrap .promo-input,
body#cart .cart-summary .promo-code .btn,
body#checkout #js-checkout-summary .promo-code .btn,
body#checkout .allin-checkout-coupon-wrap .promo-code .btn {
  width: 100% !important;
  max-width: none !important;
}

body#cart .cart-summary .cancel-promo,
body#checkout #js-checkout-summary .cancel-promo,
body#checkout .allin-checkout-coupon-wrap .cancel-promo {
  display: flex;
  justify-content: center;
}

@media (min-width: 1600px) {
  body#cart #wrapper > .container,
  body#checkout #wrapper > .container,
  body#cart #header .container,
  body#checkout #header .container,
  body#cart #footer .container,
  body#checkout #footer .container {
    width: calc(100% - 80px) !important;
    max-width: 1500px !important;
  }
}
/* ========== END CART / CHECKOUT COUPON LAYOUT FIX V30 ========== */

/* ========== GLOBAL FOOTER / CONTACT / COUPON POLISH V31 ========== */
body[class*='layout-'] {
  min-height: 100vh;
}

body[class*='layout-'] > main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body[class*='layout-'] > main > #wrapper {
  flex: 1 0 auto;
}

body[class*='layout-'] > main > #footer {
  margin-top: auto !important;
}

body#cart .cart-summary .block-promo,
body#checkout #js-checkout-summary .block-promo,
body#checkout .allin-checkout-coupon-wrap .block-promo {
  padding: 1.25rem 1.15rem 1.05rem;
}

body#cart .cart-summary #promo-code,
body#checkout #js-checkout-summary #promo-code,
body#checkout .allin-checkout-coupon-wrap #promo-code {
  margin-top: 0.85rem;
}

body#cart .cart-summary .promo-code form,
body#cart .cart-summary .cart-voucher form,
body#checkout #js-checkout-summary .promo-code form,
body#checkout #js-checkout-summary .cart-voucher form,
body#checkout .allin-checkout-coupon-wrap .promo-code form,
body#checkout .allin-checkout-coupon-wrap .cart-voucher form {
  gap: 0.85rem !important;
}

body#cart .cart-summary .promo-input,
body#checkout #js-checkout-summary .promo-input,
body#checkout .allin-checkout-coupon-wrap .promo-input {
  min-height: 3rem;
  padding-inline: 1rem;
}

body#cart .cart-summary .promo-code .btn,
body#checkout #js-checkout-summary .promo-code .btn,
body#checkout .allin-checkout-coupon-wrap .promo-code .btn {
  min-height: 2.95rem;
}

body#cart .cart-summary .cancel-promo,
body#checkout #js-checkout-summary .cancel-promo,
body#checkout .allin-checkout-coupon-wrap .cancel-promo {
  margin-top: 0.15rem;
}

body.page-contact .contact-form .allin-contact-static-field[readonly] {
  background: #ffffff;
  color: #221912;
  cursor: default;
}

body.page-contact .contact-form .allin-contact-file-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.45rem;
  border: 1px solid rgba(34, 25, 18, 0.14);
  border-radius: 1.05rem;
  background: #ffffff;
}

body.page-contact .contact-form .allin-contact-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

body.page-contact .contact-form .allin-contact-file-name {
  min-width: 0;
  padding-inline: 0.45rem;
  color: #7c756d;
  font-size: 0.96rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-contact .contact-form .allin-contact-file-shell.has-file .allin-contact-file-name {
  color: #221912;
  font-weight: 600;
}

body.page-contact .contact-form .allin-contact-file-trigger,
body.page-contact .contact-form .allin-contact-file-clear {
  margin: 0;
  white-space: nowrap;
}

body.page-contact .contact-form .allin-contact-file-trigger {
  padding: 0.82rem 1rem;
  font-size: 0.92rem;
  line-height: 1.1;
}

body.page-contact .contact-form .allin-contact-file-clear {
  padding: 0.82rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 25, 18, 0.14);
  background: #ffffff;
  color: #221912;
  box-shadow: none;
}

body.page-contact .contact-form .allin-contact-file-clear:hover {
  border-color: rgba(245, 136, 22, 0.4);
  color: #b9491a;
}

body.page-contact .contact-form .allin-contact-file-help {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  body.page-contact .contact-form .allin-contact-file-shell {
    grid-template-columns: 1fr;
  }

  body.page-contact .contact-form .allin-contact-file-trigger,
  body.page-contact .contact-form .allin-contact-file-clear {
    width: 100%;
    justify-content: center;
  }

  body.page-contact .contact-form .allin-contact-file-help {
    display: block;
    margin-top: 0.45rem;
  }
}
/* ========== END GLOBAL FOOTER / CONTACT / COUPON POLISH V31 ========== */
/* ========== MOBILE PRODUCT ACTIONS + TAP TARGETS V36 ========== */
@media (max-width: 767px) {
  html,
  body,
  #wrapper,
  #main,
  #content,
  .page-content {
    overflow-x: hidden;
  }

  #carousel,
  #carousel .carousel-inner,
  .featured-products,
  .featured-products .products {
    overflow: hidden;
  }

  #carousel .direction {
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
  }

  #carousel .carousel-control {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

  #carousel .left.carousel-control {
    left: 0.35rem;
  }

  #carousel .right.carousel-control {
    right: 0.35rem;
  }

  .featured-products .products {
    margin-left: 0;
    margin-right: 0;
  }

  .featured-products .product-miniature {
    margin-bottom: 0.95rem;
  }

  .page-product .product-actions {
    margin-top: 0.85rem;
  }

  .page-product #add-to-cart-or-refresh,
  .page-product .product-add-to-cart,
  .page-product .product-quantity {
    width: 100%;
  }

  .page-product .product-add-to-cart .control-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #241812;
  }

  .page-product .product-quantity {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) 54px;
    gap: 0.82rem;
    align-items: center;
  }

  .page-product .product-quantity .qty,
  .page-product .product-quantity .add {
    min-width: 0;
  }

  .page-product .product-quantity .qty {
    width: 88px;
  }

  .page-product .product-quantity .bootstrap-touchspin {
    width: 88px !important;
  }

  .page-product .product-quantity #quantity_wanted {
    height: 56px;
    padding: 0 0.7rem;
    font-size: 1.02rem;
    border-radius: 14px;
  }

  .page-product .product-quantity .input-group-btn-vertical {
    width: 34px;
    gap: 4px;
  }

  .page-product .product-quantity .btn-touchspin {
    width: 34px !important;
    height: 28px !important;
    min-height: 28px !important;
    padding: 0 !important;
    border-radius: 999px !important;
  }

  .page-product .product-quantity .btn-touchspin .material-icons {
    font-size: 1.15rem !important;
    line-height: 1 !important;
  }

  .page-product .product-quantity .add-to-cart {
    width: 100%;
    min-height: 56px;
    padding: 0.92rem 1rem;
    border-radius: 16px;
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .page-product .product-quantity .wishlist-button-add {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px;
    min-height: 54px;
    border-radius: 999px !important;
  }

  .page-product #product-availability {
    display: flex;
    align-items: flex-start;
    gap: 0.42rem;
    margin-top: 0.78rem;
    line-height: 1.35;
  }

  .page-product .social-sharing {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    margin-top: 1rem;
  }

  .page-product .social-sharing ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0;
  }

  .page-product .tabs .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .page-product .tabs .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .page-product .tabs .nav-link {
    min-width: max-content;
    padding: 0.8rem 0.7rem;
    font-size: 0.96rem;
    text-align: center;
  }

  .page-product .js-mailalert {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(19, 19, 19, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(19, 19, 19, 0.06);
  }

  .page-product .js-mailalert input.form-control {
    width: 100% !important;
    height: 48px;
    margin: 0;
    border-radius: 14px;
  }

  .page-product .js-mailalert .btn,
  .page-product .js-mailalert .js-mailalert-add {
    width: 100% !important;
    min-height: 50px;
    padding: 0.88rem 1rem;
    border-radius: 15px;
    white-space: normal;
    line-height: 1.18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .page-product .allin-warranty-summary {
    margin-top: 1rem;
  }
}
/* ========== END MOBILE PRODUCT ACTIONS + TAP TARGETS V36 ========== */
/* ========== MOBILE PRODUCT / CART HARDENING V37 ========== */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.page-product #main .images-container,
  body.page-product #main .js-qv-mask,
  body.page-product #main .product-images,
  body.page-product #main .product-cover {
    max-width: 100%;
  }

  body.page-product #main .js-qv-mask {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.1rem 0.2rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  body.page-product #main .js-qv-mask::-webkit-scrollbar {
    display: none;
  }

  body.page-product #main .js-qv-mask .product-images {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.55rem;
    width: max-content;
    max-width: none;
    margin: 0;
    padding: 0;
    transform: none !important;
  }

  body.page-product #main .js-qv-mask .thumb-container {
    flex: 0 0 auto;
    width: 92px;
    margin: 0 !important;
    scroll-snap-align: start;
  }

  body.page-product #main .js-qv-mask .thumb {
    width: 92px;
    height: 92px;
    object-fit: contain;
  }

  body.page-product #main .scroll-box-arrows {
    display: none !important;
  }

  body.page-product .product-quantity {
    grid-template-columns: 82px minmax(0, 1fr) !important;
    grid-template-areas:
      "qty add"
      ". wish";
    gap: 0.65rem 0.7rem;
    align-items: center;
  }

  body.page-product .product-quantity .qty {
    grid-area: qty;
    width: 82px;
  }

  body.page-product .product-quantity .bootstrap-touchspin {
    width: 82px !important;
  }

  body.page-product .product-quantity .add {
    grid-area: add;
  }

  body.page-product .product-quantity .add-to-cart {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0.9rem 0.85rem;
    font-size: 0.96rem;
    line-height: 1.16;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  body.page-product .product-quantity .add-to-cart .material-icons {
    margin-right: 0.32rem;
    flex: 0 0 auto;
  }

  body.page-product .product-quantity .wishlist-button-add,
  body.page-product .product-quantity .wishlist-button-product {
    grid-area: wish;
    justify-self: end;
    margin-left: 0 !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  body.page-product .images-container .product-flags,
  body.page-product .quickview .images-container .product-flags {
    gap: 0.48rem !important;
    width: calc(100% - 1.1rem);
  }

  body.page-product .images-container .product-flags .product-flag.on-sale,
  body.page-product .quickview .images-container .product-flags .product-flag.on-sale {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.72rem 0.95rem;
    line-height: 1.1;
    text-align: center;
  }

  body.page-product .images-container .product-flags .product-flag.discount,
  body.page-product .images-container .product-flags .product-flag.new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
  }

  body.page-product .js-mailalert .btn,
  body.page-product .js-mailalert .js-mailalert-add,
  body#cart .checkout .btn,
  body#cart .checkout a.btn,
  body#checkout .btn,
  body.page-contact .contact-form .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.18;
  }
}

@media (max-width: 420px) {
  body.page-product .product-quantity {
    grid-template-columns: 78px minmax(0, 1fr) !important;
  }

  body.page-product .product-quantity .qty,
  body.page-product .product-quantity .bootstrap-touchspin {
    width: 78px !important;
  }

  body.page-product .product-quantity .add-to-cart {
    min-height: 54px;
    font-size: 0.93rem;
    padding: 0.88rem 0.78rem;
  }
}
/* ========== END MOBILE PRODUCT / CART HARDENING V37 ========== */
/* ========== MOBILE COMMERCE HARDENING V38 ========== */
@media (max-width: 767px) {
  html,
  body,
  #wrapper,
  #content-wrapper,
  #main,
  #content,
  .page-content,
  .featured-products,
  .featured-products .products,
  .products.row {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    width: 100%;
  }

  body.page-index .featured-products .products,
  body.page-category #js-product-list .products,
  body.page-best-sales #js-product-list .products,
  body.page-new-products #js-product-list .products,
  body.page-search #js-product-list .products,
  body.page-manufacturer #js-product-list .products {
    margin-left: 0;
    margin-right: 0;
  }

  .product-miniature,
  .product-miniature .thumbnail-container,
  .product-miniature .thumbnail-top,
  .product-miniature .product-description {
    max-width: 100%;
  }

  .product-miniature .thumbnail-top {
    padding: 0.95rem 0.85rem 1rem;
  }

  .product-miniature .thumbnail-top .product-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 210px;
    padding: 0.35rem;
  }

  .product-miniature .thumbnail-top img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-miniature .product-flags {
    gap: 0.45rem;
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }

.product-miniature .product-flags .product-flag.on-sale {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100%;
  width: 100%;
  min-height: 40px;
  margin: 0 auto;
  padding: 0.72rem 1rem;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.product-miniature .product-flags .product-flag.discount,
.product-miniature .product-flags .product-flag.new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.55rem 0.82rem;
}

  body.page-product .images-container {
    overflow: hidden;
  }

  body.page-product #main .js-qv-mask .product-images {
    padding-right: 0.35rem;
  }

  body.page-product #main .js-qv-mask .product-images li,
  body.page-product #main .js-qv-mask .thumb-container {
    float: none !important;
  }

  body.page-product .wishlist-button-product {
    margin-left: 0 !important;
  }

  body.page-product .product-add-to-cart .add {
    min-width: 0;
  }

  body.page-product .product-quantity .add-to-cart,
  body.page-product .js-mailalert .btn,
  body.page-product .js-mailalert .js-mailalert-add,
  body#cart .checkout .btn,
  body#cart .checkout a.btn,
  body#checkout .btn,
  body.page-contact .contact-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.18;
  }

  body.page-product .product-quantity .add-to-cart span,
  body.page-product .js-mailalert .btn span,
  body.page-product .js-mailalert .js-mailalert-add span,
  body#cart .checkout .btn span,
  body#checkout .btn span {
    white-space: normal;
  }

  body.page-product .js-mailalert .input-group,
  body.page-product .js-mailalert .input-group-append,
  body.page-product .js-mailalert .input-group-btn {
    display: flex;
    width: 100%;
  }

  body.page-product .js-mailalert input.form-control {
    flex: 1 1 auto;
  }
}
/* ========== END MOBILE COMMERCE HARDENING V38 ========== */
/* ========== MOBILE + MODAL SAFETY V39 ========== */
#blockcart-modal,
.wishlist-modal {
  z-index: 1200 !important;
}

#blockcart-modal .modal-dialog,
.wishlist-modal .modal-dialog {
  width: min(760px, calc(100vw - 2rem));
  max-width: min(760px, calc(100vw - 2rem));
  margin: 1rem auto;
}

#blockcart-modal .modal-content,
.wishlist-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(19, 19, 19, 0.18);
}

#blockcart-modal .allin-blockcart-close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(19, 19, 19, 0.12);
  color: #1f1f1f;
}

#blockcart-modal .modal-header {
  position: relative;
  padding: 1.35rem 1.5rem 1.1rem;
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

#blockcart-modal .modal-header .close {
  display: none;
}

#blockcart-modal .modal-title {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding-right: 3rem;
  color: #1f1f1f;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
}

#blockcart-modal .modal-title .material-icons {
  flex: 0 0 auto;
  font-size: 1.7rem;
  line-height: 1;
  color: #2fa65d;
}

#blockcart-modal .modal-body {
  padding: 1.45rem 1.5rem 1.5rem;
  background: #ffffff;
}

#blockcart-modal .modal-body > .row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
  margin: 0;
}

#blockcart-modal .modal-body > .row > [class*="col-"] {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
}

#blockcart-modal .divide-right {
  min-width: 0;
  padding-right: 1.35rem;
  border-right: 1px solid rgba(19, 19, 19, 0.08);
}

#blockcart-modal .divide-right > .row {
  display: grid;
  grid-template-columns: minmax(132px, 148px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin: 0;
}

#blockcart-modal .divide-right > .row > [class*="col-"] {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
}

#blockcart-modal .product-image {
  display: block;
  width: 100%;
  max-width: 142px;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 0.45rem;
  object-fit: contain;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
  box-shadow: 0 16px 28px rgba(19, 19, 19, 0.08);
}

#blockcart-modal .product-name {
  margin: 0 0 0.55rem;
  color: #1f1f1f;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

#blockcart-modal .product-price {
  margin: 0 0 0.8rem;
  color: #c65416;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
}

#blockcart-modal .product-quantity {
  display: block;
  color: #4f4a44;
  font-size: 1rem;
  line-height: 1.5;
}

#blockcart-modal .product-quantity strong {
  color: #1f1f1f;
}

#blockcart-modal .cart-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
  height: 100%;
}

#blockcart-modal .cart-products-count {
  margin: 0 0 0.15rem;
  color: #2e2924;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

#blockcart-modal .cart-content > p {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: #3f3a34;
  font-size: 1rem;
  line-height: 1.5;
}

#blockcart-modal .cart-content > p span:last-child {
  color: #1f1f1f;
  font-weight: 700;
  text-align: right;
}

#blockcart-modal .product-total {
  margin-top: 0.15rem !important;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(19, 19, 19, 0.07);
  border-radius: 18px;
  background: #f7f4ef;
}

#blockcart-modal .cart-content-btn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: auto;
}

#blockcart-modal .cart-content-btn .btn {
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
}

#blockcart-modal .cart-content-btn .btn-secondary {
  border: 1px solid rgba(244, 178, 77, 0.55);
  background: rgba(255, 247, 237, 0.92);
  color: #2d241d;
}

#blockcart-modal .cart-content-btn .btn-primary {
  border: 0;
  background: linear-gradient(135deg, #ffb14a 0%, #ff5a2f 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 90, 47, 0.24);
}

#blockcart-modal .cart-content-btn .btn .material-icons {
  display: none;
}

.wishlist-modal:not(.show):not(.in),
.wishlist-add-to .modal-backdrop:not(.show):not(.in),
.wishlist-create .modal-backdrop:not(.show):not(.in),
.wishlist-login .modal-backdrop:not(.show):not(.in),
.wishlist-delete .modal-backdrop:not(.show):not(.in),
.wishlist-share .modal-backdrop:not(.show):not(.in),
.wishlist-rename .modal-backdrop:not(.show):not(.in) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.wishlist-modal.show,
.wishlist-modal.in {
  display: block !important;
}

.product-miniature .product-flags .product-flag.on-sale,
.page-product .images-container .product-flags .product-flag.on-sale,
.quickview .images-container .product-flags .product-flag.on-sale {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body.page-index #header,
  body.page-index #notifications,
  body.page-index #wrapper,
  body.page-index #carousel,
  body.page-index #carousel .carousel-inner,
  body.page-index #carousel .carousel-item,
  body.page-index #carousel .carousel-item img,
  body.page-index .header-nav,
  body.page-index .header-top,
  body.page-index .featured-products,
  body.page-index .featured-products .products,
  body.page-index .products-section-title {
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body.page-index #carousel,
  body.page-index #carousel .carousel-inner {
    box-sizing: border-box;
  }

  body.page-index #carousel .carousel-item img {
    display: block;
    width: 100% !important;
  }

  #blockcart-modal .modal-dialog,
  .wishlist-modal .modal-dialog {
    max-width: calc(100vw - 0.85rem);
    width: calc(100vw - 0.85rem);
    margin: 0.75rem auto;
  }

  #blockcart-modal .modal-header {
    padding: 1rem 1rem 0.9rem;
  }

  #blockcart-modal .modal-title {
    padding-right: 2.9rem;
    font-size: 0.96rem;
    gap: 0.6rem;
  }

  #blockcart-modal .modal-title .material-icons {
    font-size: 1.45rem;
  }

  #blockcart-modal .modal-body {
    padding: 1rem;
  }

  #blockcart-modal .modal-body > .row {
    display: block;
  }

  #blockcart-modal .divide-right {
    border-right: 0;
    border-bottom: 1px solid rgba(19, 19, 19, 0.08);
    margin-bottom: 1rem;
    padding-right: 0;
    padding-bottom: 1rem;
  }

  #blockcart-modal .divide-right > .row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.85rem;
  }

  #blockcart-modal .product-image {
    max-width: 92px;
    border-radius: 16px;
  }

  #blockcart-modal .product-name {
    font-size: 0.98rem;
  }

  #blockcart-modal .product-price {
    font-size: 1.25rem;
  }

  #blockcart-modal .cart-content > p {
    font-size: 0.95rem;
  }

  #blockcart-modal .cart-content-btn {
    grid-template-columns: 1fr;
  }

  #blockcart-modal .allin-blockcart-close,
  .wishlist-modal .close {
    width: 44px;
    height: 44px;
  }

  #carousel .carousel-control {
    width: 48px;
    height: 48px;
    top: calc(50% - 24px);
  }
}
/* ========== END MOBILE + MODAL SAFETY V39 ========== */
/* ========== MOBILE VIEWPORT + CHECKOUT GUARD V40 ========== */
.allin-checkout-inline-error[hidden] {
  display: none !important;
}

.allin-checkout-inline-error {
  margin: 0.95rem 0 0;
  border-radius: 16px;
}

@media (max-width: 767px) {
  body.page-index #header,
  body.page-index #notifications,
  body.page-index #wrapper,
  body.page-index #footer,
  body.page-index #carousel {
    max-width: 100vw !important;
    overflow-x: clip !important;
  }

  body.page-index #header .header-nav .container,
  body.page-index #header .header-top .container,
  body.page-index #wrapper > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  body.page-index #header .header-nav .row,
  body.page-index #header .header-top .row,
  body.page-index #wrapper > .container > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.page-index #carousel {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.page-index #carousel .left.carousel-control {
    left: 0.25rem !important;
  }

  body.page-index #carousel .right.carousel-control {
    right: 0.25rem !important;
  }

  .wishlist-modal .modal-dialog,
  #blockcart-modal .modal-dialog {
    width: calc(100vw - 0.9rem) !important;
    max-width: calc(100vw - 0.9rem) !important;
  }
}
/* ========== END MOBILE VIEWPORT + CHECKOUT GUARD V40 ========== */

/* ========== PRODUCT CARD IMAGE FIT FIX V41 ========== */
.product-miniature .thumbnail-top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 228px;
  padding: 0.55rem 0.55rem 0.65rem;
}

.product-miniature .thumbnail-top .product-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfcfd, #f3f5f7) !important;
}

.product-miniature .thumbnail-top img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.04);
  transform-origin: center;
}

@media (max-width: 767px) {
  .product-miniature .thumbnail-top {
    min-height: 184px;
    padding: 0.42rem 0.42rem 0.52rem;
  }

  .product-miniature .thumbnail-top .product-thumbnail {
    min-height: 0;
    padding: 0;
  }

  .product-miniature .thumbnail-top img {
    transform: scale(1.08);
  }
}
/* ========== END PRODUCT CARD IMAGE FIT FIX V41 ========== */

/* ========== HOME SLIDER MOBILE HARD RESET V42 ========== */
@media (max-width: 767px) {
  body.page-index #content.page-home {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.page-index #carousel {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.75rem 0 1rem !important;
    padding: 0 !important;
  }

  body.page-index #carousel .carousel-inner,
  body.page-index #carousel .carousel-item,
  body.page-index #carousel .carousel-item > a,
  body.page-index #carousel .carousel-item figure,
  body.page-index #carousel .carousel-item img,
  body.page-index #carousel .direction {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.page-index #carousel .carousel-inner {
    overflow: hidden !important;
    border-radius: 18px !important;
  }

  body.page-index #carousel .left.carousel-control {
    left: 0.35rem !important;
  }

  body.page-index #carousel .right.carousel-control {
    right: 0.35rem !important;
  }
}
/* ========== END HOME SLIDER MOBILE HARD RESET V42 ========== */

/* ========== HOME SLIDER MOBILE POLISH V43 ========== */
@media (max-width: 767px) {
  body.page-index #carousel {
    box-sizing: border-box !important;
    border-radius: 18px !important;
    border: 1px solid rgba(245, 136, 22, 0.22) !important;
    padding: 0.55rem 0.55rem 0.8rem !important;
  }

  body.page-index #carousel .carousel-inner {
    border-radius: 15px !important;
  }

  body.page-index #carousel::after {
    left: 0.85rem !important;
    right: 0.85rem !important;
    top: 0.7rem !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.09em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-index #carousel .direction {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
  }

  body.page-index #carousel .carousel-control {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    box-shadow: 0 10px 18px rgba(41, 28, 21, 0.2) !important;
  }

  body.page-index #carousel .left.carousel-control {
    left: 0.45rem !important;
  }

  body.page-index #carousel .right.carousel-control {
    right: 0.45rem !important;
  }

  body.page-index #carousel .left.carousel-control::before,
  body.page-index #carousel .right.carousel-control::before {
    width: 10px !important;
    height: 10px !important;
    border-top-width: 2.5px !important;
    border-right-width: 2.5px !important;
  }
}
/* ========== END HOME SLIDER MOBILE POLISH V43 ========== */

/* ========== PRODUCT MINIATURE CLASSIC RESET V44 ========== */
.product-miniature .thumbnail-container {
  border: 1px solid #f0f0f0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.product-miniature:hover .thumbnail-container {
  transform: none !important;
  border-color: #f0f0f0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.product-miniature .thumbnail-top {
  display: block !important;
  min-height: 0 !important;
  padding: 1rem 1rem 0.75rem !important;
  background: #ffffff !important;
}

.product-miniature .thumbnail-top .product-thumbnail {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
}

.product-miniature .thumbnail-top img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.product-miniature .product-description {
  gap: 0.35rem !important;
  min-height: 0 !important;
  padding: 0.2rem 1rem 1rem !important;
  border-top: 0 !important;
  background: #ffffff !important;
}

.product-title,
.product-title a,
.product-name a {
  color: #f78b1f !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
}

.product-title a {
  display: block !important;
  min-height: 0 !important;
}

.product-price,
.price,
.current-price,
.current-price-value,
.product-price-and-shipping {
  color: #f78b1f !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
}

.regular-price {
  color: #7a7a7a !important;
}

.product-flags,
.product-miniature .product-flags {
  top: 0.75rem !important;
  left: 0.75rem !important;
  gap: 0.35rem !important;
  width: auto !important;
  max-width: calc(100% - 1.5rem) !important;
}

.product-miniature .product-flags .product-flag {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: 0.32rem 0.48rem !important;
  border-radius: 0 !important;
  font-family: inherit !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  white-space: nowrap !important;
  background: #2fb5d2 !important;
  color: #ffffff !important;
}

.product-miniature .product-flags .product-flag.on-sale,
.product-miniature .product-flags .product-flag.discount {
  background: #f39d72 !important;
}

.product-miniature .product-flags .product-flag.new {
  background: #2fb5d2 !important;
}

@media (max-width: 767px) {
  .product-miniature .thumbnail-top {
    padding: 0.9rem 0.9rem 0.65rem !important;
  }

  .product-miniature .product-description {
    padding: 0.15rem 0.9rem 0.9rem !important;
  }

  .product-miniature .product-flags .product-flag {
    font-size: 0.75rem !important;
  }
}
/* ========== END PRODUCT MINIATURE CLASSIC RESET V44 ========== */

/* ========== DESKTOP PRODUCT GRID STABILIZER V45 ========== */
@media (min-width: 1200px) {
  .featured-products .products,
  .featured-products .products.row,
  .page-category #js-product-list .products,
  .page-category #js-product-list .products.row,
  .page-best-sales #js-product-list .products,
  .page-best-sales #js-product-list .products.row,
  .page-new-products #js-product-list .products,
  .page-new-products #js-product-list .products.row,
  .page-search #js-product-list .products,
  .page-search #js-product-list .products.row,
  .page-manufacturer #js-product-list .products,
  .page-manufacturer #js-product-list .products.row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.35rem !important;
    width: 100% !important;
    margin: 0 !important;
    justify-content: stretch !important;
    align-items: stretch !important;
  }

  .featured-products .products > .js-product.product,
  .featured-products .products.row > .js-product.product,
  .page-category #js-product-list .products > .js-product.product,
  .page-category #js-product-list .products.row > .js-product.product,
  .page-best-sales #js-product-list .products > .js-product.product,
  .page-best-sales #js-product-list .products.row > .js-product.product,
  .page-new-products #js-product-list .products > .js-product.product,
  .page-new-products #js-product-list .products.row > .js-product.product,
  .page-search #js-product-list .products > .js-product.product,
  .page-search #js-product-list .products.row > .js-product.product,
  .page-manufacturer #js-product-list .products > .js-product.product,
  .page-manufacturer #js-product-list .products.row > .js-product.product {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .featured-products .products,
  .featured-products .products.row,
  .page-category #js-product-list .products,
  .page-category #js-product-list .products.row,
  .page-best-sales #js-product-list .products,
  .page-best-sales #js-product-list .products.row,
  .page-new-products #js-product-list .products,
  .page-new-products #js-product-list .products.row,
  .page-search #js-product-list .products,
  .page-search #js-product-list .products.row,
  .page-manufacturer #js-product-list .products,
  .page-manufacturer #js-product-list .products.row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
/* ========== END DESKTOP PRODUCT GRID STABILIZER V45 ========== */

/* ========== CLASSIC PRODUCT LIST LAYOUT RESTORE V46 ========== */
.featured-products .products,
.featured-products .products.row,
.page-category #js-product-list .products,
.page-category #js-product-list .products.row,
.page-best-sales #js-product-list .products,
.page-best-sales #js-product-list .products.row,
.page-new-products #js-product-list .products,
.page-new-products #js-product-list .products.row,
.page-search #js-product-list .products,
.page-search #js-product-list .products.row,
.page-manufacturer #js-product-list .products,
.page-manufacturer #js-product-list .products.row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  width: auto !important;
  margin-left: -15px !important;
  margin-right: -15px !important;
  gap: 0 !important;
}

.featured-products .products > .js-product.product,
.featured-products .products.row > .js-product.product,
.page-category #js-product-list .products > .js-product.product,
.page-category #js-product-list .products.row > .js-product.product,
.page-best-sales #js-product-list .products > .js-product.product,
.page-best-sales #js-product-list .products.row > .js-product.product,
.page-new-products #js-product-list .products > .js-product.product,
.page-new-products #js-product-list .products.row > .js-product.product,
.page-search #js-product-list .products > .js-product.product,
.page-search #js-product-list .products.row > .js-product.product,
.page-manufacturer #js-product-list .products > .js-product.product,
.page-manufacturer #js-product-list .products.row > .js-product.product {
  display: block !important;
  float: none !important;
  flex: 0 0 25% !important;
  width: 25% !important;
  max-width: 25% !important;
  min-width: 0 !important;
  margin: 0 0 1.15rem !important;
  padding: 0 15px !important;
}

.featured-products .products > .js-product.product .product-miniature,
.featured-products .products.row > .js-product.product .product-miniature,
.page-category #js-product-list .products > .js-product.product .product-miniature,
.page-category #js-product-list .products.row > .js-product.product .product-miniature,
.page-best-sales #js-product-list .products > .js-product.product .product-miniature,
.page-best-sales #js-product-list .products.row > .js-product.product .product-miniature,
.page-new-products #js-product-list .products > .js-product.product .product-miniature,
.page-new-products #js-product-list .products.row > .js-product.product .product-miniature,
.page-search #js-product-list .products > .js-product.product .product-miniature,
.page-search #js-product-list .products.row > .js-product.product .product-miniature,
.page-manufacturer #js-product-list .products > .js-product.product .product-miniature,
.page-manufacturer #js-product-list .products.row > .js-product.product .product-miniature {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 1199px) {
  .featured-products .products > .js-product.product,
  .featured-products .products.row > .js-product.product,
  .page-category #js-product-list .products > .js-product.product,
  .page-category #js-product-list .products.row > .js-product.product,
  .page-best-sales #js-product-list .products > .js-product.product,
  .page-best-sales #js-product-list .products.row > .js-product.product,
  .page-new-products #js-product-list .products > .js-product.product,
  .page-new-products #js-product-list .products.row > .js-product.product,
  .page-search #js-product-list .products > .js-product.product,
  .page-search #js-product-list .products.row > .js-product.product,
  .page-manufacturer #js-product-list .products > .js-product.product,
  .page-manufacturer #js-product-list .products.row > .js-product.product {
    flex-basis: 33.333333% !important;
    width: 33.333333% !important;
    max-width: 33.333333% !important;
  }
}

@media (max-width: 991px) {
  .featured-products .products > .js-product.product,
  .featured-products .products.row > .js-product.product,
  .page-category #js-product-list .products > .js-product.product,
  .page-category #js-product-list .products.row > .js-product.product,
  .page-best-sales #js-product-list .products > .js-product.product,
  .page-best-sales #js-product-list .products.row > .js-product.product,
  .page-new-products #js-product-list .products > .js-product.product,
  .page-new-products #js-product-list .products.row > .js-product.product,
  .page-search #js-product-list .products > .js-product.product,
  .page-search #js-product-list .products.row > .js-product.product,
  .page-manufacturer #js-product-list .products > .js-product.product,
  .page-manufacturer #js-product-list .products.row > .js-product.product {
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 575px) {
  .featured-products .products,
  .featured-products .products.row,
  .page-category #js-product-list .products,
  .page-category #js-product-list .products.row,
  .page-best-sales #js-product-list .products,
  .page-best-sales #js-product-list .products.row,
  .page-new-products #js-product-list .products,
  .page-new-products #js-product-list .products.row,
  .page-search #js-product-list .products,
  .page-search #js-product-list .products.row,
  .page-manufacturer #js-product-list .products,
  .page-manufacturer #js-product-list .products.row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }

  .featured-products .products > .js-product.product,
  .featured-products .products.row > .js-product.product,
  .page-category #js-product-list .products > .js-product.product,
  .page-category #js-product-list .products.row > .js-product.product,
  .page-best-sales #js-product-list .products > .js-product.product,
  .page-best-sales #js-product-list .products.row > .js-product.product,
  .page-new-products #js-product-list .products > .js-product.product,
  .page-new-products #js-product-list .products.row > .js-product.product,
  .page-search #js-product-list .products > .js-product.product,
  .page-search #js-product-list .products.row > .js-product.product,
  .page-manufacturer #js-product-list .products > .js-product.product,
  .page-manufacturer #js-product-list .products.row > .js-product.product {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }
}
/* ========== END CLASSIC PRODUCT LIST LAYOUT RESTORE V46 ========== */
