:root{
  --bg: #F6F0E6;
  --bg2:#FFFFFF;
  --text:#1e1e1e;
  --muted:#5a5a5a;
  --line: rgba(0,0,0,.10);

  /* Warmer gold (instead of orange) */
  --brand: #C8A247;
  --brand-deep: #8F7330;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);

  /* ✅ HERO POSITION CONTROLS (DESKTOP/TABLET)
     Adjust these 4 values to move items around.
     +X moves RIGHT, -X moves LEFT
     +Y moves DOWN,  -Y moves UP
  */
  --badge-x: -60px;
  --badge-y: 170px;

  --panel-x: 560px;   /* ✅ increase to move panel more right */
  --panel-y: 6000px;     /* optional: move panel up/down */
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg, var(--bg), #fff);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

/* Header */
.site-header{
  position:sticky; top:0;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index: 50;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:4px 0;
  position:relative;
}
.brand{display:flex;align-items:center}
.brand-logo{height:80px;width:auto}

.site-nav{
  margin-left:auto;
  display:flex;
  gap:18px;
  align-items:center;
}
.site-nav a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
}
.site-nav a.active,
.site-nav a:hover{
  color:var(--text);
  background:rgba(0,0,0,.05);
}

.nav-toggle{
  display:none;
  margin-left:auto;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
  cursor:pointer;
}

.nav-dropdown{
  display:none;
}

.header-cta{
  display:none;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, opacity .2s ease, background .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(180deg, var(--brand), var(--brand-deep));
  color:#fff;
  box-shadow: var(--shadow);
}
.btn-secondary{
  background:#111;
  color:#fff;
}
.btn-ghost{
  background:rgba(255,255,255,.7);
  border-color: var(--line);
  color:var(--text);
}

/* Sections */
.section{padding:44px 0}
.section-alt{
  background:rgba(255,255,255,.75);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:28px}
.muted{color:var(--muted)}
.lead{font-size:18px;color:var(--muted);line-height:1.6}
h1{margin:14px 0 10px;font-size: clamp(34px, 4.3vw, 54px);line-height:1.05}
h2{margin:0}
h3{margin:0}

/* HERO VIDEO */
.hero-video{
  position:relative;
  min-height: calc(100vh - 92px);
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#0b0b0b;
}

.hero-video video{
  position:absolute; inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}

/* readability layer */
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 35%, rgba(0,0,0,.55)),
    radial-gradient(900px 380px at 55% 45%, rgba(200,162,71,.45), transparent 60%),
    radial-gradient(700px 280px at 20% 20%, rgba(200,162,71,.20), transparent 60%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:80px 0;
}

/* 🔥 KEY LAYOUT FIX */
.hero-wrap{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:stretch;
  gap:22px;
  width:100%;
  min-height: clamp(520px, 70vh, 760px);
  position:relative;
}

/* ===== BADGE ===== */
.hero-badge{
  display:inline-block;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:6px 12px;
  border-radius:999px;

  /* 👇 YOU MOVE BADGE HERE */
  margin-top:170px;      /* up/down */
  margin-left:160px;    /* left/right */
}

/* ===== TITLE ===== */
.hero-title{
  color:#fff;
  margin:14px 0 10px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-lead{
  color: rgba(255,255,255,.85);
  font-size:18px;
  line-height:1.6;
  max-width:54ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* ===== PANEL (THIS IS WHAT YOU WANT TO MOVE RIGHT) ===== */
.hero-panel{
  margin-top:auto;

  align-self:flex-end;   /* move to right */

  width: 650px;         /* control width here */
  max-width: 90%;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  color:#fff;
}

.hero-panel .muted{
  color: rgba(255,255,255,.78);
}

.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.trust-item{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  color: rgba(255,255,255,.85);
}

/* ===== MOBILE SAFE RESET ===== */
@media (max-width:768px){

  .hero-badge{
    margin-top:40px;
    margin-left:0;
  }

  .hero-panel{
    align-self:flex-start;   /* stack left again */
    max-width:100%;
  }
}

/* Ticker */
.ticker{
  width:100%;
  overflow:hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.ticker__track{
  display:flex;
  gap:14px;
  padding:16px 0;
  width:max-content;
  animation: tickerMove 32s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track{
  animation-play-state: paused;
}
@keyframes tickerMove{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background:#fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  transition: transform .12s ease;
}
.ticker__item:active{ transform: translateY(1px); }
.ticker__thumb{
  width:46px;
  height:46px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid var(--line);
}
.ticker__item--img{
  padding:10px;
  border-radius:999px;
}
.ticker__thumb--big{
  width:72px;
  height:72px;
  border-radius:999px;
  object-fit:cover;
}
.ticker__item--img:hover{
  transform: translateY(-2px);
}
.ticker__label{font-weight:900}
.ticker__meta{color:var(--muted);font-weight:800;margin-left:6px}

/* Cards / Grids */
.grid{display:grid;gap:16px}
.cards{grid-template-columns: repeat(4, 1fr)}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.card-media{
  height:170px;
  border-radius: 14px;
  border:1px solid var(--line);
  overflow:hidden;
}
.card-media img{
  width:100%; height:100%;
  object-fit:cover;
}
.card h3{margin:12px 0 6px}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(200,162,71,.12);
}

/* Products page */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 12px 0 18px;
}
.tab{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}
.tab.is-active{
  background: linear-gradient(180deg, rgba(200,162,71,.25), rgba(200,162,71,.10));
  border-color: rgba(200,162,71,.45);
}

.products-grid{
  grid-template-columns: repeat(4, 1fr);
}
.product-card .name{font-weight:900;margin-top:10px}
.product-card .meta{color:var(--muted);font-weight:800;font-size:14px}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}
.modal.is-open{ display:block; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
}
.modal__panel{
  position:relative;
  width:min(900px, 92%);
  margin: 7vh auto;
  background:#fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  border:1px solid var(--line);
  overflow:hidden;
}
.modal__close{
  position:absolute;
  top:12px; right:12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 12px;
  padding:8px 10px;
  cursor:pointer;
}
.modal__content{
  display:grid;
  grid-template-columns: 1fr 1fr;
}
.modal__img{
  width:100%;
  height:100%;
  min-height: 340px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(200,162,71,.18), rgba(216,195,165,.2));
}
.modal__info{padding:22px}
.modal__price{
  font-size:16px;
  font-weight:900;
  margin:10px 0;
}
.modal__tag{
  display:inline-block;
  margin-top:10px;
  background: rgba(200,162,71,.12);
  border: 1px solid rgba(200,162,71,.25);
  border-radius:999px;
  padding:8px 10px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Page hero */
.page-hero{padding:42px 0 10px}
.page-hero h1{margin:0 0 10px}

/* Footer */
.site-footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.85);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  width:100%;
}
.designed-by{
  font-size:14px;
  color:var(--muted);
}
.designed-by a{
  font-weight:800;
  color:var(--brand);
}
.designed-by a:hover{
  text-decoration:underline;
}

/* ✅ Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .products-grid{grid-template-columns: repeat(2, 1fr)}
  .hero-video{min-height: calc(92vh - 92px)}
  .hero-wrap{
    min-height: clamp(460px, 72vh, 720px);
    max-width: 92%;
  }
  .hero-panel{max-width: 640px;}
}

@media (max-width: 860px){
  .site-nav{display:none}
  .nav-toggle{display:inline-flex}
  .header-cta{display:inline-flex}
}

/* ✅ Mobile safe: reset manual positioning so it never breaks */
@media (max-width: 768px){
  :root{
    --badge-x: 0px;
    --badge-y: 30px;
    --panel-x: 0px;
    --panel-y: 0px;
  }
  .hero-panel{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .cards{grid-template-columns: 1fr}
  .products-grid{grid-template-columns: 1fr}
  .modal__content{grid-template-columns:1fr}
  .modal__img{min-height: 240px}
  .hero-content{padding: 64px 0;}
  .hero-panel{max-width: 100%;}
}