:root {
  --clone-red: #ed2d2d;
  --clone-red-dark: #c91f1f;
  --clone-black: #101010;
  --clone-title-font: "Helvena", "Lato", sans-serif;
  --clone-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: "Helvena";
  src: url("../fonts/helvena/Helvena-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Helvena";
  src: url("../fonts/helvena/Helvena-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Helvena";
  src: url("../fonts/helvena/Helvena-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Helvena";
  src: url("../fonts/helvena/Helvena-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Helvena";
  src: url("../fonts/helvena/Helvena-Extrabold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Helvena";
  src: url("../fonts/helvena/Helvena-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading h2,
.clone-slide-copy span,
.clone-slide-copy h1,
.clone-mega-menu strong,
.product article .tittle,
.blog-post .tittle,
.newslatter h3 {
  font-family: var(--clone-title-font);
}

h1,
h2,
h3,
.heading h2,
.clone-slide-copy h1 {
  font-weight: 900;
}

.clone-slide-copy h1,
.clone-commerce-showcase .product article .tittle,
.main-tabs-sec .product article .tittle,
.item-col-5 .product article .tittle {
  text-transform: uppercase;
}

#wrap > header {
  display: none !important;
}

#wrap > .top-bar {
  display: block !important;
  width: 100%;
  margin: 0;
}

#wrap > .top-bar .container {
  width: min(1600px, calc(100% - 48px)) !important;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding-left: 15px;
  padding-right: 15px;
}

#wrap > .top-bar p {
  margin: 0;
  line-height: 34px;
}

#wrap > .top-bar .right-sec {
  display: flex;
  align-items: center;
}

.clone-site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(16,16,16,0.08);
  box-shadow: 0 10px 28px rgba(16,16,16,0.05);
}

.clone-header-row {
  position: relative;
  width: min(1600px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 210px auto minmax(360px, 560px) 48px;
  align-items: center;
  gap: 18px;
}

.clone-header-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.clone-header-logo img {
  display: block;
  width: min(190px, 100%);
  max-height: 64px;
  object-fit: contain;
}

.clone-header-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.clone-header-nav > a,
.clone-nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--clone-black);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition: background 220ms var(--clone-ease), color 220ms var(--clone-ease), transform 220ms var(--clone-ease);
}

.clone-header-nav > a:hover,
.clone-header-nav > a:focus,
.clone-header-nav > a.is-active,
.clone-nav-item:hover .clone-nav-trigger,
.clone-nav-item:focus-within .clone-nav-trigger {
  color: #fff;
  background: var(--clone-red);
  transform: translateY(-1px);
}

.clone-nav-item {
  position: static;
}

.clone-mega-menu {
  position: absolute;
  top: 100%;
  left: 15px;
  right: 15px;
  z-index: 1200;
  width: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr)) minmax(210px, 0.9fr);
  gap: 26px;
  padding: 24px;
  border: 1px solid rgba(16,16,16,0.08);
  background: #fff;
  box-shadow: 0 24px 56px rgba(16,16,16,0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms var(--clone-ease), transform 260ms var(--clone-ease);
}

.clone-mega-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.clone-nav-item:hover .clone-mega-menu,
.clone-nav-item:focus-within .clone-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.clone-mega-menu strong {
  display: block;
  margin-bottom: 12px;
  color: var(--clone-black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.clone-mega-menu a {
  display: block;
  padding: 8px 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(16,16,16,0.07);
}

.clone-mega-menu a:hover,
.clone-mega-menu a:focus {
  color: var(--clone-red);
}

.clone-mega-menu-small {
  grid-template-columns: 1fr 0.85fr;
}

.clone-mega-feature {
  min-height: 100%;
  padding: 18px;
  color: #fff;
  background: var(--clone-black);
}

.clone-mega-feature span {
  display: block;
  margin-bottom: 10px;
  color: var(--clone-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.clone-mega-feature b {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.clone-header-search {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 48px;
  align-items: center;
  height: 48px;
  border: 1px solid rgba(16,16,16,0.12);
  background: #f8f8f8;
  overflow: hidden;
}

.clone-header-search select,
.clone-header-search input,
.clone-header-search button {
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.clone-header-search select {
  padding: 0 14px;
  border-right: 1px solid rgba(16,16,16,0.1);
  color: #444;
  font-size: 13px;
  font-weight: 700;
}

.clone-header-search input {
  min-width: 0;
  padding: 0 16px;
  color: var(--clone-black);
}

.clone-header-search button {
  color: #fff;
  background: var(--clone-red);
  font-size: 17px;
}

.clone-user-pill,
.clone-mobile-actions a,
.clone-mobile-actions button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16,16,16,0.1);
  color: var(--clone-black);
  background: #fff;
  text-decoration: none;
  transition: transform 220ms var(--clone-ease), border-color 220ms var(--clone-ease), background 220ms var(--clone-ease), color 220ms var(--clone-ease);
}

.clone-user-pill:hover,
.clone-user-pill:focus,
.clone-mobile-actions a:hover,
.clone-mobile-actions button:hover {
  color: #fff;
  border-color: var(--clone-red);
  background: var(--clone-red);
  transform: translateY(-1px);
}

.clone-mobile-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.clone-mobile-actions button {
  padding: 0;
}

.clone-mobile-actions span,
.clone-float-cart span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: #0088cc;
  font-size: 11px;
  font-weight: 900;
  line-height: 19px;
  text-align: center;
}

.clone-mobile-menu {
  display: none;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto 12px;
  padding: 10px;
  background: #111;
}

.clone-mobile-menu a {
  display: block;
  padding: 12px 14px;
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.clone-mobile-menu a:last-child {
  border-bottom: 0;
}

.clone-mobile-menu.is-open {
  display: block;
}

.clone-search-drawer {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms var(--clone-ease);
}

.clone-search-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.clone-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,16,16,0.48);
}

.clone-search-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  padding: 28px;
  background: #fff;
  box-shadow: -18px 0 40px rgba(16,16,16,0.18);
  transform: translateX(100%);
  transition: transform 260ms var(--clone-ease);
}

.clone-search-drawer.is-open .clone-search-panel {
  transform: translateX(0);
}

.clone-search-panel strong {
  display: block;
  margin-bottom: 18px;
  color: var(--clone-black);
  font-size: 20px;
}

.clone-search-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  height: 48px;
  border: 1px solid rgba(16,16,16,0.12);
  background: #f8f8f8;
}

.clone-search-panel input,
.clone-search-panel button {
  border: 0;
  outline: 0;
}

.clone-search-panel input {
  min-width: 0;
  padding: 0 14px;
  background: transparent;
}

.clone-search-panel button,
.clone-search-close {
  color: #fff;
  background: var(--clone-red);
}

.clone-search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 0;
}

.clone-floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  display: grid;
  gap: 12px;
}

.clone-floating-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(16,16,16,0.18);
}

.clone-float-cart {
  background: var(--clone-red);
}

.clone-float-whatsapp {
  background: #25d366;
}

.clone-floating-actions i {
  font-size: 24px;
}

.container {
  width: min(1600px, calc(100% - 48px)) !important;
  max-width: 1600px;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.top-bar {
  background: var(--clone-black);
  color: #fff;
}

.top-bar a,
.top-bar p,
.top-bar .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #fff;
}

header .logo img {
  max-width: 230px;
  max-height: 72px;
}

.search-cate button.submit,
.cate-style,
.ownmenu .navbar-nav > li.active > a,
.ownmenu .navbar-nav > li > a:hover,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.btn-round,
.btn-round.big,
.product article .cart-btn,
.new-tag,
.newsletter button,
.cd-top {
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
}

.tp-caption strong,
.price,
.product article .tittle:hover,
.shipping-info i,
footer h4,
.ri-li {
  color: var(--clone-red) !important;
}

.sale-tag {
  background: var(--clone-red-dark) !important;
}

.nav-right .call-mun i,
.nav-right .call-mun strong {
  color: var(--clone-red);
}

header .navbar,
.ownmenu {
  background: var(--clone-black) !important;
}

.ownmenu .navbar-nav > li.active > a,
.ownmenu .navbar-nav > li > a:hover,
.ownmenu .nav > li.active > a,
.ownmenu .nav > li.active > a:focus,
.ownmenu .nav > li.active > a:hover,
header .navbar li.active > a,
header .navbar li.active > a:focus,
header .navbar li.active > a:hover {
  background: var(--clone-red) !important;
}

.ownmenu .navbar-toggle {
  background: #fff;
  border-radius: 6px;
}

header .navbar li.active > a::before,
header .navbar li.active > a:hover::before,
header .navbar li.active > a:focus::before,
header .navbar li > a:hover::before {
  background: var(--clone-red) !important;
}

.product article img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 20%, rgba(237,45,45,0.08), transparent 32%),
    #f7f8fa;
  padding: 18px;
  border-radius: 16px;
}

.product article .tag,
.product article .tittle,
.product article p.rev,
.product article .price,
.main-tabs-sec .nav li a,
.featur-tabs .nav-tabs > li a {
  font-family: var(--clone-title-font);
}

.product article .tittle {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  color: #0f1720;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product article .tag {
  color: #8b929c;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
}

.product article p.rev {
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
}

.product article .price {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 900;
}

.featur-tabs .nav-tabs > li a,
.main-tabs-sec .nav li a {
  outline: 0 !important;
  box-shadow: none !important;
}

.featur-tabs .nav-tabs > li a:focus,
.main-tabs-sec .nav li a:focus,
.featur-tabs .nav-tabs > li a:active,
.main-tabs-sec .nav li a:active {
  outline: 0 !important;
  box-shadow: none !important;
}

.featur-tabs .nav-tabs > li a:focus-visible,
.main-tabs-sec .nav li a:focus-visible {
  outline: 0 !important;
  box-shadow: inset 0 0 0 2px rgba(237,45,45,0.32) !important;
}

.clone-commerce-showcase .product article,
.main-tabs-sec .product article,
.item-slide-5 .product article,
.item-col-5 .product article {
  position: relative;
  min-height: 100%;
  padding: 14px 14px 18px;
  border: 1px solid rgba(16,16,16,0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16,16,16,0.05);
  transition:
    transform 220ms var(--clone-ease),
    box-shadow 220ms var(--clone-ease),
    border-color 220ms var(--clone-ease);
}

.clone-commerce-showcase .product article:hover,
.main-tabs-sec .product article:hover,
.item-slide-5 .product article:hover,
.item-col-5 .product article:hover {
  border-color: rgba(237,45,45,0.22);
  box-shadow: 0 18px 40px rgba(16,16,16,0.11);
  transform: translateY(-4px);
}

.clone-commerce-showcase .product article .cart-btn,
.main-tabs-sec .product article .cart-btn,
.item-slide-5 .product article .cart-btn,
.item-col-5 .product article .cart-btn {
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(237,45,45,0.24);
}

.clone-commerce-showcase .product article .sale-tag,
.clone-commerce-showcase .product article .new-tag,
.main-tabs-sec .product article .sale-tag,
.main-tabs-sec .product article .new-tag,
.item-slide-5 .product article .sale-tag,
.item-slide-5 .product article .new-tag,
.item-col-5 .product article .sale-tag,
.item-col-5 .product article .new-tag {
  top: 18px;
  left: 18px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(16,16,16,0.12);
}

.slid-sec .col-md-3.no-padding {
  display: none;
}

.slid-sec .col-md-9.no-padding {
  width: 100%;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #f7f7f7;
}

.slid-sec .tp-banner-container,
.slid-sec .tp-banner {
  display: none !important;
}

.slid-sec {
  background: #f4f4f4;
  padding: 0;
}

.slid-sec > .container {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
}

.slid-sec .row {
  margin-left: 0;
  margin-right: 0;
}

.tp-caption .btn-round.big {
  color: #fff;
}

.slid-sec .tp-caption {
  display: none !important;
}

.clone-hero-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #f7f7f7;
}

.clone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--slide-image) center center / cover no-repeat;
  transition:
    opacity 720ms var(--clone-ease),
    transform 820ms var(--clone-ease);
  transform: scale(1.015);
}

.clone-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0ms;
}

.clone-slide-copy {
  position: absolute;
  z-index: 20;
  left: clamp(28px, 5vw, 86px);
  top: 43%;
  width: min(540px, calc(100% - 80px));
  transform: translateY(-46%) translateX(-16px);
  opacity: 0;
  transition:
    opacity 560ms var(--clone-ease) 110ms,
    transform 680ms var(--clone-ease) 110ms;
}

.clone-slide.is-active .clone-slide-copy {
  opacity: 1 !important;
  transform: translateY(-46%) translateX(0);
}

.clone-slide-copy span {
  display: block;
  margin-bottom: 10px;
  color: #343434;
  font-size: 22px;
  font-weight: 700;
}

.clone-slide-copy h1 {
  margin: 0 0 14px;
  color: var(--clone-red);
  font-size: clamp(48px, 5vw, 84px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.clone-slide-copy p {
  margin: 0 0 24px;
  color: #242424;
  font-size: 18px;
  line-height: 1.5;
}

.clone-benefit-dock {
  position: absolute;
  z-index: 30;
  left: clamp(28px, 5vw, 86px);
  right: clamp(28px, 5vw, 86px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(16,16,16,0.08);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 45px rgba(16,16,16,0.08);
}

.clone-benefit-dock > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border-right: 1px solid rgba(16,16,16,0.08);
}

.clone-benefit-dock > div:last-child {
  border-right: 0;
}

.clone-benefit-dock i {
  grid-row: span 2;
  color: var(--clone-red);
  font-size: 34px;
  line-height: 1;
}

.clone-benefit-dock strong {
  color: var(--clone-black);
  font-size: 14px;
  line-height: 1.2;
}

.clone-benefit-dock span {
  color: #777;
  font-size: 13px;
  line-height: 1.25;
}

.clone-slider-dots {
  position: absolute;
  z-index: 35;
  right: clamp(28px, 5vw, 86px);
  bottom: 126px;
  display: flex;
  gap: 10px;
}

.clone-slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(16,16,16,0.2);
  transition: background 260ms var(--clone-ease), width 260ms var(--clone-ease);
}

.clone-slider-dots button.is-active {
  width: 54px;
  background: var(--clone-red);
}

.clone-commerce-showcase {
  background: #fff;
  padding: 38px 0 52px;
}

.clone-commerce-showcase .featur-tabs {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.clone-commerce-showcase .nav-tabs {
  margin-bottom: 38px !important;
}

.clone-hero-copy {
  position: absolute;
  z-index: 20;
  left: clamp(28px, 5vw, 86px);
  top: 50%;
  width: min(520px, calc(100% - 80px));
  transform: translateY(-46%);
  animation: cloneHeroText 760ms var(--clone-ease) both;
}

.clone-hero-copy span {
  display: block;
  margin-bottom: 10px;
  color: #555;
  font-size: 22px;
  font-weight: 700;
}

.clone-hero-copy h1 {
  margin: 0 0 14px;
  color: var(--clone-red);
  font-size: clamp(48px, 5vw, 84px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.clone-hero-copy p {
  margin: 0 0 24px;
  color: #333;
  font-size: 18px;
  line-height: 1.5;
}

.clone-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58%, 820px);
  z-index: 10;
  overflow: hidden;
}

.clone-hero-visual::before {
  content: "";
  position: absolute;
  inset: -12% -18% -12% 12%;
  background:
    linear-gradient(120deg, transparent 0 23%, rgba(237,45,45,0.92) 23% 34%, #111 34% 39%, rgba(237,45,45,0.84) 39% 49%, transparent 49%),
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18));
  transform: skewX(-14deg);
  animation: clonePlaneIn 920ms var(--clone-ease) both;
}

.clone-orbit {
  position: absolute;
  border: 1px solid rgba(237,45,45,0.28);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.clone-orbit-one {
  right: 80px;
  top: 82px;
  width: 430px;
  height: 170px;
}

.clone-orbit-two {
  right: 170px;
  bottom: 80px;
  width: 360px;
  height: 138px;
  border-color: rgba(16,16,16,0.18);
}

.clone-product {
  position: absolute;
  display: block;
  object-fit: contain;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(16,16,16,0.08);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(16,16,16,0.08);
  animation: cloneProductIn 820ms var(--clone-ease) both;
}

.clone-product-main {
  right: 116px;
  top: 86px;
  width: 265px;
  aspect-ratio: 1.25 / 1;
}

.clone-product-left {
  right: 330px;
  top: 172px;
  width: 235px;
  aspect-ratio: 1.38 / 1;
  animation-delay: 80ms;
}

.clone-product-bottom {
  right: 212px;
  bottom: 62px;
  width: 260px;
  aspect-ratio: 1.12 / 1;
  animation-delay: 150ms;
}

.clone-product-small {
  right: 70px;
  bottom: 132px;
  width: 160px;
  aspect-ratio: 1 / 1;
  animation-delay: 220ms;
}

@keyframes cloneHeroText {
  from {
    opacity: 0;
    transform: translateY(-42%) translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(-46%) translateX(0);
  }
}

@keyframes clonePlaneIn {
  from {
    opacity: 0;
    transform: skewX(-14deg) translateX(42px);
  }
  to {
    opacity: 1;
    transform: skewX(-14deg) translateX(0);
  }
}

@keyframes cloneProductIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 24px) !important;
  }

  .slid-sec .col-md-9.no-padding {
    min-height: 560px;
  }

  .clone-hero-slider {
    min-height: 560px;
  }

  .clone-slide {
    background: var(--slide-image) center bottom / cover no-repeat;
  }

  .clone-slide-copy {
    top: 30px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 18px 18px 20px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 12px 32px rgba(16,16,16,0.08);
    transform: none;
  }

  .clone-slide.is-active .clone-slide-copy {
    transform: none;
  }

  .clone-slide-copy span {
    font-size: 16px;
  }

  .clone-slide-copy h1 {
    font-size: 34px;
  }

  .clone-slide-copy p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .clone-benefit-dock {
    left: 12px;
    right: 12px;
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(255,255,255,0.96);
  }

  .clone-benefit-dock > div {
    min-height: 62px;
    padding: 8px 9px;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .clone-benefit-dock i {
    font-size: 21px;
  }

  .clone-benefit-dock strong {
    font-size: 12px;
  }

  .clone-benefit-dock span {
    font-size: 11px;
  }

  .clone-slider-dots {
    right: 18px;
    bottom: 142px;
  }

  .clone-commerce-showcase {
    padding: 24px 0 36px;
  }

  .clone-commerce-showcase .featur-tabs {
    padding-top: 0 !important;
  }

  .clone-commerce-showcase .nav-tabs {
    margin-bottom: 26px !important;
  }

  .clone-hero-copy {
    top: 48px;
    left: 24px;
    width: calc(100% - 48px);
    padding: 18px;
    margin-left: -18px;
    background: rgba(255, 255, 255, 0.84);
    transform: none;
  }

  .clone-hero-copy span {
    font-size: 16px;
  }

  .clone-hero-copy h1 {
    font-size: 34px;
  }

  .clone-hero-copy p {
    font-size: 15px;
  }

  .clone-hero-visual {
    top: 180px;
    width: 100%;
    height: 380px;
  }

  .clone-hero-visual::before {
    inset: 0 -36% -10% 18%;
  }

  .clone-orbit-one,
  .clone-orbit-two {
    display: none;
  }

  .clone-product-main {
    right: 26px;
    top: 56px;
    width: 174px;
  }

  .clone-product-left {
    right: 138px;
    top: 110px;
    width: 160px;
  }

  .clone-product-bottom {
    right: 38px;
    bottom: 38px;
    width: 172px;
  }

  .clone-product-small {
    right: 214px;
    bottom: 82px;
    width: 88px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .clone-header-row {
    width: calc(100% - 32px);
    min-height: 76px;
    grid-template-columns: 166px auto minmax(270px, 360px) 44px;
    gap: 10px;
  }

  .clone-header-logo img {
    width: 158px;
  }

  .clone-header-nav > a,
  .clone-nav-trigger {
    min-height: 38px;
    padding: 0 8px;
    font-size: 13px;
  }

  .clone-header-search {
    grid-template-columns: 94px minmax(0, 1fr) 44px;
    height: 44px;
  }

  .clone-header-search select {
    padding: 0 8px;
  }

  .slid-sec .col-md-9.no-padding,
  .clone-hero-slider {
    min-height: 520px;
  }

  .clone-slide-copy {
    left: 34px;
    width: min(470px, calc(100% - 68px));
  }

  .clone-slide-copy h1 {
    font-size: clamp(44px, 6vw, 62px);
  }

  .clone-benefit-dock {
    left: 28px;
    right: 28px;
    bottom: 22px;
  }

  .clone-benefit-dock > div {
    min-height: 66px;
    padding: 10px 12px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .clone-benefit-dock i {
    font-size: 25px;
  }

  .clone-benefit-dock strong {
    font-size: 12px;
  }

  .clone-benefit-dock span {
    font-size: 11px;
  }

  .clone-slider-dots {
    bottom: 104px;
  }

  .clone-commerce-showcase {
    padding: 32px 0 44px;
  }

  .clone-commerce-showcase .featur-tabs {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) {
  #wrap > .top-bar {
    width: 100%;
  }

  #wrap > .top-bar .container {
    width: calc(100% - 24px) !important;
    min-height: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  #wrap > .top-bar p,
  #wrap > .top-bar .social-top {
    display: none;
  }

  #wrap > .top-bar .right-sec,
  #wrap > .top-bar .right-sec ul {
    width: 100%;
  }

  #wrap > .top-bar .right-sec ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
  }

  #wrap > .top-bar .right-sec li:nth-child(3) {
    display: none;
  }

  .clone-header-row {
    width: calc(100% - 24px);
    min-height: 66px;
    grid-template-columns: minmax(128px, 1fr) auto;
    gap: 10px;
  }

  .clone-header-logo img {
    width: 156px;
    max-height: 50px;
  }

  .clone-header-nav,
  .clone-header-search,
  .clone-user-pill {
    display: none;
  }

  .clone-mega-menu {
    display: none;
  }

  .clone-mobile-actions {
    display: flex;
  }

  .clone-mobile-actions a,
  .clone-mobile-actions button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  #wrap > .top-bar .right-sec li:nth-child(1) {
    display: none;
  }

  #wrap > .top-bar .right-sec ul {
    gap: 10px;
  }

  .clone-site-header {
    box-shadow: 0 8px 20px rgba(16,16,16,0.06);
  }

  .clone-header-row {
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 8px;
  }

  .clone-header-logo img {
    width: 138px;
    max-height: 44px;
  }

  .clone-mobile-actions {
    gap: 6px;
  }

  .clone-mobile-actions a,
  .clone-mobile-actions button {
    width: 37px;
    height: 37px;
    font-size: 14px;
  }

  .clone-mobile-menu {
    width: calc(100% - 20px);
    margin-bottom: 10px;
  }

  .clone-search-panel {
    width: min(360px, calc(100% - 26px));
    padding: 24px 18px;
  }

  .clone-floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .clone-floating-actions a {
    width: 50px;
    height: 50px;
  }

  .clone-floating-actions i {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clone-hero-copy,
  .clone-hero-visual::before,
  .clone-product {
    animation: none !important;
  }
}

footer {
  background: #101010;
  padding: 54px 0 46px;
}

footer .row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 28px;
}

.clone-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
  align-items: start;
}

.clone-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clone-footer-logo {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 18px;
}

.clone-footer-intro {
  max-width: 430px;
  color: #fff !important;
  font-size: 15px;
  line-height: 1.55;
}

footer h4 {
  color: #fff !important;
  margin-bottom: 18px;
  font-weight: 800;
}

footer p,
footer a,
footer li a {
  color: rgba(255,255,255,0.82) !important;
}

footer a {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.35;
}

footer p {
  margin-bottom: 8px;
  line-height: 1.55;
}

footer .links-footer {
  margin: 0;
}

footer .links-footer li {
  margin-bottom: 10px;
}

footer .links-footer li a {
  font-size: 14px;
  line-height: 1.35;
}

footer .links-footer li a:hover,
footer .social-links a:hover {
  color: #fff !important;
}

footer .social-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.rights {
  background: #080808 !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.rights p,
.rights p a {
  color: rgba(255,255,255,0.74) !important;
}

.clone-commerce-showcase,
.clone-commerce-showcase .featur-tabs,
.clone-commerce-showcase .tab-content,
.clone-commerce-showcase .tab-pane,
.clone-commerce-showcase .owl-carousel,
.clone-commerce-showcase .owl-stage-outer,
.clone-commerce-showcase .owl-stage,
.main-tabs-sec,
.main-tabs-sec .tab-content,
.main-tabs-sec .tab-pane,
.main-tabs-sec .owl-carousel,
.main-tabs-sec .owl-stage-outer,
.main-tabs-sec .owl-stage,
.item-slide-5,
.item-slide-5 .owl-carousel,
.item-slide-5 .owl-stage-outer,
.item-slide-5 .owl-stage {
  overflow: visible !important;
}

.clone-commerce-showcase .owl-stage-outer,
.main-tabs-sec .owl-stage-outer,
.item-slide-5 .owl-stage-outer {
  padding-bottom: 28px;
  margin-bottom: -28px;
}

.product article img {
  background: transparent !important;
  border: 0 !important;
  padding: 8px;
  box-shadow: none !important;
}

.product article .cart-btn,
.product article .cart-btn:hover,
.product article .cart-btn:focus,
.product article .cart-btn:active {
  color: #fff !important;
}

.product article .cart-btn i,
.product article .cart-btn:hover i,
.product article .cart-btn:focus i,
.product article .cart-btn:active i {
  color: #fff !important;
}

.item-col-5 .product.col-2x .like-bnr {
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 34%, rgba(255,255,255,0.25) 62%, rgba(255,255,255,0) 100%),
    url("../images/clone-products/generated/weekly-feature.png") right center / cover no-repeat !important;
  box-shadow: 0 10px 28px rgba(16,16,16,0.05);
}

.item-col-5 .product.col-2x .like-bnr h5 {
  color: #101010;
  font-size: 25px;
  font-weight: 900;
}

.item-col-5 .product.col-2x .like-bnr p {
  color: #333;
}

.clone-brand-strip {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 6px;
}

.clone-brand-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  min-height: 50px;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 158px;
  height: 48px;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 180ms var(--clone-ease), transform 180ms var(--clone-ease);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: #1f242c;
  font-family: var(--clone-title-font);
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.82;
  transition: opacity 180ms var(--clone-ease), transform 180ms var(--clone-ease);
}

.brand-mark {
  display: block;
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.brand-razer,
.brand-mijia {
  max-width: 138px;
}

.brand-aiwa {
  max-width: 146px;
}

.brand-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.clone-header-search select {
  color: #fff;
  background:
    linear-gradient(45deg, transparent 50%, #fff 50%) calc(100% - 18px) 20px / 6px 6px no-repeat,
    linear-gradient(135deg, #fff 50%, transparent 50%) calc(100% - 12px) 20px / 6px 6px no-repeat,
    var(--clone-red);
  border-right: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.clone-header-search select option {
  color: #101010;
  background: #fff;
}

#wrap > .top-bar .bootstrap-select.btn-group .dropdown-toggle,
#wrap > .top-bar .bootstrap-select.btn-group.open .dropdown-toggle,
#wrap > .top-bar .bootstrap-select.btn-group .dropdown-toggle:focus {
  color: #fff !important;
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
  box-shadow: none !important;
}

#wrap > .top-bar .bootstrap-select.btn-group .dropdown-toggle .caret {
  color: #fff !important;
}

.newslatter {
  background: var(--clone-red) !important;
}

.newslatter::before {
  opacity: 0.16;
  filter: brightness(0) invert(1);
}

.newslatter h3 {
  color: #fff !important;
  margin-top: 0;
  font-size: 28px;
  line-height: 1.15;
}

.newslatter h3 span {
  display: block;
  max-width: 620px;
  margin: 8px 0 0;
  padding-left: 0;
  border-left: 0;
  color: rgba(255,255,255,0.88) !important;
  font-size: 16px;
  line-height: 1.45;
  font-family: var(--clone-body-font);
  font-weight: 500;
}

.newslatter button {
  background: #101010 !important;
  color: #fff;
  font-weight: 800;
}

.newslatter button:hover,
.newslatter button:focus {
  background: #2a2a2a !important;
}

.with-nav .owl-nav div,
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
  color: #fff !important;
}

.with-nav .owl-nav div i,
.owl-carousel .owl-controls .owl-nav .owl-prev i,
.owl-carousel .owl-controls .owl-nav .owl-next i {
  color: #fff !important;
}

@media (max-width: 991px) {
  .clone-brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }
}

@media (max-width: 520px) {
  .clone-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .clone-slide {
    background:
      var(--slide-image) 68% bottom / cover no-repeat !important;
  }

  .clone-slide-copy {
    top: 22px;
    left: 18px;
    width: min(310px, calc(100% - 36px));
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: 0 1px 12px rgba(255,255,255,0.9);
  }

  .clone-slide-copy span {
    color: #252525;
    font-size: 15px;
  }

  .clone-slide-copy h1 {
    max-width: 280px;
    font-size: 32px;
    line-height: 0.98;
  }

  .clone-slide-copy p {
    max-width: 250px;
    color: #252525;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .clone-slide-copy .btn-round.big {
    height: 44px;
    min-height: 44px;
    padding: 0 28px;
    line-height: 44px;
    font-size: 15px;
  }

  .clone-slide.is-active .clone-slide-copy {
    transform: none !important;
  }
}

.clone-commerce-showcase .featur-tabs .nav-tabs > li > a:hover,
.clone-commerce-showcase .featur-tabs .nav-tabs > li.active > a,
.clone-commerce-showcase .featur-tabs .nav-tabs > li.active > a:focus,
.clone-commerce-showcase .featur-tabs .nav-tabs > li.active > a:hover,
.featur-tabs .nav-tabs > li > a:hover,
.featur-tabs .nav-tabs > li.active > a,
.featur-tabs .nav-tabs > li.active > a:focus,
.featur-tabs .nav-tabs > li.active > a:hover {
  color: #fff !important;
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
}

.main-tabs-sec .nav li > a:hover,
.main-tabs-sec .nav li.active > a,
.main-tabs-sec .nav li.active > a:focus,
.main-tabs-sec .nav li.active > a:hover {
  color: #fff !important;
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
}

.main-tabs-sec .nav li > a:hover i,
.main-tabs-sec .nav li.active > a i,
.main-tabs-sec .nav li > a:hover span,
.main-tabs-sec .nav li.active > a span {
  color: #fff !important;
}

.main-tabs-sec .nav li.active > a::before,
.main-tabs-sec .nav li > a:hover::before {
  color: var(--clone-red) !important;
  border-left-color: var(--clone-red) !important;
}

.owl-controls .owl-dots div.active,
.owl-controls .owl-dots div:hover,
.owl-dots .owl-dot.active,
.owl-dots .owl-dot:hover,
.owl-carousel .owl-controls .owl-dot.active,
.owl-carousel .owl-controls .owl-dot:hover,
.carousel-indicators .active,
.flex-control-paging li a.flex-active,
.flex-control-paging li a:hover,
.with-bullet .owl-dots div.active,
.with-bullet .owl-dots div:hover {
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
}

.owl-controls .owl-dots div.active span,
.owl-controls .owl-dots div:hover span,
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span,
.owl-carousel .owl-controls .owl-dot.active span,
.owl-carousel .owl-controls .owl-dot:hover span {
  background: var(--clone-red) !important;
  border-color: var(--clone-red) !important;
}

/* Internal shop, cart and checkout pages */
.clone-internal-body {
  background: #f5f6f8;
  color: #151515;
}

.clone-internal-wrap {
  background: #f5f6f8;
}

.clone-internal-wrap .clone-site-header {
  position: sticky;
  top: 0;
  z-index: 70;
}

.clone-header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--clone-red);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(215, 0, 0, 0.24);
}

.clone-header-cart i {
  color: #fff !important;
}

.clone-header-cart span {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.clone-page-main {
  overflow: clip;
}

.clone-internal-hero {
  padding: 34px 0 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82)),
    url("../images/clone-slides/clone-banner-oficina.png") 70% center / cover no-repeat;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.clone-store-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)),
    url("../images/clone-slides/clone-banner-gaming.png") 78% center / cover no-repeat;
}

.clone-cart-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82)),
    url("../images/clone-slides/clone-banner-soportes.png") 76% center / cover no-repeat;
}

.clone-checkout-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82)),
    url("../images/clone-products/generated/weekly-feature.png") 78% center / cover no-repeat;
}

.clone-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #6e747c;
  font-size: 13px;
  font-weight: 800;
}

.clone-breadcrumb a {
  color: #6e747c;
}

.clone-breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: #b7bcc4;
}

.clone-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
}

.clone-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--clone-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clone-internal-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #101010;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.clone-internal-hero p {
  max-width: 610px;
  margin: 14px 0 0;
  color: #3d4248;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.clone-hero-panel {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

.clone-hero-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #101010;
  font-size: 18px;
  font-weight: 950;
}

.clone-hero-panel span {
  color: #5f666f;
  font-size: 14px;
  line-height: 1.45;
}

.clone-store-section,
.clone-cart-section,
.clone-checkout-section {
  padding: 28px 0 68px;
}

.clone-store-toolbar {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(220px, 300px) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.clone-filter-open,
.clone-store-sort,
.clone-store-search,
.clone-view-switch {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.clone-filter-open {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  background: var(--clone-red);
  font-weight: 900;
}

.clone-filter-open i {
  color: #fff;
}

.clone-store-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.clone-store-search i {
  color: var(--clone-red);
}

.clone-store-search input,
.clone-store-sort select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #151515;
  font-weight: 700;
}

.clone-store-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 0 14px;
}

.clone-store-sort span {
  color: #727983;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.clone-view-switch {
  display: flex;
  overflow: hidden;
}

.clone-view-switch button {
  width: 48px;
  border: 0;
  background: #fff;
  color: #4a5058;
}

.clone-view-switch button.is-active {
  background: var(--clone-red);
  color: #fff;
}

.clone-view-switch button.is-active i {
  color: #fff;
}

.clone-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 12px;
}

.clone-active-filters span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(215, 0, 0, 0.09);
  color: var(--clone-red);
  font-size: 12px;
  font-weight: 900;
}

.clone-store-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.clone-filter-panel,
.clone-order-card,
.clone-form-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.clone-filter-panel {
  position: sticky;
  top: 112px;
  padding: 18px;
}

.clone-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.clone-filter-head strong {
  color: #101010;
  font-size: 20px;
  font-weight: 950;
}

.clone-filter-head button {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f0f1f3;
}

.clone-filter-group {
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #eceef1;
}

.clone-filter-group legend {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  border: 0;
  color: #101010;
  font-size: 14px;
  font-weight: 950;
}

.clone-filter-group label,
.clone-shipping-box label,
.clone-terms {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #464d55;
  font-size: 14px;
  font-weight: 700;
}

.clone-filter-group input,
.clone-shipping-box input,
.clone-terms input,
.clone-choice input {
  accent-color: var(--clone-red);
}

.clone-clear-filters {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(215, 0, 0, 0.26);
  border-radius: 8px;
  background: #fff;
  color: var(--clone-red);
  font-weight: 950;
}

.clone-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.clone-results-head p {
  margin: 0;
  color: #101010;
  font-size: 17px;
  font-weight: 950;
}

.clone-results-head span {
  color: #6b727a;
  font-size: 13px;
  font-weight: 700;
}

.clone-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.clone-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clone-store-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.clone-store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.clone-store-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: #fff;
}

.clone-store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}

.clone-store-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

.clone-store-card-body {
  padding: 16px;
}

.clone-store-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #848b94;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.clone-store-card h2 {
  min-height: 44px;
  margin: 9px 0 8px;
  color: #151515;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 950;
}

.clone-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f2b500;
  font-size: 13px;
}

.clone-rating i {
  color: #f2b500;
}

.clone-rating b {
  margin-left: 5px;
  color: #5d646d;
  font-size: 12px;
}

.clone-stock {
  margin: 8px 0 12px;
  color: #2f8f4e;
  font-size: 13px;
  font-weight: 900;
}

.clone-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.clone-price {
  margin: 0;
  color: #101010;
  font-size: 20px;
  font-weight: 950;
}

.clone-price span {
  display: block;
  color: #9aa0a8;
  font-size: 12px;
  font-weight: 800;
  text-decoration: line-through;
}

.clone-card-bottom button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--clone-red);
  color: #fff;
  font-weight: 950;
}

.clone-card-bottom button i {
  color: #fff !important;
}

.clone-product-grid.is-list {
  grid-template-columns: 1fr;
}

.clone-product-grid.is-list .clone-store-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}

.clone-empty-state {
  grid-column: 1 / -1;
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  color: #5b636c;
  font-weight: 900;
  text-align: center;
}

.clone-checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.clone-checkout-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  color: #707780;
  font-size: 13px;
  font-weight: 950;
}

.clone-checkout-steps span.is-active {
  background: var(--clone-red);
  color: #fff;
  border-color: var(--clone-red);
}

.clone-cart-layout,
.clone-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
}

.clone-cart-list,
.clone-checkout-forms {
  display: grid;
  gap: 14px;
}

.clone-cart-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 130px 116px 44px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.clone-cart-line img {
  width: 128px;
  height: 104px;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: #f2f3f5;
}

.clone-cart-info span,
.clone-form-card-head p {
  color: #828991;
  font-size: 12px;
  font-weight: 900;
}

.clone-cart-info h2 {
  margin: 6px 0;
  color: #101010;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
}

.clone-cart-info p {
  margin: 0;
  color: #2f8f4e;
  font-size: 13px;
  font-weight: 900;
}

.clone-qty {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  overflow: hidden;
  height: 42px;
  border: 1px solid #e3e5e8;
  border-radius: 999px;
}

.clone-qty button,
.clone-qty input {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: #fff;
  color: #151515;
  line-height: 42px;
  text-align: center;
  font-weight: 950;
}

.clone-qty button {
  color: var(--clone-red);
  font-size: 18px;
}

.clone-line-price {
  color: #101010;
  font-size: 18px;
  font-weight: 950;
  text-align: right;
}

.clone-remove-line {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f2f3f5;
  color: #6a7179;
}

.clone-order-card {
  position: sticky;
  top: 112px;
  padding: 22px;
}

.clone-order-card h2 {
  margin: 0 0 16px;
  color: #101010;
  font-size: 24px;
  font-weight: 950;
}

.clone-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 16px;
}

.clone-coupon-row input,
.clone-coupon-row button,
.clone-form-grid input,
.clone-order-notes textarea {
  border: 1px solid #e0e3e7;
  border-radius: 8px;
}

.clone-coupon-row input,
.clone-form-grid input {
  height: 44px;
  padding: 0 12px;
  background: #fff;
  color: #151515;
  font-weight: 700;
}

.clone-coupon-row button {
  height: 44px;
  padding: 0 14px;
  background: #101010;
  color: #fff;
  font-weight: 950;
}

.clone-shipping-box {
  margin-bottom: 16px;
  padding: 15px;
  border-radius: 8px;
  background: #f6f7f9;
}

.clone-shipping-box strong {
  display: block;
  margin-bottom: 10px;
  color: #101010;
  font-weight: 950;
}

.clone-totals {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.clone-totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #5c636b;
  font-size: 14px;
  font-weight: 800;
}

.clone-totals strong {
  color: #101010;
  font-weight: 950;
}

.clone-totals .is-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #e2e5e9;
  color: #101010;
  font-size: 18px;
}

.clone-totals .is-total strong {
  color: var(--clone-red);
  font-size: 22px;
}

.clone-woo-note {
  margin: 0 0 16px;
  color: #69717a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.clone-primary-action,
.clone-secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
}

.clone-primary-action {
  border: 0;
  background: var(--clone-red);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(215, 0, 0, 0.22);
}

.clone-primary-action:disabled {
  opacity: 0.75;
  cursor: default;
}

.clone-secondary-action {
  margin-top: 10px;
  border: 1px solid #e0e3e7;
  background: #fff;
  color: #151515 !important;
}

.clone-form-card {
  padding: 22px;
}

.clone-form-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.clone-form-card-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--clone-red);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.clone-form-card h2 {
  margin: 0 0 4px;
  color: #101010;
  font-size: 22px;
  font-weight: 950;
}

.clone-form-card-head p {
  margin: 0;
  line-height: 1.45;
}

.clone-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.clone-form-grid label,
.clone-order-notes {
  display: grid;
  gap: 7px;
  color: #30363d;
  font-size: 13px;
  font-weight: 950;
}

.clone-form-grid .clone-wide {
  grid-column: 1 / -1;
}

.clone-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.clone-choice {
  display: block;
  margin: 0;
  padding: 16px;
  border: 1px solid #e0e3e7;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.clone-choice.is-selected {
  border-color: rgba(215, 0, 0, 0.42);
  background: rgba(215, 0, 0, 0.05);
  box-shadow: inset 0 0 0 1px rgba(215, 0, 0, 0.12);
}

.clone-choice input {
  margin: 0 0 12px;
}

.clone-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #101010;
  font-size: 15px;
  font-weight: 950;
}

.clone-choice span {
  display: block;
  color: #69717a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.clone-order-notes {
  margin-top: 14px;
}

.clone-order-notes textarea {
  width: 100%;
  padding: 12px;
  resize: vertical;
  font-weight: 700;
}

.clone-mini-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.clone-mini-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.clone-mini-line img {
  width: 58px;
  height: 52px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: #f2f3f5;
}

.clone-mini-line strong {
  display: block;
  color: #101010;
  font-size: 13px;
  font-weight: 950;
}

.clone-mini-line span {
  display: block;
  color: #7a828b;
  font-size: 12px;
  font-weight: 800;
}

.clone-mini-line b {
  color: #101010;
  font-size: 13px;
  font-weight: 950;
}

.clone-terms {
  align-items: flex-start;
  margin: 16px 0;
  line-height: 1.4;
}

.clone-internal-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.clone-internal-newsletter input {
  height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-weight: 700;
}

.clone-store-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.clone-store-card-body h2 a:hover,
.clone-store-card-body h2 a:focus-visible {
  color: var(--clone-red);
}

.clone-product-detail-section {
  padding: 34px 0 56px;
  background: linear-gradient(180deg, #f6f7f9 0%, #fff 64%);
}

.clone-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.clone-product-media,
.clone-product-summary,
.clone-product-empty {
  min-width: 0;
}

.clone-product-image {
  display: grid;
  min-height: 500px;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(16,16,16,0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(16,16,16,0.08);
}

.clone-product-image img {
  width: min(100%, 660px);
  max-height: 460px;
  object-fit: contain;
}

.clone-product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 88px);
  gap: 10px;
  margin-top: 12px;
}

.clone-product-thumbs button {
  display: grid;
  width: 88px;
  height: 72px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(16,16,16,0.12);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms var(--clone-ease), border-color 180ms var(--clone-ease);
}

.clone-product-thumbs button:hover,
.clone-product-thumbs button:focus-visible,
.clone-product-thumbs button.is-active {
  border-color: var(--clone-red);
  transform: translateY(-1px);
}

.clone-product-thumbs button:focus-visible,
.clone-product-buy input:focus-visible,
.clone-store-card-body h2 a:focus-visible {
  outline: 2px solid var(--clone-red);
  outline-offset: 2px;
}

.clone-product-thumbs img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clone-product-summary {
  padding: 34px;
  border: 1px solid rgba(16,16,16,0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,16,16,0.07);
}

.clone-product-summary h1,
.clone-product-empty h1 {
  margin: 10px 0 12px;
  color: #101010;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.clone-product-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #f4a316;
  font-size: 14px;
}

.clone-product-rating strong,
.clone-product-rating span {
  color: #101010;
  font-weight: 900;
}

.clone-product-rating span {
  padding-left: 8px;
  border-left: 1px solid rgba(16,16,16,0.14);
}

.clone-product-lead,
.clone-product-empty p {
  margin: 18px 0 0;
  color: #545b62;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.clone-product-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 26px 0;
}

.clone-product-price strong {
  color: var(--clone-red);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.clone-product-price span {
  color: #9098a1;
  font-size: 17px;
  font-weight: 900;
  text-decoration: line-through;
}

.clone-product-price b {
  padding: 6px 10px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.clone-product-buy {
  padding: 18px;
  border-radius: 8px;
  background: #f5f6f8;
}

.clone-product-buy label {
  display: block;
  margin-bottom: 8px;
  color: #101010;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.clone-product-actions {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
}

.clone-product-actions .clone-primary-action i {
  margin-right: 8px;
}

.clone-product-buy input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(16,16,16,0.14);
  border-radius: 8px;
  background: #fff;
  color: #101010;
  font-size: 16px;
  font-weight: 900;
}

.clone-product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.clone-product-info-grid div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16,16,16,0.08);
  border-radius: 8px;
  background: #fff;
}

.clone-product-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--clone-red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.clone-product-info-grid p {
  margin: 0;
  color: #343a40;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.clone-product-support {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.clone-product-support a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #343a40;
  font-weight: 850;
  text-decoration: none;
}

.clone-product-support a:hover,
.clone-product-support a:focus-visible {
  color: var(--clone-red);
}

.clone-product-support a:focus-visible {
  outline: 2px solid var(--clone-red);
  outline-offset: 3px;
}

.clone-product-support i {
  width: 18px;
  color: var(--clone-red);
  text-align: center;
}

.clone-product-tabs {
  padding-top: 18px;
  border-top: 1px solid rgba(16,16,16,0.1);
}

.clone-product-tabs h2,
.clone-section-head h2 {
  margin: 0 0 12px;
  color: #101010;
  font-size: 24px;
  font-weight: 950;
}

.clone-product-tabs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clone-product-tabs li {
  padding: 12px;
  border-radius: 8px;
  background: #f5f6f8;
  color: #333940;
  font-weight: 800;
}

.clone-related-section {
  padding: 14px 0 64px;
  background: #fff;
}

.clone-section-head {
  margin-bottom: 18px;
}

.clone-product-empty {
  grid-column: 1 / -1;
  max-width: 720px;
  padding: 44px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,16,16,0.07);
}

.clone-contact-section {
  padding: 44px 0 68px;
  background: #fff;
}

.clone-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.clone-contact-info,
.clone-contact-form {
  min-width: 0;
  border: 1px solid rgba(16,16,16,0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,16,16,0.07);
}

.clone-contact-info {
  padding: 26px;
}

.clone-contact-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  margin-bottom: 12px;
}

.clone-contact-logo img {
  width: min(220px, 100%);
  height: auto;
}

.clone-contact-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(16,16,16,0.08);
  color: #1f2429;
  text-decoration: none;
}

.clone-contact-line i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #f5f6f8;
  color: var(--clone-red);
  font-size: 17px;
}

.clone-contact-line strong,
.clone-contact-line span span {
  display: block;
}

.clone-contact-line strong {
  margin-bottom: 3px;
  color: #101010;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.clone-contact-line span {
  color: #4a5159;
  font-weight: 800;
  line-height: 1.35;
}

.clone-contact-line:hover,
.clone-contact-line:focus-visible {
  color: var(--clone-red);
}

.clone-contact-line:focus-visible,
.clone-contact-form input:focus-visible,
.clone-contact-form textarea:focus-visible {
  outline: 2px solid var(--clone-red);
  outline-offset: 3px;
}

.clone-contact-line.is-whatsapp i {
  background: #16c765;
  color: #fff;
}

.clone-contact-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #101010;
  color: #fff;
}

.clone-contact-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.clone-contact-note p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  line-height: 1.5;
}

.clone-contact-form {
  padding: 26px;
}

.clone-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(16,16,16,0.12);
  border-radius: 8px;
  background: #fff;
  color: #101010;
  font-weight: 750;
  resize: vertical;
}

.clone-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.clone-contact-actions .clone-primary-action,
.clone-contact-actions .clone-secondary-action {
  width: auto;
  min-width: 180px;
}

.clone-contact-actions .clone-primary-action i {
  margin-right: 8px;
}

.clone-contact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.clone-contact-service-grid div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(16,16,16,0.08);
  border-radius: 8px;
  background: #f8f9fb;
}

.clone-contact-service-grid i {
  color: var(--clone-red);
  font-size: 24px;
}

.clone-contact-service-grid strong {
  display: block;
  margin: 12px 0 4px;
  color: #101010;
  font-size: 15px;
  font-weight: 950;
}

.clone-contact-service-grid span {
  display: block;
  color: #6b727a;
  font-weight: 750;
  line-height: 1.45;
}

@media (max-width: 1199px) {
  .clone-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clone-cart-layout,
  .clone-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 991px) {
  .clone-internal-wrap .clone-site-header {
    position: relative;
  }

  .clone-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clone-hero-split,
  .clone-store-layout,
  .clone-cart-layout,
  .clone-checkout-layout,
  .clone-product-detail,
  .clone-contact-layout {
    grid-template-columns: 1fr;
  }

  .clone-internal-hero h1 {
    font-size: 34px;
  }

  .clone-hero-panel {
    max-width: 420px;
  }

  .clone-store-toolbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .clone-filter-open {
    display: inline-flex;
  }

  .clone-store-sort,
  .clone-view-switch {
    grid-column: span 1;
  }

  .clone-filter-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 140;
    width: min(360px, 88vw);
    overflow-y: auto;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .clone-filters-open .clone-filter-panel {
    transform: translateX(0);
  }

  .clone-filter-head button {
    display: inline-grid;
    place-items: center;
  }

  .clone-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    background: rgba(0, 0, 0, 0.45);
  }

  .clone-filters-open .clone-filter-overlay {
    display: block;
  }

  .clone-order-card {
    position: static;
  }

  .clone-contact-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clone-product-image {
    min-height: 420px;
  }

  .clone-cart-line {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .clone-qty,
  .clone-line-price,
  .clone-remove-line {
    grid-column: 2;
  }

  .clone-line-price {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .clone-footer-grid {
    grid-template-columns: 1fr;
  }

  .clone-internal-hero {
    padding: 24px 0;
    background-position: 70% center;
  }

  .clone-breadcrumb {
    margin-bottom: 12px;
  }

  .clone-internal-hero h1 {
    max-width: 360px;
    font-size: 29px;
  }

  .clone-internal-hero p {
    max-width: 360px;
    font-size: 14px;
  }

  .clone-hero-panel {
    padding: 16px;
  }

  .clone-store-section,
  .clone-cart-section,
  .clone-checkout-section,
  .clone-product-detail-section,
  .clone-contact-section {
    padding: 22px 0 44px;
  }

  .clone-store-toolbar {
    grid-template-columns: 1fr;
  }

  .clone-filter-open,
  .clone-store-search,
  .clone-store-sort,
  .clone-view-switch {
    width: 100%;
  }

  .clone-product-grid,
  .clone-product-grid.is-list {
    grid-template-columns: 1fr;
  }

  .clone-product-grid.is-list .clone-store-card {
    display: block;
  }

  .clone-results-head {
    display: block;
  }

  .clone-results-head span {
    display: block;
    margin-top: 5px;
  }

  .clone-checkout-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .clone-cart-line {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .clone-cart-line img {
    width: 92px;
    height: 84px;
  }

  .clone-cart-info h2 {
    font-size: 16px;
  }

  .clone-form-grid,
  .clone-choice-grid {
    grid-template-columns: 1fr;
  }

  .clone-form-card,
  .clone-order-card,
  .clone-product-summary,
  .clone-product-empty,
  .clone-contact-info,
  .clone-contact-form {
    padding: 18px;
  }

  .clone-product-image {
    min-height: 300px;
    padding: 22px;
  }

  .clone-product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clone-product-thumbs button {
    width: 100%;
  }

  .clone-product-summary h1,
  .clone-product-empty h1 {
    font-size: 30px;
  }

  .clone-product-actions,
  .clone-product-info-grid,
  .clone-product-tabs ul {
    grid-template-columns: 1fr;
  }

  .clone-contact-actions .clone-primary-action,
  .clone-contact-actions .clone-secondary-action {
    width: 100%;
  }

  .clone-contact-form .clone-form-card-head {
    align-items: flex-start;
  }

  .clone-contact-form .clone-form-card-head h2 {
    font-size: 32px;
    line-height: 1;
  }

  .clone-contact-service-grid {
    grid-template-columns: 1fr;
  }

  .clone-product-price strong {
    font-size: 32px;
  }

  .clone-internal-newsletter form {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .clone-internal-newsletter button {
    width: 100%;
  }
}
