:root{
  --bg: #070709;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --line: rgba(255,255,255,.12);

  /* Rose-gold vibe (close to your logo) */
  --accent: #d2a39a;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(900px 500px at 15% 0%, rgba(210,163,154,.20), transparent 60%),
              radial-gradient(700px 400px at 90% 20%, rgba(210,163,154,.12), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.btn{
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(210,163,154,.55); }
.btn:active{ transform: translateY(0); }

.btn.primary{
  background: linear-gradient(180deg, rgba(210,163,154,.22), rgba(210,163,154,.10));
  border-color: rgba(210,163,154,.55);
}
.btn.ghost{
  background: rgba(255,255,255,.03);
}
.btn.small{ padding:10px 12px; font-size: 14px; }

.input{
  width:100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  color: var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(210,163,154,.55);
  box-shadow: 0 0 0 4px rgba(210,163,154,.12);
}

.promo-bar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.promo-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
  color: var(--accent);
  letter-spacing: .2px;
  font-size: 14px;
}
.promo-close{
  background: transparent;
  border: 1px solid rgba(210,163,154,.35);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 10px;
  cursor:pointer;
}

/* --- LOGO ROW: luxe divider + subtle animation --- */
.header-logo-row{
  background: #000000;
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 16px 0 10px;          /* slightly tighter */
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Rose-gold divider line under the logo row */
.header-logo-row::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: min(560px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(210,163,154,.85),
    transparent
  );
}

/* Logo sizing */
.brand-logo{
  height: 70px;
  width: auto;
  display:block;

  /* animation */
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  animation: shiraLogoIn 700ms ease-out forwards;
}

/* Soft hover glow */
.brand:hover .brand-logo{
  filter: drop-shadow(0 10px 22px rgba(210,163,154,.22));
}

/* Keyframes */
@keyframes shiraLogoIn{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .brand-logo{ animation: none; opacity: 1; transform: none; }
}


.site-header{
  position: sticky;
  top: 44px;
  z-index: 40;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;   /* reduced nav row height */
  gap: 18px;
}

/* Move logo to the right side of header */
.site-header .brand {
  order: 3;
}

.site-header .nav {
  order: 1;
}
/* --- Luxury nav underline animation (rose-gold) --- */
.nav a{
  position: relative;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 13px;
}

/* underline (hidden by default) */
.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(210,163,154,.9),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}

/* hover effect */
.nav a:hover{
  color: #ffffff;
}

.nav a:hover::after{
  transform: scaleX(1);
}





.site-header .header-actions {
  order: 2;
}
.site-header {
  background: #000000;
}

/* LOGO SEPARATE ROW */
.header-logo-row {
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-logo {
  height: 70px;
  width: auto;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}


.brand-logo {
  height: 300px;
  width: auto;
  display: block;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand-mark{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 6px;
  font-size: 20px;
}
.brand-tagline{
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
}
.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav a{
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover{ color: var(--text); }

.header-actions{ display:flex; gap:10px; align-items:center; }
.icon-btn{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  cursor:pointer;
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(210,163,154,.18);
  border: 1px solid rgba(210,163,154,.55);
}

.hamburger{ display:none; }

.mobile-nav{
  display:none;
  padding-bottom: 14px;
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
}

.hero{
  padding: 46px 0 20px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}
.kicker{
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1{
  margin: 12px 0 8px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}
.cta-row{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.trust{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  color: var(--muted);
  display:flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
}

.hero-card{
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  padding: 14px;
  display:flex;
  justify-content:flex-end;
}
.pill{
  border: 1px solid rgba(210,163,154,.55);
  background: rgba(210,163,154,.14);
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-card-body{ padding: 16px; }
.mock-image{
  width:100%;
  height: 220px;
  border-radius: 14px;
  background:
    radial-gradient(420px 220px at 10% 20%, rgba(210,163,154,.22), transparent 60%),
    radial-gradient(260px 180px at 80% 40%, rgba(210,163,154,.14), transparent 60%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
}
.hero-card-actions{ display:flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.section{ padding: 44px 0; }
.section.alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head h2{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: .5px;
  font-size: 30px;
}
.section-head p{ margin: 8px 0 0; }

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.step{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px;
}
.step-num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(210,163,154,.55);
  background: rgba(210,163,154,.14);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.filters{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.filters .input{ max-width: 280px; }

.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product-img{
  height: 150px;
  background:
    radial-gradient(360px 180px at 15% 20%, rgba(210,163,154,.16), transparent 60%),
    rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.product-body{ padding: 12px; display:flex; flex-direction:column; gap: 8px; }
.product-title{ font-weight: 650; }
.product-meta{ display:flex; justify-content:space-between; align-items:center; gap: 10px; }
.product-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.split{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}
.card{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
}

.about p{ max-width: 70ch; }
.badges{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }
.mini-badge{
  border: 1px solid rgba(210,163,154,.45);
  background: rgba(210,163,154,.12);
  color: var(--accent);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.form .row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form textarea{ resize: vertical; }

.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.55);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.footer-brand{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 6px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  color: var(--muted);
}
.newsletter-row{ display:flex; gap: 10px; margin-top: 8px; }
.newsletter-row .input{ flex:1; }

.modal, .drawer{ position: fixed; inset: 0; display:none; z-index: 70; }
.modal[aria-hidden="false"], .drawer[aria-hidden="false"]{ display:block; }

.modal-backdrop, .drawer-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.6);
}
.modal-card{
  position: relative;
  width: min(620px, calc(100% - 28px));
  margin: 7vh auto;
  background: rgba(15,15,18,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head, .drawer-head{
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.modal-body{ padding: 14px; display:flex; flex-direction:column; gap: 10px; }
.label{ font-size: 13px; color: var(--muted); }
.modal-actions{
  padding: 14px;
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.drawer-panel{
  position:absolute;
  right: 0; top:0;
  height: 100%;
  width: min(420px, 100%);
  background: rgba(15,15,18,.94);
  border-left: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.drawer-body{ padding: 12px 14px; overflow:auto; flex:1; }
.drawer-foot{
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cart-item{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
}
.cart-item-top{
  display:flex;
  justify-content:space-between;
  gap: 12px;
}
.qty-row{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 10px;
}
.qty-btn{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
}
.total-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 10px; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hamburger{ display:inline-flex; }
  .mobile-nav{ display:none; }
  .mobile-nav.open{ display:block; }
}
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
  .form .row{ grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .site-header .brand {
    order: 2;
    margin-left: auto;
  }
}
