:root {
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-2: #edf5f2;
  --ink: #12211e;
  --text: #12211e;
  --muted: #697872;
  --line: rgba(18, 33, 30, 0.13);
  --brand: #0f766e;
  --brand-2: #164e63;
  --copper: #bf6f4a;
  --gold: #d8a654;
  --gold-2: #0f766e;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(18, 33, 30, 0.13);
  --soft-shadow: 0 14px 40px rgba(18, 33, 30, 0.1);
  --radius: 8px;
  --glass: rgba(255, 255, 255, 0.13);
  --glass-line: rgba(255, 255, 255, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 52% -12%, rgba(15,118,110,.12), transparent 28%),
    linear-gradient(115deg, rgba(15,118,110,.06), transparent 26%),
    linear-gradient(245deg, rgba(191,111,74,.07), transparent 28%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, video { max-width: 100%; display: block; }

.maintenance-marquee {
  position: relative;
  z-index: 70;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #b42318, #164e63, #0f766e);
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 900;
}
.marquee-track {
  display: flex;
  width: 200%;
  animation: noticeScroll 24s linear infinite;
}
.marquee-track span {
  flex: 0 0 50%;
  padding: 8px 28px;
  white-space: nowrap;
}
@keyframes noticeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.top-strip {
  color: #f8fffd;
  background: linear-gradient(90deg, #0f766e, #164e63);
  font-size: 12px;
  font-weight: 800;
}
.top-strip-inner {
  width: 96%;
  max-width: 1180px;
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.top-strip a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 236, .72);
  border-bottom: 1px solid rgba(18,33,30,.08);
}
.header-shell {
  width: 96%;
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark{
    display:flex;
    align-items:center;
    justify-content:center;

    background:transparent;
    border:none;
    box-shadow:none;

    width:auto;
    height:auto;

    padding:0;
}
.brand-mark img{
    width:90px;
    background: #06402B;
    height:auto;
    object-fit:contain;
    transition:.35s ease;
}

.brand-mark:hover img{
    transform:scale(1.06);
}
.brand-mark.logo-fallback::after { content: "SM"; }
.brand strong, .brand small { display: block; }
.brand strong {
  font-size: 25px;
  line-height: 1.05;
  color: var(--brand);
  letter-spacing: .01em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #253530;
  font-size: 13px;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(15,118,110,.1);
  color: var(--brand);
  transform: translateY(-1px);
}
.site-nav .nav-cta {
  margin-left: 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 32px rgba(15,118,110,.24);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-2);
}

.hero {
  position: relative;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.studio-hero {
  min-height: 580px;
  padding: 64px 28px;
  background: linear-gradient(135deg, rgba(15,118,110,.12), rgba(191,111,74,.1));
}
.studio-hero::after {
  content: "";
  position: absolute;
  inset: 9% -10% auto auto;
  width: 42vw;
  height: 42vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216,166,84,.28), transparent 64%);
  z-index: -1;
}
.cinematic-hero {
  min-height: 560px;
  padding: 34px 28px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 10%, rgba(164, 142, 255, .42), transparent 25%),
    radial-gradient(circle at 18% 28%, rgba(15, 118, 110, .32), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(216, 166, 84, .18), transparent 26%),
    url("../images/hero-showroom.svg") center / cover no-repeat,
    linear-gradient(180deg, #141326 0%, #0b1019 48%, #071013 100%);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06) brightness(.62);
  opacity: .72;
}
.hero-bg-image {
  opacity: .52;
}
.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.54), transparent 24%, transparent 76%, rgba(0,0,0,.54)),
    linear-gradient(180deg, rgba(4,8,12,.64), rgba(4,8,12,.1) 46%, rgba(4,8,12,.76)),
    radial-gradient(circle at 50% 56%, rgba(255,255,255,.12), transparent 34%);
  pointer-events: none;
}
.cinematic-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.cinematic-hero #heroCanvas {
  opacity: .08;
}
.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  pointer-events: none;
  animation: orbitPulse 10s ease-in-out infinite;
}
.orbit-one {
  width: 70vw;
  max-width: 720px;
  height: 70vw;
  max-height: 720px;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
}
.orbit-two {
  width: 88vw;
  max-width: 980px;
  height: 88vw;
  max-height: 980px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
}
.cinematic-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 8px 13px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 44px rgba(0,0,0,.22);
  font-size: 12px;
  font-weight: 900;
}
.cinematic-inner .eyebrow {
  color: #9ff4d7;
}
.cinematic-inner h1 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.cinematic-inner .hero-lead {
  max-width: 660px;
  margin: 10px auto 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
}
.cinematic-inner .hero-actions {
  justify-content: center;
  margin-top: 14px;
}
.btn.ghost.light {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
}
.hero-specs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hero-specs span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.66);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 850;
}
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 18px auto 0;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 10px 64px 26px;
  cursor: grab;
}
.hero-nav,
.review-nav {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.14);
  box-shadow: 0 16px 38px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.24);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.hero-nav:hover,
.review-nav:hover {
  transform: translateY(-2px);
  background: rgba(15,118,110,.82);
}
.hero-prev { left: 10px; top: 42%; }
.hero-next { right: 10px; top: 42%; }
.hero-slider::-webkit-scrollbar {
  display: none;
}
.hero-slider.is-dragging {
  cursor: grabbing;
}
.hero-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
}
.hero-slide {
  position: relative;
  flex: 0 0 220px;
  height: 275px;
  --base-y: 0px;
  --base-r: 0deg;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 76px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.62);
  opacity: 0;
  transform: translateX(var(--open-x, 0)) translateY(90px) scale(.72) rotate(0deg);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  color: #121a18;
}
.hero-slider.is-open .hero-slide {
  animation: cardOpen .95s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: 0.2s;
}
.cards-done .hero-slide {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1) rotate(0deg);
}
.hero-slide:hover {
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 34px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.1);
  transform: perspective(900px) translateY(-8px) scale(1.02) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.hero-slide:nth-child(2n) {
  --base-y: 0px;
  --base-r: 0deg;
}
.hero-slide:nth-child(3n) {
  --base-y: 0px;
  --base-r: 0deg;
}
.hero-card-media {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #dfe6e3;
}
.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}
.cinematic-inner .trust-row {
  justify-content: center;
  margin-top: -4px;
  padding-bottom: 24px;
}
.cinematic-inner .trust-row span {
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.08);
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes cardOpen {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(var(--open-x, 0)) translateY(90px) scale(.72) rotate(0deg);
  }
  58% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(var(--open-x, 0)) translateY(-10px) scale(1.02) rotate(0deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) translateY(0) scale(.94) rotate(0deg);
  }
}
@keyframes scrollDot {
  0%, 100% { opacity: .35; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 14px); }
}
@keyframes orbitPulse {
  0%, 100% { opacity: .34; }
  50% { opacity: .08; }
}
.hero-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  color: #0d1d19;
  font-size: 64px;
  line-height: .96;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: #465752;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;
    padding: 12px 24px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;

    background: linear-gradient(135deg,#0d6b74,#0f8b96);
    color: #fff;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;

    position: relative;
    overflow: hidden;
    cursor: pointer;

    transition: all .35s ease;

    box-shadow:
        0 8px 25px rgba(13,107,116,.30),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:skewX(-25deg);
    transition:left .6s ease;
}

.btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#118693,#13a6b5);
    box-shadow:
        0 16px 35px rgba(13,107,116,.45),
        inset 0 1px 0 rgba(255,255,255,.35);
}

.btn:hover::after{
    left:160%;
}

.btn:active{
    transform:scale(.97);
}
.btn.primary {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(15,118,110,1), rgba(22,78,99,1)),
    var(--brand);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 18px 44px rgba(15,118,110,.24);
}
.btn.ghost,
.btn.outline {
  color: var(--ink);
  border-color: rgba(15,118,110,.16);
  background: rgba(255,255,255,.66);
}
.btn.small { min-height: 38px; padding: 9px 14px; font-size: 13px; }
.glass-btn {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 14px 34px rgba(18,33,30,.12);
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(15,118,110,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  color: #31423d;
  font-size: 13px;
  font-weight: 850;
}
.hero-showcase {
  position: relative;
  min-height: 430px;
}
.media-frame {
  position: absolute;
  inset: 32px 0 0 42px;
  overflow: hidden;
  border: 12px solid rgba(255,255,255,.72);
  border-radius: 28px 8px 28px 8px;
  background: linear-gradient(135deg, #e2ece8, #fff8eb);
  box-shadow: var(--shadow);
}
.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.showcase-card {
  position: absolute;
  width: 58%;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft-shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.showcase-card strong,
.showcase-card span { display: block; }
.showcase-card strong { font-size: 15px; }
.showcase-card span { color: var(--muted); font-size: 13px; margin-top: 4px; }
.card-one { left: 0; top: 0; }
.card-two { right: 0; bottom: 18px; animation-delay: -1.8s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section {
  width: 96%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 0;
}
.page-hero {
  width: 96%;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 56px 42px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(237,245,242,.74)),
    radial-gradient(circle at 88% 16%, rgba(216,166,84,.26), transparent 34%);
  box-shadow: var(--soft-shadow);
  text-align: center;
}
.page-hero h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.10;
}
.page-hero p:last-child {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
}
.product-page-banner {
  position: relative;
  width: 100%;
  max-width: none;
  height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #102725;
  box-shadow: var(--shadow);
  color: #fff;
}
.product-banner-track { display: flex; width: 100%; height: 100%; }
.product-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.product-banner-slide.active { opacity: 1; z-index: 1; }
.product-banner-slide img { width: 100%; height: 100%; object-fit: cover; }
.product-banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,14,.78), rgba(7,16,14,.08) 70%);
}
.product-banner-overlay { position: absolute; left: 34px; bottom: 30px; z-index: 2; max-width: 560px; }
.product-banner-overlay .eyebrow { color: #9ff4d7; opacity: 0; transform: translateY(10px); transition: opacity .6s ease .4s, transform .6s ease .4s; }
.product-banner-overlay h2 { margin: 0; font-size: 34px; line-height: 1.04; opacity: 0; transform: translateY(10px); transition: opacity .6s ease .5s, transform .6s ease .5s; }
.product-banner-slide.active .eyebrow,
.product-banner-slide.active h2 { opacity: 1; transform: translateY(0); }
.banner-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}
.banner-nav:hover { background: rgba(0,0,0,.5); transform: translateY(-50%) scale(1.05); }
.banner-prev { left: 54px; }
.banner-next { right: 54px; }
.banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.banner-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.banner-dots button.active { background: #fff; transform: scale(1.1); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-head h2,
.split-copy h2 {
  margin: 0;
  max-width: 720px;
  color: #10201c;
  font-size: 40px;
  line-height: 1.04;
}
.compact-head { align-items: center; }

.stock-section .section-head {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(237,245,242,.66)),
    radial-gradient(circle at 92% 12%, rgba(15,118,110,.12), transparent 28%);
  box-shadow: var(--soft-shadow);
}

.stock-section .section-head h2 {
  max-width: 650px;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
  pointer-events: none;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  color: var(--text);
  padding: 13px 18px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(15,118,110,.5);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}
label { display: grid; gap: 7px; color: #30413c; font-weight: 850; }

.search-box input {
  padding-left: 48px;
  border-radius: 999px;
}
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.category-pills button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,.64);
  color: #2f423c;
  font-weight: 900;
  cursor: pointer;
}
.category-pills button.active,
.category-pills button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-preview-stack {
  display: grid;
  gap: 24px;
}
.category-preview {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(237,245,242,.68)),
    radial-gradient(circle at 92% 10%, rgba(15,118,110,.1), transparent 28%);
  box-shadow: var(--soft-shadow);
}
.category-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.category-preview-head span,
.category-preview-head strong {
  display: block;
}
.category-preview-head span {
  color: #10201c;
  font-size: 24px;
  font-weight: 950;
}
.category-preview-head strong {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.category-preview-head a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(15,118,110,.18);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 950;
}
.category-product-row {
  grid-template-columns: repeat(4, 1fr);
}
.home-product-preview {
  padding-top: 64px;
}
.home-product-preview .product-card {
  display: block;
}
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18,33,30,.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
  box-shadow: 0 18px 46px rgba(18,33,30,.1);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.5), transparent 32%);
  opacity: .55;
  z-index: 1;
}
.product-card:hover {
  transform: perspective(900px) translateY(-10px);
  box-shadow: 0 30px 86px rgba(18,33,30,.16);
  border-color: rgba(15,118,110,.22);
}
.product-card > * {
  position: relative;
  z-index: 2;
}
.product-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(216,166,84,.18), transparent 26%),
    var(--surface-2);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover img { transform: scale(1.06); }
.product-glass-label {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.26);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.product-body { padding: 18px 20px 20px; }
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.meta-row.bottom { margin-top: 18px; text-transform: none; }
.stock {
  color: var(--brand);
  background: rgba(15,118,110,.1);
  border-radius: 999px;
  padding: 4px 8px;
}
.product-card h3 {
  margin: 12px 0 8px;
  font-size: 23px;
  line-height: 1.18;
  color: var(--ink);
} .product-card p { margin: 0; color: var(--muted); min-height: 52px; }
.price { color: var(--brand); font-size: 18px; }
.product-card .btn.small {
  min-height: 42px;
  padding-inline: 16px;
}
.empty-state {
  display: none;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255,255,255,.6);
}
.empty-state.show { display: block; }

.split-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15,118,110,.93), rgba(22,78,99,.96)),
    var(--brand-2);
  color: #fff;
  box-shadow: var(--shadow);
}
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: start;
}
.split h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.05;
}
.split p { color: var(--muted); }
.split .feature-list article {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.82);
}
.split .feature-list p { color: var(--muted); }
.split .feature-list span { color: var(--brand); }
.info-stack {
  display: grid;
  gap: 14px;
}
.info-stack a,
.info-stack article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
}
.info-stack strong { color: var(--brand-2); }
.info-stack span { color: var(--muted); }
.split-panel .eyebrow,
.split-panel h2 { color: #fff; }
.split-copy p { color: rgba(255,255,255,.78); }
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
}
.feature-list span {
  color: #ffe1aa;
  font-weight: 950;
}
.feature-list strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}
.feature-list p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.76);
}

.logo-marquee,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.logo-marquee span,
.review-grid article,
.form-card,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
}
.logo-marquee span {
  min-height: 84px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px;
  color: var(--brand-2);
  font-size: 15px;
  font-weight: 950;
}
.logo-marquee img {
  width: 100%;
  max-width: 150px;
  height: 62px;
  object-fit: contain;
}
.logo-marquee strong {
  display: block;
  color: var(--brand-2);
}
.review-grid article {
  padding: 22px;
}
.blog-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card,
.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
}
.blog-card { padding: 22px; }
.blog-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.blog-card h2 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.12;
}
.blog-card p { color: var(--muted); }
.review-grid strong { font-size: 18px; }
.review-grid p { color: var(--muted); }
.review-grid span { color: var(--copper); font-weight: 850; }
.review-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px 54px 20px;
}
.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 0 18px;
}
.review-track::-webkit-scrollbar {
  display: none;
}
.review-track article {
  position: relative;
  flex: 0 0 360px;
  min-height: 220px;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.76)),
    radial-gradient(circle at 88% 12%, rgba(216,166,84,.18), transparent 28%);
  box-shadow: 0 20px 54px rgba(18,33,30,.1);
}
.review-track article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(15,118,110,.08);
}
.review-track strong {
  display: block;
  color: #10201c;
  font-size: 19px;
  line-height: 1.2;
}
.review-track p {
  margin: 12px 0 16px;
  color: var(--muted);
}
.review-track span:last-child {
  color: var(--brand);
  font-weight: 950;
}
.quote-mark {
  position: absolute;
  right: 20px;
  top: 0;
  color: rgba(15,118,110,.12);
  font-size: 86px;
  font-weight: 950;
  line-height: 1;
}
.site-footer {
  margin-top: 40px;
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 18% 0, rgba(191,111,74,.22), transparent 32%),
    linear-gradient(135deg, #0e211d, #143a42);
}
.footer-inner {
  width: 96%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr .9fr;
  gap: 28px;
}
.footer-brand p { max-width: 360px; }
.footer-logo .brand-mark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); }
.footer-logo strong { color: #fff; }
.footer-logo small { color: rgba(255,255,255,.68); }
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col strong,
.footer-brand strong {
  color: #fff;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s ease;
}
.footer-col strong,
.footer-brand strong {
  color: #fff;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s ease;
}
.footer-col a:hover { color: #fff; }
.footer-btn {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #10201c;
  background: #ffe1aa;
  font-weight: 950;
}
/* =========================
   PREMIUM SOCIAL ICONS
========================= */

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);

  font-size: 18px;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Facebook */
.social-row a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

/* Instagram */
.social-row a[aria-label="Instagram"]:hover {
  background: linear-gradient(
    135deg,
    #833ab4,
    #e1306c,
    #f77737
  );
  border-color: #e1306c;
  color: #ffffff;
}

/* WhatsApp */
.social-row a[aria-label="WhatsApp"]:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

/* YouTube */
.social-row a[aria-label="YouTube"]:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

/* Hover Animation */
.social-row a:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24);
}

/* Icon */
.social-row a i {
  line-height: 1;
  transition: transform 0.3s ease;
}

.social-row a:hover i {
  transform: scale(1.12);

  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 950;
}
.footer-map .map-box {
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.footer-map .map-box iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.footer-map > a {
  display: inline-block;
  margin-top: 8px;
  color: #ffe1aa;
  font-size: 13px;
  font-weight: 800;
}

.footer-map > a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: 96%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 0;
  text-align: center;
}

.floating-action-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 12px;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #16a34a, #0f766e);
}

.fab-call, .fab-to-top {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.form-card,
.admin-panel {
  padding: 24px;
}
.form-card {
  display: grid;
  gap: 14px;
}
.media-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.media-upload {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}
.media-upload.wide {
  grid-column: 1 / -1;
}
.media-upload img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin: 8px 0;
  border-radius: var(--radius);
  background: #edf5f2;
}
.media-upload.wide img {
  height: 220px;
  object-fit: cover;
}
.admin-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
}
.admin-grid strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}
.admin-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}
.admin-topbar .btn { white-space: nowrap; }
.danger { color: var(--danger); }
.alert {
  padding: 12px 14px;
  border: 1px solid rgba(180,35,24,.18);
  border-radius: var(--radius);
  color: var(--danger);
  background: rgba(180,35,24,.07);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .top-strip-inner { align-items: flex-start; flex-direction: column; padding: 10px 0; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 100%;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { width: 100%; }
  .hero-grid,
  .split-panel,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-showcase { min-height: 390px; }
  .media-frame { inset: 20px 0 0 0; }
  .cinematic-hero { min-height: 530px; }
  .hero-slide {
    flex-basis: 200px;
    height: 248px;
  }
  .product-grid,
  .product-row,
  .category-product-row,
  .logo-marquee,
  .media-upload-grid,
  .review-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 640px) {
  .header-shell { min-height: 68px; }
  .brand small { display: none; }
  .studio-hero { min-height: auto; padding-top: 34px; }
  .cinematic-hero {
    min-height: 500px;
    padding-top: 26px;
  }
  .cinematic-inner h1 {
    font-size: 30px;
  }
  .hero-copy h1 { font-size: 40px; }
  .hero-showcase { min-height: 340px; }
  .hero-slider {
    margin-top: 14px;
    padding: 8px 48px 20px;
  }
  .hero-track { gap: 12px; }
  .hero-slide {
    flex-basis: 178px;
    height: 220px;
    border-radius: 20px;
  }
  .cinematic-inner .trust-row {
    margin-top: -4px;
    padding-bottom: 24px;
  }
  .showcase-card { width: 72%; }
  .product-grid,
  .product-row,
  .category-product-row,
  .logo-marquee,
  .media-upload-grid,
  .review-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .split-panel { padding: 24px; }
  .hero-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .category-preview { padding: 14px; }
  .category-preview-head { align-items: flex-start; flex-direction: column; }
  .review-carousel { padding: 4px 0 20px; }
  .review-nav { display: none; }
  .review-track article { flex-basis: 82%; }
  .product-page-banner { height: 230px; }
  .product-banner-overlay { left: 18px; right: 18px; bottom: 18px; }
  .product-banner-overlay h2 { font-size: 22px; }
  .section { padding: 48px 0; }
  .page-hero { padding: 42px 24px; }
  .page-hero h1 { font-size: 32px; }
  .section-head h2, .split-copy h2 { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
