.thisis-shop-hero {
  padding: 66px clamp(20px, 5vw, 72px) 62px;
  color: var(--thisis-ink);
  background: #eef0f5;
  text-align: center;
}
.thisis-shop-hero__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--thisis-ink);
  font-size: 15px;
}
.thisis-shop-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #050505;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.15;
}
.thisis-shop-hero__description {
  max-width: 1040px;
  margin: 20px auto 0;
  color: #171717;
  font-size: 17px;
  line-height: 1.7;
}
.thisis-shop-layout,
.thisis-cart-page,
.thisis-checkout-page {
  padding: 44px clamp(20px, 5vw, 72px);
}
.thisis-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1164px;
  margin: 0 auto 42px;
  font-size: 18px;
}
.woocommerce-result-count,
.woocommerce-ordering {
  margin: 0;
  color: var(--thisis-ink);
}
.woocommerce-ordering select {
  min-width: 220px;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid rgba(17,17,17,.45);
  background: transparent;
}
.thisis-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0 0 18px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
  list-style: none;
}
.thisis-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px 10px 0 0;
}
.thisis-product-card__image img {
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: contain;
  padding: 14px;
  transition: transform .22s ease;
}
.thisis-product-card:hover .thisis-product-card__image img {
  transform: scale(1.035);
}
.thisis-product-card__body {
  display: grid;
  align-content: start;
  padding: 0 18px;
}
.thisis-product-card__badge {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  background: #ef0000;
  border-radius: 0 999px 999px 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.thisis-product-card__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.thisis-product-card__stars small {
  color: var(--thisis-muted);
}
.thisis-product-card h3 {
  min-height: 47px;
  margin: 8px 0;
  color: var(--thisis-deep);
  font-family: Bungee, sans-serif;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}
.thisis-product-card__subtitle {
  color: var(--thisis-muted);
}
.thisis-product-card__price {
  align-self: end;
  margin-top: 8px;
  color: var(--thisis-deep);
  font-size: 19px;
  font-weight: 700;
}
.thisis-product-card__price del {
  color: #8f94a0;
  font-weight: 400;
}
.thisis-product-card__price ins {
  margin-left: 6px;
  color: var(--thisis-deep);
  text-decoration: none;
}
.thisis-product-card__actions {
  margin-top: 14px;
}
.thisis-product-card .button,
.single_add_to_cart_button,
.checkout-button,
.woocommerce-cart-form .button,
.woocommerce-checkout-payment .button,
.woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
  border-radius: 999px;
  font-family: Bungee, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.thisis-product-card .button {
  width: 100%;
  min-height: 42px;
}
.thisis-single-product {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(360px, .72fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 72px) 54px;
  background: #fff;
}
.thisis-product-promo {
  max-width: 600px;
  margin: 76px auto 8px;
  padding: 14px 22px;
  color: #171717;
  background: #fff8d9;
  border: 1px solid #e0ca3e;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
.thisis-single-product__gallery {
  position: sticky;
  top: 116px;
  min-height: 560px;
}
.thisis-single-product__badge {
  position: absolute;
  z-index: 4;
  top: 58px;
  left: 0;
  padding: 12px 18px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(17,24,39,.09);
  font-size: 13px;
}
.thisis-single-product__gallery .woocommerce-product-gallery,
.thisis-single-product__external-image {
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0;
}
.thisis-single-product__gallery .woocommerce-product-gallery__image img,
.thisis-single-product__external-image img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
}
.thisis-single-product__summary {
  padding-top: 8px;
}
.thisis-single-product__summary h1 {
  margin: 10px 0 14px;
  color: #050505;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  text-transform: uppercase;
}
.thisis-single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--thisis-deep);
}
.thisis-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  color: #171717;
  list-style-position: inside;
}
.thisis-single-product__meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.thisis-single-product__meta-line span {
  padding: 6px 10px;
  color: #fff;
  background: var(--thisis-gold);
  border-radius: 999px;
  font-size: 12px;
}
.thisis-single-product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--thisis-deep);
  font-family: Bungee, Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
}
.thisis-single-product .price del {
  color: #8f94a0;
  font-size: .75em;
  font-weight: 400;
}
.thisis-single-product .price ins {
  text-decoration: none;
}
.thisis-single-product .woocommerce-product-details__short-description {
  margin: 0 0 18px;
  color: var(--thisis-muted);
  font-size: 16px;
}
.thisis-strength-switcher {
  margin: 28px 0 18px;
}
.thisis-strength-switcher__label {
  margin-bottom: 12px;
  color: #6b6f79;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.thisis-strength-switcher__label strong {
  margin-left: 6px;
  color: var(--thisis-deep);
  font-weight: 400;
}
.thisis-strength-switcher__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 8px;
}
.thisis-strength-option {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 74px;
  color: #141414;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 9px;
}
.thisis-strength-option strong {
  font-family: Bungee, Inter, sans-serif;
  font-size: 20px;
  line-height: 1;
}
.thisis-strength-option span {
  color: #555;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}
.thisis-strength-option.is-active {
  color: #fff;
  background: var(--thisis-deep);
  border-color: var(--thisis-deep);
  box-shadow: 0 10px 25px rgba(32,58,110,.18);
}
.thisis-strength-option.is-active span {
  color: rgba(255,255,255,.82);
}
.thisis-strength-option.is-active::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -6px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--thisis-deep);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 12px;
}
.thisis-single-product form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.thisis-live-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #252525;
  font-size: 14px;
}
.thisis-live-viewers span {
  width: 8px;
  height: 8px;
  background: #7acb83;
  border-radius: 50%;
}
.thisis-single-product form.variations_form.cart {
  display: grid;
}
.variations {
  width: 100%;
  margin-bottom: 14px;
}
.variations th,
.variations td {
  display: block;
  padding: 0 0 8px;
  text-align: left;
}
.variations select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--thisis-line);
  border-radius: 999px;
  background: #fff;
}
.quantity input {
  width: 76px;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--thisis-line);
  border-radius: 999px;
  text-align: center;
}
.thisis-single-product__trust {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.thisis-single-product__trust div {
  position: relative;
  padding: 0 0 0 32px;
  color: #171717;
  background: #fff;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.45;
}
.thisis-single-product__trust div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--thisis-deep);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.thisis-single-product__trust strong {
  color: #171717;
}
.thisis-product-tabs {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 42px;
}
.related.products {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 72px) 64px;
}
.related.products > h2 {
  margin-bottom: 24px;
  color: var(--thisis-deep);
  font-size: clamp(26px, 3vw, 38px);
}
.related.products .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}
.woocommerce-tabs ul.tabs a {
  display: block;
  padding: 12px 18px;
  color: var(--thisis-deep);
  background: var(--thisis-cream);
  border-radius: 999px;
  font-family: Bungee, sans-serif;
  font-size: 12px;
}
.thisis-cart-page h1,
.thisis-checkout-page h1 {
  margin-bottom: 28px;
  color: var(--thisis-deep);
  font-size: clamp(34px, 5vw, 64px);
}
.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
  overflow: hidden;
}
.shop_table th,
.shop_table td {
  padding: 16px;
  border-bottom: 1px solid var(--thisis-line);
  text-align: left;
}
.shop_table img {
  width: 82px;
}
.cart-collaterals {
  max-width: 480px;
  margin: 34px 0 0 auto;
}
.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
}
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--thisis-line);
  border-radius: 6px;
}
.thisis-order-review {
  padding: 24px;
  background: var(--thisis-cream);
  border-radius: 12px;
}
.thisis-notice {
  max-width: 1180px;
  margin: 18px auto;
  padding: 16px 20px;
  border-radius: 8px;
  list-style: none;
}
.thisis-notice--success {
  color: #0d4a20;
  background: #e7f6eb;
}
.thisis-notice--error {
  color: #7c1c1c;
  background: #fde9e9;
}
@media (max-width: 900px) {
  .thisis-single-product,
  .woocommerce-checkout {
    grid-template-columns: 1fr;
  }
  .thisis-single-product__gallery {
    position: static;
  }
  .related.products .products {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .thisis-shop-toolbar {
    display: grid;
  }
  .shop_table thead {
    display: none;
  }
  .shop_table tr,
  .shop_table td {
    display: block;
    width: 100%;
  }
  .thisis-single-product form.cart {
    display: grid;
  }
  .related.products .products {
    grid-template-columns: 1fr;
  }
}
