:root {
  --tablee-bg: #f7f1e6;
  --tablee-surface: #fffaf0;
  --tablee-ink: #251f18;
  --tablee-muted: #6c6258;
  --tablee-line: rgba(37, 31, 24, 0.14);
  --tablee-accent: #4f7f62;
  --tablee-accent-2: #c7693a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #2f2a22;
  background: #faf8f1;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.seo-wrap {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 58px;
  padding: 6px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 26px;
  background: rgba(250, 248, 241, 0.94);
  border-bottom: 1px solid rgba(180, 154, 74, 0.24);
  backdrop-filter: blur(14px);
}

.topbar img {
  width: 116px;
  height: auto;
}

.topbar nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-left: auto;
}

.topbar a,
.topbar button {
  border: 0;
  background: transparent;
  color: #3d372b;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.mobile-menu-toggle,
.mobile-menu-backdrop {
  display: none;
}

.brand-button {
  padding: 0;
  flex: 0 0 auto;
}

.header-cart-button {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(180, 154, 74, 0.48);
  border-radius: 999px;
  flex: 0 0 auto;
}

.header-cart-button__icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("/shopping_cart_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg") center / contain no-repeat;
  mask: url("/shopping_cart_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg") center / contain no-repeat;
}

.header-cart-button__count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #8b6f1f;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.account-menu {
  position: relative;
  flex: 0 0 auto;
}

.account-link {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(180, 154, 74, 0.48);
  border-radius: 999px;
}

.account-link__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("/user_round_24dp_1F1F1F.svg") center / contain no-repeat;
  mask: url("/user_round_24dp_1F1F1F.svg") center / contain no-repeat;
}

.account-link span:last-child {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-menu-toggle img {
  width: 24px;
  height: 24px;
}

.brand-button img {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 54px clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: #f6f0e4;
}

.hero--loading {
  background: #f6f0e4;
}

.hero__loading-surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.18)),
    #f6f0e4;
  background-size: 220% 100%, auto;
  animation: tableeHeroLoading 1.1s ease-in-out infinite;
}

.hero__stage {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 54px clamp(18px, 5vw, 72px);
  overflow: hidden;
}

@keyframes tableeHeroLoading {
  from {
    background-position: 120% 0, 0 0;
  }

  to {
    background-position: -120% 0, 0 0;
  }
}

.hero.is-transition-fade .hero__stage {
  animation: tableeHeroFade var(--hero-transition-duration, 420ms) ease both;
}

.hero.is-transition-slide .hero__stage {
  animation: tableeHeroSlide var(--hero-transition-duration, 460ms) ease both;
}

.hero.is-transition-zoom .hero__stage {
  animation: tableeHeroZoom var(--hero-transition-duration, 520ms) ease both;
}

.hero.is-transition-none .hero__stage {
  animation: none;
}

@keyframes tableeHeroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tableeHeroSlide {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

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

@keyframes tableeHeroZoom {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

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

.hero__image,
.hero__overlay {
  position: absolute;
}

.hero__image {
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  transform-origin: center;
  opacity: 0;
  transition: opacity 240ms ease;
}

.hero__image[src] {
  opacity: 1;
}

.hero__overlay {
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 42, 34, 0.88), rgba(47, 42, 34, 0.42));
}

.hero__composer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 54px clamp(18px, 5vw, 72px);
}

.hero__composer-element {
  position: absolute;
  min-width: 18px;
  min-height: 18px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  box-sizing: border-box;
}

.hero__composer-element.is-logo img,
.hero__composer-element.is-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__composer-element.is-logo img {
  filter: brightness(0) invert(1);
}

.hero__composer-element.is-text {
  justify-items: start;
  align-items: center;
  line-height: 1.12;
  font-weight: 850;
}

.hero__composer-element.is-text span {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-transform: none;
}

.hero__composer-element.is-button a {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: #b49a4a;
  color: inherit;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
}

.hero__content > img {
  width: min(420px, 86vw);
  filter: brightness(0) invert(1);
}

.hero__content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f1df9f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__content h1 {
  margin: 0 0 14px;
  color: #fff8e6;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.95;
}

.hero__content p {
  width: min(560px, 100%);
  margin: 0 0 24px;
  color: rgba(255, 248, 230, 0.86);
  font-size: 18px;
  line-height: 1.55;
}

.hero__content a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 7px;
  background: #b49a4a;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero__dots button {
  appearance: none;
  width: 11px;
  min-width: 11px;
  height: 11px;
  min-height: 11px;
  padding: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 10px rgba(47, 42, 34, 0.2);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.hero__dots button:hover,
.hero__dots button.is-active {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.18);
}

.seo-content-panel {
  width: min(1120px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: clamp(22px, 4vw, 36px);
  display: grid;
  gap: 18px;
  background: var(--tablee-surface);
  border: 1px solid var(--tablee-line);
  border-radius: 8px;
}

.seo-page-intro {
  grid-column: 1 / -1;
  padding: 0 0 4px;
}

.seo-page-intro h1 {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.seo-page-intro p {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  margin: 0;
  color: var(--tablee-muted);
  font-size: 17px;
  line-height: 1.6;
}

.seo-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.seo-page-intro .seo-btn-secondary {
  color: #3d372b;
  border-color: rgba(47, 42, 34, 0.24);
  background: rgba(255, 255, 255, 0.42);
}

.seo-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.seo-btn-primary {
  color: #fff;
  background: #b49a4a;
}

.seo-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

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

.seo-content-card {
  background: #fffdf7;
  border: 1px solid var(--tablee-line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  display: grid;
  gap: 22px;
}

.seo-content-card .seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.seo-card,
.seo-related {
  min-width: 0;
}

.seo-card h2,
.seo-related h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.seo-card p,
.seo-card li,
.seo-related li {
  color: var(--tablee-muted);
  line-height: 1.6;
}

.seo-card p,
.seo-card ul,
.seo-related ul {
  margin: 0;
}

.seo-card ul,
.seo-related ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.seo-related {
  margin: 0;
}

.seo-related a {
  color: var(--tablee-accent-2);
  font-weight: 700;
}

.seo-landing-top-block,
.seo-landing-text-block,
.seo-landing-links-block {
  min-width: 0;
}

.seo-landing-top-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 22px;
}

.seo-landing-top-block--text-only {
  grid-template-columns: 1fr;
}

.seo-landing-top-block img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #f3efe2;
}

.seo-landing-top-block > div,
.seo-landing-text-block,
.seo-landing-links-block {
  display: grid;
  align-content: start;
  gap: 10px;
}

.seo-landing-top-block h2,
.seo-landing-text-block h2,
.seo-landing-links-block h2 {
  margin: 0;
  color: #2f2a22;
  font-size: 22px;
  line-height: 1.2;
}

.seo-landing-top-block p,
.seo-landing-text-block p,
.seo-landing-links-block li {
  margin: 0;
  color: var(--tablee-muted);
  line-height: 1.65;
}

.seo-landing-links-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.seo-landing-links-block a {
  color: var(--tablee-accent-2);
  font-weight: 800;
}

.seo-footer {
  margin-top: 34px;
  background: #2f2a22;
  color: #fff8e6;
}

.seo-footer__main {
  padding: 34px clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 42px;
}

.seo-footer__brand img {
  width: min(220px, 80vw);
  filter: brightness(0) invert(1);
}

.seo-footer__brand p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 248, 230, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.seo-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-footer__columns > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.seo-footer h2 {
  margin: 0 0 4px;
  color: #dcc47b;
  font-size: 11px;
  text-transform: uppercase;
}

.seo-footer a,
.seo-footer span {
  width: fit-content;
  color: rgba(255, 248, 230, 0.78);
  text-align: left;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.seo-footer a:hover {
  color: #fff;
}

.seo-footer__landings {
  padding: 0 clamp(18px, 5vw, 72px) 22px;
  display: grid;
  gap: 12px;
}

.seo-footer__landings h2 {
  margin: 0;
  color: #dcc47b;
  font-size: 11px;
  text-transform: uppercase;
}

.seo-footer__landings > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.seo-footer__landings a {
  width: auto;
}

.seo-footer__brands {
  padding: 0 clamp(18px, 5vw, 72px) 18px;
  width: min(260px, calc(100vw - 36px));
  display: grid;
  gap: 8px;
}

.seo-footer__brands > span {
  color: rgba(255, 248, 230, 0.58);
  font-size: 10px;
  font-weight: 800;
}

.seo-footer__brands > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}

.seo-footer__brands a {
  width: 48px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seo-footer__brands img {
  max-width: 48px;
  max-height: 24px;
  object-fit: contain;
  opacity: 0.84;
}

.seo-footer__bottom {
  padding: 14px clamp(18px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 248, 230, 0.12);
}

@media (max-width: 1320px) {
  .topbar {
    padding: 6px 24px;
    gap: 16px;
  }

  .topbar nav {
    gap: 10px;
  }

  .account-link span:last-child {
    max-width: 96px;
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 6px 16px;
  }

  .topbar nav {
    gap: 7px;
    margin-left: auto;
    min-width: 0;
  }

  .topbar a,
  .topbar button {
    font-size: 12px;
  }

  .topbar img,
  .brand-button img {
    width: 104px;
  }

  .account-link {
    padding: 0 8px;
    gap: 6px;
  }

  .account-link span:last-child {
    max-width: 78px;
  }
}

@media (max-width: 760px) and (min-width: 641px) {
  .topbar {
    padding: 6px 10px;
    gap: 8px;
  }

  .topbar img,
  .brand-button img {
    width: 88px;
  }

  .topbar nav {
    gap: 5px;
  }

  .topbar a,
  .topbar button {
    font-size: 11px;
  }

  .header-cart-button {
    min-height: 32px;
    padding: 0 8px;
  }

  .account-link {
    min-height: 32px;
    padding: 0 8px;
  }

  .account-link span:last-child {
    display: none;
  }
}

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

  body {
    background: #fbf9f2;
  }

  .topbar {
    position: sticky;
    width: 100%;
    min-height: 56px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 42;
    width: 40px;
    min-height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 42, 34, 0.12);
    border-radius: 8px;
    background: #fff;
  }

  .mobile-menu-toggle img {
    width: 24px;
    height: 24px;
  }

  .brand-button {
    justify-self: start;
    min-width: 0;
  }

  .brand-button img {
    max-width: min(96px, 100%);
  }

  .topbar nav {
    position: fixed;
    z-index: 41;
    top: 0;
    left: 0;
    width: min(286px, 82vw);
    max-width: none;
    height: 100vh;
    padding: 74px 0 18px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    margin: 0;
    background: #faf8f1;
    border-right: 1px solid rgba(47, 42, 34, 0.14);
    box-shadow: 18px 0 38px rgba(47, 42, 34, 0.18);
    transform: translateX(-104%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease;
  }

  .topbar nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-backdrop.is-open {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    border: 0;
    background: rgba(47, 42, 34, 0.32);
  }

  .topbar nav a {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-top: 1px solid rgba(47, 42, 34, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    line-height: 1.05;
    text-align: left;
    overflow-wrap: anywhere;
    white-space: normal;
    transition: background-color 140ms ease, color 140ms ease, padding-left 140ms ease;
  }

  .topbar nav a:last-child {
    border-bottom: 1px solid rgba(47, 42, 34, 0.08);
  }

  .topbar nav a:active {
    padding-left: 24px;
    background: rgba(180, 154, 74, 0.2);
    color: #2f2a22;
  }

  .header-cart-button {
    min-height: 32px;
    padding: 0 8px;
    display: inline-flex;
    justify-self: end;
    background: rgba(250, 248, 241, 0.94);
  }

  .account-menu {
    position: relative;
    top: auto;
    right: auto;
    z-index: 42;
    justify-self: end;
  }

  .account-link {
    min-height: 32px;
    padding: 0 8px;
    background: rgba(250, 248, 241, 0.94);
  }

  .account-link span:last-child {
    display: none;
  }

  .hero {
    min-height: 430px;
  }

  .seo-content-panel {
    width: min(100% - 24px, 1120px);
    padding: 18px;
  }

  .seo-content-card {
    gap: 18px;
  }

  .seo-grid {
    gap: 18px;
  }

  .seo-landing-top-block {
    grid-template-columns: 1fr;
  }

  .seo-landing-top-block img {
    min-height: 190px;
  }

  .seo-footer__main,
  .seo-footer__columns {
    grid-template-columns: 1fr;
  }

  .seo-footer__bottom {
    flex-direction: column;
  }

  .seo-footer__landings {
    padding: 0 18px 20px;
  }
}
