:root {
  /* --bg: #fbf7f4; */
  --bg: #FFFFFF;
  --rose: #d7b1b2;
  --rose-deep: #ba8f90;
  --gold: #c7a16a;
  /* --text: #272727; */
  --text: #000000;
  --light: #FFFFFF;
  --dark: #000000;
  /* --muted: #7a6a63; */
  --muted: #808080;
  --radius-xl: 3px;
  --shadow: 0 22px 56px rgba(86, 58, 44, .12);
}

.test{
border:1px red solid;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  /* background:
    radial-gradient(circle at top right, rgba(215,177,178, .34), transparent 25%),
    radial-gradient(circle at bottom left, rgba(199,161,106, .18), transparent 20%),
    linear-gradient(180deg, #fbf7f4 0%, #f7efe7 100%); */
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.content {
  width: 100%;
  min-height: 100vh;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.topbar {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  width: 300px;
  height: auto;
}

.brand-sub {
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.top-actions {
  display: flex;
  gap: 16px;
}

.touch-btn,
.touch-btn-light {
  min-height: 48px;
  padding: 20px 36px;
  border: none;
  border-radius: 3px;
  font-weight: 800;
  font-size: 1.45rem;
  /* box-shadow: var(--shadow); */
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.touch-btn {
  background: var(--dark);
  /* background: linear-gradient(135deg, #24201f, #4a3b37); */
  color: #fff;
}

.touch-btn-light {
  background: rgba(255,255,255,.78);
  color: var(--text);
  border: 1px solid rgba(47,38,35,.08);
}

.hero,
.panel {
  /* background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(253,247,241,.9)); */
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47,38,35,.06);
}

.hero-text {
  padding: 54px 48px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  min-height: 540px;
  /* background: linear-gradient(180deg, #f1e6dc 0%, #ead8cb 100%); */
  background: var(--bg);
  padding: 34px;
}

.eyebrow,.eyebrow2  {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1.25rem;
  margin-bottom: 22px;
}

.eyebrow:before {
  content: "";
  width: 64px;
  height: 2px;
  background: var(--rose-deep);
  opacity: .65;
}

.hero h1,
.section-head h2,
.product-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: 4.8rem;
  line-height: .92;
}

.hero p {
  margin: 0;
  font-size: 1.62rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-img,
.category-img,
.product-img,
.ad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card {
  width: 100%;
  height: 100%;
  min-height:700px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  /* box-shadow: 0 18px 50px rgba(89,60,48,.16); */
}

.hero-card:after,
.category-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  z-index: 1;
  /* background: linear-gradient(180deg, rgba(27,19,16,0), rgba(27,19,16,.62)); */
}

.hero-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  border-radius: 3px;
  padding: 22px 24px;
}

.hero-badge .title {
  font-weight: 800;
  font-size: 1.55rem;
}

.hero-badge .sub {
  color: var(--muted);
  font-size: 1.22rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 1;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 700;
}

.category-card {
  border-radius: 3px;
  min-height: 325px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  touch-action: manipulation;
}

.category-card:before {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.62));
}

.category-card>img {
  position: absolute;
  inset: 0;
}

.category-content {
  position: relative;
  z-index: 2;
}

.category-card .kicker {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .94;
  margin-bottom: 10px;
  font-weight: 800;
}

.category-card .name {
  font-size: 3.2rem;
  line-height: .95;
  font-family: 'Roboto', serif;
  font-weight: 200;
  margin-bottom: 14px;
}

.category-card .desc {
  font-size: 1.35rem;
  line-height: 1.35;
  color: rgba(255,255,255,.9);
  max-width: 450px;
  font-weight: 600;
}

.panel {
  padding: 34px;
  height: 100%;
}

.product-card {
  /* background: linear-gradient(180deg, #fff, #faf5f0); */
  background: var(--bg);
  border-radius: 3px;
  padding: 22px;
  border: 0px solid var(--dark);
  min-height: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.product-image-wrap {
  height: 340px;
  border-radius: 3px;
  background: #f1e4d7;
  overflow: hidden;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 3px;
  background: #f7ede6;
  color: var(--rose-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 800;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.42;
  font-weight: 600;
}

.product-price {
  margin-top: 16px;
  font-weight: 800;
  font-size: 1.7rem;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(47,38,35,.06);
  border-radius: 3px; 
  padding: 18px 20px 18px 32px;
  box-shadow: var(--shadow);
}

.footer-copy {
  font-weight: 800;
  color: var(--muted);
  font-size: 1.28rem;
}

.footer-actions {
  display: flex;
  gap: 12px;
}

.footer-pill {
  min-height: 74px;
  padding: 0 28px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  background: #fff;
  border: 1px solid rgba(47,38,35,.08);
  white-space: nowrap;
  text-decoration: none;
  color: var(--text);
}

.product-title {
  font-size: 4rem!important;
  line-height: .95;
}

.large-text {
  font-size: 1.55rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 600;
}

.qty-box {
  display: flex;
  align-items: center;
  gap: 22px;
}

.qty-btn {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: none;
  background: #fff;
  /* box-shadow: var(--shadow); */
  font-size: 3rem;
  font-weight: 800;
}

.qty-value {
  font-size: 2.4rem;
  font-weight: 800;
}

.cart-row {
  background: #fff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.qr-box {
  background: #fff;
  border-radius: 3px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.qr {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

.checkout-choice {
  min-height: 280px;
  border-radius: 3px;
  background: #fff;
  /* box-shadow: var(--shadow); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 34px;
}

.checkout-choice strong {
  font-size: 2.2rem;
}

.checkout-choice span {
  font-size: 1.35rem;
  color: var(--muted);
  font-weight: 700;
}

.screensaver {
  min-height: 100vh;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.screensaver-slide {
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.screensaver-slide.active {
  opacity: 1;
}

.screensaver-slide .pill, .hero-badge .pill {
  border:1px var(--dark) solid;
  padding:12px 24px;
  margin-bottom: 24px; 
  display: inline-block;
}
.screensaver-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screensaver-caption {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 80px;
  padding: 46px;
  border-radius: 3px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.screensaver-caption h1 {
  font-family: 'Roboto', serif;
  font-weight: 200;
  font-size: 5.4rem;
  line-height: .9;
  margin: 0 0 20px;
}

.screensaver-caption p {
  font-size: 2rem;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.demo-bypass {
  margin-top: 28px;
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: underline;
  font-weight: 800;
}

.email-input {
  height: 96px;
  border-radius: 3px;
  border: 1px solid rgba(47,38,35,.12);
  font-size: 1.7rem;
  padding: 0 34px;
}

.status-pill {
  display: inline-flex;
  border-radius: 3px;
  background: #f4e6dc;
  color: #8d6547;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 14px 22px;
}

.no-idle {
}

.qty-input {
    width: 120px;
    height: 80px;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 3px;
}

.checkout-choice{
    min-height:260px;
    border-radius:3px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    text-decoration:none;
    color:#000;
    padding:30px;
    font-size:1.6rem;
}

.checkout-icon{
    font-size:5rem;
    margin-bottom:20px;
}

.checkout-choice strong{
    font-size:2rem;
    margin-bottom:8px;
}

.checkout-choice span{
    font-size:1.2rem;
    opacity:.7;
}

.product-item {
  transition: opacity .2s ease;
}
.keywords{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.keyword-filter {
  background: var(--light)!important;
  color: var(--dark) !important;
  border:1px solid var(--dark);
}
.keyword-filter.active {
  background: var(--dark)!important;
  color: var(--light) !important;
}
.keywords a{
    background:#f3ede7;
    padding:8px 14px;
    border-radius:3px;
    font-size:1.4rem;
    font-weight:600;
    text-decoration: none;
    color: rgba(0,0,0,0.6);
}


/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  background: rgba(0,0,0,0.03);
}

::-webkit-scrollbar-thumb {
  background: var(--dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background:  var(--muted);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color:  var(--dark) rgba(0,0,0,0.03);
}


.radio-dark:checked{
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}

.radio-dark:focus{
  box-shadow: 0 0 0 .25rem rgba(0,0,0,.15) !important;
}

.radio-dark:disabled{
  opacity: 1;
}

.diagnostic-choice{
  min-height:300px;
  border-radius:3px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  text-decoration:none;
  color:var(--dark);
  padding:36px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  /* box-shadow:var(--shadow); */
}

.diagnostic-icon{
  font-size:5rem;
  margin-bottom:26px;
  color:var(--dark);
}

.diagnostic-choice strong{
  display:block;
  font-size:2.4rem;
  line-height:1.1;
  margin-bottom:14px;
}

.diagnostic-choice span{
  display:block;
  font-size:1.45rem;
  line-height:1.35;
  color:var(--muted);
  max-width:360px;
}