/* ============================================================
   SMOWGLI BRAND VARIABLES
============================================================ */
:root {
  --sm-bg:       #111111;
  --sm-bg-nav:   #0d0f0b;
  --sm-gold:     #ECA400;
  --sm-text:     #F5F5ED;
  --sm-orange:   #C8733A;
  --sm-bg-light: #161616;
  --sm-bg-card:  #1c1c1c;
  --sm-border:   #2a2a2a;
  --sm-muted:    #888888;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--sm-bg);
  color: var(--sm-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sm-gold); transition: color .2s; text-decoration: none; }
a:hover { color: var(--sm-orange); }

.site { display: flex; flex-direction: column; min-height: 100vh; position: relative; z-index: 1; }
.site-content { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 6px; top: 6px; z-index: 999999; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Special Elite', serif;
  color: var(--sm-gold);
  line-height: 1.2;
}

p { color: var(--sm-text); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: var(--sm-bg-nav);
  border-bottom: 1px solid var(--sm-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  font-family: 'Special Elite', serif;
  font-size: 1.5rem;
  color: var(--sm-gold);
  text-decoration: none;
  letter-spacing: .02em;
  white-space: nowrap;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

.site-nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--sm-gold);
  padding: 8px 10px;
  display: block;
  transition: color .2s;
}

.site-nav ul li a:hover { color: var(--sm-orange); }

.site-nav ul li { position: relative; }
.site-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  min-width: 180px;
  flex-direction: column;
  z-index: 100;
}
.site-nav ul li:hover > ul { display: flex; }
.site-nav ul li ul li a { padding: 10px 16px; white-space: nowrap; }

.header-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.header-icon {
  color: var(--sm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  text-decoration: none;
  transition: color .2s;
}

.header-icon:hover { color: var(--sm-orange); }
.header-icon svg { display: block; }

.cart-count {
  background: var(--sm-gold);
  color: var(--sm-bg);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--sm-border);
  color: var(--sm-gold);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Mobiiliquote — näkyy vain mobiilissa headerin alla */
.hms-daily-quote {
  display: none;
}

/* Quote nav */
#sg-nav-quote {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(236,164,0,.55);
  pointer-events: none;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 320px;
  line-height: 1.3;
  padding: 0 10px;
  list-style: none;
  margin-left: auto;
}

@media (max-width: 768px) {
  #sg-nav-quote { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--sm-bg-card);
    border-bottom: 1px solid var(--sm-border);
    z-index: 999;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav ul li ul { position: static; display: none; }
  .site-nav ul li.is-open > ul { display: flex; }

  /* Logo pienenee jotta ikonit mahtuvat */
  .site-logo {
    flex-shrink: 1 !important;
    max-width: 160px !important;
    overflow: hidden !important;
  }
  .site-logo img {
    max-height: 34px !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .site-logo a {
    font-size: 1.05rem !important;
    white-space: nowrap !important;
  }

  /* Hamburger ja ikonit eivät jousta — aina näkyvissä */
  .menu-toggle {
    flex-shrink: 0 !important;
  }
  .header-icons {
    flex-shrink: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Header yksi rivi — logo vasemmalla, ikonit oikealla */
  .site-header .header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 8px !important;
  }

  /* Quote-alue headerin alla mobiilissa */
  .hms-daily-quote {
    display: block !important;
    text-align: center;
    font-size: 13px;
    color: #c8860a;
    padding: 8px 16px;
    font-style: italic;
    opacity: 0.85;
    background: var(--sm-bg-nav);
    border-bottom: 1px solid var(--sm-border);
  }
}

/* ============================================================
   BUTTONS
============================================================ */
.sm-btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: linear-gradient(180deg, #f5b800 0%, #d09200 100%);
  color: var(--sm-bg);
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  letter-spacing: .05em;
  border: none;
  padding: .8rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 3px 8px rgba(0,0,0,.35);
}
.sm-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: linear-gradient(180deg, #ffbf00 0%, #c8860a 100%);
  color: #111;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 5px 12px rgba(0,0,0,.40);
}

.sm-btn-outline {
  background: transparent;
  border: 2px solid var(--sm-gold);
  color: var(--sm-gold);
  border-radius: 999px;
  box-shadow: none;
}
.sm-btn-outline:hover {
  background: var(--sm-gold);
  color: var(--sm-bg);
}

/* ============================================================
   GATEWAY CARDS
============================================================ */
.smowgli-gateway { padding: 0; background: var(--sm-bg); }

.smowgli-gateway-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.smowgli-gateway-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  text-decoration: none;
  transition: background .3s, transform .3s;
  text-align: center;
  border: none;
}
.smowgli-gateway-card:hover { transform: scale(1.01); }

.smowgli-gateway-k18 {
  background: linear-gradient(135deg, #0f2009 0%, #0a1a06 100%);
  border-right: 1px solid var(--sm-border);
}
.smowgli-gateway-k18:hover { background: linear-gradient(135deg, #142a0d 0%, #0d200a 100%); }

.smowgli-gateway-lifestyle { background: linear-gradient(135deg, rgba(200,115,58,.12) 0%, #0a1a06 100%); }
.smowgli-gateway-lifestyle:hover { background: linear-gradient(135deg, rgba(200,115,58,.2) 0%, #0d1c08 100%); }

.gateway-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }

.smowgli-gateway-card h2 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--sm-gold);
  margin-bottom: .8rem;
}

.smowgli-gateway-card p {
  color: var(--sm-text);
  opacity: .7;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  font-size: .95rem;
}

.gateway-k18-badge {
  background: var(--sm-orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.gateway-arrow {
  color: var(--sm-gold);
  font-size: 1.5rem;
  margin-top: .5rem;
  display: block;
  transition: transform .2s;
}
.smowgli-gateway-card:hover .gateway-arrow { transform: translateX(6px); }

/* ============================================================
   SECTION LABELS
============================================================ */
.smowgli-section-label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sm-orange);
  display: block;
  margin-bottom: .5rem;
}

.smowgli-section-title {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--sm-gold);
  margin-bottom: 2.5rem;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background-color: var(--sm-bg-light);
  border-top: 2px solid var(--sm-border);
  color: var(--sm-text);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sm-border);
}

.footer-copy { font-size: .85rem; color: var(--sm-muted); }

.site-footer a { color: var(--sm-muted); }
.site-footer a:hover { color: var(--sm-gold); }

.widget-title {
  font-family: 'Special Elite', serif;
  color: var(--sm-gold);
}

/* ============================================================
   K-18 BADGE
============================================================ */
.k18-badge {
  display: inline-block;
  background: var(--sm-orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .15rem .4rem;
  vertical-align: middle;
  margin-left: .3rem;
}

/* ============================================================
   FORMS
============================================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea, select {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  color: var(--sm-text);
  border-radius: 0;
  padding: .6rem .8rem;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--sm-gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(236,164,0,.2);
}

/* ============================================================
   LIFESTYLE PAGE
============================================================ */
.smowgli-lifestyle-page {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.smowgli-lifestyle-page .lp-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--sm-border);
}
.smowgli-lifestyle-page .lp-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.smowgli-lifestyle-page .lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.smowgli-lifestyle-page .lp-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  padding: 2rem 1.5rem;
  text-align: center;
}
.smowgli-lifestyle-page .lp-card .lp-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.smowgli-lifestyle-page .lp-card h3 { margin-bottom: .5rem; }
.smowgli-lifestyle-page .lp-card p { font-size: .9rem; opacity: .75; line-height: 1.7; }
.smowgli-lifestyle-page .lp-cta {
  text-align: center;
  background: var(--sm-bg-card);
  border: 2px solid var(--sm-border);
  padding: 3rem 2rem;
  margin-top: 2rem;
}

/* ============================================================
   SMOWGLI LANDING PAGE — sg-* komponentit
============================================================ */
#smowgli-landing { background: #111111; color: #F5F5ED; font-family: 'Special Elite', monospace; }

.sg-marquee-wrap { overflow: hidden; background: #FFA500; padding: 9px 0; }
.sg-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: sg-marquee-scroll 30s linear infinite;
}
.sg-marquee:hover { animation-play-state: paused; }
@keyframes sg-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sg-marquee-item {
  font-family: 'Special Elite', monospace;
  font-size: .84rem;
  color: #111111;
  font-weight: 600;
  letter-spacing: .04em;
}
.sg-marquee-sep { color: rgba(17,17,17,.4); }

.sg-hero { min-height: 90vh; display: flex; position: relative; overflow: hidden; }
.sg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, #111111 100%);
  pointer-events: none;
  z-index: 4;
}
.sg-hero-inner { display: flex; width: 100%; }
.sg-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  overflow: hidden;
  transition: flex .45s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
}
.sg-side:hover { flex: 1.22; }
.sg-side-bg { position: absolute; inset: 0; transition: background .35s ease; }
.sg-lifestyle .sg-side-bg { background: linear-gradient(145deg,#111111,#181818,#1f1f1f); }
.sg-headshop .sg-side-bg { background: linear-gradient(145deg,#111111,#181818,#111111); }
.sg-lifestyle:hover .sg-side-bg { background: linear-gradient(145deg,#161616,#1c1c1c,#222222); }
.sg-headshop:hover .sg-side-bg { background: linear-gradient(145deg,#1a1a1a,#202020,#161616); }
.sg-side-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 72px 28px;
  text-align: center;
  width: 100%;
}
.sg-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,237,.18);
  background: rgba(245,245,237,.05);
  font-size: .73rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245,245,237,.65);
}
.sg-badge-k18 { border-color: rgba(255,165,0,.4); background: rgba(255,165,0,.08); color: #FFA500; }
.sg-title { font-size: clamp(2.8rem,6vw,5.5rem); font-family: 'Special Elite',monospace; font-weight: 400; line-height: 1.05; margin: 0; color: #F5F5ED; }
.sg-headshop .sg-title { color: #FFA500; }
.sg-desc { font-size: .95rem; color: rgba(245,245,237,.58); max-width: 420px; line-height: 1.68; margin: 0; }
.sg-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Special Elite', monospace;
  font-size: .9rem;
  margin-top: 6px;
  transition: all .22s ease;
}
.sg-cta-light,
.sg-cta-orange {
  background: linear-gradient(180deg, #ffb733 0%, #e08800 100%);
  color: #111111;
  box-shadow:
    0 1px 0 rgba(255,255,255,.28) inset,
    0 3px 8px rgba(0,0,0,.35);
}
.sg-side:hover .sg-cta-light,
.sg-side:hover .sg-cta-orange {
  background: linear-gradient(180deg, #ffc044 0%, #e89500 100%);
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.28) inset,
    0 5px 14px rgba(0,0,0,.40);
}

.sg-benefits { background: #1a1a1a; border-top: 1px solid rgba(245,245,237,.05); border-bottom: 1px solid rgba(245,245,237,.05); padding: 22px 40px; }
.sg-benefits-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.sg-benefit { font-size: .88rem; color: rgba(245,245,237,.72); font-family: 'Special Elite',monospace; }

.sg-section-wrap { max-width: 1100px; margin: 0 auto; }
.sg-label { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: #FFA500; margin: 0 0 10px; }
.sg-section-title { font-size: clamp(1.7rem,3.5vw,2.4rem); font-family: 'Special Elite',monospace; font-weight: 400; color: #F5F5ED; margin: 0 0 40px; }
.sg-outline-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,237,.30);
  color: #F5F5ED;
  font-family: 'Special Elite', monospace;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.30);
}
.sg-outline-btn:hover {
  border-color: #FFA500;
  color: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.38);
}

.sg-trust { padding: 88px 40px; text-align: center; background: #111111; }
.sg-trust-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.sg-trust-card { background: #1a1a1a; border: 1px solid rgba(245,245,237,.07); border-radius: 20px; padding: 32px 20px; transition: border-color .25s, transform .25s; }
.sg-trust-card:hover { border-color: rgba(255,165,0,.22); transform: translateY(-4px); }
.sg-trust-accent { border-color: rgba(255,165,0,.2); background: rgba(255,165,0,.04); }
.sg-trust-num { font-size: 2.5rem; color: #FFA500; font-family: 'Special Elite',monospace; line-height: 1; margin-bottom: 10px; }
.sg-trust-lbl { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(245,245,237,.55); margin-bottom: 12px; }
.sg-trust-card p { font-size: .86rem; color: rgba(245,245,237,.5); line-height: 1.55; margin: 0; }

.sg-store { background: #1a1a1a; padding: 88px 40px; border-top: 1px solid rgba(245,245,237,.05); }
.sg-store-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sg-store-desc { color: rgba(245,245,237,.6); font-size: .95rem; line-height: 1.75; margin-bottom: 32px; }
.sg-store-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.sg-store-row { font-size: .9rem; color: rgba(245,245,237,.75); }
.sg-store-map { height: 380px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(245,245,237,.07); }
.sg-store-map iframe { display: block; width: 100%; height: 100%; filter: invert(90%) hue-rotate(180deg) brightness(.85); }
.sg-store-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.sg-call-btn { border-color: #ECA400; color: #ECA400; }
.sg-call-btn:hover { background: #ECA400; color: #111111; border-color: #ECA400; }

.sg-instagram { padding: 88px 40px; text-align: center; border-top: 1px solid rgba(245,245,237,.05); background: #111111; }
.sg-ig-handle { color: #FFA500; font-size: 1rem; margin-bottom: 44px; letter-spacing: .06em; }

.sg-faq { background: #1a1a1a; padding: 88px 40px; border-top: 1px solid rgba(245,245,237,.05); }
.sg-faq-list { display: flex; flex-direction: column; gap: 12px; }
.sg-faq-item { background: #111111; border: 1px solid rgba(245,245,237,.07); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.sg-faq-item[open] { border-color: rgba(255,165,0,.2); }
.sg-faq-q { padding: 20px 24px; cursor: pointer; font-size: .95rem; color: #F5F5ED; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: 'Special Elite',monospace; user-select: none; }
.sg-faq-q::-webkit-details-marker { display: none; }
.sg-faq-q::after { content: '+'; font-size: 1.3rem; color: #FFA500; margin-left: 16px; flex-shrink: 0; transition: transform .2s; }
.sg-faq-item[open] .sg-faq-q::after { transform: rotate(45deg); }
.sg-faq-a { padding: 0 24px 20px; color: rgba(245,245,237,.6); font-size: .88rem; line-height: 1.7; margin: 0; }

/* ============================================================
   K-18 IKÄPORTTI
============================================================ */
.sg-agegate { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 48px 16px; }
.sg-agegate-box {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.sg-agegate-icon { font-size: 3rem; margin-bottom: 16px; }
.sg-agegate-title { color: var(--sm-gold); font-family: 'Special Elite', serif; font-size: 1.6rem; margin: 0 0 12px; }
.sg-agegate-desc { color: var(--sm-text); opacity: .85; margin-bottom: 32px; line-height: 1.6; }
.sg-age-btn {
  display: inline-block;
  background: var(--sm-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
  width: 100%;
  max-width: 320px;
}
.sg-age-btn:hover { background: #d8834a; transform: translateY(-1px); }
.sg-age-btn:active { transform: translateY(0); }
.sg-agegate-note { margin-top: 20px; font-size: .8rem; color: rgba(245,245,237,.4); line-height: 1.5; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .sg-trust-cards { grid-template-columns: repeat(2,1fr); }
  .sg-store-inner { grid-template-columns: 1fr; gap: 40px; }
  .sg-store-map { height: 280px; }
  .smowgli-lifestyle-page .lp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .sg-hero-inner { flex-direction: column; }
  .sg-side { min-height: 55vh; flex: none; }
  .sg-side-content { padding: 48px 28px; }
  .sg-title { font-size: clamp(1.75rem,8vw,2rem); }
  .sg-trust-cards { grid-template-columns: 1fr; }
  .sg-benefits-inner { flex-direction: column; align-items: flex-start; }
  .sg-trust, .sg-store, .sg-instagram, .sg-faq { padding-left: 20px; padding-right: 20px; }
  .smowgli-gateway-inner { grid-template-columns: 1fr; }
  .smowgli-gateway-k18 { border-right: none; border-bottom: 1px solid var(--sm-border); }
  .smowgli-gateway-card { padding: 3rem 1.5rem; }

  /* Pienemmät nappulat mobiilissa */
  .sg-cta { padding: 10px 22px; font-size: .82rem; }
  .sg-outline-btn { padding: 9px 20px; font-size: .82rem; }
  .sm-btn,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button { padding: .65rem 1.5rem; font-size: .9rem; }
}
@media (max-width: 480px) {
  .sg-agegate-box { padding: 36px 22px; }
}

/* Store notice — lifestyle-only hero */
.sg-store-notice {
  font-family: 'Special Elite', serif;
  font-style: italic;
  color: #c8860a;
  font-size: .92rem;
  text-align: center;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 0 12px;
  opacity: .9;
}

/* Peruuta tilaus -painike Oma tili → Tilaukset */
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.peruuta-tilaus,
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a[href*="peruutus"] {
  background: transparent;
  border: 1px solid #ECA400;
  color: #ECA400 !important;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.peruuta-tilaus:hover,
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a[href*="peruutus"]:hover {
  background: #ECA400;
  color: #111111 !important;
}

/* Footer palautuslinkki */
.footer-return-link {
  color: rgba(245,245,237,.45);
  text-decoration: none;
  margin-left: 12px;
  font-size: inherit;
  transition: color .2s;
}
.footer-return-link:hover {
  color: #ECA400;
}

/* ── Footer legal nav ─────────────────────────────────── */
.footer-legal-nav {
  padding: 20px 0 0;
  border-top: 1px solid rgba(245,245,237,.08);
  margin-top: 24px;
}
.footer-legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}
.footer-legal-links li a {
  font-family: 'Special Elite', serif;
  font-size: .78rem;
  color: rgba(245,245,237,.4);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.footer-legal-links li a:hover {
  color: #ECA400;
}
@media (max-width: 600px) {
  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
