:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.immersive-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

.immersive-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-return {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 12, 16, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 750;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.demo-return:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

/* Immersive FiveM concept */
.rp-site {
  color: #f7f4ef;
  background: #080a0d;
}

.rp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 clamp(24px, 4vw, 66px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(4, 7, 10, 0.82), rgba(4, 7, 10, 0.2));
  backdrop-filter: blur(12px);
}

.rp-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.rp-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ff6b49;
  font-size: 0.72rem;
  font-weight: 900;
}

.rp-brand strong,
.rp-brand small {
  display: block;
}

.rp-brand strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rp-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rp-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.rp-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.rp-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ff6b49;
  transform: translateX(-50%) scaleX(0);
  transition: transform 320ms var(--ease-out);
}

.rp-nav a:hover,
.rp-nav a.is-active {
  color: #fff;
}

.rp-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.immersive-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.immersive-menu span,
.immersive-menu::before,
.immersive-menu::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.immersive-menu.is-open span {
  opacity: 0;
}

.immersive-menu.is-open::before {
  transform: translateY(5px) rotate(45deg);
}

.immersive-menu.is-open::after {
  transform: translateY(-5px) rotate(-45deg);
}

.rp-side-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 65;
  display: grid;
  gap: 13px;
  transform: translateY(-50%);
}

.rp-side-dots a {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms ease;
}

.rp-side-dots a.is-active {
  background: #ff6b49;
  border-color: #ff6b49;
  transform: scale(1.35);
}

.rp-screen {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(28px, 8vw, 132px) 88px;
  scroll-margin-top: 0;
}

.rp-screen-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.rp-screen-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  animation: rp-camera-drift 16s ease-in-out infinite alternate;
}

.rp-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.9) 0%, rgba(5, 8, 11, 0.58) 48%, rgba(5, 8, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 8, 11, 0.2), rgba(5, 8, 11, 0.74));
}

.rp-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent 72%);
}

.rp-home-content {
  width: min(780px, 72vw);
}

.rp-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #ff8266;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rp-overline::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.rp-home h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4.6rem, 9vw, 9rem);
  font-weight: 850;
  line-height: 0.84;
  text-transform: uppercase;
}

.rp-home h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.rp-intro {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.rp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.rp-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(8, 12, 16, 0.26);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.rp-button.primary {
  color: #100d0c;
  border-color: #ff6b49;
  background: #ff6b49;
}

.rp-button:hover {
  border-color: #ff8266;
  transform: translateY(-3px);
}

.rp-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.rp-scroll-cue i {
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.rp-scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #ff6b49;
  animation: rp-scroll-line 1.7s ease-in-out infinite;
}

.rp-section-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
  margin-inline: auto;
}

.rp-section-copy h2,
.rp-paths h2,
.rp-gallery-heading h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(3rem, 6.8vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.rp-section-copy > p:not(.rp-overline),
.rp-paths-intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

.rp-universe-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.rp-universe-item {
  min-height: 160px;
  padding: 24px;
  background: rgba(8, 12, 16, 0.82);
  backdrop-filter: blur(12px);
  transition: background 240ms ease, transform 240ms ease;
}

.rp-universe-item:hover {
  background: rgba(19, 25, 31, 0.92);
  transform: translateY(-3px);
}

.rp-universe-item span {
  color: #ff8266;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rp-universe-item h3 {
  margin: 34px 0 0;
  color: #fff;
  font-size: 1.2rem;
}

.rp-paths {
  align-content: center;
}

.rp-paths::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.82), rgba(5, 8, 11, 0.46) 52%, rgba(5, 8, 11, 0.5)),
    linear-gradient(180deg, rgba(5, 8, 11, 0.18), rgba(5, 8, 11, 0.82));
}

.rp-paths-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.rp-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.rp-path-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 16, 0.68);
  backdrop-filter: blur(12px);
  transition: border-color 260ms ease, transform 260ms var(--ease-out), background 260ms ease;
}

.rp-path-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ff6b49;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
}

.rp-path-card:hover {
  border-color: rgba(255, 130, 102, 0.45);
  background: rgba(14, 20, 25, 0.86);
  transform: translateY(-6px);
}

.rp-path-card:hover::before {
  transform: scaleX(1);
}

.rp-path-card small {
  color: #ff8266;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rp-path-card h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 1.45rem;
}

.rp-path-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.58;
}

.rp-gallery-section {
  background: #080a0d;
}

.rp-gallery-section::before,
.rp-gallery-section::after {
  display: none;
}

.rp-gallery-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
  margin-inline: auto;
}

.rp-gallery-heading h2 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

.rp-gallery-heading p:not(.rp-overline) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.rp-gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.rp-gallery-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.rp-gallery-arrow:hover {
  color: #0b0d0f;
  border-color: #ff6b49;
  background: #ff6b49;
}

.rp-gallery-count {
  min-width: 56px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.rp-gallery {
  position: relative;
  min-height: min(670px, 76svh);
}

.rp-gallery-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(28px) scale(0.98);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  pointer-events: none;
}

.rp-gallery-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.rp-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 11, 0.9));
}

.rp-gallery-caption strong {
  font-size: 1.1rem;
}

.rp-gallery-caption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.rp-site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(28px, 8vw, 132px);
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080a0d;
  font-size: 0.74rem;
}

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

/* Immersive WordPress shop concept */
.wp-store-site {
  color: #20231f;
  background: #f6f4ef;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.wp-demo-bar {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 18px;
  color: #ebe8df;
  background: #222721;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.wp-store-header {
  position: sticky;
  top: 0;
  z-index: 65;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(32, 35, 31, 0.11);
  background: rgba(248, 247, 243, 0.92);
  backdrop-filter: blur(16px);
}

.wp-store-brand {
  justify-self: start;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wp-store-brand small {
  display: block;
  margin-top: 3px;
  color: #7a8078;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.wp-store-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
}

.wp-store-nav a {
  position: relative;
  padding: 10px 0;
  color: #5b6159;
  font-size: 0.74rem;
  font-weight: 750;
}

.wp-store-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: #20231f;
  transform: translateX(-50%) scaleX(0);
  transition: transform 280ms ease;
}

.wp-store-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.wp-store-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4e544d;
  font-size: 0.72rem;
  font-weight: 750;
}

.wp-store-tools button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.wp-store-tools button:hover {
  color: #171b16;
}

.wp-nav-search {
  display: none;
}

.wp-store-menu {
  display: none;
}

.wp-hero {
  position: relative;
  min-height: calc(100svh - 108px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px clamp(24px, 7vw, 110px);
  background: #dcd8ce;
}

.wp-hero-media {
  position: absolute;
  inset: 0;
}

.wp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: wp-hero-drift 14s ease-in-out infinite alternate;
}

.wp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 242, 234, 0.98) 0%, rgba(245, 242, 234, 0.86) 36%, rgba(245, 242, 234, 0.12) 70%);
}

.wp-hero-copy {
  position: relative;
  z-index: 1;
  width: min(590px, 48vw);
}

.wp-hero-index {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.wp-hero-index span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wp-hero-index strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.wp-kicker {
  margin: 0 0 22px;
  color: #737a71;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wp-hero h1 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: 0.92;
}

.wp-hero-copy > p:not(.wp-kicker) {
  max-width: 470px;
  margin: 26px 0 0;
  color: #666d64;
  line-height: 1.72;
}

.wp-link-button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
  color: #f6f4ef;
  border: 1px solid #242a23;
  background: #242a23;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.wp-link-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #394137;
  transform: translateX(-102%);
  transition: transform 420ms var(--ease-out);
}

.wp-link-button > * {
  position: relative;
  z-index: 1;
}

.wp-button-arrow {
  gap: 28px;
}

.wp-button-arrow i,
.wp-text-button i {
  font-style: normal;
  transition: transform 300ms var(--ease-out);
}

.wp-link-button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(32, 35, 31, 0.18);
}

.wp-link-button:hover::before {
  transform: translateX(0);
}

.wp-button-arrow:hover i,
.wp-text-button:hover i {
  transform: translateX(5px);
}

.wp-category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(32, 35, 31, 0.11);
  border-bottom: 1px solid rgba(32, 35, 31, 0.11);
  background: #f6f4ef;
}

.wp-category-strip a {
  position: relative;
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  padding: 24px;
  border-right: 1px solid rgba(32, 35, 31, 0.11);
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  transition: color 260ms ease, background 260ms ease;
}

.wp-category-strip a:last-child {
  border-right: 0;
}

.wp-category-strip a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #899283;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.wp-category-strip a:hover {
  background: #ece9e1;
}

.wp-category-strip a:hover::before {
  transform: scaleX(1);
}

.wp-category-strip small {
  font-family: Inter, "Segoe UI", sans-serif;
  color: #81877e;
  font-size: 0.66rem;
  font-weight: 800;
}

.wp-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(32, 35, 31, 0.12);
}

.wp-service-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  margin: 0;
  padding: 16px 24px;
  background: #eeece6;
  font-size: 0.76rem;
}

.wp-service-strip strong {
  color: #30352f;
}

.wp-service-strip span {
  color: #7a8078;
}

.wp-shop-section {
  padding: clamp(76px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.wp-shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.wp-shop-heading h2 {
  margin: 8px 0 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.wp-shop-heading p {
  max-width: 450px;
  margin: 0;
  color: #737a71;
  line-height: 1.68;
}

.wp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.wp-collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.wp-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-carousel-controls > span {
  min-width: 76px;
  color: #777e75;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.wp-carousel-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(32, 35, 31, 0.16);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease-out), opacity 220ms ease;
}

.wp-carousel-controls button:hover:not(:disabled) {
  color: #fff;
  background: #242a23;
  transform: translateY(-2px);
}

.wp-carousel-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.wp-filter {
  min-height: 40px;
  padding: 0 14px;
  color: #656b63;
  border: 1px solid rgba(32, 35, 31, 0.15);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 760;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.wp-filter:hover,
.wp-filter.is-active {
  color: #fff;
  border-color: #242a23;
  background: #242a23;
}

.wp-product-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.wp-product-grid::-webkit-scrollbar {
  display: none;
}

.wp-product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  transition: opacity 260ms ease, transform 260ms var(--ease-out);
}

.wp-product-card[hidden] {
  display: none;
}

.wp-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ebe8e0;
}

.wp-product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 7px 9px;
  color: #30352f;
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wp-product-favorite {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #353a34;
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease-out);
}

.wp-product-favorite:hover,
.wp-product-favorite.is-active {
  color: #fff;
  background: #30362f;
  transform: scale(1.06);
}

.wp-product-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 320ms var(--ease-out);
}

.wp-product-card:hover .wp-product-controls,
.wp-product-controls:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.wp-product-view,
.wp-product-controls .wp-product-action {
  position: static;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 1;
  transform: none;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease-out);
}

.wp-product-view {
  color: #272c26;
  background: rgba(248, 247, 243, 0.94);
}

.wp-product-view:hover {
  background: #fff;
}

.wp-product-controls .wp-product-action {
  left: auto;
  right: auto;
  bottom: auto;
  color: #fff;
  background: rgba(31, 36, 30, 0.94);
}

.wp-product-controls .wp-product-action:hover,
.wp-product-controls .wp-product-action.is-added {
  background: #11150f;
  transform: translateY(-2px);
}

.wp-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 520ms ease;
}

.wp-product-card:hover .wp-product-media img {
  transform: scale(1.045);
}

.wp-product-action {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 44px;
  color: #fff;
  border: 0;
  background: rgba(31, 36, 30, 0.9);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms var(--ease-out), background 220ms ease;
}

.wp-product-card:hover .wp-product-action,
.wp-product-action:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-product-action:hover {
  background: #11150f;
}

.wp-product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-top: 16px;
}

.wp-product-meta h3,
.wp-product-meta p {
  margin: 0;
}

.wp-product-meta h3 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.wp-product-meta p,
.wp-product-meta strong {
  color: #747a72;
  font-size: 0.78rem;
}

.wp-product-meta p {
  margin-top: 5px;
}

.wp-product-swatches {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.wp-product-swatches i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(32, 35, 31, 0.18);
  border-radius: 50%;
  background: #ece8df;
}

.wp-product-swatches .is-clay { background: #a98572; }
.wp-product-swatches .is-dark { background: #30352f; }
.wp-product-swatches .is-sand { background: #c7b89f; }
.wp-product-swatches .is-sage { background: #768072; }
.wp-product-swatches .is-stone { background: #a8a59d; }
.wp-product-swatches .is-oak { background: #b99364; }

.wp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 720px;
  background: #e7e3da;
}

.wp-feature-media {
  position: relative;
  overflow: hidden;
}

.wp-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.wp-feature:hover .wp-feature-media img {
  transform: scale(1.025);
}

.wp-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 7vw, 104px);
}

.wp-feature-copy h2 {
  margin: 10px 0 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.wp-feature-copy > p:not(.wp-kicker) {
  margin: 24px 0 0;
  color: #656b63;
  line-height: 1.72;
}

.wp-feature-details {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(32, 35, 31, 0.15);
  border-bottom: 1px solid rgba(32, 35, 31, 0.15);
}

.wp-feature-details span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #60665e;
  font-size: 0.78rem;
}

.wp-feature-details b,
.wp-feature-details em {
  font-style: normal;
  font-weight: 500;
}

.wp-feature-details em {
  color: #858b82;
}

.wp-text-button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid #30352f;
  font-size: 0.74rem;
  font-weight: 700;
}

.wp-image-hotspot {
  position: absolute;
  left: 59%;
  top: 47%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(31, 36, 30, 0.52);
  backdrop-filter: blur(8px);
  cursor: pointer;
  animation: wp-hotspot-pulse 2.8s ease-in-out infinite;
}

.wp-image-hotspot span {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 260ms var(--ease-out);
}

.wp-image-hotspot small {
  position: absolute;
  left: 52px;
  width: max-content;
  padding: 8px 10px;
  color: #2a2f29;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.wp-image-hotspot:hover span {
  transform: rotate(90deg);
}

.wp-image-hotspot:hover small,
.wp-image-hotspot:focus-visible small {
  opacity: 1;
  transform: translateX(0);
}

.wp-editorial-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(32, 35, 31, 0.12);
}

.wp-editorial-item {
  min-height: 240px;
  padding: 34px;
  border-right: 1px solid rgba(32, 35, 31, 0.12);
}

.wp-editorial-item:last-child {
  border-right: 0;
}

.wp-editorial-item span {
  color: #858b82;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wp-editorial-item h3 {
  max-width: 320px;
  margin: 72px 0 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.18;
}

.wp-store-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 36px;
  padding: 70px clamp(24px, 5vw, 76px) 92px;
  color: #dce0d9;
  background: #222721;
}

.wp-store-footer h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
}

.wp-store-footer p {
  max-width: 420px;
  color: #999f96;
  line-height: 1.65;
}

.wp-footer-column strong,
.wp-footer-column a {
  display: block;
}

.wp-footer-column strong {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wp-footer-column a {
  margin: 11px 0;
  color: #a7ada4;
  font-size: 0.8rem;
}

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

.wp-footer-socials {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 26px;
  border-top: 1px solid rgba(220, 224, 217, 0.13);
}

.wp-footer-socials .footer-social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 224, 217, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.wp-footer-socials .footer-social-link img {
  width: 17px;
  height: 17px;
}

.wp-footer-socials .footer-social-link:hover {
  border-color: rgba(220, 224, 217, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.wp-cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  background: #222721;
  box-shadow: 0 20px 44px rgba(32, 35, 31, 0.22);
  font-size: 0.78rem;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms var(--ease-out);
}

.wp-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-search-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  border: 0;
  color: #20231f;
  background: rgba(246, 244, 239, 0.98);
}

.wp-search-dialog::backdrop {
  background: rgba(22, 27, 21, 0.38);
  backdrop-filter: blur(8px);
}

.wp-search-dialog[open] {
  animation: wp-search-in 360ms var(--ease-out) both;
}

.wp-search-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0 80px;
}

.wp-search-content h2 {
  margin: 8px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.wp-search-field {
  display: block;
  margin-top: 42px;
}

.wp-search-field > span {
  display: block;
  margin-bottom: 10px;
  color: #71776f;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wp-search-field input {
  width: 100%;
  padding: 16px 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(32, 35, 31, 0.34);
  border-radius: 0;
  outline: 0;
  color: #20231f;
  background: transparent;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.wp-search-field input:focus {
  border-color: #20231f;
}

.wp-search-field input::placeholder {
  color: #a2a79f;
}

.wp-search-summary {
  margin: 22px 0;
  color: #777e75;
  font-size: 0.74rem;
}

.wp-search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wp-search-result {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.wp-search-result img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e6e3db;
  transition: transform 420ms var(--ease-out), filter 420ms ease;
}

.wp-search-result:hover img {
  filter: brightness(0.94);
  transform: scale(0.985);
}

.wp-search-result span {
  display: block;
  margin-top: 12px;
  color: #767d74;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.wp-search-result strong {
  display: block;
  margin-top: 5px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.wp-search-result em {
  display: block;
  margin-top: 5px;
  color: #6f756d;
  font-size: 0.72rem;
  font-style: normal;
}

.wp-search-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(32, 35, 31, 0.14);
  color: #777e75;
  text-align: center;
}

.wp-cart-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 420ms;
}

.wp-cart-layer.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.wp-cart-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(22, 27, 21, 0.46);
  opacity: 0;
  cursor: default;
  backdrop-filter: blur(5px);
  transition: opacity 340ms ease;
}

.wp-cart-layer.is-open .wp-cart-backdrop {
  opacity: 1;
}

.wp-cart-drawer {
  position: absolute;
  right: 0;
  top: 0;
  width: min(480px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: #20231f;
  background: #f8f7f3;
  box-shadow: -28px 0 70px rgba(18, 22, 17, 0.2);
  transform: translateX(102%);
  transition: transform 420ms var(--ease-out);
}

.wp-cart-layer.is-open .wp-cart-drawer {
  transform: translateX(0);
}

.wp-cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid rgba(32, 35, 31, 0.13);
}

.wp-cart-header .wp-kicker {
  margin-bottom: 6px;
}

.wp-cart-header h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.wp-cart-header h2 > span {
  color: #7b8179;
  font-size: 1rem;
}

.wp-cart-header > button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(32, 35, 31, 0.28);
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
}

.wp-cart-items {
  overflow-y: auto;
  padding: 0 30px;
}

.wp-cart-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  text-align: center;
}

.wp-cart-empty strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.wp-cart-empty p {
  max-width: 300px;
  margin: 12px 0 22px;
  color: #777e75;
  line-height: 1.6;
}

.wp-cart-empty button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #30352f;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.wp-cart-line {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(32, 35, 31, 0.12);
}

.wp-cart-line img {
  width: 92px;
  height: 112px;
  object-fit: cover;
  background: #e8e5dd;
}

.wp-cart-line-copy {
  min-width: 0;
}

.wp-cart-line-copy small {
  color: #858b82;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.wp-cart-line-copy h3 {
  margin: 6px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.wp-cart-line-copy > button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(32, 35, 31, 0.28);
  background: transparent;
  cursor: pointer;
  color: #767d74;
  font-size: 0.64rem;
}

.wp-cart-line-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.wp-cart-line-side strong {
  white-space: nowrap;
  font-size: 0.8rem;
}

.wp-cart-line-quantity {
  display: grid;
  grid-template-columns: 28px 24px 28px;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(32, 35, 31, 0.15);
}

.wp-cart-line-quantity button {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wp-cart-line-quantity span {
  font-size: 0.7rem;
  text-align: center;
}

.wp-cart-footer {
  padding: 24px 30px 28px;
  border-top: 1px solid rgba(32, 35, 31, 0.13);
  background: #f2f0ea;
}

.wp-cart-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wp-cart-footer > div span {
  color: #6d736b;
  font-size: 0.76rem;
}

.wp-cart-footer > div strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.wp-cart-checkout {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #242a23;
  color: #fff;
  background: #242a23;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  transition: background 220ms ease, transform 220ms var(--ease-out);
}

.wp-cart-checkout i {
  font-style: normal;
  transition: transform 220ms var(--ease-out);
}

.wp-cart-checkout:hover {
  background: #394137;
  transform: translateY(-2px);
}

.wp-cart-checkout:hover i {
  transform: translateX(5px);
}

.wp-cart-footer > p {
  margin: 12px 0 0;
  color: #898f86;
  font-size: 0.62rem;
  text-align: center;
}

.wp-product-dialog {
  width: min(1040px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #20231f;
  background: #f8f7f3;
  box-shadow: 0 34px 90px rgba(14, 18, 14, 0.28);
}

.wp-product-dialog::backdrop {
  background: rgba(25, 29, 24, 0.58);
  backdrop-filter: blur(7px);
}

.wp-product-dialog[open] {
  animation: wp-dialog-in 420ms var(--ease-out) both;
}

.wp-dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 650px;
}

.wp-dialog-media {
  min-height: 0;
  background: #e5e1d8;
}

.wp-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.wp-dialog-copy h2 {
  margin: 6px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.wp-dialog-price {
  margin-top: 18px;
  font-size: 1rem;
}

.wp-dialog-description {
  margin: 24px 0 0;
  color: #676d65;
  line-height: 1.68;
}

.wp-dialog-details {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 18px 0;
  border-top: 1px solid rgba(32, 35, 31, 0.14);
  border-bottom: 1px solid rgba(32, 35, 31, 0.14);
  color: #626860;
  font-size: 0.78rem;
  list-style: none;
}

.wp-dialog-details li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: #7e8979;
  vertical-align: middle;
}

.wp-dialog-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.wp-dialog-variants legend {
  width: 100%;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wp-dialog-variants button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(32, 35, 31, 0.16);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
}

.wp-dialog-variants button:hover,
.wp-dialog-variants button.is-selected {
  color: #fff;
  border-color: #30352f;
  background: #30352f;
}

.wp-dialog-buy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 24px;
}

.wp-dialog-buy .wp-link-button {
  width: 100%;
  margin: 0;
}

.wp-quantity {
  display: grid;
  grid-template-columns: 36px 34px 36px;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(32, 35, 31, 0.16);
}

.wp-quantity button {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wp-quantity output {
  text-align: center;
  font-size: 0.76rem;
}

.wp-dialog-note {
  margin: 18px 0 0;
  color: #858b82;
  font-size: 0.68rem;
}

.wp-dialog-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(32, 35, 31, 0.14);
  background: rgba(248, 247, 243, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease;
}

.wp-dialog-close:hover {
  color: #fff;
  background: #30352f;
}

.wp-store-site .demo-return {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes rp-camera-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes rp-scroll-line {
  0% { transform: translateY(-15px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(34px); opacity: 0; }
}

@keyframes wp-hero-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

@keyframes wp-hotspot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}

@keyframes wp-dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wp-search-in {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .rp-section-grid,
  .rp-gallery-layout {
    grid-template-columns: 1fr;
  }

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

  .rp-path-card {
    min-height: 210px;
  }

  .rp-gallery {
    min-height: 620px;
  }

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

  .wp-product-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .wp-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wp-feature {
    grid-template-columns: 1fr;
  }

  .wp-feature-media {
    min-height: 620px;
  }

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

  .wp-service-strip p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 760px) {
  .demo-return {
    left: 12px;
    bottom: 12px;
  }

  .rp-header {
    height: 68px;
    padding: 0 14px;
  }

  .rp-brand small {
    display: none;
  }

  .immersive-menu,
  .wp-store-menu {
    display: block;
  }

  .rp-nav {
    position: fixed;
    inset: 68px 0 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    background: rgba(6, 9, 12, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 260ms ease, transform 260ms var(--ease-out);
  }

  .rp-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .rp-nav a {
    font-size: 1.05rem;
  }

  .rp-side-dots {
    display: none;
  }

  .rp-screen {
    min-height: auto;
    padding: 110px 18px 76px;
  }

  .rp-home {
    min-height: 100svh;
  }

  .rp-home-content {
    width: 100%;
  }

  .rp-home h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .rp-overline {
    width: 100%;
    align-items: flex-start;
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .rp-overline::before {
    flex: 0 0 24px;
    margin-top: 0.72em;
  }

  .rp-actions {
    flex-direction: column;
  }

  .rp-path-grid {
    grid-template-columns: 1fr;
  }

  .rp-button {
    width: 100%;
  }

  .rp-section-copy h2,
  .rp-paths h2,
  .rp-gallery-heading h2 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .rp-universe-list {
    grid-template-columns: 1fr;
  }

  .rp-universe-item {
    min-height: 130px;
  }

  .rp-gallery {
    min-height: 520px;
  }

  .rp-gallery-caption {
    flex-direction: column;
  }

  .rp-site-footer {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .wp-demo-bar {
    min-height: 40px;
    padding-inline: 54px;
  }

  .wp-store-header {
    min-height: 66px;
    grid-template-columns: 1fr auto auto;
    padding: 0 14px;
  }

  .wp-store-menu {
    grid-column: 2;
    grid-row: 1;
  }

  .wp-store-tools {
    grid-column: 3;
    grid-row: 1;
  }

  .wp-store-nav {
    position: fixed;
    inset: 106px 0 0;
    z-index: 70;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    background: rgba(248, 247, 243, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 260ms ease, transform 260ms var(--ease-out);
  }

  .wp-store-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wp-store-nav a {
    font-size: 1rem;
  }

  .wp-store-tools button:first-child {
    display: none;
  }

  .wp-nav-search {
    display: block;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(32, 35, 31, 0.22);
    background: transparent;
    cursor: pointer;
    color: #5b6159;
    font-size: 1rem;
  }

  .wp-store-menu {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(32, 35, 31, 0.16);
    border-radius: 50%;
    background: transparent;
  }

  .wp-hero {
    min-height: calc(100svh - 106px);
    align-items: flex-end;
    padding: 70px 18px 56px;
  }

  .wp-hero::after {
    background: linear-gradient(180deg, rgba(245, 242, 234, 0.06) 10%, rgba(245, 242, 234, 0.94) 66%, #f5f2ea 100%);
  }

  .wp-hero-media img {
    object-position: 58% center;
  }

  .wp-hero-copy {
    width: 100%;
  }

  .wp-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.8rem);
  }

  .wp-hero-index {
    display: none;
  }

  .wp-category-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-category-strip a:nth-child(2) {
    border-right: 0;
  }

  .wp-category-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(32, 35, 31, 0.11);
  }

  .wp-service-strip {
    grid-template-columns: 1fr;
  }

  .wp-service-strip p {
    min-height: 62px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 18px;
  }

  .wp-shop-section {
    padding: 68px 14px;
  }

  .wp-shop-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .wp-collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .wp-carousel-controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .wp-product-grid {
    grid-template-columns: 1fr;
    margin-right: -14px;
    padding-right: 14px;
    scroll-padding-inline: 0 14px;
  }

  .wp-product-card {
    flex-basis: min(82vw, 320px);
  }

  .wp-product-controls {
    opacity: 1;
    transform: translateY(0);
  }

  .wp-feature-media {
    min-height: 480px;
  }

  .wp-feature-copy {
    padding: 48px 18px;
  }

  .wp-editorial-band,
  .wp-store-footer {
    grid-template-columns: 1fr;
  }

  .wp-editorial-item {
    border-right: 0;
    border-bottom: 1px solid rgba(32, 35, 31, 0.12);
  }

  .wp-store-footer {
    padding: 58px 18px 98px;
  }

  .wp-cart-toast {
    left: 12px;
    right: 12px;
    bottom: 66px;
  }

  .wp-product-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    overflow-y: auto;
  }

  .wp-dialog-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wp-dialog-media {
    height: 42vh;
    min-height: 320px;
  }

  .wp-dialog-copy {
    padding: 38px 18px 88px;
  }

  .wp-dialog-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .wp-dialog-buy {
    grid-template-columns: 1fr;
  }

  .wp-quantity {
    width: 106px;
  }

  .wp-dialog-close {
    position: fixed;
  }

  .wp-search-content {
    width: calc(100% - 28px);
    padding: 86px 0 70px;
  }

  .wp-search-content h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .wp-search-field {
    margin-top: 30px;
  }

  .wp-search-field input {
    font-size: 1.8rem;
  }

  .wp-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wp-search-result strong {
    display: block;
  }

  .wp-cart-drawer {
    width: 100%;
  }

  .wp-cart-header,
  .wp-cart-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wp-cart-items {
    padding: 0 18px;
  }

  .wp-cart-line {
    grid-template-columns: 72px 1fr auto;
    gap: 11px;
  }

  .wp-cart-line img {
    width: 72px;
    height: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark shop presentation: structure and commerce interactions are unchanged. */
.wp-store-site {
  color: #eeeeec;
  background: #141516;
  color-scheme: dark;
}

.wp-demo-bar,
.wp-store-footer {
  background: #0d0e0f;
}

.wp-store-header {
  border-color: rgba(232, 232, 228, 0.11);
  background: rgba(20, 21, 22, 0.96);
}

.wp-store-brand small,
.wp-store-nav a,
.wp-store-tools,
.wp-category-strip small,
.wp-service-strip span,
.wp-shop-heading p,
.wp-carousel-controls > span,
.wp-product-meta p,
.wp-product-meta strong,
.wp-feature-copy > p:not(.wp-kicker),
.wp-feature-details,
.wp-feature-details span,
.wp-feature-details em,
.wp-search-field > span,
.wp-search-summary,
.wp-search-result span,
.wp-search-result em,
.wp-search-empty,
.wp-cart-empty p,
.wp-cart-line-copy small,
.wp-cart-line-copy > button,
.wp-cart-footer > div span,
.wp-cart-footer > p,
.wp-dialog-description,
.wp-dialog-details,
.wp-dialog-note {
  color: #a5a6a4;
}

.wp-store-nav a::after {
  background: #e1e1dd;
}

.wp-store-tools button:hover {
  color: #fff;
}

.wp-hero {
  background: #171819;
}

.wp-hero::after {
  background: linear-gradient(90deg, rgba(13, 14, 15, 0.97) 0%, rgba(13, 14, 15, 0.84) 37%, rgba(13, 14, 15, 0.13) 72%);
}

.wp-kicker {
  color: #aeb0ad;
}

.wp-hero-copy > p:not(.wp-kicker) {
  color: #b8b9b6;
}

.wp-link-button,
.wp-filter.is-active,
.wp-filter:hover,
.wp-product-controls .wp-product-action,
.wp-cart-checkout {
  color: #151617;
  border-color: #d0d0ca;
  background: #d0d0ca;
}

.wp-link-button::before,
.wp-product-controls .wp-product-action:hover,
.wp-product-controls .wp-product-action.is-added,
.wp-cart-checkout:hover {
  background: #ecece7;
}

.wp-link-button:hover,
.wp-cart-checkout:hover {
  color: #111213;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.wp-category-strip {
  border-color: rgba(232, 232, 228, 0.11);
  background: #171819;
}

.wp-category-strip a {
  border-color: rgba(232, 232, 228, 0.11);
}

.wp-category-strip a:hover {
  background: #202224;
}

.wp-category-strip a::before {
  background: #b9bab6;
}

.wp-service-strip {
  background: rgba(232, 232, 228, 0.09);
}

.wp-service-strip p {
  background: #1b1c1e;
}

.wp-service-strip strong {
  color: #e9e9e6;
}

.wp-carousel-controls button,
.wp-filter {
  color: #b0b1ae;
  border-color: rgba(232, 232, 228, 0.15);
}

.wp-carousel-controls button:hover:not(:disabled) {
  color: #151617;
  background: #e1e1dd;
}

.wp-product-media {
  background: #202224;
}

.wp-product-badge,
.wp-product-favorite,
.wp-product-view {
  color: #eeeeeb;
  background: rgba(23, 24, 25, 0.92);
}

.wp-product-view:hover,
.wp-product-favorite:hover,
.wp-product-favorite.is-active {
  color: #fff;
  background: #2b2d2f;
}

.wp-product-swatches i {
  border-color: rgba(232, 232, 228, 0.22);
}

.wp-feature {
  background: #1b1d1f;
}

.wp-feature-details {
  border-color: rgba(232, 232, 228, 0.14);
}

.wp-text-button {
  border-color: #bebfbc;
}

.wp-image-hotspot small {
  color: #f0f0ed;
  background: rgba(20, 21, 22, 0.94);
}

.wp-editorial-band {
  border-color: rgba(232, 232, 228, 0.11);
  background: #161719;
}

.wp-editorial-item {
  border-color: rgba(232, 232, 228, 0.11);
}

.wp-editorial-item span {
  color: #999a98;
}

.wp-search-dialog,
.wp-cart-drawer,
.wp-product-dialog {
  color: #eeeeec;
  background: #171819;
}

.wp-search-field input {
  color: #eeeeec;
  border-color: rgba(232, 232, 228, 0.28);
}

.wp-search-field input:focus {
  border-color: #e1e1dd;
}

.wp-search-field input::placeholder {
  color: #727371;
}

.wp-search-result img,
.wp-cart-line img,
.wp-dialog-media {
  background: #222426;
}

.wp-search-empty,
.wp-cart-header,
.wp-cart-line,
.wp-cart-footer,
.wp-dialog-details {
  border-color: rgba(232, 232, 228, 0.12);
}

.wp-cart-header h2 > span {
  color: #969795;
}

.wp-cart-header > button,
.wp-cart-empty button,
.wp-cart-line-copy > button {
  color: #c8c9c6;
  border-color: rgba(232, 232, 228, 0.28);
}

.wp-cart-line-quantity,
.wp-quantity,
.wp-dialog-variants button {
  border-color: rgba(232, 232, 228, 0.16);
}

.wp-cart-footer {
  background: #111214;
}

.wp-dialog-variants button:hover,
.wp-dialog-variants button.is-selected {
  color: #151617;
  border-color: #d0d0ca;
  background: #d0d0ca;
}

.wp-dialog-close {
  color: #e7e7e4;
  border-color: rgba(232, 232, 228, 0.16);
  background: rgba(20, 21, 22, 0.9);
}

.wp-dialog-close:hover {
  color: #151617;
  background: #e1e1dd;
}
