@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&display=swap");

:root {
  --text: #211916;
  --muted: #6f625d;
  --line: #e9e3de;
  --soft: #f5f6fa;
  --paper: #fffaf7;
  --dark: #211916;
  --cream: #f8f3ed;
  --white: #ffffff;
  --danger: #b84a43;
  --success: #356a4b;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

html.search-open,
body.search-open {
  overflow: hidden;
}

html.search-open {
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

button:disabled,
.button-link-filled[aria-disabled="true"],
.button-1:disabled,
.button-2:disabled {
  cursor: not-allowed;
  opacity: .6;
}

[hidden] {
  display: none !important;
}

img,
video {
  display: block;
  max-width: 100%;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fasino-site {
  --text: var(--shop-text-color, #211916);
  --dark: var(--shop-primary-color, #211916);
  --paper: var(--shop-background-color, #fffaf7);
  min-height: 100vh;
  background: var(--shop-background-color, var(--white));
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0;
  padding: 10px 24px;
  font-size: 16px;
  color: var(--text);
  background: color-mix(in srgb, var(--shop-accent-color, #c29a76) 16%, #ffffff);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, 1220px);
  min-height: 78px;
  margin: 0 auto;
}

.brand-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 28px;
}

.site-title {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  font-size: 16px;
}

.desktop-nav > a,
.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  color: var(--text);
  white-space: nowrap;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.dropdown-panel a:hover {
  color: var(--shop-accent-color, #7d554b);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after {
  content: "\2304";
  margin-left: 7px;
  font-size: 12px;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 190px;
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(33, 25, 22, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-selector {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.language-selector select {
  min-width: 72px;
  height: 30px;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 7px;
  color: var(--text);
  background: var(--white);
  font-size: 12px;
  line-height: 30px;
}

.mobile-language-selector {
  margin-top: 12px;
  justify-content: space-between;
}

.mobile-language-selector select {
  flex: 1;
}

.icon-button,
.cart-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 36px;
  color: var(--text);
}

.icon-button,
.cart-button {
  font-size: 22px;
}

.header-icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button {
  position: relative;
}

.cart-button small {
  position: absolute;
  right: 3px;
  top: 3px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  font-size: 10px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.header-search {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  z-index: 1200;
  border: 0;
  background: rgba(0, 0, 0, .4);
  box-shadow: none;
  transform: none;
}

.header-search[hidden] {
  display: none !important;
}

.header-search::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 105px;
  background: var(--white);
}

.header-search-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100% - 48px, 1200px);
  height: 45px;
  margin: 30px auto 0;
  border-bottom: 2px solid var(--text);
}

.header-search-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--text);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.header-search input {
  flex: 1;
  min-width: 0;
  height: 43px;
  border: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  outline: 0;
  font-size: 20px;
}

.header-search input::placeholder {
  color: #a8adb3;
}

.button-link-filled,
.button-1,
.button-2,
.btn-customer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 31px;
  border: 1px solid var(--dark);
  border-radius: 0;
  color: var(--white);
  background: var(--dark);
  font-weight: 600;
  line-height: 1;
  transition: .2s ease;
}

.button-link-filled:hover,
.button-1:hover,
.button-2:hover,
.btn-customer:hover {
  color: var(--dark);
  background: var(--white);
}

.header-search-submit,
.header-search-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.header-search-close {
  width: 28px;
}

.header-search-close-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.button-link-outline,
.btn-outline-customer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 28px;
  border: 1px solid var(--dark);
  color: var(--dark);
  background: var(--white);
  font-weight: 600;
}

.button-link-outline:hover,
.btn-outline-customer:hover {
  color: var(--white);
  background: var(--dark);
}

.hero-cover {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.hero-cover video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(33, 25, 22, .1);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100% - 64px, 1220px);
  min-height: 640px;
  margin: 0 auto;
  color: var(--white);
}

.hero-content h1 {
  max-width: 574px;
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 574px;
  margin: 24px 0 32px;
  font-size: 18px;
}

.product-rail {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 64px 0 40px;
  overflow: hidden;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading.centered {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 6px;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.rail-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--text);
}

.rail-scroll {
  display: grid;
  grid-auto-columns: 263px;
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
}

.rail-scroll::-webkit-scrollbar {
  height: 0;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.product-image-link {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 600 / 749;
  object-fit: cover;
  transition: transform .28s ease;
}

.product-card:hover .product-image-link img {
  transform: scale(1.035);
}

.product-card-body {
  padding-top: 16px;
  color: var(--text);
}

.product-card-body a {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.product-card-body span {
  color: var(--muted);
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-card-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  padding: 0 10px;
  color: var(--text);
  background: var(--white);
  font-size: 13px;
}

.product-card-actions button:hover {
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}

.rail-mobile-link {
  display: none;
  width: max-content;
  margin: 24px auto 0;
}

.collection-cover {
  position: relative;
  width: min(100% - 32px, 1220px);
  min-height: 480px;
  margin: 24px auto 40px;
  overflow: hidden;
}

.collection-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 247, .1), rgba(255, 250, 247, .48));
}

.collection-cover-left::after {
  background: linear-gradient(90deg, rgba(255, 250, 247, .52), rgba(255, 250, 247, .08));
}

.collection-cover > div {
  position: relative;
  z-index: 1;
  width: min(550px, 45%);
  padding: 88px 40px;
}

.collection-cover-right > div {
  margin-left: auto;
}

.collection-cover h2,
.story-split h2,
.coming-soon h2,
.brand-band h2 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.05;
}

.collection-cover p,
.story-copy p,
.story-copy li,
.story-copy blockquote {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  width: min(100% - 32px, 1220px);
  margin: 40px auto;
  align-items: center;
}

.story-copy {
  padding: 40px 40px 40px 0;
}

.story-copy li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
}

.story-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
}

.story-copy blockquote {
  margin: 34px 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  font-size: 22px;
  color: var(--text);
}

.story-split figure {
  margin: 0;
}

.story-split img {
  width: 100%;
  aspect-ratio: 590 / 737;
  object-fit: cover;
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(100% - 32px, 1220px);
  margin: 40px auto;
}

.category-showcase article {
  min-width: 0;
}

.category-showcase img {
  width: 100%;
  aspect-ratio: 283 / 377;
  object-fit: cover;
}

.category-showcase article > div {
  padding: 16px;
}

.category-showcase h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.category-showcase p {
  margin: 0 0 14px;
  color: var(--muted);
}

.category-showcase a {
  font-weight: 600;
  border-bottom: 1px solid var(--text);
}

.brand-band {
  padding: 40px 16px;
  background: var(--soft);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.brand-grid figure {
  display: grid;
  place-items: center;
  min-height: 82px;
  margin: 0;
}

.brand-grid img {
  max-height: 82px;
  object-fit: contain;
}

.coming-soon {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 40px 0;
}

.cta-cover {
  position: relative;
  min-height: 560px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 16px;
}

.cta-cover img,
.cta-cover video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-cover > div {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  text-align: center;
  color: var(--white);
}

.cta-cover h3 {
  margin: 0 0 24px;
  font-size: 104px;
  line-height: 1;
  font-weight: 800;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.service-strip article {
  min-width: 0;
}

.service-strip img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  object-fit: contain;
}

.service-strip h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  color: #f8f3ed;
  background: var(--dark);
}

.footer-inner {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 40px 0;
}

.footer-title {
  color: #f8f3ed;
}

.footer-about {
  max-width: 768px;
}

.footer-about p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(248, 243, 237, .78);
}

.payment-area {
  margin-top: 36px;
}

.payment-area p {
  margin: 0 0 12px;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(248, 243, 237, .22);
  color: rgba(248, 243, 237, .82);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.footer-columns h3 {
  margin: 0 0 14px;
  font-size: 16px;
  color: #f8f3ed;
}

.footer-columns a {
  display: block;
  margin-bottom: 9px;
  color: rgba(248, 243, 237, .72);
}

.footer-columns a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, 1220px);
  min-height: 56px;
  margin: 0 auto;
  border-top: 1px solid rgba(248, 243, 237, .14);
  color: rgba(248, 243, 237, .78);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(33, 25, 22, .38);
}

.mobile-menu,
.mini-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(100%, 500px);
  height: 100vh;
  padding: 22px;
  background: var(--white);
  box-shadow: -24px 0 55px rgba(33, 25, 22, .14);
  transform: translateX(104%);
  transition: transform .28s ease;
  overflow-y: auto;
}

.mobile-menu.open,
.mini-cart-panel.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.drawer-head h3 {
  margin: 0;
  font-size: 24px;
}

.drawer-head button {
  font-size: 22px;
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
}

.mobile-menu nav a,
.mobile-menu nav button {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.mini-cart-empty {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.mini-cart-items {
  display: grid;
  gap: 16px;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mini-cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.mini-cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.mini-cart-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.bar-notification-container {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 130;
  pointer-events: none;
}

.bar-notification {
  display: flex;
  width: min(100% - 32px, 720px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-left: 4px solid var(--dark);
  padding: 14px 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
  pointer-events: auto;
}

.bar-notification.success {
  border-left-color: #1f8f55;
}

.bar-notification.error {
  border-left-color: #c03535;
}

.bar-notification.warning {
  border-left-color: #c58b24;
}

.bar-notification .content {
  margin: 0;
}

.bar-notification .close {
  font-size: 18px;
}

.ajax-loading-block-window {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(255, 255, 255, .5);
}

.shop-hero {
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: 80px 16px;
  text-align: center;
  background: var(--cream);
}

.shop-hero.compact {
  min-height: 260px;
}

.shop-hero > div {
  width: min(100%, 880px);
  margin: 0 auto;
}

.shop-hero p {
  margin: 0 0 12px;
  color: var(--muted);
}

.shop-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
}

.shop-content,
.page,
.product-detail-page {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 56px 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
}

.shop-toolbar > div,
.shop-toolbar label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-toolbar button,
.shop-toolbar select,
.shop-search-input {
  min-height: 40px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--text);
  background: var(--white);
}

.shop-search-input {
  width: 220px;
}

.shop-toolbar button.selected {
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}

.product-grid.list-view {
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.product-grid.list-view .product-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}

.product-grid.list-view .product-image-link img {
  height: 100%;
}

.product-detail-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 56px;
  align-items: start;
}

.detail-gallery > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.detail-thumbs button {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid transparent;
  background: var(--white);
}

.detail-thumbs button:hover {
  border-color: var(--dark);
}

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.detail-category {
  margin: 0 0 12px;
  color: var(--muted);
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: 46px;
  line-height: 1.08;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rating-row span {
  color: #b58a67;
}

.rating-row small,
.detail-description,
.detail-meta {
  color: var(--muted);
}

.detail-description {
  margin: 0 0 24px;
}

.detail-meta {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.detail-meta p {
  margin: 0;
}

.detail-meta span {
  color: var(--text);
  font-weight: 600;
}

.detail-price {
  display: block;
  margin: 24px 0;
  font-size: 32px;
}

.add-to-cart-panel,
.overview-buttons,
.wishlist-content .buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qty-input,
.inputs input,
.coupon-code input,
textarea,
select {
  border: 1px solid var(--line);
  min-height: 48px;
  padding: 0 12px;
  color: var(--text);
  background: var(--white);
}

.header-actions .language-selector select {
  min-width: 72px;
  height: 30px;
  min-height: 30px;
  padding: 0 7px;
  font-size: 12px;
  line-height: 30px;
}

.qty-input {
  width: 82px;
  text-align: center;
}

.detail-note {
  margin-top: 34px;
}

.detail-note h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.detail-note p {
  margin: 0;
  color: var(--muted);
}

.detail-note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
}

.detail-note li {
  position: relative;
  padding-left: 22px;
}

.detail-note li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--text);
}

.related-products {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 0 0 64px;
}

.page-title h1 {
  margin: 0 0 24px;
  font-size: 38px;
}

.table-wrapper {
  overflow-x: auto;
}

table.cart {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

table.cart th,
table.cart td {
  border-bottom: 1px solid var(--line);
  padding: 16px 12px;
  text-align: left;
  vertical-align: middle;
}

table.cart th {
  color: var(--muted);
  font-weight: 600;
  background: var(--soft);
}

table.cart img {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.product-quantity .qty-input {
  border: 0;
}

.quantity.up,
.quantity.down {
  display: grid;
  place-items: center;
  width: 32px;
  height: 46px;
  background: var(--soft);
}

.quantity.up::before {
  content: "+";
}

.quantity.down::before {
  content: "-";
}

.remove-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
}

.remove-btn::before {
  content: "x";
}

.cart-options {
  margin-top: 18px;
}

.cart-footer,
.customer-blocks {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  margin-top: 34px;
}

.coupon-box,
.totals,
.fieldset,
.new-wrapper,
.returning-wrapper,
.order-summary {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.coupon-box h2,
.totals h2,
.fieldset h2,
.order-summary h2 {
  margin-top: 0;
}

.coupon-code {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cart-total {
  width: 100%;
}

.cart-total td {
  padding: 8px 0;
}

.cart-total-right {
  text-align: right;
}

.checkout-buttons {
  margin-top: 18px;
}

.stripe-checkout-button {
  width: 100%;
  margin-top: 18px;
}

.checkout-button {
  width: 100%;
}

.buttons,
.common-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-login-block {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.google-login-button {
  justify-content: center;
  width: 100%;
}

.social-login-divider {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.auth-page {
  width: min(100% - 40px, 430px);
  padding: 64px 0 58px;
  color: #050505;
}

.auth-page h1 {
  margin: 0 0 96px;
  text-align: center;
  font-size: clamp(30px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.auth-register h1 {
  margin-bottom: 108px;
}

.auth-form {
  display: grid;
  gap: 14px;
  width: min(100%, 343px);
  margin: 0 auto;
}

.auth-field {
  position: relative;
}

.auth-field input {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 0;
  padding: 0 12px;
  color: #050505;
  background: #eef4ff;
  font-size: 14px;
  outline: 0;
}

.auth-field input::placeholder {
  color: #9aa1a8;
  opacity: 1;
}

.auth-password-field input {
  padding-right: 48px;
}

.password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #5f6368;
  transform: translateY(-50%);
}

.password-visibility-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.auth-submit {
  justify-self: center;
  min-height: 46px;
  width: 100%;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid #050505;
  color: #ffffff;
  background: #050505;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.auth-submit:hover,
.auth-text-button:hover,
.auth-link-row a:hover,
.auth-bottom-link:hover,
.auth-subscribe span:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-submit:hover {
  color: #050505;
  background: #ffffff;
}

.auth-link-row {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-text-button {
  padding: 0;
  color: #050505;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #050505;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}

.auth-subscribe input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2a2a2a;
}

.auth-google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid #050505;
  color: #050505;
  background: #ffffff;
  font-size: 14px;
}

.auth-google-button:hover {
  color: #ffffff;
  background: #050505;
}

.google-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #050505;
  background: #ffffff;
  font-weight: 800;
  font-size: 16px;
}

.auth-bottom-link {
  justify-self: center;
  margin-top: 20px;
  color: #050505;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inputs {
  margin-bottom: 16px;
}

.inputs label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}

.inputs input {
  width: 100%;
}

.checkout-progress ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.checkout-progress li {
  border: 1px solid var(--line);
  padding: 9px 16px;
}

.checkout-progress .active-step {
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}

.billing-addresses {
  max-width: 720px;
}

.no-data,
.message-error,
.message-success,
.no-result {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--dark);
  background: var(--soft);
}

.account-summary,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 30px;
}

.account-panel,
.contact-form,
.contact-methods article,
.branch-grid article,
.blog-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.account-actions,
.clear-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.account-orders-panel,
.order-detail-card {
  display: grid;
  gap: 16px;
}

.account-order-list,
.shipment-list,
.order-item-list {
  display: grid;
  gap: 12px;
}

.account-order-card,
.shipment-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--white);
}

.account-order-head,
.shipment-head,
.account-order-meta,
.order-item-row,
.order-total-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-order-head div,
.shipment-head div,
.order-item-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.account-order-head span,
.shipment-head span,
.order-item-row small,
.account-order-meta span {
  color: var(--muted);
}

.order-total-grid {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.order-total-grid span {
  display: inline-flex;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: var(--soft);
}

.shipment-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shipment-items span {
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: var(--muted);
  background: var(--soft);
}

.blog-grid,
.contact-methods,
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  gap: 16px;
}

.blog-card img,
.blog-detail img,
.visit-store img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.blog-card img {
  aspect-ratio: 4 / 3;
}

.blog-detail {
  display: grid;
  gap: 18px;
}

.blog-content {
  display: grid;
  gap: 16px;
  line-height: 1.75;
}

.blog-content p,
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content ul,
.blog-content ol,
.blog-content blockquote {
  margin: 0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
}

.blog-detail img,
.visit-store img {
  max-height: 520px;
}

.blog-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-hero {
  display: flex;
  align-items: end;
  min-height: 420px;
  padding: 88px 16px;
  color: var(--white);
  background: linear-gradient(rgba(0, 0, 0, .28), rgba(0, 0, 0, .42)), url("https://spadethemes.com/fasino/wp-content/uploads/sites/8/2025/10/media-1.webp") center/cover;
}

.contact-hero > div {
  width: min(100%, 960px);
  margin: 0 auto;
}

.contact-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.contact-form {
  display: grid;
  gap: 14px;
  align-self: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
}

.compare-products-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.compare-products-table td {
  min-width: 180px;
  border: 1px solid var(--line);
  padding: 14px;
  vertical-align: top;
}

.compare-products-table img {
  width: 140px;
  height: 160px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-nav {
    gap: 18px;
  }

  .product-grid,
  .category-showcase,
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-cover > div {
    width: min(560px, 62%);
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page,
  .account-summary,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .promo-strip {
    min-height: 50px;
    padding: 10px 16px;
  }

  .header-row {
    min-height: 56px;
    gap: 12px;
  }

  .site-title {
    font-size: 24px;
  }

  .icon-button,
  .cart-button {
    width: 32px;
    height: 40px;
  }

  .header-actions {
    display: none;
  }

  .hero-cover,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    width: min(100% - 64px, 1220px);
    justify-content: flex-start;
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1.16;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-heading,
  .footer-bottom {
    display: block;
  }

  .shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: 12px;
  }

  .shop-toolbar > div,
  .shop-toolbar label {
    min-width: 0;
    flex-wrap: wrap;
  }

  .shop-toolbar > div span:not(:first-child) {
    display: none;
  }

  .shop-toolbar label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: flex-end;
    text-align: right;
  }

  .shop-toolbar select {
    max-width: 100%;
  }

  .rail-heading a {
    display: none;
  }

  .rail-mobile-link {
    display: flex;
  }

  .rail-scroll {
    grid-auto-columns: minmax(250px, 86%);
  }

  .collection-cover {
    min-height: 450px;
  }

  .collection-cover > div {
    width: calc(100% - 80px);
    padding: 40px 0;
    margin-left: 40px;
  }

  .story-split {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding: 0;
  }

  .product-grid,
  .category-showcase,
  .service-strip,
  .brand-grid,
  .cart-footer,
  .customer-blocks,
  .blog-grid,
  .contact-methods,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .product-grid.list-view .product-card {
    grid-template-columns: 1fr;
  }

  .brand-grid figure {
    min-height: 129px;
  }

  .brand-grid img {
    max-height: 129px;
  }

  .cta-cover {
    min-height: 560px;
  }

  .cta-cover h3 {
    font-size: 62px;
  }

  .shop-hero h1,
  .detail-copy h1 {
    font-size: 42px;
  }

  .footer-bottom div {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .auth-page {
    width: min(100% - 32px, 540px);
    padding: 70px 0 60px;
  }

  .auth-page h1,
  .auth-register h1 {
    margin-bottom: 76px;
    font-size: 42px;
  }

  .auth-form {
    gap: 18px;
  }

  .auth-field input {
    height: 64px;
    font-size: 18px;
  }

  .auth-link-row {
    gap: 20px;
    margin-top: 24px;
    font-size: 18px;
  }

  .auth-subscribe,
  .auth-submit,
  .auth-bottom-link {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .header-row,
  .product-rail,
  .collection-cover,
  .story-split,
  .category-showcase,
  .coming-soon,
  .service-strip,
  .shop-content,
  .page,
  .product-detail-page,
  .related-products,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, 1220px);
  }

  .icon-button,
  .cart-button {
    width: 30px;
  }

  .header-search {
    min-height: 100vh;
  }

  .header-search::before {
    height: 88px;
  }

  .header-search-panel {
    width: min(100% - 32px, 1200px);
    height: 42px;
    margin-top: 22px;
  }

  .header-search input {
    height: 40px;
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: 45px;
  }

  .section-heading h2,
  .collection-cover h2,
  .story-split h2 {
    font-size: 34px;
  }

  .shop-toolbar {
    gap: 10px;
  }

  .shop-toolbar > div,
  .shop-toolbar label {
    margin-top: 0;
  }

  .shop-toolbar button,
  .shop-toolbar select {
    min-height: 38px;
    padding: 0 10px;
  }

}

.review-panel,
.comments-page {
  width: min(100% - 48px, 1220px);
  margin: 60px auto;
}

.review-summary-card,
.review-filters,
.review-card,
.empty-state {
  border: 1px solid var(--line);
  background: var(--white);
}

.review-summary-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.review-summary-card strong {
  font-size: 48px;
  line-height: 1;
  color: var(--dark);
}

.review-summary-card span,
.review-card-head span,
.rating-row span {
  color: #f4a62a;
  letter-spacing: 2px;
}

.review-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.review-filters select {
  min-width: 160px;
  height: 42px;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-card a {
  color: var(--dark);
  font-weight: 700;
}

.review-images {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.review-images img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.empty-state {
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-panel,
  .comments-page {
    width: min(100% - 32px, 1220px);
  }
}
