:root{
  --color-primary:#232323;
  --color-primary-dark:#171717;
  --color-primary-light:#3d3d3d;
  --color-text:#232323;
  --color-bg-warm:#f7f5f1;
  --color-white:rgba(255,255,255,.88);
  --shadow-soft:0 10px 25px rgba(0,0,0,.05);
  --shadow-hover:0 18px 40px rgba(0,0,0,.08);
}

/* ---------- Global Background ---------- */
body{
  background:
    radial-gradient(circle at top right,#ececec 0%,transparent 60%),
    linear-gradient(180deg,var(--color-bg-warm) 0%,#ffffff 45%);
  background-attachment:fixed;
  color:var(--color-text);
}

/* ---------- Navbar ---------- */
.main-nav-container.fixed-header .inner{
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(10px);
}

.navbar-brand img{
  max-height:4.5rem;
}

@media (min-width:640px){
  .navbar-brand img{
    max-height:7rem;
  }
}

.main-nav-container.fixed-pinned .navbar-brand img{
  max-height:75px;
  padding:5px;
}

/* ---------- Section Titles ---------- */
.s-block__title h2,
.s-slider-block__title h2{
  font-weight:600;
  letter-spacing:.5px;
  color:var(--color-text);
  position:relative;
}

.s-block__title h2::after{
  content:"";
  position:absolute;
  bottom:-10px;
  right:0;
  width:55px;
  height:3px;
  background:linear-gradient(90deg,#232323,transparent);
  border-radius:6px;
}

/* ---------- Product Cards ---------- */
.s-product-card-vertical{
  background:var(--color-white);
  border:1px solid rgba(35,35,35,.12);
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(4px);
  transition:.35s ease;
}

.s-product-card-vertical:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}

/* ---------- Buttons ---------- */
.s-button-primary{
  background:linear-gradient(135deg,#232323,#171717);
  border:none;
  color:#fff;
  border-radius:16px;
  box-shadow:0 6px 15px rgba(35,35,35,.25);
  transition:.3s ease;
}

.s-button-primary:hover{
  background:#171717;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(35,35,35,.35);
}

.s-button-primary-outline{
  background:transparent;
  border:2px solid #232323;
  color:#232323;
  border-radius:14px;
}

.s-button-primary-outline:hover{
  background:#232323;
  color:#fff;
}

/* ---------- Banners ---------- */
.banner-entry{
  background:
    linear-gradient(180deg,rgba(35,35,35,.05),rgba(255,255,255,.95));
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.banner-entry h3{
  display:none;
}

.has-overlay::after{
  display:none;
}

/* ---------- Grid ---------- */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}

/* ---------- Footer ---------- */
.footer-is-light .store-footer .store-footer__inner{
  background:linear-gradient(180deg,#232323,#171717);
  color:#fff;
  border-radius:22px;
  box-shadow:0 -10px 30px rgba(0,0,0,.08);
}

/* ---------- Mobile ---------- */
@media (max-width:768px){
  .s-block__title h2::after{
    width:40px;
  }
}


/* ---------- Center Logo ---------- */
.main-nav-container .inner{
  display:flex;
  align-items:center;
}

.navbar-brand{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  margin:0!important;
}

.navbar-brand img{
  display:block;
  margin:auto;
}