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

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

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

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

:root {
  --primary-100: #eeeeee;
  --primary-200: #948979;
  --primary-400: #948979;
  --primary-500: #222831;
  --primary-600: #393e46;
  --neutral-100: #eeeeee;
  --neutral-200: #948979;
  --neutral-300: #393e46;
  --neutral-400: #948979;
  --neutral-500: #393e46;
  --neutral-600: #393e46;
  --neutral-700: #393e46;
  --neutral-800: #393e46;
  --neutral-900: #222831;
  --warning-400: #948979;
  --white: #eeeeee;
  --shadow: 0 4px 8px rgba(34, 40, 49, .2);
}

* {
  box-sizing: border-box
}

html {
  font-size: 62.5%;
  text-size-adjust: 100%
}

body {
  margin: 0;
  color: var(--neutral-900);
  font-family: Roobert, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  background: var(--neutral-100)
}

img,
svg {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

button,
input {
  font: inherit
}

button {
  cursor: pointer
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.wrapper {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px
}

.contain {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 64px
}

.top-banner {
  background: var(--primary-600);
  color: var(--white);
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  text-align: center
}

.free-shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.6rem;
  line-height: 2.4rem
}

.free-shipping img {
  margin-right: 4px
}

.free-shipping strong {
  font-weight: 700
}

.site-header {
  background: var(--neutral-900);
  color: var(--white)
}

.header-inner {
  display: grid;
  grid-template-columns: max-content 210px minmax(680px, 760px) max-content;
  grid-template-areas: "menu logo search actions";
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1360px;
  padding: 16px 0 14px
}

.logo-link img {
  height: auto;
  width: 210px;
}

.header-action {
  border: 0;
  background: transparent;
  color: var(--primary-400);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem
}

.header-action span {
  color: var(--white)
}

.header-search {
  display: flex;
  height: 54px;
  background: var(--primary-400);
  border-radius: 14px;
  padding: 3px;
  overflow: hidden
}

.header-search:focus-within {
  box-shadow: 0 0 0 3px rgba(238, 238, 238, .55)
}

.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 11px 0 0 11px;
  padding: 0 20px;
  background: var(--white);
  color: var(--neutral-900);
  outline: 0;
  font-size: 1.8rem
}

.header-search input::placeholder {
  color: var(--neutral-500)
}

.header-search button {
  width: 48px;
  border: 0;
  border-radius: 0 11px 11px 0;
  background: var(--primary-500);
  color: var(--white);
  display: grid;
  place-items: center
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px
}

.create-account {
  display: inline-flex;
  border: 2px solid var(--primary-400);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  padding: 8px 16px;
  white-space: nowrap
}

.explore-nav {
  background: var(--neutral-900);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.explore-inner {
  display: flex;
  justify-content: center;
  gap: 45px;
  max-width: 1360px;
  padding: 12px 0 12px;
  overflow-x: auto
}

.explore-group {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex-shrink: 0
}

.explore-group.categories::after {
  content: "";
  width: 2px;
  height: 48px;
  background: var(--neutral-700);
  position: absolute;
  right: -26px;
  top: 14px
}

.explore-group a {
  min-width: max-content;
  border-radius: 8px;
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 4px 8px;
  text-align: center
}

.explore-group a:hover {
  background: var(--neutral-800);
  color: var(--white)
}

.explore-group img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto
}

.explore-group .explore-cta {
  border: 2px solid var(--primary-400);
  justify-content: center;
  line-height: 1.25;
  margin-right: 8px;
  padding: 8px 12px;
  width: 80px;
  min-width: 80px;
  color: var(--white)
}

.explore-group .new {
  position: relative
}

.explore-group .new::before {
  content: "NEW";
  position: absolute;
  top: 2px;
  right: 5px;
  background: var(--warning-400);
  border-radius: 4px;
  color: var(--neutral-900);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
  padding: 2px
}

.product-section {
  max-width: none;
  background: var(--neutral-100);
  padding: 16px 0 48px
}

.product-layout {
  max-width: 1360px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(760px, 830px) minmax(430px, 502px);
  grid-template-areas: "preview title" "preview options";
  gap: 0 28px;
  margin-bottom: 0
}

.product-title {
  grid-area: title;
  overflow-wrap: break-word
}

.product-title {
  padding-top: 34px
}

.product-title h1 {
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: 3rem;
  line-height: 3.4rem;
  margin: 0 0 8px;
  color: var(--neutral-900)
}

.product-title h2 {
  display: inline;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin: 0;
  color: var(--neutral-900);
  font-weight: 700
}

.product-title p {
  display: inline;
  margin: 0 0 0 0px;
  color: var(--neutral-900);
  font-size: 1.6rem
}

.product-title a {
  color: var(--primary-500);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-weight: 700
}

.sale-price,
.regular-price {
  font-size: 4.8rem;
  line-height: 5.2rem;
  color: var(--neutral-900)
}

.sale-price {
  display: none
}

.product-preview {
  grid-area: preview;
  position: sticky;
  top: 32px;
  align-self: start;
  display: grid;
  grid-template-columns: 76px 704px;
  gap: 10px;
  padding: 20px 0 0 18px
}

.favorite {
  position: absolute;
  right: 26px;
  top: 46px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(21, 21, 35, .25);
  display: grid;
  place-items: center
}

.favorite img {
  width: 20px;
  height: 20px
}

.gallery {
  grid-column: 2;
  position: relative;
  width: 704px;
  aspect-ratio: 1;
  background: var(--neutral-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 9px rgba(21, 21, 35, .18)
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0
}

.gallery-arrow img {
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .5);
  padding: 8px;
  width: 40px;
  height: 40px
}

.gallery-arrow.prev {
  left: 18px;
  transform: translateY(-50%) rotate(180deg)
}

.gallery-arrow.next {
  right: 18px
}

.thumbs {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0;
  position: relative;
  z-index: 3
}

.thumb {
  width: 76px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(21, 21, 35, .2);
  overflow: hidden;
  padding: 0;
  background: var(--white)
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.thumb.active,
.thumb:hover {
  outline: 2px solid var(--neutral-900);
  outline-offset: 0
}

.product-options {
  grid-area: options
}

.option-block {
  margin-top: 20px
}

.option-label,
fieldset legend,
.quantity-block>label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--neutral-900)
}

fieldset {
  border: 0;
  padding: 0;
  margin-left: 0;
  margin-right: 0
}

.swatches {
  display: flex;
  gap: 10px 12px;
  flex-wrap: wrap;
  padding: 4px 4px 0 4px
}

.swatch {
  width: 25px;
  height: 25px;
  border: 1px solid var(--neutral-300);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .4)
}

.swatch.texture {
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .65), transparent 22%), radial-gradient(circle at 70% 70%, rgba(0, 0, 0, .12), transparent 24%), var(--swatch)
}

.swatch.selected {
  outline: 2px solid var(--neutral-900);
  outline-offset: 2px
}

.swatch.light {
  box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 4px var(--neutral-300)
}

.radio-grid {
  display: grid;
  gap: 5px
}

.radio-grid legend {
  display: flex;
  margin-bottom: 4px
}

.style-note {
  grid-column: 1/-1;
  margin: -5px 0 2px;
  color: var(--neutral-700);
  font-size: 1.3rem;
  line-height: 1.6rem
}

.radio-grid.two {
  grid-template-columns: repeat(2, 1fr)
}

.radio-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.radio-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.radio-grid label {
  position: relative;
  margin: 0
}

.radio-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.radio-grid span {
  display: block;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  color: var(--neutral-900);
  font-weight: 600;
  padding: 12px 4px;
  text-align: center;
  transition: all .1s ease-in;
  background: var(--neutral-100)
}

.radio-grid input:checked+span {
  background: var(--neutral-900);
  border-color: var(--neutral-900);
  color: var(--white)
}

.radio-grid label:hover span {
  border-color: var(--neutral-900)
}

.access-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px
}

.access-links legend {
  display: flex;
  grid-column: 1/-1;
  margin-bottom: 4px
}

.access-links a {
  display: block;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  background: var(--neutral-100);
  color: var(--neutral-900);
  font-weight: 700;
  padding: 14px 8px;
  text-align: center;
  transition: all .15s ease
}

.access-links a.primary {
  background: var(--primary-500);
  border-color: var(--primary-600);
  color: var(--white)
}

.access-links a:hover {
  border-color: var(--neutral-900);
  transform: translateY(-1px)
}

.size-chart {
  background: var(--white);
  border: 2px solid var(--primary-500);
  border-radius: 8px;
  color: var(--primary-500);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 8px
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 44px 64px 44px;
  width: max-content;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  overflow: hidden
}

.quantity-stepper button,
.quantity-stepper input {
  height: 42px;
  border: 0;
  background: var(--white);
  text-align: center;
  color: var(--neutral-900)
}

.quantity-stepper button {
  font-weight: 700;
  font-size: 2rem;
  background: var(--neutral-100)
}

.quantity-stepper input {
  background: var(--neutral-100);
  appearance: textfield
}

.discount-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 12px 16px;
  background: var(--neutral-800);
  border: 2px solid var(--neutral-900);
  border-radius: 12px;
  color: var(--white);
  font-size: 1.4rem
}

.discount-note svg {
  color: var(--white);
  flex: 0 0 auto
}

.discount-note strong {
  font-weight: 700
}

.add-cart {
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--primary-500);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  height: 64px;
  margin-bottom: 24px;
  box-shadow: 0 2px 0 var(--primary-600)
}

.shipping-note {
  text-align: center;
  margin: 24px 0;
  color: var(--neutral-900)
}

.shipping-note p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 4px
}

.shipping-note strong {
  font-weight: 700
}

.shipping-note small {
  color: var(--neutral-600);
  font-size: 1.2rem
}

.accordion {
  border-bottom: 1px solid var(--neutral-200)
}

.accordion button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--neutral-900);
  font-weight: 700;
  text-align: left
}

.accordion button img {
  width: 16px;
  height: 16px;
  transform: rotate(90deg)
}

.accordion.open button img {
  transform: rotate(270deg)
}

.accordion>div {
  display: none;
  padding: 0 0 16px;
  color: var(--neutral-700);
  font-size: 1.4rem
}

.accordion.open>div {
  display: block
}

.accordion p {
  margin: 0
}

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px
}

.guarantee p {
  margin: 0
}

.guarantee strong {
  font-weight: 700
}

.guarantee a {
  color: var(--primary-500);
  font-weight: 700;
  text-decoration: underline
}

.review-stars {
  color: var(--warning-400);
  font-size: 1.8rem;
  letter-spacing: .12em
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (prefers-reduced-motion:reduce) {
  .content-block {
    animation: none
  }
}

.ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--primary-500);
  color: var(--white);
  padding: 48px 80px
}

.ratings h2 {
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin: 0;
  min-width: 210px;
  text-align: center
}

.ratings-list {
  display: flex;
  gap: 24px
}

.ratings article {
  min-width: 210px;
  text-align: center;
  font-weight: 600
}

.ratings h3 {
  font-size: 1.6rem;
  margin: 0
}

.stars {
  display: flex;
  justify-content: center
}

.stars img {
  width: 20px;
  height: 20px
}

.ratings p {
  font-size: 1.2rem;
  margin: 4px 0 0
}

.boxed {
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 0 16px
}

.boxed:hover {
  border-color: var(--neutral-900)
}

.boxed button img {
  width: 24px;
  height: 24px
}

.boxed a {
  color: var(--primary-500);
  font-weight: 700;
  text-decoration: underline
}

.social-share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 24px
}

.social-share h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0
}

.social-share ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0
}

.social-share a {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--neutral-300);
  border-radius: 999px;
  background: var(--neutral-100);
  box-shadow: inset 0 0 0 2px var(--white);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease
}

.social-share a:hover {
  border-color: var(--neutral-900);
  box-shadow: inset 0 0 0 2px var(--white), 0 8px 18px rgba(21, 21, 35, .12);
  transform: translateY(-2px)
}

.social-share img {
  width: 28px;
  height: 28px;
  filter: none
}

.site-footer {
  background: var(--neutral-900);
  color: var(--white)
}

.trustpilot-bar {
  height: 84px;
  background: var(--neutral-200);
  display: grid;
  place-items: center
}

.trustpilot-bar img {
  height: 28px;
  width: auto
}

.trust-mobile {
  display: none
}

.newsletter {
  min-height: 316px;
  background-color: var(--primary-500);
  background-image: url("../images/topic-pattern.png");
  background-position: center;
  background-size: auto;
  background-blend-mode: soft-light;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 42px 24px 0;
  text-align: center
}

.newsletter h2 {
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: 3.2rem;
  line-height: 3.6rem;
  margin: 0
}

.newsletter p {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
  margin: 2px 0 0
}

.newsletter form {
  width: min(600px, 100%);
  display: grid;
  grid-template-columns: 424px 160px;
  grid-template-areas: "label ." "input button" "privacy privacy";
  gap: 8px 14px;
  text-align: left
}

.newsletter label {
  grid-area: label;
  font-weight: 700
}

.newsletter input {
  grid-area: input;
  height: 52px;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  padding: 0 12px;
  box-shadow: 0 2px 3px rgba(21, 21, 35, .25)
}

.newsletter button,
.newsletter .chat-button {
  grid-area: button;
  display: grid;
  place-items: center;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: var(--neutral-900);
  color: var(--white);
  font-weight: 700;
  text-decoration: none
}

.newsletter small {
  grid-area: privacy;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6rem;
  text-align: center
}

.newsletter a {
  text-decoration: underline
}

.footer-sitemap {
  max-width: 1360px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  padding: 50px 0 66px
}

.footer-guarantee {
  text-align: center;
  align-self: start
}

.footer-guarantee img {
  margin: 8px auto 18px
}

.footer-guarantee p {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 2.4rem
}

.footer-guarantee strong {
  font-weight: 700
}

.footer-guarantee a {
  color: var(--white);
  border-bottom: 2px solid var(--primary-400);
  font-weight: 700
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px
}

.footer-links h3,
.footer-bottom-widgets h3 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 0 0 18px;
  color: var(--white)
}

.footer-links a {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.2rem;
  margin-bottom: 16px
}

.footer-links a:hover {
  color: var(--white)
}

.footer-bottom-widgets {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  margin-top: 34px
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--neutral-800);
  border-radius: 999px;
  background: transparent
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: invert(1)
}

.payment-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap
}

.payment-row img:first-child {
  max-width: 430px;
  height: 42px;
  object-fit: contain
}

.payment-row .bbb {
  max-width: 140px;
  height: 54px;
  object-fit: contain
}

.google-review-badge {
  width: 175px;
  height: 54px;
  background: var(--white);
  color: var(--neutral-800);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 0 0 9px
}

.gcr-top {
  display: inline-flex;
  align-items: flex-start
}

.gcr-top>span:first-child {
  margin-right: 4px
}

.gcr-stars {
  position: relative;
  display: block;
  width: 52px;
  height: 10px;
  margin-top: 1px
}

.gcr-stars img {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 10px;
  max-width: none
}

.gcr-stars img:last-child {
  width: 49px;
  height: 10px;
  object-fit: cover;
  object-position: left top
}

.google-review-badge>img {
  width: 150px;
  height: auto;
  margin-top: 1px
}

.legal-bar {
  background: var(--neutral-800)
}

.legal-bar .wrapper {
  max-width: 1360px;
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 0
}

.legal-bar p {
  margin: 0;
  font-weight: 700
}

.legal-bar button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 700
}

.legal-bar button img {
  width: 16px;
  height: 16px
}

.legal-bar nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap
}

.legal-bar a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.4rem
}

@media (max-width:1180px) {
  .wrapper {
    padding-inline: 64px
  }

  .contain {
    padding-inline: 48px
  }

  .header-inner {
    grid-template-columns: max-content 170px minmax(360px, 1fr) max-content;
    gap: 20px;
    padding-inline: 64px
  }

  .header-actions {
    gap: 18px
  }

  .create-account {
    display: none
  }

  .explore-inner {
    justify-content: flex-start;
    padding-inline: 64px
  }

  .products {
    display: none
  }

  .product-layout {
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 448px);
    gap: 0 32px;
    padding-inline: 48px
  }

  .product-preview {
    grid-template-columns: 76px minmax(0, 1fr)
  }

  .gallery {
    width: 100%
  }

  .ratings {
    padding-inline: 64px;
    flex-direction: column
  }

  .ratings-list {
    width: 100%;
    justify-content: center
  }

  .footer-sitemap {
    grid-template-columns: 1fr;
    padding-inline: 64px
  }

  .footer-bottom-widgets {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: repeat(4, 1fr)
  }

  .legal-bar .wrapper {
    padding-inline: 64px
  }
}

@media (max-width:860px) {
  .wrapper {
    padding-inline: 24px
  }

  .contain {
    padding-inline: 15px
  }

  .header-inner {
    grid-template-columns: max-content 1fr max-content;
    grid-template-areas: "menu logo actions" "search search search";
    gap: 12px;
    padding: 16px 24px 14px
  }

  .logo-link {
    justify-self: center
  }

  .logo-link img {
    height: 36px
  }

  .header-search {
    grid-area: search
  }

  .create-account {
    display: none
  }

  .header-actions {
    gap: 0
  }

  .explore-inner {
    padding-inline: 0
  }

  .explore-group.categories::after {
    display: none
  }

  .product-section {
    padding-top: 15px
  }

  .product-layout {
    display: block;
    padding-inline: 15px
  }

  .product-title {
    margin-bottom: 18px;
    padding-top: 32px
  }

  .product-title h1 {
    font-size: 2.8rem;
    line-height: 3.2rem
  }

  .product-preview {
    position: relative;
    top: auto;
    display: block;
    padding: 0;
    margin-bottom: 24px
  }

  .gallery {
    width: auto;
    border-radius: 0;
    margin-inline: -15px
  }

  .favorite {
    right: 16px;
    top: 28px
  }

  .main-product-image {
    border-radius: 0
  }

  .thumbs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: -24px
  }

  .thumb {
    width: 64px
  }

  .radio-grid.three {
    grid-template-columns: repeat(2, 1fr)
  }

  .ratings-list {
    flex-direction: column
  }

  .newsletter {
    padding-bottom: 40px
  }

  .newsletter form {
    grid-template-columns: 1fr;
    grid-template-areas: "label" "input" "button" "privacy"
  }

  .footer-sitemap {
    padding-inline: 24px
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr)
  }

  .legal-bar .wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-inline: 24px
  }

  .legal-bar nav {
    justify-content: center
  }

  .trust-desktop {
    display: none
  }

  .trust-mobile {
    display: block
  }
}

@media (max-width:520px) {
  body {
    font-size: 1.4rem
  }

  .free-shipping {
    font-size: 1.4rem
  }

  .header-inner {
    padding-inline: 16px
  }

  .menu-button span,
  .cart span {
    font-size: 1.2rem
  }

  .logo-link img {
    height: 30px
  }

  .header-search {
    height: 42px
  }

  .explore-group a {
    font-size: 1.1rem
  }

  .product-title h1 {
    font-size: 2.4rem;
    line-height: 2.8rem
  }

  .sale-price,
  .regular-price {
    font-size: 3.2rem
  }

  .gallery-arrow {
    display: none
  }

  .thumbs {
    margin-top: -24px
  }

  .thumb {
    width: 56px
  }

  .radio-grid.four {
    grid-template-columns: repeat(4, 1fr)
  }

  .radio-grid span {
    padding: 11px 2px;
    font-size: 1.3rem
  }

  .discount-note {
    align-items: flex-start
  }

  .ratings {
    padding: 40px 16px
  }

  .ratings h2 {
    font-size: 2.8rem
  }

  .social-share {
    align-items: flex-start;
    flex-direction: column
  }

  .footer-links {
    grid-template-columns: 1fr
  }

  .payment-row {
    flex-direction: column
  }

  .newsletter h2 {
    font-size: 2.6rem
  }
}



.content-showcase {
  padding-top: 56px;
  padding-bottom: 72px;
  overflow: visible
}

.content-blocks {
  display: grid;
  gap: 28px
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 2px solid var(--neutral-800);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--neutral-100), rgba(148, 137, 121, .14));
  box-shadow: 0 14px 34px rgba(34, 40, 49, .1);
  padding: 24px 18px;
  text-align: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 150px;
  top: -105px;
  right: -45px;
  border-radius: 999px;
  background: var(--primary-200);
  opacity: .22;
  pointer-events: none;
  transform: scale(.8);
  transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1)
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--primary-200);
  transform: scaleX(.28);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1)
}

.service-card:nth-child(2) {
  animation-delay: .07s
}

.service-card:nth-child(3) {
  animation-delay: .14s
}

.service-card:nth-child(4) {
  animation-delay: .21s
}

.service-highlights.cards-ready .service-card {
  opacity: 0;
  translate: 0 24px;
  scale: .97
}

.service-highlights.cards-ready.is-visible .service-card {
  animation: serviceCardIn .7s cubic-bezier(.22, 1, .36, 1) both
}

.service-card:hover {
  border-color: var(--primary-200);
  box-shadow: 0 22px 46px rgba(34, 40, 49, .18);
  transform: translateY(-7px)
}

.service-card:hover::before {
  opacity: .34;
  transform: scale(1.35)
}

.service-card:hover::after {
  transform: scaleX(1)
}

.service-label,
.service-value {
  position: relative;
  z-index: 2;
  margin: 0
}

.service-label {
  color: var(--neutral-700);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase
}

.service-value {
  color: var(--neutral-900);
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: clamp(2rem, 1.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2
}

@keyframes serviceCardIn {
  from {
    opacity: 0;
    translate: 0 24px;
    scale: .97
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1
  }
}

.slot-demo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 40px;
  overflow: hidden;
  border: 2px solid var(--primary-200);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800));
  box-shadow: 0 26px 64px rgba(34, 40, 49, .22);
  padding: 36px
}

.slot-demo::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  top: -290px;
  left: -120px;
  border-radius: 999px;
  background: var(--primary-200);
  opacity: .18;
  filter: blur(8px);
  pointer-events: none
}

.slot-copy,
.slot-machine {
  position: relative;
  z-index: 1
}

.slot-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: var(--white);
  color: var(--neutral-900);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 7px 12px;
  text-transform: uppercase
}

.slot-copy h2 {
  color: var(--white);
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.08;
  margin: 18px 0 14px
}

.slot-copy p {
  max-width: 440px;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.55;
  margin: 0
}

.slot-copy .slot-disclaimer {
  margin-top: 18px;
  border-left: 3px solid var(--primary-200);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  padding-left: 12px
}

.slot-machine {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  border: 1px solid rgba(238, 238, 238, .3);
  border-radius: 24px;
  background: rgba(238, 238, 238, .09);
  box-shadow: inset 0 1px 0 rgba(238, 238, 238, .16), 0 18px 38px rgba(34, 40, 49, .28);
  padding: 18px;
  backdrop-filter: blur(14px)
}

.slot-machine-head {
  display: grid;
  grid-template-columns: 10px 1fr 10px;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  color: var(--white);
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: 1.4rem;
  letter-spacing: .12em;
  text-align: center
}

.slot-machine-head span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-200);
  box-shadow: 0 0 0 5px rgba(148, 137, 121, .14), 0 0 18px rgba(148, 137, 121, .8)
}

.slot-machine.is-spinning .slot-machine-head span {
  animation: slotLightPulse .5s ease-in-out infinite alternate
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 2px solid var(--primary-200);
  border-radius: 18px;
  background: var(--neutral-900);
  box-shadow: inset 0 8px 22px rgba(0, 0, 0, .32);
  padding: 12px
}

.slot-reel {
  position: relative;
  min-width: 0;
  min-height: 116px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--neutral-800);
  border-radius: 13px;
  background: var(--white);
  box-shadow: inset 0 10px 18px rgba(57, 62, 70, .12), inset 0 -10px 18px rgba(57, 62, 70, .12)
}

.slot-reel::before,
.slot-reel::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 24px;
  pointer-events: none
}

.slot-reel::before {
  top: 0;
  background: linear-gradient(var(--white), transparent)
}

.slot-reel::after {
  bottom: 0;
  background: linear-gradient(transparent, var(--white))
}

.slot-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 72px;
  place-items: center;
  color: var(--neutral-900);
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  will-change: transform, filter
}

.slot-symbol.symbol-bar {
  color: var(--neutral-800);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  letter-spacing: -.06em
}

.slot-symbol.symbol-star,
.slot-symbol.symbol-diamond {
  color: var(--primary-200)
}

.slot-reel.is-spinning .slot-symbol {
  animation: slotSymbolSpin .16s linear infinite;
  filter: blur(.7px)
}

.slot-reel.is-stopping {
  animation: slotReelLand .36s cubic-bezier(.2, .8, .3, 1)
}

.slot-spin {
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  border: 2px solid var(--white);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 5px 0 var(--primary-200);
  color: var(--neutral-900);
  font-family: SharpGrotesk, Roobert, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease
}

.slot-spin:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 7px 0 var(--primary-200);
  transform: translateY(-2px)
}

.slot-spin:active:not(:disabled) {
  box-shadow: 0 2px 0 var(--primary-200);
  transform: translateY(3px)
}

.slot-spin:focus-visible {
  outline: 3px solid var(--primary-200);
  outline-offset: 4px
}

.slot-spin:disabled {
  cursor: wait;
  opacity: .7
}

.slot-result {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center
}

.slot-machine.has-match .slot-result {
  border-radius: 9px;
  background: var(--white);
  color: var(--neutral-900);
  padding: 6px 10px
}

@keyframes slotSymbolSpin {
  from {
    opacity: .35;
    transform: translateY(-26px) scale(.9)
  }

  to {
    opacity: 1;
    transform: translateY(26px) scale(1.04)
  }
}

@keyframes slotReelLand {
  0% {
    transform: translateY(-8px)
  }

  55% {
    transform: translateY(5px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes slotLightPulse {
  from {
    opacity: .45;
    transform: scale(.8)
  }

  to {
    opacity: 1;
    transform: scale(1.15)
  }
}

.content-block {
  position: relative;
  border: 1px solid rgba(57, 62, 70, .24);
  border-radius: 30px;
  background: rgba(238, 238, 238, .96);
  box-shadow: 0 24px 70px rgba(34, 40, 49, .14);
  padding: 34px;
  overflow: hidden;
  animation: fadeUp .7s ease both
}

.content-block::before {
  content: "";
  position: absolute;
  inset: auto -70px -100px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(148, 137, 121, .28), transparent 68%);
  pointer-events: none
}

.content-block:nth-child(2) {
  animation-delay: .08s
}

.content-block:nth-child(3) {
  animation-delay: .16s
}

.block-label {
  display: inline-flex;
  border-radius: 999px;
  background: var(--neutral-900);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 13px
}

.content-block h3 {
  position: relative;
  font-family: SharpGrotesk, Roobert, sans-serif;
  color: var(--neutral-900);
  font-size: 3rem;
  line-height: 3.4rem;
  margin: 18px 0 14px
}

.content-block p {
  position: relative;
  color: var(--neutral-700);
  font-size: 1.7rem;
  margin: 0
}

.article-block {
  display: block;
  min-height: auto;
  background: radial-gradient(circle at 88% 18%, rgba(148, 137, 121, .24), transparent 34%), var(--neutral-100);
  box-shadow: 0 24px 70px rgba(34, 40, 49, .12)
}

.article-block h3 {
  max-width: 900px
}

.article-block p {
  max-width: none
}

.article-block p+p {
  margin-top: 12px
}

.article-block > a {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--primary-500);
  font-weight: 700;
  margin-top: 24px
}

.article-block > a::after {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
  transition: width .2s ease
}

.article-block > a:hover::after {
  width: 70px
}

.faq-block {
  max-width: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(148, 137, 121, .22), transparent 30%), var(--neutral-100);
  box-shadow: 0 24px 70px rgba(34, 40, 49, .1)
}

.faq-block .block-label {
  background: var(--primary-100);
  color: var(--primary-500);
  border: 1px solid var(--primary-200)
}

.faq-block .boxed {
  background: rgba(238, 238, 238, .92);
  border-color: var(--neutral-300);
  box-shadow: 0 12px 32px rgba(34, 40, 49, .07);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease
}

.faq-block .boxed:hover {
  border-color: var(--primary-500);
  box-shadow: 0 16px 36px rgba(34, 40, 49, .12);
  transform: translateX(4px)
}

.faq-block .accordion button {
  font-size: 1.7rem;
  padding: 20px 0
}

.faq-block .accordion>div {
  font-size: 1.5rem;
  color: var(--neutral-700)
}

.reviews-block {
  background: radial-gradient(circle at 86% 10%, rgba(148, 137, 121, .32), transparent 30%), linear-gradient(145deg, #222831, #393e46);
  box-shadow: 0 28px 80px rgba(34, 40, 49, .22);
  color: var(--white);
  padding-right: 0
}

.reviews-block::before {
  background: radial-gradient(circle, rgba(148, 137, 121, .42), transparent 68%);
  inset: -90px -50px auto auto
}

.reviews-block .block-label {
  background: var(--white);
  color: var(--primary-500)
}

.reviews-block h3 {
  color: var(--white);
  margin-bottom: 24px
}

.review-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: 0 0 4px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.review-track {
  display: flex;
  width: max-content;
  animation: reviewScroll 34s linear infinite;
  will-change: transform
}

.review-carousel:hover .review-track {
  animation-play-state: paused
}

.reviews-block .review-card {
  flex: 0 0 360px;
  min-height: 210px;
  margin: 0 18px 0 0;
  border: 1px solid rgba(238, 238, 238, .22);
  border-radius: 24px;
  background: rgba(238, 238, 238, .1);
  box-shadow: none;
  padding: 24px;
  backdrop-filter: blur(18px)
}

.reviews-block .review-card:hover {
  transform: none;
  background: rgba(238, 238, 238, .14)
}

.reviews-block .review-card p {
  color: rgba(238, 238, 238, .92);
  font-size: 1.6rem;
  margin: 12px 0 18px
}

.reviews-block .review-card strong {
  color: var(--white)
}

@keyframes reviewScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media (max-width:860px) {
  .content-showcase {
    padding-top: 54px;
    padding-bottom: 54px
  }

  .content-block {
    border-radius: 24px;
    padding: 24px
  }

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

  .slot-demo {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px
  }

  .slot-copy {
    text-align: center
  }

  .slot-copy p {
    margin-inline: auto
  }

  .slot-copy .slot-disclaimer {
    width: max-content;
    max-width: 100%;
    border-left: 0;
    border-bottom: 2px solid var(--primary-200);
    padding: 0 0 7px
  }

  .slot-machine {
    justify-self: center
  }

  .content-block h3 {
    font-size: 2.5rem;
    line-height: 3rem
  }

  .reviews-block .review-card {
    flex-basis: 320px
  }
}

@media (max-width:520px) {
  .content-showcase {
    padding-top: 42px;
    padding-bottom: 42px
  }

  .content-block {
    padding: 20px;
    border-radius: 20px
  }

  .service-highlights {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .service-card {
    min-height: 112px;
    border-radius: 20px;
    padding: 20px 16px
  }

  .service-value {
    font-size: 2.2rem
  }

  .slot-demo {
    gap: 22px;
    border-radius: 22px;
    padding: 22px 16px
  }

  .slot-copy h2 {
    font-size: 2.7rem
  }

  .slot-copy p {
    font-size: 1.5rem
  }

  .slot-machine {
    border-radius: 18px;
    padding: 12px
  }

  .slot-reels {
    gap: 7px;
    border-radius: 14px;
    padding: 8px
  }

  .slot-reel {
    min-height: 94px;
    border-radius: 10px
  }

  .slot-symbol {
    font-size: 3rem
  }

  .slot-symbol.symbol-bar {
    font-size: 2rem
  }

  .slot-spin {
    min-height: 50px;
    font-size: 1.6rem
  }

  .content-block h3 {
    font-size: 2.1rem;
    line-height: 2.6rem
  }

  .content-block p,
  .reviews-block .review-card p {
    font-size: 1.5rem
  }

  .faq-block .accordion button {
    font-size: 1.4rem
  }

  .reviews-block .review-card {
    flex-basis: 280px;
    min-height: 220px;
    padding: 20px
  }

  .review-track {
    animation-duration: 38s
  }
}

@media (prefers-reduced-motion:reduce) {
  .service-card {
    animation: none;
    transition: none
  }

  .service-card:hover {
    transform: none
  }

  .slot-reel.is-spinning .slot-symbol,
  .slot-reel.is-stopping,
  .slot-machine.is-spinning .slot-machine-head span {
    animation: none
  }

  .slot-spin {
    transition: none
  }

  .review-track {
    animation: none
  }
}

.payment-row {
  align-items: center
}

.bank-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 760px
}

.bank-icons img {
  width: 88px;
  height: 48px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  object-fit: contain
}

.payment-row .bbb {
  height: 48px;
  max-width: 126px
}

@media (max-width:520px) {
  .bank-icons {
    gap: 8px
  }

  .bank-icons img {
    width: 76px;
    height: 42px;
    padding: 7px
  }

  .payment-row .bbb {
    height: 42px
  }
}

.footer-guarantee {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(520px, 100%);
  height: 100%;
  margin-inline: auto
}

.footer-guarantee p {
  text-align: center
}
