:root{
  --bg: #6d323a;
  --bg-2: #5f2b32;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.09);
  --stroke: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.94);
  --muted: rgba(255,255,255,0.82);
  --muted-2: rgba(255,255,255,0.68);
  --shadow: 0 18px 50px rgba(0,0,0,0.25);

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; scroll-behavior: smooth; }

body{
  margin: 0;
  background:
    radial-gradient(1100px 600px at 70% 10%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 500px at 15% 35%, rgba(255,255,255,0.08), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea{
  font: inherit;
}

.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Header / Navbar */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(95,43,50,0.94), rgba(95,43,50,0.70));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-link{
  transition: opacity 140ms ease;
}

.brand-link:hover{
  opacity: 0.92;
}

.brand-mark{
  width: 12px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.22));
  opacity: 0.8;
  flex-shrink: 0;
}

.brand-kicker{
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name{
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand-tagline{
  margin: 4px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-2);
}

.top-nav{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link{
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.nav-link:hover{
  border-color: var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  transform: translateY(-1px);
}

/* Shared sections */
.section{
  padding: 40px 0;
}

.section-head{
  margin-bottom: 18px;
}

.section-title{
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.section-subtitle{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.card{
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card-title{
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.card-note{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.btn{
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  min-height: 46px;
  text-align: center;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn-primary{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.btn-primary:hover{
  background: rgba(255,255,255,0.18);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.06);
}

.divider{
  height: 1px;
  background: var(--stroke);
  margin: 18px 0;
}

.site-footer{
  border-top: 1px solid var(--stroke);
  padding: 22px 0 32px;
  margin-top: 20px;
  background: rgba(0,0,0,0.08);
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.footer-note{
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
}

@media (max-width: 900px){
  .header-inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .top-nav{
    width: 100%;
    gap: 8px;
  }

  .nav-link{
    padding: 10px 12px;
  }

  .brand-name{
    font-size: 24px;
  }

  .section{
    padding: 32px 0;
  }

  .section-title{
    font-size: 28px;
  }
}

@media (max-width: 640px){
  .container{
    width: min(100%, calc(100vw - 28px));
  }

  .header-inner{
    gap: 14px;
    padding: 14px 0;
  }

  .brand{
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-kicker{
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .brand-name{
    font-size: 22px;
  }

  .brand-tagline{
    font-size: 13px;
    line-height: 1.35;
  }

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

  .nav-link{
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 14px;
  }

  .section{
    padding: 26px 0;
  }

  .section-head{
    margin-bottom: 14px;
  }

  .section-title{
    font-size: 24px;
  }

  .section-subtitle{
    font-size: 15px;
    line-height: 1.5;
  }

  .card{
    padding: 16px;
    border-radius: 18px;
  }

  .card-title{
    font-size: 21px;
  }

  .card-note{
    font-size: 14px;
  }

  .btn{
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
  }

  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 420px){
  .container{
    width: min(100%, calc(100vw - 22px));
  }

  .top-nav{
    grid-template-columns: 1fr;
  }

  .brand-name{
    font-size: 20px;
  }

  .section-title{
    font-size: 22px;
  }

  .card{
    padding: 14px;
  }
}
.status-badges{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.status-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  line-height:1;
  border:1px solid var(--stroke);
}

.badge-new{
  background:linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
  color:#ffffff;
}

.badge-restocked{
  background:rgba(255,255,255,0.12);
  color:#ffffff;
}

.badge-running-out{
  background:rgba(255,180,60,0.12);
  color:#ffe7a0;
  border-color:rgba(255,200,100,0.3);
}

.badge-sold-out{
  background:rgba(0,0,0,0.25);
  color:#ffb3b3;
  border-color:rgba(255,100,100,0.2);
}

.scent-card.is-sold-out,
.result-card.is-sold-out{
  opacity:0.68;
  filter:grayscale(20%);
}

.btn[disabled]{
  pointer-events:none;
  opacity:0.65;
  cursor:not-allowed;
  transform:none !important;
}