/* Shared page styles extracted from samisa-html helmet blocks. */
* { box-sizing: border-box; }
body { margin: 0; background: #F5F0E8; font-family: 'Poppins', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: #B8872A; }
a:hover { color: #8C6420; }
@keyframes samisa-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes samisa-wa-pulse { 0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 24px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); } }
@keyframes samisa-lift-ride { 0%, 8% { transform: translateY(0); } 42%, 58% { transform: translateY(-336px); } 92%, 100% { transform: translateY(0); } }
@keyframes samisa-dot-1 { 0%, 8% { opacity: 1; } 14%, 94% { opacity: 0.18; } 100% { opacity: 1; } }
@keyframes samisa-dot-2 { 0%, 12% { opacity: 0.18; } 16%, 22% { opacity: 1; } 28%, 100% { opacity: 0.18; } }
@keyframes samisa-dot-3 { 0%, 22% { opacity: 0.18; } 26%, 32% { opacity: 1; } 38%, 100% { opacity: 0.18; } }
@keyframes samisa-dot-4 { 0%, 36% { opacity: 0.18; } 42%, 58% { opacity: 1; } 64%, 100% { opacity: 0.18; } }
@keyframes samisa-lift-doors { 0%, 40% { transform: scaleX(1); } 46%, 54% { transform: scaleX(0); } 60%, 100% { transform: scaleX(1); } }
.nav-drop:hover .nav-drop-menu{opacity:1 !important;visibility:visible !important;}
/* Dark-background templates (products, product details, downloads). */
body.samisa-dark-body { background: #1A1208; }

/* ---------------------------------------------------------------
 * Announcement bar — seamless marquee (track holds two identical
 * copies, so translating it -50% lands exactly on the second one).
 * ------------------------------------------------------------- */
.samisa-announce {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1A1208 0%, #2C2210 50%, #1A1208 100%);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.18);
}
.samisa-announce-track {
  display: flex;
  width: max-content;
  animation: samisa-marquee 42s linear infinite;
}
.samisa-announce-item {
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  font-family: var(--font-mono), 'Poppins', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  white-space: nowrap;
}
.samisa-announce-item::after {
  content: '\25C6';
  padding: 0 2.75rem;
  color: rgba(201, 168, 76, 0.4);
  font-size: 8px;
}
.samisa-announce:hover .samisa-announce-track { animation-play-state: paused; }

/* ---------------------------------------------------------------
 * Product specification strip
 *
 * One component, three looks. The variant class comes from the product's
 * category (Products → Categories → Spec card style), so a category can be
 * restyled without touching this file.
 * ------------------------------------------------------------- */
.samisa-specs-band {
  background: #FDFAF4;
  padding: 56px 64px;
  border-top: 0.5px solid rgba(184, 135, 42, 0.2);
}
.samisa-specs {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.samisa-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
  padding: 34px 26px;
}
.samisa-spec-icon {
  display: inline-flex;
  color: #B8872A;
  margin-bottom: 4px;
}
.samisa-spec-icon svg { width: 46px; height: 46px; display: block; }
.samisa-spec-label {
  order: 3;
  font-family: var(--font-sans), 'Poppins', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: #8C7A5A;
  line-height: 1.5;
}
.samisa-spec-value {
  order: 2;
  font-family: var(--font-sans), 'Poppins', system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: #1A1208;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Dashed cards — the reference look. */
.samisa-specs--dashed .samisa-spec {
  background: #F7F5F0;
  border: 1px dashed rgba(184, 135, 42, 0.75);
  border-radius: 6px;
}

/* Solid cards. */
.samisa-specs--solid .samisa-spec {
  background: #FFFFFF;
  border: 0.5px solid rgba(184, 135, 42, 0.25);
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(44, 34, 16, 0.08);
}

/* Compact list — label left, value right, for many short attributes. */
.samisa-specs--list {
  display: block;
  max-width: 860px;
  border-top: 0.5px solid rgba(184, 135, 42, 0.3);
}
.samisa-specs--list .samisa-spec {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 0.5px solid rgba(184, 135, 42, 0.3);
}
.samisa-specs--list .samisa-spec-icon { order: -1; margin: 0 12px 0 0; }
.samisa-specs--list .samisa-spec-icon svg { width: 26px; height: 26px; }
.samisa-specs--list .samisa-spec-label { order: 0; flex: 1; font-size: 15px; font-weight: 600; color:#1A1208; }
.samisa-specs--list .samisa-spec-value { order: 1; text-align: right; font-size: 14px; font-weight:300; color:#5C4A28; }

@media (max-width: 860px) {
  .samisa-specs-band { padding: 44px 24px; }
  .samisa-spec { padding: 26px 20px; }
}

/* Ecommerce-style child-category catalog. */
.samisa-shop-category { background:#FDFAF4; padding:56px 64px 80px; display:grid; grid-template-columns:260px minmax(0,1fr); gap:48px; align-items:start; }
.samisa-shop-sidebar { position:sticky; top:96px; border:1px solid rgba(184,135,42,.22); background:#fff; }
.samisa-shop-sidebar-head { padding:20px 22px; display:flex; justify-content:space-between; align-items:center; background:#1A1208; color:#F5F0E8; }
.samisa-shop-sidebar-head span { font-family:var(--font-serif),'Poppins',system-ui,sans-serif; font-size:20px; }
.samisa-shop-sidebar-head a { color:#C9A84C; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:10px; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; }
.samisa-shop-search,.samisa-shop-filter-group { padding:22px; border-bottom:1px solid rgba(184,135,42,.18); }
.samisa-shop-search label,.samisa-shop-filter-group h2 { display:block; margin:0 0 12px; color:#1A1208; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.samisa-shop-search > div { display:flex; border:1px solid rgba(184,135,42,.3); }
.samisa-shop-search input { min-width:0; width:100%; border:0; padding:11px 12px; background:#FDFAF4; color:#1A1208; font:300 12px var(--font-sans),'Poppins',system-ui,sans-serif; outline:none; }
.samisa-shop-search button { flex:0 0 40px; border:0; background:#B8872A; color:#1A1208; cursor:pointer; }
.samisa-shop-parent { display:block; margin-bottom:12px; color:#B8872A; font:500 12px var(--font-sans),'Poppins',system-ui,sans-serif; text-decoration:none; }
.samisa-shop-filter-group ul { list-style:none; margin:0; padding:0; }
.samisa-shop-filter-group li + li { border-top:.5px solid rgba(184,135,42,.14); }
.samisa-shop-filter-group li a { display:grid; grid-template-columns:15px 1fr auto; gap:9px; align-items:center; padding:11px 0; color:#5C4A28; font:300 12px var(--font-sans),'Poppins',system-ui,sans-serif; text-decoration:none; }
.samisa-filter-check { width:13px; height:13px; border:1px solid rgba(184,135,42,.55); }
.samisa-shop-filter-group li a.is-active { color:#1A1208; font-weight:600; }
.samisa-shop-filter-group li a.is-active .samisa-filter-check { background:#B8872A; box-shadow:inset 0 0 0 3px #fff; }
.samisa-shop-filter-group small { color:#8C7A5A; font-size:10px; }
.samisa-shop-help { padding:22px; background:#F5F0E8; }
.samisa-shop-help > span { color:#1A1208; font-family:var(--font-serif),'Poppins',system-ui,sans-serif; font-size:17px; }
.samisa-shop-help p { margin:8px 0 14px; color:#5C4A28; font:300 12px/1.65 var(--font-sans),'Poppins',system-ui,sans-serif; }
.samisa-shop-help a { color:#B8872A; font:600 10px var(--font-sans),'Poppins',system-ui,sans-serif; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; }
.samisa-shop-results { min-width:0; }
.samisa-shop-results-head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; padding-bottom:20px; margin-bottom:28px; border-bottom:1px solid rgba(184,135,42,.25); }
.samisa-shop-results-head span { color:#B8872A; font:500 10px var(--font-mono),'Poppins',system-ui,sans-serif; letter-spacing:.16em; text-transform:uppercase; }
.samisa-shop-results-head h2 { margin:6px 0 0; color:#1A1208; font:300 clamp(26px,3vw,38px)/1.1 var(--font-serif),'Poppins',system-ui,sans-serif; }
.samisa-shop-results-head p { margin:0; color:#8C7A5A; font:300 12px var(--font-sans),'Poppins',system-ui,sans-serif; white-space:nowrap; }
.samisa-shop-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,360px)); gap:26px; }
.samisa-shop-empty { padding:56px 28px; text-align:center; border:1px dashed rgba(184,135,42,.4); }
.samisa-shop-empty h3 { margin:0 0 8px; color:#1A1208; font:400 22px var(--font-serif),'Poppins',system-ui,sans-serif; }
.samisa-shop-empty p { margin:0; color:#8C7A5A; font:300 13px var(--font-sans),'Poppins',system-ui,sans-serif; }
@media (max-width:900px) { .samisa-shop-category { padding:40px 24px 64px; grid-template-columns:1fr; gap:32px; } .samisa-shop-sidebar { position:static; } }
/* Parent product-category hero slider. */
.samisa-category-hero { position:relative; height:460px; overflow:hidden; background:#1A1208; color:#F5F0E8; }
.samisa-category-slide { position:absolute; inset:0; opacity:0; visibility:hidden; transition:opacity .75s ease,visibility .75s ease; }
.samisa-category-slide.is-active { opacity:1; visibility:visible; }
.samisa-category-slide-bg,.samisa-category-slide-overlay { position:absolute; inset:0; }
.samisa-category-slide-bg { background-size:cover; background-position:center; transform:scale(1.02); transition:transform 6s ease; }
.samisa-category-slide.is-active .samisa-category-slide-bg { transform:scale(1.08); }
.samisa-category-slide-overlay { background:linear-gradient(90deg,rgba(20,14,4,.96) 0%,rgba(20,14,4,.78) 48%,rgba(20,14,4,.25) 100%); }
.samisa-category-slide-content { position:relative; z-index:2; width:min(760px,75%); height:100%; padding:64px 92px 72px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.samisa-category-kicker { display:flex; align-items:center; gap:12px; margin-bottom:20px; font-family:var(--font-mono),'Poppins',system-ui,sans-serif; font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:#C9A84C; }
.samisa-category-kicker span { width:28px; height:1px; background:#C9A84C; }
.samisa-category-slide h1,.samisa-category-static-hero h1 { font-family:var(--font-serif),'Poppins',system-ui,sans-serif; font-size:clamp(34px,4.3vw,58px); font-weight:300; line-height:1.08; color:#F5F0E8; margin:0 0 18px; }
.samisa-category-slide h1 em,.samisa-category-static-hero h1 em { color:#C9A84C; font-style:italic; }
.samisa-category-slide p { max-width:620px; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:15px; font-weight:300; line-height:1.75; color:rgba(245,240,232,.68); margin:0 0 28px; }
.samisa-category-slide-content > a { display:inline-flex; padding:13px 22px; border:1px solid rgba(201,168,76,.55); color:#C9A84C; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; }
.samisa-category-arrow { position:absolute; z-index:5; top:50%; transform:translateY(-50%); width:44px; height:44px; border:1px solid rgba(201,168,76,.45); border-radius:50%; background:rgba(20,14,4,.42); color:#C9A84C; font-size:30px; line-height:1; cursor:pointer; }
.samisa-category-arrow.is-prev { left:24px; }
.samisa-category-arrow.is-next { right:24px; }
.samisa-category-dots { position:absolute; z-index:5; bottom:28px; left:0; right:0; display:flex; justify-content:center; gap:9px; }
.samisa-category-dots button { width:7px; height:7px; padding:0; border:0; border-radius:5px; background:rgba(201,168,76,.4); cursor:pointer; transition:width .25s ease,background .25s ease; }
.samisa-category-dots button.is-active { width:28px; background:#C9A84C; }
.samisa-category-static-hero { padding:72px 64px 48px; background:#1A1208; }
.samisa-category-static-hero > div { display:flex; align-items:center; gap:12px; margin-bottom:20px; color:#C9A84C; font-family:var(--font-mono),'Poppins',system-ui,sans-serif; font-size:10px; letter-spacing:.2em; text-transform:uppercase; }
.samisa-category-static-hero > div span { width:26px; height:1px; background:#C9A84C; }
@media (max-width:700px) {
  .samisa-category-hero { height:500px; }
  .samisa-category-slide-content { width:100%; padding:62px 52px 78px; }
  .samisa-category-slide-overlay { background:rgba(20,14,4,.78); }
  .samisa-category-arrow { width:36px; height:36px; font-size:24px; }
  .samisa-category-arrow.is-prev { left:8px; } .samisa-category-arrow.is-next { right:8px; }
  .samisa-category-static-hero { padding:56px 24px 40px; }
}
/* Lift landing: service overview cards directly below the banner. */
.samisa-lift-services-intro { background:#F8F7F3; padding:56px 64px; border-top:.5px solid rgba(184,135,42,.15); }
.samisa-lift-services-grid { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; align-items:stretch; }
.samisa-lift-service-card { min-width:0; padding:30px 24px 28px; display:flex; flex-direction:column; align-items:center; text-align:center; color:#1A1208; background:#fff; border:.5px solid rgba(184,135,42,.12); box-shadow:0 10px 28px rgba(44,34,16,.09); text-decoration:none; transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.samisa-lift-service-card:hover { transform:translateY(-3px); border-color:rgba(184,135,42,.5); box-shadow:0 16px 34px rgba(44,34,16,.13); }
.samisa-lift-service-icon { width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; color:#B8872A; margin-bottom:18px; }
.samisa-lift-service-icon svg { width:38px; height:38px; display:block; }
.samisa-lift-service-card h2 { font-family:var(--font-serif),'Poppins',system-ui,sans-serif; font-size:21px; font-weight:400; line-height:1.2; color:#1A1208; margin:0 0 13px; }
.samisa-lift-service-card p { flex:1; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:13px; font-weight:300; line-height:1.75; color:#5C4A28; margin:0; }
.samisa-lift-service-link { margin-top:18px; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:10px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:#B8872A; }
@media (max-width:1000px) { .samisa-lift-services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:620px) { .samisa-lift-services-intro { padding:36px 24px; } .samisa-lift-services-grid { grid-template-columns:1fr; } }
/* Lift identity strip — classification/use layout from the product reference. */
.samisa-lift-identity { background:#FDFAF4; padding:0 64px; }
.samisa-lift-identity .samisa-section-inner { border-top:1px solid rgba(26,18,8,.65); border-bottom:1px solid rgba(26,18,8,.35); padding:24px 40px; }
.samisa-lift-brand { display:flex; align-items:center; gap:16px; margin-bottom:20px; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; }
.samisa-lift-brand span { color:#8C7A5A; font-size:12px; letter-spacing:.14em; text-transform:uppercase; }
.samisa-lift-brand strong { color:#B8872A; font-size:20px; font-weight:600; }
.samisa-lift-meta { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px 48px; }
.samisa-lift-meta > div { display:flex; align-items:center; gap:12px; min-width:0; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:14px; }
.samisa-lift-meta strong { color:#1A1208; font-weight:600; }
.samisa-lift-meta > div > span:last-child { color:#5C4A28; font-weight:300; }
.samisa-meta-dot { width:5px; height:5px; flex:0 0 5px; background:#B8872A; }

.samisa-related-services-band { background:#F5F0E8; padding:72px 64px; border-top:.5px solid rgba(184,135,42,.2); }
.samisa-related-services { margin-top:34px; display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; }
.samisa-related-services a { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:22px 24px; color:#1A1208; background:#FDFAF4; border:.5px solid rgba(184,135,42,.3); text-decoration:none; font-family:var(--font-sans),'Poppins',system-ui,sans-serif; font-size:14px; font-weight:500; transition:border-color .2s ease,transform .2s ease; }
.samisa-related-services a:hover { border-color:#B8872A; transform:translateY(-2px); }
.samisa-related-services a span:last-child { color:#B8872A; font-size:18px; }

@media (max-width:700px) {
  .samisa-lift-identity { padding:0 24px; }
  .samisa-lift-identity .samisa-section-inner { padding:22px 0; }
  .samisa-lift-meta { grid-template-columns:1fr; }
  .samisa-lift-meta > div { align-items:flex-start; flex-wrap:wrap; }
  .samisa-related-services-band { padding:48px 24px; }
}
/* ---------------------------------------------------------------
 * Product highlights / features / technical table
 *
 * All three are optional per-product sections and share the section
 * heading treatment below.
 * ------------------------------------------------------------- */
.samisa-section-inner { max-width: 1240px; margin: 0 auto; }
.samisa-section-title {
  font-family: var(--font-serif), 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.15;
  color: #1A1208;
  margin: 0 0 10px;
}
.samisa-section-title::after {
  content: '';
  display: block;
  width: 62px;
  height: 3px;
  background: #B8872A;
  margin-top: 14px;
}

/* --- Overview: descriptive copy under the spec cards --- */
.samisa-overview-band {
  background: #FDFAF4;
  padding: 8px 64px 56px;
}
.samisa-overview { max-width: 1080px; }
.samisa-overview p {
  font-size: 15px;
  line-height: 1.95;
  color: #3A2E18;
  text-align: justify;
  margin: 0 0 20px;
}
.samisa-overview p:last-child { margin-bottom: 0; }

/* --- Highlights: hexagons in dashed cards --- */
.samisa-highlights-band { background: #FDFAF4; padding: 56px 64px; }
.samisa-highlights {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 18px;
}
.samisa-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  border: 1px dashed rgba(184, 135, 42, 0.75);
  border-radius: 6px;
  background: #F7F5F0;
}
.samisa-hex {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 116px;
  color: rgba(92, 74, 40, 0.55); /* hexagon outline */
}
.samisa-hex svg { width: 100%; height: 100%; display: block; }
.samisa-hex-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  text-align: center;
  font-family: var(--font-sans), 'Poppins', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B8872A;
}

/* --- Features at a glance --- */
.samisa-features-band {
  background: #F5F0E8;
  padding: 72px 64px;
  border-top: 0.5px solid rgba(184, 135, 42, 0.2);
}
.samisa-features { list-style: none; margin: 34px 0 0; padding: 0; }
.samisa-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  font-family: var(--font-sans), 'Poppins', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #3A2E18;
}
.samisa-feature-icon { flex-shrink: 0; color: #B8872A; margin-top: 1px; }
.samisa-feature-icon svg { width: 22px; height: 22px; display: block; }

/* --- Technical specification table --- */
.samisa-tech-band {
  background: #FDFAF4;
  padding: 72px 64px;
  border-top: 0.5px solid rgba(184, 135, 42, 0.2);
}
.samisa-tech {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* label | value | label | value */
  border: 0.5px solid rgba(184, 135, 42, 0.25);
  border-bottom: 0;
}
.samisa-tech dt,
.samisa-tech dd {
  margin: 0;
  padding: 16px 20px;
  font-family: var(--font-sans), 'Poppins', system-ui, sans-serif;
  font-size: 14px;
  text-align: center;
  border-bottom: 0.5px solid rgba(184, 135, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.samisa-tech dt { font-weight: 600; color: #1A1208; border-right: 0.5px solid rgba(184, 135, 42, 0.25); }
.samisa-tech dd { font-weight: 300; color: #5C4A28; border-right: 0.5px solid rgba(184, 135, 42, 0.25); }
.samisa-tech dd:nth-child(4n) { border-right: 0; }
.samisa-tech .is-even { background: rgba(184, 135, 42, 0.045); }

@media (max-width: 900px) {
  .samisa-highlights-band,
  .samisa-features-band,
  .samisa-tech-band { padding: 48px 24px; }
  /* One label/value pair per line. */
  .samisa-tech { grid-template-columns: 1fr 1fr; }
  .samisa-tech dd:nth-child(4n) { border-right: 0.5px solid rgba(184, 135, 42, 0.25); }
  .samisa-tech dd { border-right: 0; }
}

/* ---------------------------------------------------------------
 * CTA hover states
 *
 * The templates carry inline styles (inherited from the design export),
 * so any hover that changes a property the element sets inline —
 * colour, border, background on bordered buttons — needs !important to
 * win. transform / box-shadow / filter are not set inline, so they
 * cascade normally. Keep the movement small: 2px is the whole effect.
 * ------------------------------------------------------------- */
.samisa-cta {
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1),
              background-color 240ms ease,
              border-color 240ms ease,
              color 240ms ease,
              filter 240ms ease;
}
.samisa-cta:hover { transform: translateY(-2px); }
.samisa-cta:active { transform: translateY(0); transition-duration: 90ms; }
.samisa-cta:focus-visible { outline: 2px solid #C9A84C; outline-offset: 3px; }

/* Filled gold — lift plus a warm glow. */
.samisa-cta--solid:hover {
  filter: brightness(1.07);
  box-shadow: 0 10px 26px -8px rgba(184, 135, 42, 0.65);
}
/* Filled dark (sits on the gold bands) — lighten slightly on hover. */
.samisa-cta--dark:hover {
  filter: brightness(1.45);
  box-shadow: 0 10px 26px -8px rgba(26, 18, 8, 0.55);
}
.samisa-cta--whatsapp:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.6);
}
/* Outlined on dark backgrounds — fill with a faint gold wash. */
.samisa-cta--outline:hover {
  background-color: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.85) !important;
  color: #E4C879 !important;
}
/* Outlined on light backgrounds — keep the ink colour, deepen the edge. */
.samisa-cta--outline-dark:hover {
  background-color: rgba(26, 18, 8, 0.06);
  border-color: rgba(26, 18, 8, 0.55) !important;
}
/* Arrow text links — nudge forward instead of up. */
.samisa-cta--link { display: inline-block; }
.samisa-cta--link:hover {
  transform: translateX(3px);
  color: #8C6420 !important;
}

/* Nav links and JS-driven hovers (cards, dropdown items, chips) —
   give them an easing so they fade rather than snap. */
nav ul a { transition: color 200ms ease; }
nav ul a:hover { color: #C9A84C !important; }
[style-hover] { transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }

/* Product filter chips — border only, so the active chip's inline
   background (set by main.js) is left alone. */
.samisa-prod-filter, .samisa-chip {
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.samisa-prod-filter:hover, .samisa-chip:hover {
  border-color: rgba(184, 135, 42, 0.8) !important;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .samisa-cta:hover,
  .samisa-cta--link:hover,
  .samisa-prod-filter:hover,
  .samisa-chip:hover { transform: none; }
}

/* ---------------------------------------------------------------
 * Nav "Call Us" button — label above the number, gold outline to sit
 * beside the brochure link.
 * ------------------------------------------------------------- */
.samisa-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 8px 18px;
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 2px;
  color: #C9A84C;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 250ms ease, border-color 250ms ease, color 250ms ease;
}
.samisa-call:hover,
.samisa-call:focus-visible {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.85);
  color: #E4C879;
}
.samisa-call svg { flex-shrink: 0; }
.samisa-call-text { display: flex; flex-direction: column; line-height: 1.25; }
.samisa-call-label {
  font-family: var(--font-mono), 'Poppins', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
}
.samisa-call-number {
  font-family: var(--font-sans), 'Poppins', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
/* Tight nav widths: keep the button, drop to the label only. */
@media (max-width: 1180px) {
  .samisa-call-number { display: none; }
  .samisa-call-label { font-size: 11px; letter-spacing: 0.08em; color: #C9A84C; }
}

/* ---------------------------------------------------------------
 * Home hero slider
 * ------------------------------------------------------------- */
.samisa-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.07);
  will-change: opacity, transform;
  transition: opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}
/* Active slide fades in, then drifts slowly back to 1:1 (Ken Burns). */
.samisa-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 7200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.samisa-hero-copy {
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.samisa-hero-copy.is-out { opacity: 0; transform: translateY(16px); }

.samisa-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  background: rgba(26, 18, 8, 0.4);
  color: #C9A84C;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.samisa-hero-arrow:hover {
  background: rgba(201, 168, 76, 0.16);
  border-color: rgba(201, 168, 76, 0.75);
  transform: translateY(-50%) scale(1.1);
}
.samisa-hero-arrow:focus-visible { outline: 2px solid #C9A84C; outline-offset: 3px; }

.samisa-hero-dot {
  position: relative;
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.35);
  cursor: pointer;
  overflow: hidden;
  transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1), background-color 600ms ease;
}
.samisa-hero-dot:hover { background: rgba(201, 168, 76, 0.6); }
.samisa-hero-dot.is-active { width: 34px; background: rgba(201, 168, 76, 0.28); }
.samisa-hero-dot:focus-visible { outline: 2px solid #C9A84C; outline-offset: 3px; }
.samisa-hero-dot-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: #C9A84C;
  border-radius: 3px;
}
/* The fill doubles as an autoplay progress indicator. */
.samisa-hero-dot.is-active .samisa-hero-dot-fill {
  animation: samisa-hero-progress var(--samisa-hero-interval, 6500ms) linear forwards;
}
.samisa-hero.is-paused .samisa-hero-dot.is-active .samisa-hero-dot-fill { animation-play-state: paused; }
@keyframes samisa-hero-progress { from { width: 0; } to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .samisa-announce-track { animation: none; }
  .samisa-announce-item:nth-child(2) { display: none; }
  .samisa-announce-item::after { content: none; }
  .samisa-announce { text-align: center; }
  .samisa-announce-track { width: 100%; justify-content: center; }
  .samisa-hero-slide,
  .samisa-hero-slide.is-active { transition: opacity 200ms linear; transform: none; }
  .samisa-hero-copy { transition: none; }
  .samisa-hero-copy.is-out { opacity: 1; transform: none; }
  .samisa-hero-arrow { transition: none; }
  .samisa-hero-dot.is-active .samisa-hero-dot-fill { animation: none; width: 100%; }
}

/* Article body typography (single posts, editor content) — matches blog-post.html. */
.samisa-article > p:first-child { font-size: 16px; color: #3D2F16; margin: 0 0 28px; }.samisa-product-title { margin: 0 0 20px; }
.samisa-product-title h1 { margin: 0; font-family: var(--font-serif); font-size: clamp(28px,3vw,40px); font-weight: 500; line-height: 1.15; color: #1A1208; letter-spacing: .01em; }
.samisa-product-description { margin: 0 0 28px; padding: 22px 24px; border: 1px solid rgba(184,135,42,0.22); background: #fff; }
.samisa-product-description h2 { margin: 0 0 18px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #B8872A; }
.samisa-product-description dl { margin: 0; }
.samisa-product-description__row { display: grid; grid-template-columns: minmax(145px,180px) 12px minmax(0,1fr); gap: 8px; padding: 9px 0; align-items: start; }
.samisa-product-description__row dt { font-family: var(--font-sans); font-size: 14px; font-weight: 600; line-height: 1.65; color: #4B4032; }
.samisa-product-description__row > span { color: #B8872A; line-height: 1.65; }
.samisa-product-description__row dd { margin: 0; font-family: var(--font-sans); font-size: 14px; font-weight: 300; line-height: 1.65; color: #5C4A28; }
@media (max-width: 560px) { .samisa-product-title { margin: 0 0 20px; }
.samisa-product-title h1 { margin: 0; font-family: var(--font-serif); font-size: clamp(28px,3vw,40px); font-weight: 500; line-height: 1.15; color: #1A1208; letter-spacing: .01em; }
.samisa-product-description { padding: 18px; } .samisa-product-description__row { grid-template-columns: minmax(112px,135px) 8px minmax(0,1fr); gap: 6px; } }
.samisa-article p { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: #5C4A28; line-height: 1.9; margin: 0 0 20px; }
.samisa-article h2 { font-family: var(--font-serif); font-weight: 400; font-size: 26px; line-height: 1.25; color: #1A1208; margin: 40px 0 16px; }
.samisa-article h3 { font-family: var(--font-serif); font-weight: 400; font-size: 21px; line-height: 1.3; color: #1A1208; margin: 32px 0 14px; }
.samisa-article ul, .samisa-article ol { margin: 0 0 20px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.samisa-article li { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: #5C4A28; line-height: 1.8; }
.samisa-article strong { font-weight: 500; color: #1A1208; }
.samisa-article blockquote { border-left: 2px solid #B8872A; margin: 36px 0; padding: 6px 0 6px 28px; }
.samisa-article blockquote p { font-family: var(--font-serif); font-style: italic; font-size: 20px; font-weight: 300; color: #1A1208; line-height: 1.6; margin: 0; }
.samisa-article img { max-width: 100%; height: auto; border: 0.5px solid rgba(184,135,42,0.3); border-radius: 2px; }
.samisa-article figcaption { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #8C7A5A; margin: 12px 0 0; text-align: center; }
.samisa-article a { color: #B8872A; }
/* Lift product information tabs */
.samisa-product-tabs { background:#FDFAF4; padding:0 64px 80px; }
.samisa-product-tabs__inner { max-width:1180px; margin:0 auto; border-top:1px solid rgba(184,135,42,.25); }
.samisa-product-tabs__nav { display:flex; overflow-x:auto; scrollbar-width:none; border-bottom:1px solid rgba(26,18,8,.14); }
.samisa-product-tabs__nav::-webkit-scrollbar { display:none; }
.samisa-product-tabs__nav button { flex:0 0 auto; appearance:none; border:0; border-bottom:3px solid transparent; background:transparent; padding:20px 22px 17px; font-family:var(--font-sans); font-size:12px; font-weight:600; letter-spacing:.035em; text-transform:uppercase; color:#665D50; cursor:pointer; white-space:nowrap; }
.samisa-product-tabs__nav button:hover,.samisa-product-tabs__nav button:focus-visible { color:#B8872A; outline:none; }
.samisa-product-tabs__nav button[aria-selected="true"] { color:#B8872A; border-bottom-color:#B8872A; }
.samisa-product-tabs__content { min-height:330px; padding:42px 24px 10px; }
.samisa-product-tabs__content [role="tabpanel"][hidden] { display:none; }
.samisa-product-tabs__content h2 { margin:0 0 24px; font-family:var(--font-serif); font-size:clamp(25px,3vw,36px); font-weight:500; color:#1A1208; }
.samisa-product-tabs__content p { max-width:850px; font-family:var(--font-sans); font-size:15px; font-weight:300; line-height:1.85; color:#5C4A28; }
.samisa-tab-heading { margin-bottom:34px; }
.samisa-tab-heading h2 { position:relative; padding-left:34px; color:#1A1208; }
.samisa-tab-heading h2::before { content:''; position:absolute; left:0; top:.55em; width:24px; height:2px; background:#B8872A; }
.samisa-tab-heading p { margin:0; max-width:900px; }
.samisa-visual-cards { display:grid; gap:28px; align-items:stretch; }
.samisa-visual-cards--two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.samisa-visual-cards--three { grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.samisa-visual-cards article { overflow:hidden; border-radius:14px; background:#fff; box-shadow:0 8px 24px rgba(44,34,16,.09); }
.samisa-visual-cards img { display:block; width:100%; height:270px; object-fit:cover; background:#EDE6D6; }
.samisa-visual-cards--three img { height:210px; }
.samisa-visual-cards article>div { padding:22px 22px 25px; }
.samisa-visual-cards h3 { margin:0 0 10px; font-family:var(--font-sans); font-size:17px; font-weight:600; line-height:1.4; color:#1A1208; }
.samisa-visual-cards p { margin:0; font-size:14px; line-height:1.72; color:#685E50; }
.samisa-tab-list--additional { margin-top:32px; }
@media (max-width:820px) { .samisa-visual-cards--three { grid-template-columns:1fr 1fr; } }
@media (max-width:620px) { .samisa-visual-cards--two,.samisa-visual-cards--three { grid-template-columns:1fr; }.samisa-visual-cards img,.samisa-visual-cards--three img{height:220px} }.samisa-tab-specs { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); margin:0; border:1px solid rgba(184,135,42,.22); }
.samisa-tab-specs > div { display:grid; grid-template-columns:minmax(130px,.8fr) 1.2fr; border-bottom:1px solid rgba(184,135,42,.16); }
.samisa-tab-specs > div:nth-child(odd) { border-right:1px solid rgba(184,135,42,.16); }
.samisa-tab-specs dt,.samisa-tab-specs dd { margin:0; padding:15px 18px; font-family:var(--font-sans); font-size:14px; line-height:1.55; }
.samisa-tab-specs dt { font-weight:600; color:#3D2F16; background:rgba(184,135,42,.06); }
.samisa-tab-specs dd { font-weight:300; color:#5C4A28; }
.samisa-tab-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 28px; max-width:900px; margin:26px 0 0; padding:0; list-style:none; }
.samisa-tab-list li { position:relative; padding:12px 15px 12px 34px; border-bottom:1px solid rgba(184,135,42,.18); font-family:var(--font-sans); font-size:14px; color:#4C402C; }
.samisa-tab-list li::before { content:'✓'; position:absolute; left:10px; color:#B8872A; font-weight:700; }
.samisa-tab-download { display:inline-flex; align-items:center; gap:22px; margin-top:18px; padding:14px 22px; background:#1A1208; color:#C9A84C; font-family:var(--font-sans); font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; }
.samisa-tab-services { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:26px; max-width:850px; }
.samisa-tab-services a { display:flex; justify-content:space-between; gap:20px; padding:16px 18px; border:1px solid rgba(184,135,42,.25); color:#3D2F16; text-decoration:none; font-family:var(--font-sans); font-size:14px; }
.samisa-tab-services a span { color:#B8872A; }
.samisa-tab-faqs { max-width:900px; }
.samisa-tab-faqs details { border-bottom:1px solid rgba(184,135,42,.24); }
.samisa-tab-faqs summary { padding:18px 4px; cursor:pointer; font-family:var(--font-serif); font-size:17px; font-weight:500; color:#1A1208; }
.samisa-tab-faqs details p { margin:0; padding:0 4px 20px; }
@media (max-width:760px) { .samisa-product-tabs{padding:0 20px 56px}.samisa-product-tabs__content{padding:30px 4px 0}.samisa-product-tabs__nav button{padding:17px 15px 14px;font-size:10.5px}.samisa-tab-specs,.samisa-tab-list,.samisa-tab-services{grid-template-columns:1fr}.samisa-tab-specs>div:nth-child(odd){border-right:0}.samisa-tab-specs>div{grid-template-columns:125px 1fr} }
/* Site-wide responsive shell and mobile navigation */
.samisa-menu-toggle { display:none; width:44px; height:44px; padding:10px; border:1px solid rgba(201,168,76,.45); background:transparent; color:#C9A84C; cursor:pointer; }
.samisa-menu-toggle span { display:block; width:22px; height:1.5px; margin:5px auto; background:currentColor; transition:transform .2s ease,opacity .2s ease; }
.samisa-site-nav.is-menu-open .samisa-menu-toggle span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.samisa-site-nav.is-menu-open .samisa-menu-toggle span:nth-child(2) { opacity:0; }
.samisa-site-nav.is-menu-open .samisa-menu-toggle span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  html,body { max-width:100%; overflow-x:hidden; }
  img,video,iframe { max-width:100%; }
  .samisa-site-nav { padding:10px 20px !important; gap:12px !important; }
  .samisa-site-logo img { height:44px !important; }
  .samisa-menu-toggle { display:block; margin-left:auto; }
  .samisa-primary-menu { display:none !important; position:absolute; left:0; right:0; top:100%; max-height:calc(100vh - 70px); overflow-y:auto; padding:14px 20px 24px !important; flex-direction:column; align-items:stretch !important; gap:0 !important; background:#1A1208; border-top:1px solid rgba(201,168,76,.2); box-shadow:0 18px 40px rgba(0,0,0,.35); }
  .samisa-site-nav.is-menu-open .samisa-primary-menu { display:flex !important; }
  .samisa-primary-menu>li { width:100%; border-bottom:1px solid rgba(201,168,76,.12); }
  .samisa-primary-menu>li>a { display:flex !important; justify-content:space-between; width:100%; box-sizing:border-box; padding:15px 4px !important; font-size:14px !important; }
  .samisa-primary-menu .nav-drop-menu { display:none; position:static !important; padding:0 0 10px !important; opacity:1 !important; visibility:visible !important; }
  .samisa-primary-menu .nav-drop.is-open .nav-drop-menu { display:block; }
  .samisa-primary-menu .nav-drop-menu>div { min-width:0 !important; width:100%; box-sizing:border-box; box-shadow:none !important; border:0 !important; border-left:1px solid rgba(201,168,76,.25) !important; background:rgba(201,168,76,.04) !important; }
  .samisa-primary-menu .nav-drop-menu a { padding:11px 16px !important; white-space:normal !important; }
  .samisa-nav-actions { display:none !important; }
  body.samisa-menu-open { overflow:hidden; }

  .samisa-product-breadcrumb { padding:18px 20px 0 !important; overflow-x:auto; white-space:nowrap; }
  .samisa-product-detail { padding:28px 20px 52px !important; grid-template-columns:1fr !important; gap:38px !important; }
  .samisa-product-detail .samisa-gallery { position:static !important; top:auto !important; width:100%; max-width:520px; margin:0 auto; }
  .samisa-product-detail>div:last-child { min-width:0; }
  .samisa-site-footer { padding:46px 24px 28px !important; }
  .samisa-footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:34px 26px !important; }
  .samisa-footer-grid>div:first-child { grid-column:1/-1; }
  .samisa-footer-bottom { align-items:flex-start !important; }

  section[style*="padding:72px 64px"],section[style*="padding:64px 64px"],section[style*="padding:80px 64px"],section[style*="padding:56px 64px"],section[style*="padding:48px 64px"] { padding-left:24px !important; padding-right:24px !important; }
  section[style*="display:grid"][style*="grid-template-columns"] { grid-template-columns:1fr !important; }
  div[style*="grid-template-columns:repeat(4"],div[style*="grid-template-columns:repeat(3"] { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
}
@media (max-width: 560px) {
  .samisa-announce { font-size:9px; }
  .samisa-site-nav { padding:9px 16px !important; }
  .samisa-product-detail { padding:24px 16px 44px !important; }
  .samisa-product-detail .samisa-gallery>div:nth-child(2) { gap:6px !important; }
  .samisa-footer-grid { grid-template-columns:1fr !important; }
  .samisa-footer-grid>div:first-child { grid-column:auto; }
  .samisa-footer-bottom { flex-direction:column; }
  div[style*="grid-template-columns:repeat(4"],div[style*="grid-template-columns:repeat(3"],div[style*="grid-template-columns:repeat(2"] { grid-template-columns:1fr !important; }
  .samisa-shop-results-head { align-items:flex-start; flex-direction:column; gap:10px; }
  .samisa-shop-results-head p { white-space:normal; }
  .samisa-shop-grid { grid-template-columns:1fr; }
  .samisa-category-slide-content { padding-left:42px; padding-right:42px; }
  .samisa-cta--whatsapp { right:14px !important; bottom:14px !important; width:50px !important; height:50px !important; }
}