/*
Theme Name: WATASHI Bright
Author: WATASHI WHISKY
Version: 4.0.41
Description: Japanese editorial catalog theme for WATASHI WHISKY. Requires WATASHI Core plugin.
*/

/* =========================================================
   WATASHI WHISKY — Bright Minimal Theme
   Compatible with current wtsh-* HTML structure
   ========================================================= */

/* ---------- 0. Easily editable site assets ---------- */
:root {
  /* Change these two URLs whenever you want to replace the site images */
  --wtsh-logo-url: none;
  --wtsh-hero-url: none;

  --wtsh-bg: #f7f7f5;
  --wtsh-surface: #ffffff;
  --wtsh-surface-soft: #f1f1ee;
  --wtsh-text: #1f1f1d;
  --wtsh-text-soft: #6f6f69;
  --wtsh-line: #deded8;
  --wtsh-accent: #1f1f1d;
  --wtsh-danger: #b42318;

  --wtsh-radius-sm: 10px;
  --wtsh-radius: 18px;
  --wtsh-radius-lg: 28px;

  --wtsh-shadow-sm: 0 6px 20px rgba(0, 0, 0, .05);
  --wtsh-shadow: 0 14px 42px rgba(0, 0, 0, .08);

  --wtsh-max-width: 1480px;
  --wtsh-sidebar-width: 245px;
  --wtsh-transition: .22s ease;
}

/* ---------- 1. Reset / global ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wtsh-bg);
}

.wtsh-body {
  min-height: 100vh;
  margin: 0;
  color: var(--wtsh-text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 38%),
    var(--wtsh-bg);
  font-family:
    Inter,
    "Noto Sans TC",
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  letter-spacing: .02em;
}

.wtsh-body img {
  max-width: 100%;
}

.wtsh-body button,
.wtsh-body a {
  -webkit-tap-highlight-color: transparent;
}

/* ---------- 2. Multilingual display ---------- */
.wtsh-body .lang-zh,
.wtsh-body .lang-en,
.wtsh-body .lang-ja {
  display: none;
}

.wtsh-wrap-zh .lang-zh { display: inline; }
.wtsh-wrap-en .lang-en { display: inline; }
.wtsh-wrap-ja .lang-ja { display: inline; }

/* ---------- 3. Notice ---------- */
.wtsh-top-notice {
  position: relative;
  z-index: 50;
  width: 100%;
  padding: 9px 20px;
  color: #fff !important;
  background: #1f1f1d;
  text-align: center;
  font-size: .82rem !important;
  letter-spacing: .08em !important;
}

/* ---------- 4. Hero ---------- */
.wtsh-hero-bg {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(20,20,18,.72), rgba(20,20,18,.25)),
    var(--wtsh-hero-desktop, var(--wtsh-hero-url)) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.wtsh-hero-bg::before { display:none; }

.wtsh-social-bar {
  position: absolute;
  top: 28px;
  right: clamp(20px, 4vw, 60px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}

.wtsh-social-bar a {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.wtsh-social-bar svg {
  width: 100%;
  height: 100%;
}

.wtsh-lang-switch {
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  white-space: nowrap;
}

.wtsh-lang-switch span {
  cursor: pointer;
  color: rgba(255,255,255,.68);
  transition: var(--wtsh-transition);
}

.wtsh-lang-switch span:hover,
.wtsh-lang-switch span.active {
  color: #fff;
}

/* ---------- 5. Main navigation ---------- */
.wtsh-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 6px;
  width: min(calc(100% - 40px), var(--wtsh-max-width));
  margin: 0 auto 20px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--wtsh-shadow-sm);
  backdrop-filter: blur(18px);
  transform: translateY(26px);
  overflow-x: auto;
  scrollbar-width: none;
}

.wtsh-topbar::-webkit-scrollbar {
  display: none;
}

.wtsh-top-btn {
  flex: 1 0 auto;
  min-width: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  color: #5f5f5a;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .91rem;
  font-weight: 600;
  transition: var(--wtsh-transition);
}

.wtsh-top-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor !important;
}

.wtsh-top-btn:hover {
  background: var(--wtsh-surface-soft);
  color: var(--wtsh-text);
}

.wtsh-top-btn.active {
  background: var(--wtsh-accent);
  color: #fff;
}

/* ---------- 6. Overall layout ---------- */
.wtsh-layout {
  display: grid;
  grid-template-columns: var(--wtsh-sidebar-width) minmax(0, 1fr);
  gap: 32px;
  width: min(calc(100% - 40px), var(--wtsh-max-width));
  margin: 55px auto 0;
  align-items: start;
}

/* ---------- 7. Sidebar ---------- */
.wtsh-sidebar {
  position: sticky;
  top: 22px;
  padding: 18px;
  border: 1px solid var(--wtsh-line);
  border-radius: var(--wtsh-radius);
  background: rgba(255,255,255,.90);
  box-shadow: var(--wtsh-shadow-sm);
  backdrop-filter: blur(15px);
}

.wtsh-sidebar-menu {
  display: none;
}

.wtsh-sidebar-menu.active {
  display: block;
}

.wtsh-side-title {
  margin: 4px 8px 12px;
  color: #9a9a93;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.wtsh-side-btn {
  width: 100%;
  margin: 3px 0;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #60605b;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: .91rem;
  transition: var(--wtsh-transition);
}

.wtsh-side-btn:hover {
  color: var(--wtsh-text);
  background: var(--wtsh-surface-soft);
}

.wtsh-side-btn.active {
  color: var(--wtsh-text);
  background: #ecece8;
  font-weight: 700;
}

/* ---------- 8. Content ---------- */
.wtsh-content-area {
  min-width: 0;
}

.wtsh-panel {
  display: none;
  animation: wtshFade .28s ease;
}

.wtsh-panel.active {
  display: block;
}

@keyframes wtshFade {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wtsh-panel-title {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 15px;
  color: var(--wtsh-text);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.wtsh-panel-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--wtsh-text);
}

/* ---------- 9. Product / content cards ---------- */
.wtsh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wtsh-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--wtsh-line);
  border-radius: var(--wtsh-radius);
  background: var(--wtsh-surface);
  box-shadow: 0 2px 0 rgba(0,0,0,.01);
  overflow: hidden;
  transition:
    transform var(--wtsh-transition),
    box-shadow var(--wtsh-transition),
    border-color var(--wtsh-transition);
}

.wtsh-card:hover {
  transform: translateY(-4px);
  border-color: #c9c9c2;
  box-shadow: var(--wtsh-shadow);
}

.wtsh-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 14px;
  background: #efefec;
  cursor: zoom-in;
}

.wtsh-img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #f5f5f2;
  transition: transform .35s ease;
}

.wtsh-card:hover .wtsh-img-box img {
  transform: scale(1.025);
}

.wtsh-card h3 {
  margin: 2px 3px 10px;
  color: var(--wtsh-text);
  font-size: 1.07rem;
  line-height: 1.48;
  font-weight: 720;
}

.wtsh-details {
  margin: 0 3px;
  color: var(--wtsh-text-soft);
  font-size: .91rem;
  line-height: 1.72;
}

.wtsh-tasting {
  margin: 14px 3px 0;
  padding-top: 14px;
  border-top: 1px solid #eeeeea;
  color: #595954;
  font-size: .88rem;
  line-height: 1.75;
}

.wtsh-tasting strong {
  color: var(--wtsh-text);
}

.wtsh-price {
  margin-top: auto;
  padding: 16px 3px 3px;
  color: var(--wtsh-text);
  font-size: .98rem;
  font-weight: 750;
}

.wtsh-price span[style*="red"] {
  color: var(--wtsh-danger) !important;
  font-size: .82rem;
}

/* ---------- 10. Brand intro ---------- */
.wtsh-brand-intro {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 1.4fr);
  gap: 28px;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid var(--wtsh-line);
  border-radius: var(--wtsh-radius-lg);
  background: var(--wtsh-surface);
}

.wtsh-brand-intro-img {
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background: #f2f2ef;
}

.wtsh-brand-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wtsh-brand-intro-text {
  align-self: center;
}

.wtsh-brand-intro-text h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.wtsh-brand-intro-text p {
  margin: 0;
  color: var(--wtsh-text-soft);
  line-height: 1.85;
}

/* ---------- 11. Map links ---------- */
.wtsh-map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
  color: var(--wtsh-text);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid #bcbcb5;
}

.wtsh-map-link:hover {
  border-bottom-color: #333;
}

/* ---------- 12. Age gate ---------- */
#wtsh-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--wtsh-text);
  background: rgba(247,247,245,.97);
  backdrop-filter: blur(16px);
  text-align: center;
}

#wtsh-age-gate::before {
  content: "";
  width: 240px;
  height: 92px;
  margin-bottom: 20px;
  background: var(--wtsh-logo-url) center / contain no-repeat;
}

#wtsh-age-gate .wtsh-age-logo {
  display: none;
}

#wtsh-age-gate h2 {
  margin: 6px 0 2px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

#wtsh-age-gate p {
  margin: 5px 0 24px;
  color: var(--wtsh-text-soft);
}

.wtsh-btn-group {
  display: flex;
  gap: 12px;
}

.wtsh-btn-group button {
  min-width: 116px;
  padding: 11px 18px;
  border: 1px solid var(--wtsh-text);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: var(--wtsh-transition);
}

.wtsh-btn-group button:first-child {
  color: #fff;
  background: var(--wtsh-text);
}

.wtsh-btn-group button:last-child {
  color: var(--wtsh-text);
  background: transparent;
}

.wtsh-btn-group button:hover {
  transform: translateY(-2px);
}

/* ---------- 13. Lightbox ---------- */
#wtsh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(20,20,18,.88);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

#wtsh-lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.wtsh-close-btn {
  position: absolute;
  top: 22px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
}

/* ---------- 14. Footer ---------- */
.wtsh-footer {
  width: min(calc(100% - 40px), var(--wtsh-max-width));
  margin: 75px auto 95px;
  padding: 30px 0;
  border-top: 1px solid var(--wtsh-line);
  color: var(--wtsh-text-soft);
  text-align: center;
  font-size: .87rem;
}

.wtsh-footer p {
  margin: 5px 0;
}

.wtsh-footer strong {
  color: var(--wtsh-text);
}

.wtsh-copyright {
  margin-top: 16px !important;
  color: #9a9a94;
}

/* ---------- 15. Alcohol warning ---------- */
.wtsh-floating-warning {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8000;
  padding: 12px 18px;
  color: #fff;
  background: rgba(30,30,28,.96);
  text-align: center;
  font-size: clamp(.88rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: .09em;
  backdrop-filter: blur(10px);
}

/* ---------- 16. Back to top ---------- */
#wtsh-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 58px;
  z-index: 100;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wtsh-line);
  border-radius: 50%;
  color: var(--wtsh-text);
  background: rgba(255,255,255,.92);
  box-shadow: var(--wtsh-shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  cursor: pointer;
  transition: var(--wtsh-transition);
}

#wtsh-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#wtsh-back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ---------- 17. Tablet ---------- */
@media (max-width: 1100px) {
  .wtsh-layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 22px;
  }

  .wtsh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- 18. Mobile ---------- */
@media (max-width: 780px) {
  .wtsh-hero-bg {
    min-height: 220px;
  }

  .wtsh-hero-bg::before {
    top: 28px;
    left: 20px;
    width: 190px;
    height: 68px;
  }

  .wtsh-social-bar {
    top: 108px;
    left: 20px;
    right: auto;
  }

  .wtsh-topbar {
    width: calc(100% - 24px);
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .wtsh-top-btn {
    min-width: 138px;
    padding: 10px;
    font-size: .82rem;
  }

  .wtsh-layout {
    display: block;
    width: calc(100% - 24px);
    margin-top: 48px;
  }

  .wtsh-sidebar {
    position: static;
    margin-bottom: 24px;
    padding: 11px;
    overflow-x: auto;
  }

  .wtsh-sidebar-menu.active {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: max-content;
  }

  .wtsh-side-title {
    display: none;
  }

  .wtsh-side-btn {
    width: auto;
    margin: 0;
    padding: 9px 12px;
    white-space: nowrap;
    text-align: center;
  }

  .wtsh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wtsh-card {
    padding: 9px;
    border-radius: 14px;
  }

  .wtsh-card h3 {
    font-size: .92rem;
  }

  .wtsh-details,
  .wtsh-tasting {
    font-size: .80rem;
  }

  .wtsh-img-box {
    border-radius: 10px;
    margin-bottom: 11px;
  }

  .wtsh-brand-intro {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

/* ---------- 19. Very small screens ---------- */
@media (max-width: 480px) {
  .wtsh-grid {
    grid-template-columns: 1fr;
  }

  .wtsh-img-box {
    aspect-ratio: 4 / 4.5;
  }

  .wtsh-panel-title {
    font-size: 1.55rem;
  }

  #wtsh-age-gate {
    padding: 22px;
  }
}

.wtsh-live-logo{position:absolute;left:clamp(20px,5vw,76px);top:42px;z-index:3;display:block;width:min(270px,52vw)}.wtsh-live-logo img{width:100%;height:90px;object-fit:contain;object-position:left center}.wtsh-topbar a,.wtsh-sidebar a{text-decoration:none}.wtsh-sidebar .wtsh-side-btn{display:block}


/* =========================================================
   WATASHI Bright 1.1 — CMS-connected storefront additions
   ========================================================= */
.wtsh-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(20,20,18,.58), rgba(20,20,18,.12)),
    var(--wtsh-hero-desktop, var(--wtsh-hero-url));
  background-color:#dadad4;
}
.wtsh-live-logo{position:absolute;left:clamp(20px,5vw,76px);top:42px;z-index:3;display:block;width:min(280px,52vw)}
.wtsh-live-logo img{width:100%;height:92px;object-fit:contain;object-position:left center;filter:drop-shadow(0 5px 16px rgba(0,0,0,.12))}
.wtsh-social-bar>a{width:auto;height:auto;color:#fff;text-decoration:none;font-size:.76rem;font-weight:800;letter-spacing:.08em}
.wtsh-card a{color:inherit;text-decoration:none}
.wtsh-card-image-link{display:block}
.wtsh-card-image{cursor:pointer}
.wtsh-card-chips{display:flex;flex-wrap:wrap;gap:6px;margin:0 3px 9px}
.wtsh-chip{display:inline-flex;align-items:center;padding:4px 8px;border:1px solid var(--wtsh-line);border-radius:999px;background:#fafaf8;color:#676761!important;font-size:.68rem!important;font-weight:700;letter-spacing:.04em;text-decoration:none!important}
.wtsh-chip:hover{border-color:#aaa9a2;color:#222!important}
.wtsh-card-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-top:auto;padding:14px 3px 3px;border-top:1px solid #eeeeea}
.wtsh-card-footer .wtsh-price{padding:0;margin:0}
.wtsh-view-link{white-space:nowrap;font-size:.78rem;font-weight:800;border-bottom:1px solid #9a9a94}
.wtsh-status{display:inline-flex;margin-top:5px;padding:4px 8px;border-radius:999px;font-size:.68rem;font-weight:800;letter-spacing:.04em;background:#f0f0ec;color:#585852}
.wtsh-status-available{background:#eef5ee;color:#315c39}
.wtsh-status-coming{background:#f8f2df;color:#735d15}
.wtsh-status-soldout{background:#f8eaea;color:#8a2d27}
.wtsh-status-hidden{background:#ececec;color:#777}
.wtsh-side-subtitle{margin-top:28px!important}
.wtsh-eyebrow{display:block;margin-bottom:8px;color:#999990;font-size:.68rem;font-weight:850;letter-spacing:.16em}
/* Home editorial brand statement */
.wtsh-home-intro{
  display:grid;
  grid-template-columns:minmax(0,1.42fr) minmax(270px,.58fr);
  min-height:360px;
  margin-bottom:54px;
  border:1px solid #dfddd7;
  border-radius:26px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 16px 46px rgba(20,20,18,.045);
}
.wtsh-home-intro-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(34px,5vw,72px);
}
.wtsh-home-intro .wtsh-eyebrow{
  margin-bottom:22px;
  color:#9a8b72;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.22em;
}
.wtsh-home-intro h1{
  display:flex;
  flex-wrap:wrap;
  gap:0 .22em;
  margin:0 0 22px;
  font-size:clamp(2.75rem,5.4vw,5.5rem);
  line-height:.88;
  letter-spacing:-.065em;
  font-weight:760;
}
.wtsh-home-intro h1 span:last-child{font-weight:320;color:#5a5954}
.wtsh-home-intro p{
  max-width:650px;
  margin:0 0 30px;
  color:#696761;
  font-size:clamp(.98rem,1.3vw,1.12rem);
  line-height:1.85;
}
.wtsh-primary-btn{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:0 0 7px;
  border-bottom:1px solid #262522;
  color:#262522!important;
  background:transparent;
  text-decoration:none;
  font-weight:800;
  font-size:.88rem;
  letter-spacing:.04em;
  transition:gap .2s ease,border-color .2s ease,color .2s ease;
}
.wtsh-primary-btn:hover{gap:24px;border-color:#a18b68;color:#8a7556!important}
.wtsh-btn-arrow{font-size:1.05rem;font-weight:500}
.wtsh-home-intro-art{
  position:relative;
  min-height:360px;
  padding:30px;
  color:#fff;
  background:
    radial-gradient(circle at 78% 18%,rgba(255,255,255,.08),transparent 28%),
    linear-gradient(145deg,#292824,#171715 76%);
  overflow:hidden;
}
.wtsh-home-intro-art::after{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  right:-95px;
  bottom:-95px;
  border:1px solid rgba(194,169,124,.42);
  border-radius:50%;
}
.wtsh-intro-kanji{display:none}
.wtsh-intro-logo-wrap{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:46px 36px 78px;
}
.wtsh-intro-logo-wrap img{
  width:min(82%,300px);
  max-height:240px;
  object-fit:contain;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.18));
  opacity:.98;
}
.wtsh-intro-rule{
  position:absolute;
  left:30px;
  top:30px;
  width:34px;
  height:2px;
  background:#bca579;
}
.wtsh-intro-meta{
  position:absolute;
  left:30px;
  right:30px;
  bottom:28px;
  display:flex;
  flex-direction:column;
  gap:6px;
  color:rgba(255,255,255,.74);
  font-size:.64rem;
  font-weight:700;
  letter-spacing:.2em;
}
.wtsh-intro-meta span:first-child{color:#d8c49b}

.wtsh-section-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin:0 0 20px}
.wtsh-section-heading h2{margin:0;font-size:clamp(1.55rem,2.5vw,2.1rem)}
.wtsh-section-heading>a{color:var(--wtsh-text);text-decoration:none;font-size:.82rem;font-weight:800}
.wtsh-section-gap{margin-top:56px}
.wtsh-grid-compact .wtsh-img-box{aspect-ratio:16/10}
.wtsh-page-content{margin:30px 0;padding:26px;border:1px solid var(--wtsh-line);border-radius:var(--wtsh-radius);background:#fff;color:var(--wtsh-text-soft)}
.wtsh-term-description{margin:-10px 0 24px;color:var(--wtsh-text-soft)}
.wtsh-breadcrumb{margin-bottom:20px;color:#92928c;font-size:.78rem}
.wtsh-breadcrumb a{color:inherit;text-decoration:none}
.wtsh-product-hero{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);gap:clamp(28px,5vw,70px);align-items:start}
.wtsh-product-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.wtsh-gallery-item{padding:0;border:1px solid var(--wtsh-line);border-radius:14px;background:#fff;overflow:hidden;cursor:zoom-in;aspect-ratio:1/1}
.wtsh-gallery-item img{width:100%;height:100%;object-fit:contain;display:block;background:#f7f7f4}
.wtsh-gallery-main{grid-column:1/-1;aspect-ratio:4/4.2;border-radius:20px}
.wtsh-product-summary{position:sticky;top:22px;padding:4px 0}
.wtsh-product-title{margin:10px 0 8px;font-size:clamp(2rem,4.4vw,4rem);line-height:1.05;letter-spacing:-.045em}
.wtsh-product-distillery{margin:0 0 14px;color:var(--wtsh-text-soft);font-size:1.1rem}
.wtsh-product-status-row{margin-bottom:20px}
.wtsh-spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin:0;border-top:1px solid var(--wtsh-line)}
.wtsh-spec-item{padding:13px 2px;border-bottom:1px solid var(--wtsh-line)}
.wtsh-spec-item:nth-child(odd){padding-right:15px}
.wtsh-spec-item:nth-child(even){padding-left:15px;border-left:1px solid var(--wtsh-line)}
.wtsh-spec-item dt{margin:0 0 2px;color:#999990;font-size:.68rem;font-weight:800;letter-spacing:.06em}
.wtsh-spec-item dd{margin:0;font-weight:700;font-size:.92rem}
.wtsh-product-price{margin-top:24px;padding:19px 20px;border-radius:16px;background:#efefeb}
.wtsh-product-price>span{display:block;color:#777770;font-size:.7rem;font-weight:800;letter-spacing:.05em}
.wtsh-product-price strong{display:block;margin:3px 0;font-size:1.45rem}
.wtsh-product-price small{display:block;color:#888881;font-size:.7rem;line-height:1.5}
.wtsh-product-section{margin-top:56px;padding-top:35px;border-top:1px solid var(--wtsh-line)}
.wtsh-product-section h2{margin:0 0 18px;font-size:clamp(1.45rem,2.4vw,2rem)}
.wtsh-rich-text{max-width:900px;color:#565651;font-size:.96rem;line-height:1.9}
.wtsh-tasting-section{padding:35px;border:1px solid var(--wtsh-line);border-radius:var(--wtsh-radius-lg);background:#fff}
.wtsh-tasting-copy{font-size:1rem}
.wtsh-article-cover{max-width:850px;margin-bottom:25px;border-radius:var(--wtsh-radius);overflow:hidden}
.wtsh-age-logo-live{width:min(250px,65vw);height:95px;margin-bottom:20px}
.wtsh-age-logo-live img{width:100%;height:100%;object-fit:contain}
.navigation.pagination{margin-top:30px}
.nav-links{display:flex;gap:7px;flex-wrap:wrap}
.page-numbers{display:inline-flex;min-width:36px;height:36px;padding:0 10px;align-items:center;justify-content:center;border:1px solid var(--wtsh-line);border-radius:9px;background:#fff;color:var(--wtsh-text);text-decoration:none;font-size:.82rem}
.page-numbers.current{background:var(--wtsh-text);color:#fff}
@media(max-width:900px){.wtsh-product-hero{grid-template-columns:1fr}.wtsh-product-summary{position:static}.wtsh-product-title{font-size:2.4rem}}
@media(max-width:780px){
  .wtsh-hero-bg{background-image:linear-gradient(90deg,rgba(20,20,18,.55),rgba(20,20,18,.08)),var(--wtsh-hero-mobile,var(--wtsh-hero-desktop,var(--wtsh-hero-url)))}
  .wtsh-live-logo{top:25px;width:190px}.wtsh-live-logo img{height:68px}
  .wtsh-social-bar{top:108px}
  .wtsh-home-intro{grid-template-columns:1fr;min-height:0}
  .wtsh-home-intro-copy{padding:34px 24px 38px}
  .wtsh-home-intro-art{min-height:155px;padding:22px}
  .wtsh-intro-rule{left:22px;top:22px}
  .wtsh-intro-meta{left:22px;right:22px;bottom:20px}
  .wtsh-intro-logo-wrap{padding:30px 34px 62px}
  .wtsh-intro-logo-wrap img{width:min(66vw,230px);max-height:145px}
  .wtsh-product-gallery{grid-template-columns:repeat(3,minmax(0,1fr))}
  .wtsh-spec-grid{grid-template-columns:1fr}.wtsh-spec-item:nth-child(even){padding-left:2px;border-left:0}.wtsh-spec-item:nth-child(odd){padding-right:2px}
  .wtsh-tasting-section{padding:22px}
}


/* =========================================================
   20. TEAM / OUR PEOPLE — Editorial Portrait Layout
   ========================================================= */
.wtsh-team-layout {
  display: block;
  width: min(calc(100% - 40px), var(--wtsh-max-width));
  margin: 58px auto 0;
}

.wtsh-team-hero {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--wtsh-line);
}

.wtsh-team-hero h1 {
  margin: 7px 0 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 760;
}

.wtsh-team-hero-copy {
  max-width: 680px;
  color: var(--wtsh-text-soft);
  font-size: clamp(.96rem, 1.4vw, 1.12rem);
  line-height: 1.9;
}

.wtsh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  padding: 42px 0 20px;
}

.wtsh-member-card {
  min-width: 0;
}

.wtsh-member-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: #ecebe7;
}

.wtsh-member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(25,25,23,.06);
}

.wtsh-member-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.wtsh-member-card:hover .wtsh-member-photo img {
  transform: scale(1.025);
}

.wtsh-member-info {
  padding: 17px 2px 4px;
}

.wtsh-member-number {
  display: block;
  margin-bottom: 11px;
  color: #a59a86;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.wtsh-member-info h2 {
  margin: 0 0 7px;
  color: var(--wtsh-text);
  font-size: clamp(1.16rem, 1.6vw, 1.42rem);
  line-height: 1.25;
  font-weight: 720;
  letter-spacing: -.025em;
}

.wtsh-member-role {
  min-height: 2.9em;
  margin-bottom: 15px;
  color: #8b7c62;
  font-size: .75rem;
  font-weight: 750;
  line-height: 1.5;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.wtsh-member-bio {
  padding-top: 15px;
  border-top: 1px solid #e7e5df;
  color: var(--wtsh-text-soft);
  font-size: .84rem;
  line-height: 1.78;
}

.wtsh-member-bio p {
  margin: 0;
}

.wtsh-member-bio .lang-zh,
.wtsh-member-bio .lang-en,
.wtsh-member-bio .lang-ja {
  display: none;
}

.wtsh-wrap-zh .wtsh-member-bio .lang-zh,
.wtsh-wrap-en .wtsh-member-bio .lang-en,
.wtsh-wrap-ja .wtsh-member-bio .lang-ja {
  display: block;
}

/* Make the team navigation visually identifiable */
.wtsh-top-btn.wtsh-team-nav::before {
  content: "●";
  margin-right: 1px;
  color: #b29a72;
  font-size: .48rem;
  transform: translateY(-1px);
}

/* Single member page */
.wtsh-member-single {
  max-width: 1120px;
  margin: 0 auto;
}

.wtsh-member-single-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.wtsh-member-single .wtsh-member-photo {
  aspect-ratio: 4 / 5;
}

.wtsh-member-single-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.wtsh-member-single-copy .wtsh-member-role {
  min-height: 0;
  margin-bottom: 28px;
}

.wtsh-member-single-copy .wtsh-member-bio {
  font-size: 1rem;
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .wtsh-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .wtsh-team-layout {
    width: calc(100% - 24px);
    margin-top: 48px;
  }

  .wtsh-team-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px 0 28px;
  }

  .wtsh-team-hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.8rem);
  }

  .wtsh-team-grid {
    gap: 24px 14px;
    padding-top: 28px;
  }

  .wtsh-member-single-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wtsh-team-grid {
    grid-template-columns: 1fr;
  }

  .wtsh-member-photo {
    aspect-ratio: 4 / 4.7;
  }
}


/* =========================================================
   21. TEAM CARDS — Match Product Card System
   v1.5
   ========================================================= */

.wtsh-team-layout {
  display: block;
  width: min(calc(100% - 40px), var(--wtsh-max-width));
  margin: 58px auto 0;
}

/* Compact section header — same visual rhythm as product pages */
.wtsh-team-heading {
  margin-bottom: 26px;
}

.wtsh-team-heading .wtsh-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #9a8d76;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.wtsh-team-heading h1 {
  position: relative;
  margin: 0;
  padding-bottom: 15px;
  color: var(--wtsh-text);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.wtsh-team-heading h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--wtsh-text);
}

.wtsh-team-heading p {
  max-width: 720px;
  margin: 15px 0 0;
  color: var(--wtsh-text-soft);
  font-size: .93rem;
  line-height: 1.8;
}

/* Use the exact product grid rhythm */
.wtsh-team-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Team card inherits the same geometry as product cards */
.wtsh-team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e7e4dd;
  border-radius: 16px;
  background: var(--wtsh-surface);
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  overflow: hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.wtsh-team-card:hover {
  transform: translateY(-3px);
  border-color: #d8d1c5;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.wtsh-team-card .wtsh-team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f5f1;
}

.wtsh-team-card .wtsh-team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.wtsh-team-card:hover .wtsh-team-photo img {
  transform: scale(1.025);
}

.wtsh-team-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 2px 2px;
}

.wtsh-team-card .wtsh-team-index {
  display: block;
  margin-bottom: 6px;
  color: #a49780;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.wtsh-team-card h2 {
  margin: 0 0 7px;
  color: var(--wtsh-text);
  font-size: .96rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .01em;
}

.wtsh-team-card h2 a {
  color: inherit;
  text-decoration: none;
}

.wtsh-team-card .wtsh-team-role {
  min-height: 2.6em;
  margin-bottom: 10px;
  color: #746958;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.55;
}

.wtsh-team-card .wtsh-team-bio {
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid #efede8;
  color: #6d6a64;
  font-size: .78rem;
  line-height: 1.65;
}

.wtsh-team-card .wtsh-team-bio p {
  margin: 0;
}

.wtsh-team-card .wtsh-team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--wtsh-text);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .03em;
}

.wtsh-team-card .wtsh-team-link::after {
  content: "→";
  transition: transform .2s ease;
}

.wtsh-team-card:hover .wtsh-team-link::after {
  transform: translateX(3px);
}

/* Keep translated content behavior predictable */
.wtsh-team-card .lang-zh,
.wtsh-team-card .lang-en,
.wtsh-team-card .lang-ja {
  display: none;
}

.wtsh-wrap-zh .wtsh-team-card .lang-zh,
.wtsh-wrap-en .wtsh-team-card .lang-en,
.wtsh-wrap-ja .wtsh-team-card .lang-ja {
  display: inline;
}

@media (max-width: 1180px) {
  .wtsh-team-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .wtsh-team-layout {
    width: calc(100% - 24px);
    margin-top: 48px;
  }

  .wtsh-team-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wtsh-team-card {
    padding: 8px;
    border-radius: 14px;
  }

  .wtsh-team-card .wtsh-team-photo {
    border-radius: 10px;
  }

  .wtsh-team-card h2 {
    font-size: .88rem;
  }

  .wtsh-team-card .wtsh-team-role,
  .wtsh-team-card .wtsh-team-bio {
    font-size: .74rem;
  }
}

@media (max-width: 480px) {
  .wtsh-team-card-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   22. EVENTS — status + synchronized detail page
   ========================================================= */
.wtsh-event-status{
  margin:0;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.045em;
}
.wtsh-status-full{background:#f4e9dc;color:#815528}
.wtsh-status-concluded{background:#ecebe8;color:#66635d}
.wtsh-status-cancelled{background:#f7e5e5;color:#8a2d27}
.wtsh-event-card-details{min-height:5.4em}
.wtsh-card-chips .wtsh-event-status{align-self:center}

.wtsh-event-single{min-width:0}
.wtsh-event-hero{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(330px,.88fr);
  gap:clamp(28px,4vw,58px);
  align-items:start;
}
.wtsh-event-cover{
  overflow:hidden;
  border:1px solid var(--wtsh-line);
  border-radius:20px;
  background:#f3f2ee;
  box-shadow:0 12px 34px rgba(0,0,0,.05);
}
.wtsh-event-cover img{
  display:block;
  width:100%;
  height:auto;
  max-height:720px;
  object-fit:contain;
  background:#f3f2ee;
}
.wtsh-event-placeholder{
  min-height:420px;
  display:grid;
  place-items:center;
  color:#aaa59a;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.14em;
}
.wtsh-event-summary{
  position:sticky;
  top:24px;
  padding:4px 0 12px;
}
.wtsh-event-summary .wtsh-card-chips{
  margin-bottom:22px;
}
.wtsh-event-title{
  margin:9px 0 28px;
  color:var(--wtsh-text);
  font-size:clamp(2.1rem,4vw,4.15rem);
  line-height:1.02;
  letter-spacing:-.055em;
  font-weight:760;
}
.wtsh-event-info-list{
  margin:0;
  border-top:1px solid var(--wtsh-line);
}
.wtsh-event-info-list>div{
  display:grid;
  grid-template-columns:105px minmax(0,1fr);
  gap:18px;
  padding:15px 0;
  border-bottom:1px solid var(--wtsh-line);
}
.wtsh-event-info-list dt{
  color:#99958c;
  font-size:.71rem;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.wtsh-event-info-list dd{
  margin:0;
  color:var(--wtsh-text);
  font-size:.94rem;
  line-height:1.65;
  font-weight:600;
}
.wtsh-event-status-large{
  margin-top:22px;
}
.wtsh-event-status-large .wtsh-status{
  padding:8px 13px;
  font-size:.78rem;
}
.wtsh-event-action{
  margin-top:18px;
  text-decoration:none;
}
.wtsh-event-content-section{
  max-width:900px;
  margin-top:60px;
  padding-top:32px;
  border-top:1px solid var(--wtsh-line);
}
.wtsh-event-content-section h2{
  margin:5px 0 20px;
  font-size:clamp(1.45rem,2.5vw,2.1rem);
  letter-spacing:-.025em;
}
.wtsh-event-items{
  padding:24px;
  border:1px solid #e4e1da;
  border-radius:16px;
  background:#fff;
  color:#5d5a54;
  font-size:.93rem;
  line-height:1.9;
  white-space:normal;
}

@media(max-width:900px){
  .wtsh-event-hero{grid-template-columns:1fr}
  .wtsh-event-summary{position:static}
}
@media(max-width:780px){
  .wtsh-event-title{font-size:2.25rem}
  .wtsh-event-info-list>div{grid-template-columns:88px minmax(0,1fr);gap:12px}
  .wtsh-event-content-section{margin-top:42px}
}


/* =========================================================
   23. Navigation cleanup — remove TEAM decorative dot
   ========================================================= */
.wtsh-top-btn.wtsh-team-nav::before {
  content: none !important;
  display: none !important;
  margin: 0 !important;
}


/* =========================================================
   24. WORDPRESS MANAGED PRIMARY NAVIGATION — v1.8
   ========================================================= */
.wtsh-topbar {
  overflow: visible;
}

.wtsh-primary-menu {
  display: flex;
  flex: 1;
  min-width: 0;
}

.wtsh-primary-menu > ul,
.wtsh-primary-menu .menu {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wtsh-primary-menu .menu-item {
  position: relative;
  display: flex;
  flex: 1 0 auto;
  margin: 0;
  padding: 0;
}

.wtsh-primary-menu .menu-item > a {
  width: 100%;
  min-width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  color: #5f5f5a;
  background: transparent;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 650;
  line-height: 1.3;
  transition: var(--wtsh-transition);
}

.wtsh-primary-menu .menu-item > a:hover {
  color: var(--wtsh-text);
  background: var(--wtsh-surface-soft);
}

.wtsh-primary-menu .current-menu-item > a,
.wtsh-primary-menu .current-menu-ancestor > a,
.wtsh-primary-menu .current_page_item > a,
.wtsh-primary-menu .current-post-ancestor > a {
  color: #fff;
  background: var(--wtsh-accent);
}

/* Drop-down submenu: drag a menu item slightly to the right in WordPress to create it */
.wtsh-primary-menu .sub-menu {
  position: absolute;
  z-index: 200;
  top: calc(100% + 7px);
  left: 50%;
  min-width: 195px;
  display: block;
  margin: 0;
  padding: 7px;
  border: 1px solid var(--wtsh-line);
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--wtsh-shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.wtsh-primary-menu .menu-item:hover > .sub-menu,
.wtsh-primary-menu .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.wtsh-primary-menu .sub-menu .menu-item {
  display: block;
}

.wtsh-primary-menu .sub-menu .menu-item > a {
  min-width: 0;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 9px;
  color: #5f5f5a;
  white-space: nowrap;
}

.wtsh-primary-menu .sub-menu .menu-item > a:hover,
.wtsh-primary-menu .sub-menu .current-menu-item > a {
  color: var(--wtsh-text);
  background: var(--wtsh-surface-soft);
}

/* Generic WordPress page — lets user create unlimited custom pages */
.wtsh-page-layout {
  width: min(calc(100% - 40px), 1080px);
  margin: 58px auto 0;
}

.wtsh-page-article {
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--wtsh-line);
  border-radius: var(--wtsh-radius-lg);
  background: #fff;
}

.wtsh-page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--wtsh-line);
}

.wtsh-page-header h1 {
  margin: 5px 0 0;
  color: var(--wtsh-text);
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.wtsh-page-content {
  color: #565651;
  font-size: 1rem;
  line-height: 1.9;
}

.wtsh-page-content > *:first-child { margin-top: 0; }
.wtsh-page-content img { height: auto; border-radius: 14px; }
.wtsh-page-content h2,
.wtsh-page-content h3 { color: var(--wtsh-text); line-height: 1.3; }
.wtsh-page-content a { color: var(--wtsh-text); }

/* Never show the old TEAM ornament */
.wtsh-primary-menu .wtsh-team-nav::before,
.wtsh-top-btn.wtsh-team-nav::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 780px) {
  .wtsh-topbar {
    overflow-x: auto;
    overflow-y: visible;
  }

  .wtsh-primary-menu {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .wtsh-primary-menu > ul,
  .wtsh-primary-menu .menu {
    width: auto;
    min-width: max-content;
  }

  .wtsh-primary-menu .menu-item {
    flex: 0 0 auto;
  }

  .wtsh-primary-menu .menu-item > a {
    min-width: 116px;
    padding: 10px 12px;
    font-size: .82rem;
  }

  .wtsh-primary-menu .sub-menu {
    left: 0;
    transform: translate(0, -7px);
  }

  .wtsh-primary-menu .menu-item:hover > .sub-menu,
  .wtsh-primary-menu .menu-item:focus-within > .sub-menu {
    transform: translate(0, 0);
  }

  .wtsh-page-layout {
    width: calc(100% - 24px);
    margin-top: 48px;
  }

  .wtsh-page-article {
    padding: 22px 18px;
    border-radius: 18px;
  }
}


/* =========================================================
   25. NEWS / JOURNAL — v2.0
   ========================================================= */
.wtsh-news-card-summary{
  min-height:5.2em;
  color:#67635c;
  line-height:1.7;
}

.wtsh-news-single-layout{
  width:min(calc(100% - 40px),1120px);
  margin:58px auto 0;
}

.wtsh-news-single{
  max-width:1000px;
  margin:0 auto;
}

.wtsh-news-single-header{
  max-width:820px;
  margin:0 auto 36px;
  text-align:left;
}

.wtsh-news-back{
  display:inline-block;
  margin-bottom:32px;
  color:#77736c;
  text-decoration:none;
  font-size:.82rem;
  font-weight:700;
}

.wtsh-news-date{
  margin-top:12px;
  color:#9a958c;
  font-size:.76rem;
  font-weight:750;
  letter-spacing:.1em;
}

.wtsh-news-single-header h1{
  margin:9px 0 18px;
  color:var(--wtsh-text);
  font-size:clamp(2.25rem,5vw,4.8rem);
  line-height:1.04;
  letter-spacing:-.052em;
}

.wtsh-news-lead{
  max-width:760px;
  color:#706c64;
  font-size:clamp(1rem,1.5vw,1.16rem);
  line-height:1.85;
}

.wtsh-news-single-cover{
  margin:0 auto 44px;
  overflow:hidden;
  border:1px solid var(--wtsh-line);
  border-radius:22px;
  background:#f3f2ee;
}

.wtsh-news-single-cover img{
  display:block;
  width:100%;
  height:auto;
}

.wtsh-news-single-content{
  max-width:820px;
  margin:0 auto;
  color:#55514a;
  font-size:1rem;
  line-height:1.95;
}

.wtsh-news-single-content p{
  margin:0 0 1.5em;
}

.wtsh-news-single-content h2,
.wtsh-news-single-content h3{
  margin-top:1.8em;
  color:var(--wtsh-text);
  line-height:1.3;
}

.wtsh-news-single-content img{
  height:auto;
  border-radius:14px;
}

.wtsh-news-language-content > .lang-zh,
.wtsh-news-language-content > .lang-en,
.wtsh-news-language-content > .lang-ja{
  display:none;
}

.wtsh-wrap-zh .wtsh-news-language-content > .lang-zh{display:block}
.wtsh-wrap-en .wtsh-news-language-content > .lang-en{display:block}
.wtsh-wrap-ja .wtsh-news-language-content > .lang-ja{display:block}

@media(max-width:780px){
  .wtsh-news-single-layout{
    width:calc(100% - 24px);
    margin-top:48px;
  }
  .wtsh-news-single-header h1{font-size:2.4rem}
  .wtsh-news-single-cover{border-radius:16px;margin-bottom:30px}
}


/* =========================================================
   26. WHISKYFUN / WHISKYBASE RATINGS — v2.3
   ========================================================= */
.wtsh-product-ratings{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

.wtsh-product-ratings-card{
  margin:12px 3px 2px;
  padding-top:11px;
  border-top:1px solid #efede8;
}

.wtsh-rating-badge{
  min-width:0;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 8px;
  border:1px solid #dedbd4;
  border-radius:10px;
  color:#2b2a27;
  background:#faf9f6;
  text-decoration:none;
  line-height:1;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}

a.wtsh-rating-badge:hover{
  transform:translateY(-1px);
  border-color:#b9b3a8;
  background:#fff;
}

.wtsh-rating-brand{
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:#5e5b55;
}

.wtsh-rating-icon-svg{
  width:20px;
  height:20px;
  flex:0 0 20px;
}

.wtsh-rating-name{
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.015em;
}

.wtsh-rating-score{
  margin-left:2px;
  color:#1f1f1d;
  font-size:.82rem;
  font-weight:850;
  font-variant-numeric:tabular-nums;
}

.wtsh-rating-denom{
  color:#9a968d;
  font-size:.56rem;
  font-weight:700;
}

.wtsh-rating-external{
  margin-left:1px;
  color:#9a968d;
  font-size:.62rem;
}

.wtsh-rating-whiskyfun .wtsh-rating-icon-svg{
  color:#8d7951;
}

.wtsh-rating-whiskybase .wtsh-rating-icon-svg{
  color:#555b63;
}

/* Larger presentation on product detail pages */
.wtsh-product-ratings-single{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--wtsh-line);
}

.wtsh-product-ratings-single .wtsh-rating-badge{
  gap:8px;
  padding:9px 11px;
  border-radius:12px;
}

.wtsh-product-ratings-single .wtsh-rating-icon-svg{
  width:26px;
  height:26px;
  flex-basis:26px;
}

.wtsh-product-ratings-single .wtsh-rating-name{
  font-size:.74rem;
}

.wtsh-product-ratings-single .wtsh-rating-score{
  font-size:1rem;
}

.wtsh-product-ratings-single .wtsh-rating-denom{
  font-size:.62rem;
}

@media(max-width:780px){
  .wtsh-rating-name{
    display:none;
  }

  .wtsh-product-ratings-single .wtsh-rating-name{
    display:inline;
  }
}



/* =========================================================
   27. PRODUCT SIDEBAR FILTERS — v2.4
   ========================================================= */
.wtsh-product-filter{
  margin:18px 0 20px;
  padding:15px 12px 14px;
  border:1px solid #e5e2dc;
  border-radius:14px;
  background:#faf9f6;
}

.wtsh-product-filter .wtsh-filter-heading{
  margin:0 0 12px;
  color:#777269;
}

.wtsh-filter-form{
  display:flex;
  flex-direction:column;
  gap:11px;
}

.wtsh-filter-field{
  display:block;
}

.wtsh-filter-field > span{
  display:block;
  margin:0 0 5px;
  color:#69655e;
  font-size:.72rem;
  font-weight:750;
  letter-spacing:.04em;
}

.wtsh-filter-field select{
  width:100%;
  min-height:39px;
  padding:7px 30px 7px 10px;
  border:1px solid #d8d4cc;
  border-radius:9px;
  color:#353431;
  background:#fff;
  font:inherit;
  font-size:.82rem;
  line-height:1.3;
  cursor:pointer;
}

.wtsh-filter-field select:focus{
  outline:2px solid rgba(31,31,29,.16);
  outline-offset:1px;
  border-color:#aaa49a;
}

.wtsh-filter-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:2px;
}

.wtsh-filter-submit{
  flex:1;
  min-height:37px;
  padding:8px 12px;
  border:1px solid #22211f;
  border-radius:9px;
  color:#fff;
  background:#22211f;
  cursor:pointer;
  font:inherit;
  font-size:.78rem;
  font-weight:750;
  transition:background .18s ease,transform .18s ease;
}

.wtsh-filter-submit:hover{
  background:#3b3935;
  transform:translateY(-1px);
}

.wtsh-filter-reset{
  padding:7px 2px;
  color:#777269;
  text-decoration:none;
  font-size:.72rem;
  font-weight:700;
}

.wtsh-filter-reset:hover{
  color:#22211f;
}

.wtsh-active-filters{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #e7e4de;
}

.wtsh-active-filter{
  display:inline-flex;
  align-items:center;
  padding:4px 7px;
  border-radius:999px;
  color:#5e574b;
  background:#eee9df;
  font-size:.65rem;
  font-weight:750;
}

/* Keep filter usable on mobile even when the rest of sidebar becomes compact */
@media(max-width:780px){
  .wtsh-product-filter{
    min-width:235px;
    margin:0 8px 0 0;
    padding:10px;
  }

  .wtsh-filter-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .wtsh-filter-actions{
    grid-column:1 / -1;
  }

  .wtsh-active-filters{
    margin-top:8px;
  }
}

@media(max-width:520px){
  .wtsh-filter-form{
    grid-template-columns:1fr;
  }

  .wtsh-filter-actions{
    grid-column:auto;
  }
}


/* v2.5 — keep filter option labels clean */
.wtsh-filter-field select option {
  color: #353431;
  background: #fff;
}


/* =========================================================
   28. PARTNERS — same card/detail language as Products
   ========================================================= */
.wtsh-partner-grid .wtsh-card{
  display:flex;
  flex-direction:column;
}

.wtsh-partner-grid .wtsh-img-box{
  aspect-ratio:4 / 4.6;
  background:#f7f5f1;
}

.wtsh-partner-grid .wtsh-img-box img{
  object-fit:contain;
  padding:12px;
}

.wtsh-partner-card-details{
  min-height:5.6em;
}

.wtsh-partner-card-row{
  display:flex;
  align-items:flex-start;
  gap:7px;
  margin-bottom:6px;
}

.wtsh-partner-card-icon{
  width:14px;
  flex:0 0 14px;
  color:#9a9387;
  text-align:center;
}

.wtsh-partner-hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:clamp(30px,4.5vw,64px);
  align-items:start;
}

.wtsh-partner-main-image{
  width:100%;
  aspect-ratio:4 / 4.6;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid var(--wtsh-line);
  border-radius:18px;
  background:#f7f5f1;
}

.wtsh-partner-main-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  padding:clamp(18px,4vw,42px);
}

.wtsh-partner-placeholder{
  color:#aaa59c;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
}

.wtsh-partner-summary{
  position:sticky;
  top:24px;
  padding-top:4px;
}

.wtsh-partner-title{
  margin-top:12px;
}

.wtsh-partner-location{
  margin-top:10px;
}

.wtsh-partner-specs{
  margin-top:26px;
}

.wtsh-partner-hours{
  grid-column:1 / -1;
}

.wtsh-partner-map-button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:22px;
  padding:13px 15px;
  border:1px solid #22211f;
  border-radius:12px;
  color:#fff;
  background:#22211f;
  text-decoration:none;
  font-size:.86rem;
  font-weight:750;
  transition:transform .18s ease,background .18s ease;
}

.wtsh-partner-map-button:hover{
  transform:translateY(-1px);
  background:#3b3935;
}

.wtsh-partner-about{
  margin-top:58px;
}

@media(max-width:900px){
  .wtsh-partner-hero{
    grid-template-columns:1fr;
  }

  .wtsh-partner-summary{
    position:static;
  }
}

@media(max-width:780px){
  .wtsh-partner-main-image{
    border-radius:14px;
  }

  .wtsh-partner-about{
    margin-top:42px;
  }
}


/* =========================================================
   29. PARTNER HOURS / CLOSED DAYS — v2.7
   ========================================================= */
.wtsh-partner-mini-label{
  display:block;
  margin-bottom:2px;
  color:#8c857a;
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.045em;
  text-transform:uppercase;
}

.wtsh-partner-card-row + .wtsh-partner-card-row{
  margin-top:7px;
}

.wtsh-partner-card-details{
  min-height:7.2em;
}


/* =========================================================
   30. PARTNER STRUCTURED EDITOR DATA — v2.8
   ========================================================= */
.wtsh-partner-specs .wtsh-partner-hours dd{
  white-space:normal;
}

.wtsh-partner-about .wtsh-rich-text{
  max-width:900px;
}


/* =========================================================
   31. AGENCY BRANDS — v2.9
   Same visual language as Products / Partners
   ========================================================= */
.wtsh-brand-grid .wtsh-card{
  display:flex;
  flex-direction:column;
}

.wtsh-brand-grid .wtsh-img-box{
  aspect-ratio:4 / 4.6;
  background:#f7f5f1;
}

.wtsh-brand-grid .wtsh-img-box img{
  object-fit:contain;
  padding:clamp(14px,2.5vw,28px);
}

.wtsh-brand-card-description{
  min-height:5.2em;
  color:#6c6861;
  line-height:1.7;
}

.wtsh-brand-hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:clamp(30px,4.5vw,64px);
  align-items:start;
}

.wtsh-brand-main-image{
  width:100%;
  aspect-ratio:4 / 4.6;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid var(--wtsh-line);
  border-radius:18px;
  background:#f7f5f1;
}

.wtsh-brand-main-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  padding:clamp(24px,5vw,60px);
}

.wtsh-brand-placeholder{
  color:#aaa59c;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
}

.wtsh-brand-summary{
  position:sticky;
  top:24px;
  padding-top:4px;
}

.wtsh-brand-title{
  margin-top:12px;
}

.wtsh-brand-lead{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--wtsh-line);
  color:#68645d;
  font-size:1rem;
  line-height:1.85;
}

.wtsh-brand-about{
  margin-top:58px;
}

@media(max-width:900px){
  .wtsh-brand-hero{
    grid-template-columns:1fr;
  }

  .wtsh-brand-summary{
    position:static;
  }
}

@media(max-width:780px){
  .wtsh-brand-main-image{
    border-radius:14px;
  }

  .wtsh-brand-about{
    margin-top:42px;
  }
}


/* =========================================================
   32. PARTNER REGION SIDEBAR — v3.1
   ========================================================= */
.wtsh-partner-region-sidebar .wtsh-side-subtitle{
  margin-top:22px;
}

.wtsh-partner-region-sidebar .wtsh-side-btn.active{
  background:#22211f;
  color:#fff;
}



/* =========================================================
   33. PRODUCT STATUS FILTER — v3.4
   ========================================================= */
.wtsh-product-filter .wtsh-filter-field + .wtsh-filter-field{
  margin-top:1px;
}

@media(max-width:780px){
  .wtsh-product-filter .wtsh-filter-form{
    grid-template-columns:repeat(3,minmax(150px,1fr));
  }

  .wtsh-product-filter .wtsh-filter-actions{
    grid-column:1 / -1;
  }
}

@media(max-width:620px){
  .wtsh-product-filter .wtsh-filter-form{
    grid-template-columns:1fr;
  }

  .wtsh-product-filter .wtsh-filter-actions{
    grid-column:auto;
  }
}


/* =========================================================
   34. EDITORIAL / MAGAZINE REFINEMENT — v3.5
   Softer, more artistic front-end presentation
   ========================================================= */
:root{
  --wtsh-bg:#f5f3ee;
  --wtsh-surface:#fffdfa;
  --wtsh-surface-soft:#f4efe7;
  --wtsh-text:#1f1d1a;
  --wtsh-text-soft:#6f685d;
  --wtsh-line:rgba(68,53,34,.09);
  --wtsh-shadow-sm:0 12px 28px rgba(26,21,14,.045);
  --wtsh-shadow:0 22px 55px rgba(24,20,16,.08);
  --wtsh-radius:24px;
  --wtsh-radius-lg:34px;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(227,214,194,.22), transparent 24%),
    linear-gradient(180deg, #f8f6f1 0%, #f5f3ee 36%, #f4f1ea 100%);
  color:var(--wtsh-text);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    radial-gradient(rgba(88,64,34,.05) .55px, transparent .8px);
  background-size:auto, 18px 18px;
  mix-blend-mode:multiply;
}

.wtsh-layout{
  gap:42px;
}

.wtsh-content-area{
  min-width:0;
}

.wtsh-sidebar{
  padding:18px 16px;
  border:1px solid rgba(95,76,53,.08);
  border-radius:28px;
  background:rgba(255,251,245,.78);
  box-shadow:0 18px 42px rgba(39,28,17,.05);
  backdrop-filter:blur(14px);
}

.wtsh-side-title{
  color:#9f8f75;
  letter-spacing:.18em;
}

.wtsh-side-btn{
  margin:5px 0;
  padding:12px 14px;
  border-radius:16px;
  color:#655f57;
}

.wtsh-side-btn:hover{
  background:rgba(230,220,206,.42);
  color:var(--wtsh-text);
}

.wtsh-side-btn.active{
  background:rgba(230,220,206,.64);
  color:var(--wtsh-text);
  font-weight:750;
  box-shadow:inset 0 0 0 1px rgba(121,95,62,.06);
}

.wtsh-eyebrow{
  color:#ab9574;
  letter-spacing:.19em;
}

.wtsh-panel-title,
.wtsh-section-heading h2,
.wtsh-product-title,
.wtsh-event-title,
.wtsh-news-single-header h1,
.wtsh-brand-title,
.wtsh-partner-detail-title,
.wtsh-member-info h2{
  font-family: Georgia, 'Times New Roman', 'Noto Serif TC', serif;
  letter-spacing:-.03em;
  font-weight:700;
}

.wtsh-panel-title{
  margin-bottom:30px;
  padding-bottom:18px;
  font-size:clamp(1.8rem,2.9vw,2.75rem);
}

.wtsh-panel-title::after{
  width:74px;
  height:2px;
  background:linear-gradient(90deg, #c4a575 0%, rgba(196,165,117,0) 100%);
}

.wtsh-grid{
  gap:28px;
}

.wtsh-card{
  position:relative;
  padding:18px;
  border:1px solid rgba(101,79,52,.06);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(253,250,245,.96) 100%);
  box-shadow:0 18px 48px rgba(30,24,18,.055);
  isolation:isolate;
}

.wtsh-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(145deg, rgba(211,188,153,.32), rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(160,132,95,.12));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.55;
}

.wtsh-card:hover{
  transform:translateY(-6px);
  border-color:rgba(167,135,92,.12);
  box-shadow:0 26px 58px rgba(28,22,17,.09);
}

.wtsh-img-box,
.wtsh-gallery-item,
.wtsh-event-cover,
.wtsh-news-single-cover,
.wtsh-brand-main-image,
.wtsh-member-photo{
  border:none;
  border-radius:22px;
  background:linear-gradient(180deg, #f6f1e8 0%, #f1ece4 100%);
  box-shadow:inset 0 0 0 1px rgba(115,89,58,.05);
}

.wtsh-img-box{
  margin-bottom:20px;
}

.wtsh-img-box img,
.wtsh-gallery-item img,
.wtsh-brand-main-image img{
  background:transparent;
}

.wtsh-card h3{
  margin:4px 4px 12px;
  font-family: Georgia, 'Times New Roman', 'Noto Serif TC', serif;
  font-size:1.22rem;
  line-height:1.42;
  font-weight:700;
}

.wtsh-details,
.wtsh-news-card-summary,
.wtsh-event-card-details,
.wtsh-brand-card-description,
.wtsh-member-bio,
.wtsh-page-content,
.wtsh-product-summary,
.wtsh-news-single-content{
  color:#6f675d;
}

.wtsh-card-footer{
  margin-top:18px;
  padding:16px 4px 4px;
  border-top:1px solid rgba(129,104,72,.08);
}

.wtsh-view-link,
.wtsh-section-heading > a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 0;
  border-bottom:1px solid rgba(155,126,87,.5);
  color:#49433b;
  text-decoration:none;
}

.wtsh-view-link::after,
.wtsh-section-heading > a::after,
.wtsh-primary-btn::after{
  content:"↗";
  font-size:.82em;
  line-height:1;
}

.wtsh-primary-btn{
  gap:10px;
  padding:12px 18px;
  border:none;
  border-radius:999px;
  background:#23211d;
  color:#fff!important;
  box-shadow:0 14px 28px rgba(35,33,29,.18);
}

.wtsh-primary-btn:hover{
  transform:translateY(-2px);
}

.wtsh-card-chips,
.wtsh-chips{
  gap:8px;
}

.wtsh-chip,
.wtsh-status,
.wtsh-event-status{
  border:none;
  box-shadow:inset 0 0 0 1px rgba(121,99,70,.06);
}

.wtsh-home-intro{
  position:relative;
  min-height:420px;
  border:none;
  border-radius:34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(249,245,238,.97) 54%, rgba(241,234,224,.95) 100%);
  box-shadow:0 26px 70px rgba(20,18,14,.07);
}

.wtsh-home-intro::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:
    radial-gradient(circle at 22% 24%, rgba(204,184,152,.24), transparent 24%),
    radial-gradient(circle at 82% 70%, rgba(216,204,184,.23), transparent 22%);
}

.wtsh-home-intro-copy,
.wtsh-home-intro-media{
  position:relative;
  z-index:1;
}

.wtsh-home-intro-copy{
  padding:clamp(38px,6vw,82px);
}

.wtsh-home-intro h1{
  font-family: Georgia, 'Times New Roman', 'Noto Serif TC', serif;
  line-height:.96;
  letter-spacing:-.05em;
}

.wtsh-home-intro p{
  max-width:620px;
  color:#655e55;
}

.wtsh-home-intro-media{
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}

.wtsh-page-content,
.wtsh-news-single-cover,
.wtsh-product-specs,
.wtsh-product-section,
.wtsh-event-content,
.wtsh-brand-about,
.wtsh-partner-about{
  border:1px solid rgba(111,90,62,.07);
  border-radius:28px;
  background:rgba(255,252,247,.82);
  box-shadow:0 18px 42px rgba(35,28,20,.04);
}

.wtsh-page-content,
.wtsh-event-content,
.wtsh-brand-about,
.wtsh-partner-about{
  padding:30px;
}

.wtsh-product-summary,
.wtsh-event-summary,
.wtsh-brand-summary{
  padding:10px 0;
}

.wtsh-footer{
  margin-top:84px;
  padding:36px 0 112px;
  border-top:1px solid rgba(128,100,67,.11);
  color:#7a7368;
}

.wtsh-floating-warning{
  padding:14px 18px;
  background:rgba(24,22,19,.88);
  letter-spacing:.12em;
}

#wtsh-back-to-top{
  border:none;
  box-shadow:0 16px 32px rgba(29,25,20,.16);
  background:rgba(255,250,243,.95);
}

@media (max-width: 1100px){
  .wtsh-layout{
    gap:26px;
  }
}

@media (max-width: 780px){
  .wtsh-card{
    padding:15px;
    border-radius:24px;
  }

  .wtsh-home-intro{
    min-height:auto;
    border-radius:28px;
  }

  .wtsh-page-content,
  .wtsh-event-content,
  .wtsh-brand-about,
  .wtsh-partner-about{
    padding:22px;
    border-radius:24px;
  }
}


/* =========================================================
   35. JAPANESE GALLERY MAGAZINE TEMPLATE — v3.6
   A quieter, more editorial, Japanese gallery-inspired theme
   ========================================================= */
:root{
  --wtsh-bg:#f7f3ec;
  --wtsh-surface:#fffdf9;
  --wtsh-surface-soft:#f4eee4;
  --wtsh-text:#1f1c19;
  --wtsh-text-soft:#6b645b;
  --wtsh-line:rgba(99,76,50,.08);
  --wtsh-accent:#b89a67;
  --wtsh-accent-soft:#d5c3a3;
  --wtsh-shadow:0 22px 58px rgba(34,26,19,.06);
  --wtsh-shadow-sm:0 12px 30px rgba(34,26,19,.04);
  --wtsh-radius:26px;
  --wtsh-radius-lg:38px;
}

body{
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.86), transparent 30%),
    radial-gradient(circle at 87% 18%, rgba(214,197,171,.18), transparent 22%),
    linear-gradient(180deg, #faf8f2 0%, #f6f2ea 42%, #f4efe6 100%);
  color:var(--wtsh-text);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    radial-gradient(rgba(96,73,43,.07) .55px, transparent .8px);
  background-size:auto, 18px 18px;
  mix-blend-mode:multiply;
}

.wtsh-header{
  background:rgba(250,247,241,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(117,91,58,.06);
}

.wtsh-nav-menu > li > a{
  position:relative;
  font-weight:600;
  letter-spacing:.02em;
}

.wtsh-nav-menu > li.current-menu-item > a::after,
.wtsh-nav-menu > li.current_page_item > a::after,
.wtsh-nav-menu > li > a:hover::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  width:28px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(184,154,103,.95), rgba(184,154,103,.35));
  transform:translateX(-50%);
}

.wtsh-home-intro{
  overflow:hidden;
  border-radius:40px;
  background:
    linear-gradient(125deg, rgba(255,255,255,.98) 0%, rgba(248,243,235,.98) 55%, rgba(238,231,219,.96) 100%);
  box-shadow:0 28px 74px rgba(30,24,18,.075);
}

.wtsh-home-intro::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, transparent 0, transparent 69%, rgba(193,168,129,.08) 69%, rgba(193,168,129,.08) 69.4%, transparent 69.4%);
  opacity:.8;
}

.wtsh-home-intro-copy{
  padding:clamp(42px,6vw,88px);
}

.wtsh-home-intro-copy .wtsh-overline,
.wtsh-home-intro-copy .wtsh-eyebrow{
  color:#b49a73;
  letter-spacing:.22em;
}

.wtsh-home-intro h1{
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size:clamp(3.6rem,7vw,6.4rem);
  line-height:.92;
  letter-spacing:-.055em;
  max-width:6.2ch;
  margin-bottom:22px;
}

.wtsh-home-intro p{
  max-width:520px;
  color:#655d54;
  font-size:1.08rem;
  line-height:1.9;
}

.wtsh-home-intro .wtsh-primary-btn{
  margin-top:16px;
  min-width:180px;
  background:linear-gradient(135deg, #c5a46c 0%, #b18e55 100%);
  color:#fff!important;
  box-shadow:0 18px 34px rgba(177,142,85,.22);
}

.wtsh-home-intro-media{
  position:relative;
}

.wtsh-home-intro-media::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:1px;
  background:linear-gradient(180deg, transparent 0%, rgba(177,142,85,.18) 22%, rgba(177,142,85,.18) 78%, transparent 100%);
  z-index:2;
}

.wtsh-home-intro-media img,
.wtsh-home-intro-media picture,
.wtsh-home-intro-media .wtsh-img-box{
  border-top-left-radius:220px;
  border-bottom-left-radius:0;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}

.wtsh-panel-title,
.wtsh-section-heading h2,
.wtsh-product-title,
.wtsh-event-title,
.wtsh-news-single-header h1,
.wtsh-brand-title,
.wtsh-partner-detail-title,
.wtsh-member-info h2{
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-weight:700;
  letter-spacing:-.035em;
  color:#24201b;
}

.wtsh-panel-title{
  margin-bottom:26px;
  padding-bottom:16px;
}

.wtsh-panel-title::after{
  width:86px;
  height:2px;
  background:linear-gradient(90deg, rgba(184,154,103,.95), rgba(184,154,103,0));
}

.wtsh-section-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
  padding-left:18px;
  position:relative;
}

.wtsh-section-heading::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:2px;
  height:26px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(184,154,103,.95), rgba(184,154,103,.15));
}

.wtsh-section-heading h2{
  margin:0;
}

.wtsh-section-heading > a{
  color:#695e4f;
  font-size:.95rem;
}

.wtsh-card{
  position:relative;
  border:none;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(253,249,242,.96));
  box-shadow:0 22px 54px rgba(34,25,18,.055);
  overflow:hidden;
}

.wtsh-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), transparent 18%),
    linear-gradient(145deg, rgba(207,186,153,.18), transparent 18%, transparent 82%, rgba(207,186,153,.12));
  opacity:.9;
}

.wtsh-card:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 64px rgba(34,25,18,.08);
}

.wtsh-img-box,
.wtsh-gallery-item,
.wtsh-event-cover,
.wtsh-news-single-cover,
.wtsh-brand-main-image,
.wtsh-member-photo{
  border:none;
  border-radius:22px;
  background:
    linear-gradient(180deg, #f6f1e9 0%, #f1ece4 100%);
  box-shadow:inset 0 0 0 1px rgba(110,86,54,.05);
}

.wtsh-card h3{
  margin:8px 4px 12px;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size:1.24rem;
  line-height:1.42;
  font-weight:700;
}

.wtsh-details,
.wtsh-news-card-summary,
.wtsh-event-card-details,
.wtsh-brand-card-description,
.wtsh-member-bio,
.wtsh-page-content,
.wtsh-product-summary,
.wtsh-news-single-content{
  color:#6e665b;
  line-height:1.8;
}

.wtsh-card-footer{
  margin-top:18px;
  padding:16px 4px 4px;
  border-top:1px solid rgba(126,99,66,.08);
}

.wtsh-view-link{
  color:#4f463c;
  font-weight:600;
}

.wtsh-view-link::after{
  content:"→";
  font-size:1em;
}

.wtsh-chip,
.wtsh-status,
.wtsh-event-status{
  border:none;
  border-radius:999px;
  background:rgba(230,220,202,.72);
  color:#655742;
  box-shadow:inset 0 0 0 1px rgba(112,86,57,.05);
}

.wtsh-sidebar{
  background:rgba(255,251,245,.82);
  border:none;
  border-radius:30px;
  box-shadow:0 18px 42px rgba(29,23,18,.045);
  backdrop-filter:blur(14px);
}

.wtsh-side-title{
  color:#9f8c71;
  letter-spacing:.18em;
}

.wtsh-side-btn{
  border-radius:16px;
  color:#665e54;
}

.wtsh-side-btn:hover{
  background:rgba(231,221,207,.5);
  color:#221f1a;
}

.wtsh-side-btn.active{
  background:rgba(229,216,197,.78);
  color:#221f1a;
  font-weight:700;
  box-shadow:inset 0 0 0 1px rgba(126,96,61,.05);
}

.wtsh-page-content,
.wtsh-news-single-cover,
.wtsh-product-specs,
.wtsh-product-section,
.wtsh-event-content,
.wtsh-brand-about,
.wtsh-partner-about{
  border:none;
  border-radius:30px;
  background:rgba(255,251,245,.9);
  box-shadow:0 18px 42px rgba(35,28,20,.045);
}

.wtsh-page-content,
.wtsh-event-content,
.wtsh-brand-about,
.wtsh-partner-about{
  padding:32px;
}

.wtsh-product-summary,
.wtsh-brand-summary,
.wtsh-event-summary{
  position:relative;
  padding-top:12px;
}

.wtsh-product-summary::before,
.wtsh-brand-summary::before,
.wtsh-event-summary::before{
  content:"";
  display:block;
  width:72px;
  height:2px;
  margin-bottom:18px;
  background:linear-gradient(90deg, rgba(184,154,103,.9), rgba(184,154,103,0));
}

.wtsh-footer{
  margin-top:88px;
  padding:34px 0 112px;
  border-top:1px solid rgba(122,95,61,.1);
  background:transparent;
  color:#7d7366;
}

.wtsh-floating-warning{
  background:rgba(24,22,19,.9);
  color:#fff;
  letter-spacing:.18em;
  border-top:none;
}

#wtsh-back-to-top{
  border:none;
  background:rgba(255,252,247,.96);
  box-shadow:0 18px 36px rgba(28,24,19,.12);
}

@media (max-width: 1100px){
  .wtsh-home-intro h1{
    max-width:none;
    font-size:clamp(3rem,10vw,4.8rem);
  }

  .wtsh-home-intro-media img,
  .wtsh-home-intro-media picture,
  .wtsh-home-intro-media .wtsh-img-box{
    border-top-left-radius:120px;
  }
}

@media (max-width: 780px){
  .wtsh-home-intro{
    border-radius:30px;
  }

  .wtsh-home-intro::after{
    display:none;
  }

  .wtsh-home-intro-copy{
    padding:28px 24px 18px;
  }

  .wtsh-home-intro-media::before{
    display:none;
  }

  .wtsh-home-intro-media img,
  .wtsh-home-intro-media picture,
  .wtsh-home-intro-media .wtsh-img-box{
    border-top-left-radius:0;
  }

  .wtsh-card,
  .wtsh-page-content,
  .wtsh-event-content,
  .wtsh-brand-about,
  .wtsh-partner-about{
    border-radius:24px;
  }

  .wtsh-page-content,
  .wtsh-event-content,
  .wtsh-brand-about,
  .wtsh-partner-about{
    padding:24px;
  }
}


/* =========================================================
   Agency Brand structured editor frontend — v3.6.2
   ========================================================= */
.wtsh-brand-website-button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:22px;
  padding:13px 15px;
  border:1px solid #22211f;
  border-radius:12px;
  color:#fff;
  background:#22211f;
  text-decoration:none;
  font-size:.86rem;
  font-weight:750;
  transition:transform .18s ease,background .18s ease;
}

.wtsh-brand-website-button:hover{
  transform:translateY(-1px);
  background:#3b3935;
}


/* =========================================================
   WATASHI BRIGHT 4.0 — JAPANESE EDITORIAL
   Structural redesign inspired by modern whisky brand
   storytelling, expressed through Japanese editorial design.
   ========================================================= */

:root{
  --wtsh-max-width:1480px;
  --wtsh-sidebar-width:245px;

  --w4-paper:#f2eee5;
  --w4-paper-2:#faf7f1;
  --w4-paper-3:#e8e0d4;
  --w4-ink:#211f1b;
  --w4-ink-soft:#6c665d;
  --w4-gold:#9f8057;
  --w4-gold-soft:#c5ae88;
  --w4-indigo:#4c5a60;
  --w4-line:rgba(76,61,43,.12);
  --w4-line-soft:rgba(76,61,43,.07);
  --w4-dark:#24231f;
  --w4-shadow:0 22px 70px rgba(37,30,22,.07);
}

body.wtsh-v4{
  background:
    radial-gradient(circle at 12% 4%,rgba(255,255,255,.9),transparent 26%),
    linear-gradient(180deg,#f7f4ed 0%,var(--w4-paper) 100%);
  color:var(--w4-ink);
}

body.wtsh-v4::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.15;
  background-image:radial-gradient(rgba(75,55,35,.13) .45px,transparent .65px);
  background-size:18px 18px;
  mix-blend-mode:multiply;
}

.wtsh-kicker-v4{
  display:block;
  color:var(--w4-gold);
  font-size:.69rem;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.wtsh-v4 h1,
.wtsh-v4 h2,
.wtsh-v4 h3,
.wtsh-v4 .wtsh-product-title,
.wtsh-v4 .wtsh-event-title,
.wtsh-v4 .wtsh-news-single-header h1{
  font-family:Georgia,"Yu Mincho","Hiragino Mincho ProN","Noto Serif TC",serif;
  color:var(--w4-ink);
}

/* ---------- top notice ---------- */
.wtsh-v4-notice{
  padding:7px 18px!important;
  background:#262521!important;
  color:#f5f0e7!important;
  font-size:.72rem!important;
  letter-spacing:.11em!important;
}

/* ---------- header ---------- */
.wtsh-site-header-v4{
  position:sticky;
  top:0;
  z-index:90;
  background:rgba(248,244,236,.92);
  border-bottom:1px solid var(--w4-line-soft);
  backdrop-filter:blur(16px);
}

.wtsh-header-brand-row{
  width:min(calc(100% - 48px),var(--wtsh-max-width));
  min-height:76px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.wtsh-header-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  color:var(--w4-ink);
  font-family:Georgia,"Yu Mincho",serif;
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:.08em;
}

.wtsh-header-brand img{
  width:auto;
  max-width:190px;
  height:48px;
  object-fit:contain;
  object-position:left center;
}

.wtsh-header-utility{
  display:flex;
  align-items:center;
  gap:14px;
  color:#71695f;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.06em;
}

.wtsh-header-utility a{
  color:inherit;
  text-decoration:none;
}

.wtsh-site-header-v4 .wtsh-lang-switch,
.wtsh-site-header-v4 .wtsh-lang-switch span{
  color:#8b8277;
}

.wtsh-site-header-v4 .wtsh-lang-switch span.active,
.wtsh-site-header-v4 .wtsh-lang-switch span:hover{
  color:var(--w4-ink);
}

.wtsh-topbar-v4{
  width:min(calc(100% - 48px),var(--wtsh-max-width));
  margin:0 auto;
  padding:0;
  border:0;
  border-top:1px solid var(--w4-line-soft);
  border-radius:0;
  background:transparent;
  box-shadow:none;
  transform:none;
  overflow:visible;
  backdrop-filter:none;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu{
  gap:0;
  align-items:center;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item{
  flex:0 0 auto;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
  min-width:0;
  padding:15px 24px 14px 0;
  margin-right:26px;
  border-radius:0;
  color:#5f594f;
  background:transparent!important;
  font-size:.82rem;
  font-weight:650;
  letter-spacing:.04em;
  position:relative;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a:hover,
.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-item>a,
.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-ancestor>a,
.wtsh-topbar-v4 .wtsh-primary-menu .current_page_item>a{
  color:var(--w4-ink);
}

.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-item>a::after,
.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-ancestor>a::after,
.wtsh-topbar-v4 .wtsh-primary-menu .current_page_item>a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:8px;
  width:28px;
  height:1px;
  background:var(--w4-gold);
}

.wtsh-topbar-v4 .sub-menu{
  top:calc(100% + 1px);
  left:0;
  transform:translateY(-6px);
  border:1px solid var(--w4-line);
  border-radius:2px;
  background:rgba(250,247,241,.98);
  box-shadow:var(--w4-shadow);
}

.wtsh-topbar-v4 .menu-item:hover>.sub-menu,
.wtsh-topbar-v4 .menu-item:focus-within>.sub-menu{
  transform:translateY(0);
}

/* ---------- homepage ---------- */
.wtsh-home-v4{
  width:min(calc(100% - 44px),var(--wtsh-max-width));
  margin:28px auto 0;
}

.wtsh-home-hero-v4{
  position:relative;
  min-height:650px;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(22,20,17,.76),rgba(22,20,17,.24)),
    var(--wtsh-home-hero) center / cover no-repeat;
  box-shadow:var(--w4-shadow);
}

.wtsh-home-hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.2)),
    radial-gradient(circle at 74% 28%,rgba(255,255,255,.08),transparent 22%);
}

.wtsh-home-hero-copy-v4{
  position:relative;
  z-index:2;
  width:min(720px,64%);
  min-height:650px;
  padding:78px 70px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#f7f2e9;
}

.wtsh-home-hero-copy-v4 .wtsh-kicker-v4{
  color:#d6bd95;
  margin-bottom:22px;
}

.wtsh-home-hero-copy-v4 h1{
  margin:0;
  color:#fffaf1;
  font-size:clamp(3.3rem,6vw,6rem);
  line-height:1.02;
  letter-spacing:-.045em;
  max-width:11ch;
}

.wtsh-home-hero-copy-v4 p{
  max-width:600px;
  margin:28px 0 0;
  color:rgba(255,250,241,.8);
  font-size:1rem;
  line-height:1.9;
}

.wtsh-home-hero-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:32px;
}

.wtsh-button-v4{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 20px;
  border:1px solid var(--w4-ink);
  background:var(--w4-ink);
  color:#fff!important;
  text-decoration:none;
  font-size:.8rem;
  font-weight:750;
  letter-spacing:.06em;
}

.wtsh-button-v4:hover{
  background:#38352f;
}

.wtsh-button-v4-light{
  border-color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.94);
  color:#28251f!important;
}

.wtsh-text-link-v4{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:inherit;
  text-decoration:none;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.05em;
}

.wtsh-home-hero-copy-v4 .wtsh-text-link-v4{
  color:#fff6e8;
}

.wtsh-home-hero-mark-v4{
  position:absolute;
  z-index:2;
  top:58px;
  right:58px;
  width:150px;
  height:150px;
  display:grid;
  place-items:center;
  padding:20px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:50%;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(7px);
}

.wtsh-home-hero-mark-v4 img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.wtsh-home-section-v4{
  margin-top:104px;
}

.wtsh-home-manifesto-v4{
  display:grid;
  grid-template-columns:80px minmax(0,.95fr) minmax(0,1.05fr);
  gap:38px;
  align-items:start;
  padding:0 18px;
}

.wtsh-section-index-v4{
  padding-top:8px;
  color:#a79883;
  font-size:.72rem;
  letter-spacing:.14em;
}

.wtsh-section-title-v4 h2{
  margin:12px 0 0;
  max-width:15ch;
  font-size:clamp(2rem,3.8vw,3.6rem);
  line-height:1.2;
  letter-spacing:-.03em;
}

.wtsh-manifesto-copy-v4{
  padding-top:24px;
  border-top:1px solid var(--w4-line);
  color:var(--w4-ink-soft);
  font-size:.97rem;
  line-height:2;
}

.wtsh-manifesto-copy-v4 p:first-child{margin-top:0}

.wtsh-section-heading-v4{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:32px;
}

.wtsh-section-heading-v4 h2{
  margin:8px 0 0;
  font-size:clamp(2rem,3vw,3.1rem);
  line-height:1.2;
  letter-spacing:-.03em;
}

.wtsh-feature-product-v4{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  min-height:590px;
  background:var(--w4-paper-2);
  box-shadow:var(--w4-shadow);
}

.wtsh-feature-product-image-v4{
  display:grid;
  place-items:center;
  min-height:590px;
  padding:44px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.9),rgba(232,224,212,.72));
}

.wtsh-feature-product-image-v4 img{
  width:100%;
  height:100%;
  max-height:520px;
  object-fit:contain;
}

.wtsh-feature-product-copy-v4{
  padding:58px 54px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.wtsh-feature-product-copy-v4 h3{
  margin:12px 0 6px;
  font-size:clamp(2rem,3vw,3.2rem);
  line-height:1.15;
}

.wtsh-feature-product-copy-v4 h3 a{
  color:inherit;
  text-decoration:none;
}

.wtsh-feature-distillery-v4{
  margin:0 0 28px;
  color:#7b7165;
  font-size:1rem;
}

.wtsh-feature-specs-v4{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin:18px 0 26px;
  border-top:1px solid var(--w4-line);
  border-bottom:1px solid var(--w4-line);
}

.wtsh-feature-specs-v4 div{
  padding:16px 14px 16px 0;
}

.wtsh-feature-specs-v4 span{
  display:block;
  color:#9a8b78;
  font-size:.63rem;
  font-weight:800;
  letter-spacing:.12em;
}

.wtsh-feature-specs-v4 strong{
  display:block;
  margin-top:6px;
  font-size:.9rem;
}

.wtsh-feature-description-v4{
  margin-bottom:28px;
  color:var(--w4-ink-soft);
  line-height:1.9;
}

/* ---------- product cards: compact editorial ---------- */
.wtsh-product-grid-v4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:42px 24px;
}

.wtsh-product-grid-v4 .wtsh-card-product{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.wtsh-product-grid-v4 .wtsh-card-product::before{display:none}

.wtsh-product-grid-v4 .wtsh-card-image{
  aspect-ratio:4/5;
  margin:0 0 18px;
  padding:18px;
  border:0;
  border-radius:0;
  background:linear-gradient(145deg,#faf8f3,#e9e2d7);
  box-shadow:0 14px 32px rgba(45,35,24,.05);
}

.wtsh-product-grid-v4 .wtsh-card-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.wtsh-product-grid-v4 .wtsh-card-chips{
  margin:0 0 10px;
}

.wtsh-product-grid-v4 .wtsh-chip{
  padding:3px 7px;
  border:0;
  border-radius:0;
  background:#e7dfd2;
  color:#665a4b!important;
  font-size:.61rem!important;
}

.wtsh-product-grid-v4 .wtsh-card-product h3{
  min-height:0;
  margin:0 0 8px;
  font-size:1.06rem;
  line-height:1.42;
}

.wtsh-product-grid-v4 .wtsh-details{
  margin:0;
  color:#7c746a;
  font-size:.77rem;
  line-height:1.75;
}

.wtsh-product-grid-v4 .wtsh-product-ratings{
  margin-top:10px;
  padding-top:8px;
  border-top:1px solid var(--w4-line-soft);
}

.wtsh-product-grid-v4 .wtsh-rating-badge{
  padding:4px 6px;
  border-radius:0;
  background:transparent;
}

.wtsh-product-grid-v4 .wtsh-card-footer{
  margin-top:12px;
  padding:12px 0 0;
  border-top:1px solid var(--w4-line-soft);
  align-items:end;
}

.wtsh-product-grid-v4 .wtsh-price{
  font-size:.92rem;
}

.wtsh-product-grid-v4 .wtsh-status{
  border-radius:0;
  font-size:.6rem;
}

.wtsh-product-grid-v4 .wtsh-view-link{
  border:0;
  color:#615644;
  font-size:.7rem;
  letter-spacing:.04em;
}

.wtsh-product-grid-v4 .wtsh-view-link::after{content:" ↗"}

.wtsh-series-grid-v4{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--w4-line);
  border-bottom:1px solid var(--w4-line);
}

.wtsh-series-tile-v4{
  position:relative;
  min-height:260px;
  padding:30px;
  border-right:1px solid var(--w4-line);
  color:var(--w4-ink);
  text-decoration:none;
}

.wtsh-series-tile-v4:last-child{border-right:0}

.wtsh-series-number-v4{
  color:#ab9a83;
  font-size:.67rem;
  letter-spacing:.15em;
}

.wtsh-series-tile-v4 h3{
  margin:72px 0 10px;
  font-size:1.55rem;
}

.wtsh-series-tile-v4 p{
  color:#7b7369;
  line-height:1.8;
  font-size:.84rem;
}

.wtsh-series-arrow-v4{
  position:absolute;
  right:26px;
  top:26px;
  color:var(--w4-gold);
}

/* ---------- journal ---------- */
.wtsh-news-grid-v4{
  display:grid;
  grid-template-columns:1.25fr .75fr .75fr;
  gap:24px;
}

.wtsh-news-grid-v4 .wtsh-card-news{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.wtsh-news-grid-v4 .wtsh-card-news::before{display:none}

.wtsh-news-grid-v4 .wtsh-card-news .wtsh-card-image{
  margin:0 0 18px;
  border-radius:0;
  aspect-ratio:4/3;
}

.wtsh-news-grid-v4 .wtsh-card-news:first-child .wtsh-card-image{
  aspect-ratio:16/10;
}

.wtsh-news-grid-v4 .wtsh-card-news h3{
  margin:10px 0;
}

.wtsh-news-grid-v4 .wtsh-card-footer{
  border-top:1px solid var(--w4-line-soft);
}

.wtsh-news-grid-v4-archive{
  grid-template-columns:repeat(3,1fr);
}

.wtsh-news-grid-v4-archive .wtsh-card-news:first-child{
  grid-column:span 2;
}

/* ---------- network ---------- */
.wtsh-home-network-v4{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  padding:56px;
  background:var(--w4-dark);
  color:#f4efe6;
}

.wtsh-home-network-v4 h2{
  margin:8px 0 26px;
  color:#fffaf1;
  font-size:2.2rem;
}

.wtsh-home-network-v4 .wtsh-kicker-v4{color:#ccb28a}
.wtsh-home-network-v4 .wtsh-text-link-v4{color:#e8dfd0}

.wtsh-network-list-v4{
  border-top:1px solid rgba(255,255,255,.14);
  margin-bottom:22px;
}

.wtsh-network-list-v4 a{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  gap:18px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#f6efe3;
  text-decoration:none;
}

.wtsh-network-list-v4 small{
  color:#9e9587;
}

/* ---------- archive / sidebar ---------- */
.wtsh-layout-v4{
  margin-top:42px;
  gap:38px;
}

.wtsh-panel-v4{
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.wtsh-archive-header-v4{
  margin-bottom:42px;
  padding-bottom:30px;
  border-bottom:1px solid var(--w4-line);
}

.wtsh-archive-header-v4 h1{
  margin:8px 0 12px;
  font-size:clamp(2.4rem,4vw,4.5rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.wtsh-archive-header-v4 p,
.wtsh-archive-header-v4 .wtsh-term-description{
  max-width:760px;
  color:#746d63;
  line-height:1.9;
}

.wtsh-v4 .wtsh-sidebar{
  top:128px;
  padding:16px 0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}

.wtsh-v4 .wtsh-side-title{
  margin:0 0 12px;
  color:#a08e76;
  letter-spacing:.17em;
}

.wtsh-v4 .wtsh-side-btn{
  padding:9px 0;
  border-bottom:1px solid var(--w4-line-soft);
  border-radius:0;
  color:#6b645b;
  font-size:.82rem;
}

.wtsh-v4 .wtsh-side-btn:hover,
.wtsh-v4 .wtsh-side-btn.active{
  padding-left:8px;
  background:transparent;
  color:var(--w4-ink);
}

/* filters */
.wtsh-v4 .wtsh-product-filter{
  margin:24px 0;
  padding:18px 0;
  border:0;
  border-top:1px solid var(--w4-line);
  border-bottom:1px solid var(--w4-line);
  border-radius:0;
  background:transparent;
}

.wtsh-v4 .wtsh-filter-field select{
  border:0;
  border-bottom:1px solid var(--w4-line);
  border-radius:0;
  background:transparent;
  font-size:.78rem;
}

.wtsh-v4 .wtsh-filter-submit{
  border-radius:0;
  background:var(--w4-ink);
}

/* ---------- events ---------- */
.wtsh-event-grid-v4{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:42px 28px;
}

.wtsh-event-grid-v4 .wtsh-card-event{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.wtsh-event-grid-v4 .wtsh-card-event::before{display:none}
.wtsh-event-grid-v4 .wtsh-card-event .wtsh-card-image{
  border-radius:0;
  aspect-ratio:16/9;
}
.wtsh-event-grid-v4 .wtsh-card-event h3{font-size:1.4rem}

/* ---------- partners / brands ---------- */
.wtsh-partner-grid-v4,
.wtsh-brand-grid-v4{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px 26px;
}

.wtsh-partner-grid-v4 .wtsh-card-partner,
.wtsh-brand-grid-v4 .wtsh-card-brand{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.wtsh-partner-grid-v4 .wtsh-card-partner::before,
.wtsh-brand-grid-v4 .wtsh-card-brand::before{display:none}

.wtsh-partner-grid-v4 .wtsh-card-image,
.wtsh-brand-grid-v4 .wtsh-card-image{
  aspect-ratio:4/3;
  border-radius:0;
  background:#ece6dc;
}

.wtsh-partner-grid-v4 .wtsh-card-image img,
.wtsh-brand-grid-v4 .wtsh-card-image img{
  object-fit:contain;
  padding:24px;
}

/* ---------- single product ---------- */
.wtsh-product-single-v4{
  width:min(calc(100% - 44px),1320px);
  margin:42px auto 0;
}

.wtsh-product-single-breadcrumb-v4{
  margin-bottom:22px;
  color:#8a8176;
  font-size:.75rem;
}

.wtsh-product-single-breadcrumb-v4 a{
  color:inherit;
  text-decoration:none;
}

.wtsh-product-hero-v4{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(400px,.95fr);
  gap:64px;
  align-items:start;
}

.wtsh-product-gallery-wrap-v4{
  background:linear-gradient(145deg,#faf8f3,#e8e0d4);
  padding:34px;
}

.wtsh-product-gallery-wrap-v4 .wtsh-gallery-item{
  border:0;
  border-radius:0;
  background:transparent;
}

.wtsh-product-summary-v4{
  position:sticky;
  top:145px;
  padding-top:16px;
}

.wtsh-product-summary-v4 h1{
  margin:14px 0 8px;
  font-size:clamp(2.6rem,4.5vw,4.8rem);
  line-height:1.04;
  letter-spacing:-.045em;
}

.wtsh-product-distillery-v4{
  color:#756d62;
  font-size:1.05rem;
}

.wtsh-product-summary-v4 .wtsh-spec-grid{
  margin-top:26px;
  border-top:1px solid var(--w4-line);
}

.wtsh-product-summary-v4 .wtsh-spec-item{
  padding:12px 0;
  border-bottom:1px solid var(--w4-line-soft);
}

.wtsh-product-price-v4{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid var(--w4-line);
}

.wtsh-product-price-v4 span,
.wtsh-product-price-v4 small{
  display:block;
  color:#8a8176;
}

.wtsh-product-price-v4 strong{
  display:block;
  margin:6px 0;
  font-size:1.35rem;
}

.wtsh-product-editorial-v4{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  margin-top:90px;
  padding-top:54px;
  border-top:1px solid var(--w4-line);
}

.wtsh-product-editorial-block-v4 h2{
  margin:10px 0 24px;
  font-size:2.2rem;
}

.wtsh-product-editorial-block-v4 .wtsh-rich-text{
  color:#686158;
  line-height:2;
}

.wtsh-product-tasting-v4{
  padding-left:54px;
  border-left:1px solid var(--w4-line);
}

.wtsh-related-products-v4{
  margin-top:96px;
}

/* ---------- generic detail pages ---------- */
.wtsh-v4 .wtsh-partner-main-image,
.wtsh-v4 .wtsh-brand-main-image,
.wtsh-v4 .wtsh-event-cover,
.wtsh-v4 .wtsh-member-photo,
.wtsh-v4 .wtsh-news-single-cover{
  border:0;
  border-radius:0;
  background:linear-gradient(145deg,#faf8f3,#e8e0d4);
}

.wtsh-v4 .wtsh-product-section,
.wtsh-v4 .wtsh-brand-about,
.wtsh-v4 .wtsh-partner-about{
  border:0;
  border-top:1px solid var(--w4-line);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

/* ---------- footer ---------- */
.wtsh-footer-v4{
  margin-top:110px;
  padding:68px 0 106px;
  background:#ded5c7;
  color:#37322c;
}

.wtsh-footer-grid-v4{
  width:min(calc(100% - 48px),var(--wtsh-max-width));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr .65fr .85fr;
  gap:70px;
}

.wtsh-footer-brand-v4 h2{
  margin:10px 0 18px;
  font-size:2.3rem;
}

.wtsh-footer-brand-v4 p{
  max-width:540px;
  color:#675e53;
  line-height:1.9;
}

.wtsh-footer-nav-v4,
.wtsh-footer-company-v4{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.wtsh-footer-label-v4{
  margin-bottom:8px;
  color:#8b7961;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.wtsh-footer-nav-v4 a,
.wtsh-footer-company-v4 a{
  color:#3e3932;
  text-decoration:none;
  font-size:.82rem;
}

.wtsh-footer-company-v4 span,
.wtsh-footer-company-v4 strong{
  font-size:.82rem;
}

.wtsh-footer-social-v4{
  display:flex;
  gap:14px;
  margin-top:10px;
}

.wtsh-floating-warning-v4{
  padding:14px 16px!important;
  background:#23221e!important;
  color:#fff!important;
  font-size:.86rem!important;
  letter-spacing:.13em!important;
}

/* ---------- pagination ---------- */
.wtsh-v4 .nav-links{
  margin-top:52px;
  display:flex;
  gap:8px;
}

.wtsh-v4 .page-numbers{
  min-width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid var(--w4-line);
  color:#625a50;
  text-decoration:none;
}

.wtsh-v4 .page-numbers.current{
  background:var(--w4-ink);
  color:#fff;
}

/* ---------- responsive ---------- */
@media(max-width:1180px){
  .wtsh-product-grid-v4{grid-template-columns:repeat(3,1fr)}
  .wtsh-news-grid-v4{grid-template-columns:1fr 1fr}
  .wtsh-news-grid-v4 .wtsh-card-news:first-child{grid-column:span 2}
  .wtsh-partner-grid-v4,.wtsh-brand-grid-v4{grid-template-columns:repeat(2,1fr)}
  .wtsh-product-hero-v4{gap:38px}
}

@media(max-width:900px){
  .wtsh-header-brand-row{
    min-height:68px;
  }

  .wtsh-topbar-v4{
    overflow-x:auto;
    scrollbar-width:none;
  }

  .wtsh-topbar-v4::-webkit-scrollbar{display:none}

  .wtsh-topbar-v4 .wtsh-primary-menu .menu{
    width:max-content;
  }

  .wtsh-home-hero-v4{
    min-height:560px;
    background-image:
      linear-gradient(90deg,rgba(22,20,17,.75),rgba(22,20,17,.25)),
      var(--wtsh-home-hero-mobile,var(--wtsh-home-hero));
  }

  .wtsh-home-hero-copy-v4{
    width:78%;
    min-height:560px;
    padding:48px 38px;
  }

  .wtsh-home-manifesto-v4{
    grid-template-columns:50px 1fr;
  }

  .wtsh-manifesto-copy-v4{
    grid-column:2;
  }

  .wtsh-feature-product-v4{
    grid-template-columns:1fr;
  }

  .wtsh-feature-product-image-v4{
    min-height:420px;
  }

  .wtsh-product-hero-v4{
    grid-template-columns:1fr;
  }

  .wtsh-product-summary-v4{
    position:static;
  }

  .wtsh-product-editorial-v4{
    grid-template-columns:1fr;
    gap:42px;
  }

  .wtsh-product-tasting-v4{
    padding-left:0;
    padding-top:42px;
    border-left:0;
    border-top:1px solid var(--w4-line);
  }

  .wtsh-home-network-v4{
    grid-template-columns:1fr;
    gap:48px;
  }

  .wtsh-footer-grid-v4{
    grid-template-columns:1fr 1fr;
  }

  .wtsh-footer-brand-v4{
    grid-column:1/-1;
  }
}

@media(max-width:780px){
  .wtsh-header-brand-row{
    width:min(calc(100% - 28px),var(--wtsh-max-width));
  }

  .wtsh-header-brand img{
    max-width:142px;
    height:42px;
  }

  .wtsh-header-utility{
    gap:8px;
    font-size:.68rem;
  }

  .wtsh-site-header-v4 .wtsh-lang-switch{
    font-size:.7rem;
  }

  .wtsh-topbar-v4{
    width:calc(100% - 28px);
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    padding:12px 14px 12px 0;
    margin-right:18px;
    font-size:.76rem;
  }

  .wtsh-home-v4,
  .wtsh-product-single-v4{
    width:calc(100% - 28px);
  }

  .wtsh-home-hero-v4{
    min-height:520px;
  }

  .wtsh-home-hero-copy-v4{
    width:100%;
    min-height:520px;
    padding:38px 24px;
  }

  .wtsh-home-hero-copy-v4 h1{
    font-size:clamp(2.7rem,12vw,4.4rem);
  }

  .wtsh-home-hero-mark-v4{
    top:24px;
    right:24px;
    width:92px;
    height:92px;
  }

  .wtsh-home-hero-actions{
    align-items:flex-start;
    flex-direction:column;
  }

  .wtsh-home-section-v4{
    margin-top:72px;
  }

  .wtsh-home-manifesto-v4{
    padding:0;
    grid-template-columns:1fr;
    gap:18px;
  }

  .wtsh-section-index-v4{display:none}
  .wtsh-manifesto-copy-v4{grid-column:auto}

  .wtsh-feature-product-copy-v4{
    padding:34px 26px;
  }

  .wtsh-product-grid-v4{
    grid-template-columns:repeat(2,1fr);
    gap:34px 16px;
  }

  .wtsh-series-grid-v4{
    grid-template-columns:1fr;
  }

  .wtsh-series-tile-v4{
    min-height:190px;
    border-right:0;
    border-bottom:1px solid var(--w4-line);
  }

  .wtsh-series-tile-v4:last-child{border-bottom:0}
  .wtsh-series-tile-v4 h3{margin-top:44px}

  .wtsh-news-grid-v4,
  .wtsh-news-grid-v4-archive{
    grid-template-columns:1fr;
  }

  .wtsh-news-grid-v4 .wtsh-card-news:first-child,
  .wtsh-news-grid-v4-archive .wtsh-card-news:first-child{
    grid-column:auto;
  }

  .wtsh-layout-v4{
    width:calc(100% - 28px);
    display:block;
  }

  .wtsh-v4 .wtsh-sidebar{
    position:relative;
    top:auto;
    margin-bottom:30px;
  }

  .wtsh-event-grid-v4,
  .wtsh-partner-grid-v4,
  .wtsh-brand-grid-v4{
    grid-template-columns:1fr;
  }

  .wtsh-product-gallery-wrap-v4{
    padding:20px;
  }

  .wtsh-product-summary-v4 h1{
    font-size:clamp(2.4rem,11vw,4rem);
  }

  .wtsh-footer-grid-v4{
    width:calc(100% - 34px);
    grid-template-columns:1fr;
    gap:40px;
  }

  .wtsh-footer-brand-v4{grid-column:auto}
}

@media(max-width:520px){
  .wtsh-header-utility>a{display:none}
  .wtsh-product-grid-v4{grid-template-columns:1fr 1fr}
  .wtsh-product-grid-v4 .wtsh-details{font-size:.72rem}
  .wtsh-product-grid-v4 .wtsh-card-product h3{font-size:.94rem}
}


/* =========================================================
   WATASHI Bright 4.0.1 — Unified Header Fix
   Logo + menu + language/social stay inside one header shell
   ========================================================= */
.wtsh-site-header-v4{
  padding:14px 0;
  background:rgba(248,244,236,.93);
}

.wtsh-header-shell-v4{
  width:min(calc(100% - 48px),var(--wtsh-max-width));
  min-height:70px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:26px;
  padding:7px 18px 7px 16px;
  border:1px solid rgba(76,61,43,.09);
  border-radius:999px;
  background:rgba(255,253,249,.88);
  box-shadow:0 14px 38px rgba(37,30,22,.055);
  backdrop-filter:blur(15px);
}

.wtsh-header-brand-row{
  display:none!important;
}

.wtsh-header-brand{
  min-width:78px;
  max-width:132px;
  justify-content:flex-start;
}

.wtsh-header-brand img{
  width:auto;
  max-width:118px;
  height:48px;
  object-fit:contain;
  object-position:left center;
}

.wtsh-topbar-v4{
  width:100%;
  min-width:0;
  margin:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.wtsh-topbar-v4 .wtsh-primary-menu{
  min-width:0;
  width:100%;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item{
  flex:0 1 auto;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
  margin:0;
  padding:12px 14px;
  white-space:nowrap;
  font-size:.8rem;
}

.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-item>a::after,
.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-ancestor>a::after,
.wtsh-topbar-v4 .wtsh-primary-menu .current_page_item>a::after{
  left:14px;
  bottom:6px;
}

.wtsh-header-utility{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  padding-left:16px;
  border-left:1px solid var(--w4-line-soft);
  white-space:nowrap;
}

.wtsh-header-utility .wtsh-lang-switch{
  display:flex;
  align-items:center;
  gap:5px;
}

.wtsh-header-utility>a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:30px;
  color:#6d655b;
}

@media(max-width:1260px){
  .wtsh-header-shell-v4{
    gap:16px;
    padding-left:14px;
    padding-right:14px;
  }

  .wtsh-header-brand{
    max-width:100px;
  }

  .wtsh-header-brand img{
    max-width:92px;
    height:42px;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    padding:11px 9px;
    font-size:.75rem;
  }

  .wtsh-header-utility{
    padding-left:10px;
    gap:7px;
    font-size:.69rem;
  }

  .wtsh-site-header-v4 .wtsh-lang-switch{
    font-size:.68rem;
  }
}

@media(max-width:980px){
  .wtsh-site-header-v4{
    padding:10px 0;
  }

  .wtsh-header-shell-v4{
    grid-template-columns:auto 1fr;
    grid-template-areas:
      "brand utility"
      "nav nav";
    gap:6px 16px;
    padding:8px 14px;
    border-radius:24px;
  }

  .wtsh-header-brand{
    grid-area:brand;
  }

  .wtsh-header-utility{
    grid-area:utility;
    border-left:0;
  }

  .wtsh-topbar-v4{
    grid-area:nav;
    overflow-x:auto;
    border-top:1px solid var(--w4-line-soft);
    scrollbar-width:none;
  }

  .wtsh-topbar-v4::-webkit-scrollbar{
    display:none;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu{
    width:max-content;
    justify-content:flex-start;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    padding:10px 12px 9px 0;
    margin-right:14px;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .current-menu-item>a::after,
  .wtsh-topbar-v4 .wtsh-primary-menu .current-menu-ancestor>a::after,
  .wtsh-topbar-v4 .wtsh-primary-menu .current_page_item>a::after{
    left:0;
    bottom:3px;
  }
}

@media(max-width:560px){
  .wtsh-header-shell-v4{
    width:calc(100% - 20px);
    padding:7px 10px;
  }

  .wtsh-header-brand img{
    max-width:78px;
    height:38px;
  }

  .wtsh-header-utility{
    gap:5px;
    padding-left:0;
    font-size:.64rem;
  }

  .wtsh-header-utility>a{
    min-width:18px;
  }

  .wtsh-site-header-v4 .wtsh-lang-switch{
    font-size:.64rem;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    font-size:.72rem;
  }
}


/* =========================================================
   WATASHI Bright 4.0.2 — Legal Notice Presentation
   Inspired by classic Japanese / Taiwanese alcohol websites
   ========================================================= */

/* Top legal notice */
.wtsh-legal-top-notice{
  position:relative;
  z-index:120;
  width:100%;
  padding:10px 20px!important;
  border-bottom:1px solid rgba(104,77,58,.10);
  background:#fbfaf7!important;
  color:#914139!important;
  text-align:center;
  font-size:.78rem!important;
  font-weight:650;
  line-height:1.5;
  letter-spacing:.035em!important;
  box-shadow:none!important;
}

/* Bottom alcohol warning */
.wtsh-alcohol-warning-v4{
  width:100%;
  margin:0;
  padding:30px 20px 34px;
  background:#424446;
  color:#fff;
}

.wtsh-alcohol-warning-inner-v4{
  width:min(calc(100% - 40px),1400px);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:82px;
  text-align:center;
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  font-size:clamp(1.7rem,3.2vw,3.35rem);
  font-weight:500;
  line-height:1.35;
  letter-spacing:.13em;
  white-space:normal;
}

/* Disable old floating treatment completely */
.wtsh-floating-warning,
.wtsh-floating-warning-v4{
  display:none!important;
}

/* language visibility follows existing site system */
.wtsh-alcohol-warning-inner-v4 .lang-en,
.wtsh-alcohol-warning-inner-v4 .lang-ja{
  display:none;
}

body.wtsh-wrap-en .wtsh-alcohol-warning-inner-v4 .lang-zh,
body.wtsh-wrap-ja .wtsh-alcohol-warning-inner-v4 .lang-zh{
  display:none;
}

body.wtsh-wrap-en .wtsh-alcohol-warning-inner-v4 .lang-en{
  display:inline;
}

body.wtsh-wrap-ja .wtsh-alcohol-warning-inner-v4 .lang-ja{
  display:inline;
}

@media(max-width:780px){
  .wtsh-legal-top-notice{
    padding:8px 14px!important;
    font-size:.7rem!important;
  }

  .wtsh-alcohol-warning-v4{
    padding:22px 14px 25px;
  }

  .wtsh-alcohol-warning-inner-v4{
    width:100%;
    min-height:60px;
    font-size:clamp(1.15rem,6vw,2rem);
    line-height:1.5;
    letter-spacing:.09em;
  }
}

@media(max-width:480px){
  .wtsh-alcohol-warning-inner-v4{
    font-size:1.08rem;
    letter-spacing:.06em;
  }
}


/* =========================================================
   WATASHI Bright 4.0.3 — Floating Alcohol Warning
   ========================================================= */

/* leave room for the fixed warning band */
html{scroll-padding-bottom:120px;}
body.wtsh-v4{padding-bottom:118px;}

/* fixed floating warning */
.wtsh-alcohol-warning-floating-v4{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:160;
  margin:0;
  padding:18px 18px 20px;
  background:rgba(66,68,70,.97);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -8px 30px rgba(0,0,0,.16);
  backdrop-filter:blur(8px);
}

.wtsh-alcohol-warning-floating-v4 .wtsh-alcohol-warning-inner-v4{
  width:min(calc(100% - 20px),1450px);
  min-height:56px;
  gap:20px;
  font-size:clamp(1.2rem,2.1vw,2.65rem);
  font-weight:500;
  line-height:1.25;
  letter-spacing:.14em;
}

.wtsh-alcohol-warning-inner-v4 .lang-zh,
.wtsh-alcohol-warning-inner-v4 .lang-en,
.wtsh-alcohol-warning-inner-v4 .lang-ja{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  width:100%;
}

.wtsh-warning-part{
  display:inline-block;
}

.wtsh-warning-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.25em;
  height:1.25em;
  line-height:1;
  font-size:.88em;
  border-radius:50%;
  color:#fff;
  text-shadow:0 1px 0 rgba(0,0,0,.18);
  transform:translateY(.02em);
}

/* stronger visibility control */
.wtsh-alcohol-warning-inner-v4 .lang-en,
.wtsh-alcohol-warning-inner-v4 .lang-ja{
  display:none;
}
body.wtsh-wrap-en .wtsh-alcohol-warning-inner-v4 .lang-zh,
body.wtsh-wrap-ja .wtsh-alcohol-warning-inner-v4 .lang-zh{
  display:none;
}
body.wtsh-wrap-en .wtsh-alcohol-warning-inner-v4 .lang-en{
  display:inline-flex;
}
body.wtsh-wrap-ja .wtsh-alcohol-warning-inner-v4 .lang-ja{
  display:inline-flex;
}

@media(max-width:900px){
  body.wtsh-v4{padding-bottom:96px;}
  html{scroll-padding-bottom:98px;}

  .wtsh-alcohol-warning-floating-v4{
    padding:14px 14px 16px;
  }

  .wtsh-alcohol-warning-floating-v4 .wtsh-alcohol-warning-inner-v4{
    min-height:46px;
    gap:12px;
    font-size:clamp(.95rem,3.4vw,1.5rem);
    letter-spacing:.08em;
  }

  .wtsh-alcohol-warning-inner-v4 .lang-zh,
  .wtsh-alcohol-warning-inner-v4 .lang-en,
  .wtsh-alcohol-warning-inner-v4 .lang-ja{
    gap:12px;
  }

  .wtsh-warning-icon{
    width:1.1em;
    height:1.1em;
    font-size:.85em;
  }
}

@media(max-width:520px){
  body.wtsh-v4{padding-bottom:88px;}
  html{scroll-padding-bottom:90px;}

  .wtsh-alcohol-warning-floating-v4{
    padding:12px 10px 14px;
  }

  .wtsh-alcohol-warning-floating-v4 .wtsh-alcohol-warning-inner-v4{
    width:100%;
    font-size:.92rem;
    line-height:1.4;
    letter-spacing:.05em;
  }

  .wtsh-alcohol-warning-inner-v4 .lang-zh,
  .wtsh-alcohol-warning-inner-v4 .lang-en,
  .wtsh-alcohol-warning-inner-v4 .lang-ja{
    gap:10px;
  }

  .wtsh-warning-icon{
    font-size:.82em;
  }
}


/* =========================================================
   WATASHI Bright 4.0.4 — Permanent Legal Bars
   Top price notice + bottom alcohol warning always visible
   ========================================================= */

:root{
  --wtsh-legal-top-h:40px;
  --wtsh-legal-bottom-h:104px;
}

/* Reserve physical space so fixed bars do not cover page content */
body.wtsh-v4{
  padding-top:var(--wtsh-legal-top-h)!important;
  padding-bottom:var(--wtsh-legal-bottom-h)!important;
}

/* TOP — always visible */
.wtsh-legal-top-fixed{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  z-index:300!important;
  width:100%!important;
  min-height:var(--wtsh-legal-top-h);
  display:flex!important;
  align-items:center;
  justify-content:center;
  margin:0!important;
  padding:8px 18px!important;
  border-bottom:1px solid rgba(104,77,58,.12)!important;
  background:rgba(251,250,247,.98)!important;
  color:#914139!important;
  text-align:center;
  font-size:.76rem!important;
  font-weight:650!important;
  line-height:1.4!important;
  letter-spacing:.035em!important;
  box-shadow:0 3px 14px rgba(45,35,27,.035)!important;
  backdrop-filter:blur(10px);
}

/* Header sticks directly below fixed top legal bar */
.wtsh-site-header-v4{
  top:var(--wtsh-legal-top-h)!important;
}

/* BOTTOM — always visible */
.wtsh-alcohol-warning-floating-v4{
  position:fixed!important;
  left:0!important;
  right:0!important;
  bottom:0!important;
  z-index:300!important;
  width:100%!important;
  min-height:var(--wtsh-legal-bottom-h);
  margin:0!important;
  padding:17px 20px 19px!important;
  display:flex;
  align-items:center;
  background:rgba(63,65,67,.985)!important;
  border-top:1px solid rgba(255,255,255,.09);
  color:#fff!important;
  box-shadow:0 -8px 28px rgba(0,0,0,.16);
  backdrop-filter:blur(8px);
}

.wtsh-alcohol-warning-floating-v4 .wtsh-alcohol-warning-inner-v4{
  width:min(calc(100% - 26px),1450px)!important;
  min-height:0!important;
  margin:0 auto!important;
  display:flex!important;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  font-size:clamp(1.42rem,2.35vw,2.8rem)!important;
  font-weight:500!important;
  line-height:1.25!important;
  letter-spacing:.13em!important;
}

.wtsh-alcohol-warning-inner-v4 .lang-zh,
.wtsh-alcohol-warning-inner-v4 .lang-en,
.wtsh-alcohol-warning-inner-v4 .lang-ja{
  width:100%;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}

/* default language */
.wtsh-alcohol-warning-inner-v4 .lang-zh{display:inline-flex!important;}
.wtsh-alcohol-warning-inner-v4 .lang-en,
.wtsh-alcohol-warning-inner-v4 .lang-ja{display:none!important;}

body.wtsh-wrap-en .wtsh-alcohol-warning-inner-v4 .lang-zh,
body.wtsh-wrap-ja .wtsh-alcohol-warning-inner-v4 .lang-zh{
  display:none!important;
}
body.wtsh-wrap-en .wtsh-alcohol-warning-inner-v4 .lang-en{
  display:inline-flex!important;
}
body.wtsh-wrap-ja .wtsh-alcohol-warning-inner-v4 .lang-ja{
  display:inline-flex!important;
}

.wtsh-warning-part{
  display:inline-block;
}

.wtsh-warning-icon{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:1.45em!important;
  height:1.45em!important;
  color:#d8413b!important;
  transform:none!important;
}

.wtsh-warning-icon svg{
  display:block;
  width:100%;
  height:100%;
}

/* Remove every older warning treatment */
.wtsh-floating-warning,
.wtsh-floating-warning-v4{
  display:none!important;
}

#wtsh-back-to-top{
  bottom:calc(var(--wtsh-legal-bottom-h) + 18px)!important;
}

html{
  scroll-padding-top:calc(var(--wtsh-legal-top-h) + 120px);
  scroll-padding-bottom:calc(var(--wtsh-legal-bottom-h) + 12px);
}

@media(max-width:900px){
  :root{
    --wtsh-legal-top-h:38px;
    --wtsh-legal-bottom-h:82px;
  }

  .wtsh-legal-top-fixed{
    padding:7px 12px!important;
    font-size:.68rem!important;
  }

  .wtsh-alcohol-warning-floating-v4{
    padding:12px 12px 14px!important;
  }

  .wtsh-alcohol-warning-floating-v4 .wtsh-alcohol-warning-inner-v4{
    width:100%!important;
    font-size:clamp(1rem,3.5vw,1.45rem)!important;
    letter-spacing:.08em!important;
  }

  .wtsh-alcohol-warning-inner-v4 .lang-zh,
  .wtsh-alcohol-warning-inner-v4 .lang-en,
  .wtsh-alcohol-warning-inner-v4 .lang-ja{
    gap:12px;
  }
}

@media(max-width:560px){
  :root{
    --wtsh-legal-top-h:40px;
    --wtsh-legal-bottom-h:76px;
  }

  .wtsh-legal-top-fixed{
    padding:6px 10px!important;
    font-size:.64rem!important;
    line-height:1.35!important;
  }

  .wtsh-alcohol-warning-floating-v4{
    padding:10px 8px 11px!important;
  }

  .wtsh-alcohol-warning-floating-v4 .wtsh-alcohol-warning-inner-v4{
    font-size:.88rem!important;
    line-height:1.35!important;
    letter-spacing:.045em!important;
  }

  .wtsh-alcohol-warning-inner-v4 .lang-zh,
  .wtsh-alcohol-warning-inner-v4 .lang-en,
  .wtsh-alcohol-warning-inner-v4 .lang-ja{
    gap:8px;
    flex-wrap:nowrap;
  }

  .wtsh-warning-icon{
    width:1.3em!important;
    height:1.3em!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.5 — Custom uploaded drink-drive icon
   ========================================================= */
.wtsh-warning-icon-image{
  width:2.2em!important;
  height:2.2em!important;
  color:inherit!important;
  background:none!important;
  border-radius:0!important;
}

.wtsh-warning-icon-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  filter:none;
}

@media(max-width:900px){
  .wtsh-warning-icon-image{
    width:1.9em!important;
    height:1.9em!important;
  }
}

@media(max-width:560px){
  .wtsh-warning-icon-image{
    width:1.6em!important;
    height:1.6em!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.12 — Hero Logo No Frame
   ========================================================= */
.wtsh-home-hero-mark-v4{
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
  box-shadow:none!important;
}

.wtsh-home-hero-mark-v4::before,
.wtsh-home-hero-mark-v4::after{
  content:none!important;
  display:none!important;
}

.wtsh-home-hero-mark-v4 img{
  display:block;
  max-width:100%!important;
  max-height:100%!important;
  border:0!important;
  border-radius:0!important;
  outline:0!important;
  background:transparent!important;
  box-shadow:none!important;
  filter:none!important;
}


/* =========================================================
   WATASHI Bright 4.0.13 — Softer Header / Centered Logo
   ========================================================= */

.wtsh-site-header-v4{
  padding:18px 0 10px!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}

.wtsh-header-shell-v4{
  width:min(calc(100% - 44px), var(--wtsh-max-width))!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:1fr auto 1fr!important;
  grid-template-areas:
    ". brand ."
    "nav nav utility"!important;
  align-items:center!important;
  gap:14px 18px!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}

.wtsh-header-shell-v4::before,
.wtsh-header-shell-v4::after{
  content:none!important;
  display:none!important;
}

.wtsh-header-brand{
  grid-area:brand!important;
  justify-self:center!important;
  align-self:center!important;
  min-width:0!important;
  max-width:none!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  margin:0 auto!important;
}

.wtsh-header-brand img{
  width:auto!important;
  height:76px!important;
  max-width:120px!important;
  object-fit:contain!important;
  object-position:center center!important;
}

.wtsh-topbar-v4{
  grid-area:nav!important;
  width:100%!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  overflow:visible!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu{
  width:100%!important;
  min-width:0!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:24px!important;
  width:100%!important;
  padding:0!important;
  margin:0!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item{
  flex:0 0 auto!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
  padding:8px 0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  white-space:nowrap!important;
  font-size:.92rem!important;
  letter-spacing:.03em!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-item>a::after,
.wtsh-topbar-v4 .wtsh-primary-menu .current-menu-ancestor>a::after,
.wtsh-topbar-v4 .wtsh-primary-menu .current_page_item>a::after{
  left:0!important;
  right:0!important;
  bottom:0!important;
  width:100%!important;
  margin:auto!important;
}

.wtsh-header-utility{
  grid-area:utility!important;
  justify-self:end!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:10px!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  white-space:nowrap!important;
}

.wtsh-header-utility .wtsh-lang-switch{
  display:flex!important;
  align-items:center!important;
  gap:6px!important;
}

.wtsh-header-utility a{
  color:inherit!important;
}

@media (max-width: 1200px){
  .wtsh-topbar-v4 .wtsh-primary-menu .menu{
    gap:18px!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    font-size:.86rem!important;
  }

  .wtsh-header-brand img{
    height:66px!important;
    max-width:104px!important;
  }

  .wtsh-header-utility{
    gap:8px!important;
    font-size:.78rem!important;
  }
}

@media (max-width: 980px){
  .wtsh-header-shell-v4{
    grid-template-columns:1fr!important;
    grid-template-areas:
      "brand"
      "utility"
      "nav"!important;
    gap:10px!important;
  }

  .wtsh-header-brand{
    justify-self:center!important;
  }

  .wtsh-header-utility{
    justify-self:center!important;
    justify-content:center!important;
  }

  .wtsh-topbar-v4{
    overflow-x:auto!important;
    scrollbar-width:none!important;
  }

  .wtsh-topbar-v4::-webkit-scrollbar{
    display:none!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu{
    width:max-content!important;
    min-width:100%!important;
    justify-content:center!important;
    gap:16px!important;
    padding-bottom:2px!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    font-size:.84rem!important;
  }
}

@media (max-width: 560px){
  .wtsh-site-header-v4{
    padding:14px 0 8px!important;
  }

  .wtsh-header-shell-v4{
    width:calc(100% - 22px)!important;
    gap:8px!important;
  }

  .wtsh-header-brand img{
    height:54px!important;
    max-width:88px!important;
  }

  .wtsh-header-utility{
    font-size:.72rem!important;
    gap:7px!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu{
    gap:14px!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
    font-size:.8rem!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.14 — Header tint + centered main nav
   ========================================================= */

.wtsh-site-header-v4{
  padding:18px 0 12px!important;
  background:#ece7dc!important;
  border-bottom:1px solid rgba(84,70,53,.08)!important;
  box-shadow:none!important;
}

.wtsh-header-shell-v4{
  width:min(calc(100% - 44px), var(--wtsh-max-width))!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:1fr auto 1fr!important;
  grid-template-areas:
    ". brand ."
    ". nav utility"!important;
  gap:16px 20px!important;
  align-items:center!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}

.wtsh-header-brand{
  grid-area:brand!important;
  justify-self:center!important;
}

.wtsh-topbar-v4{
  grid-area:nav!important;
  justify-self:center!important;
  width:auto!important;
  max-width:100%!important;
  margin:0 auto!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu{
  width:auto!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:24px!important;
  width:auto!important;
  margin:0 auto!important;
  padding:0!important;
}

.wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{
  padding:8px 0!important;
  font-size:.92rem!important;
  letter-spacing:.03em!important;
}

.wtsh-header-utility{
  grid-area:utility!important;
  justify-self:end!important;
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  padding-left:22px!important;
  border-left:1px solid rgba(84,70,53,.10)!important;
}

@media (max-width: 1200px){
  .wtsh-topbar-v4 .wtsh-primary-menu .menu{ gap:18px!important; }
  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{ font-size:.86rem!important; }
}

@media (max-width: 980px){
  .wtsh-site-header-v4{
    padding:14px 0 10px!important;
  }

  .wtsh-header-shell-v4{
    grid-template-columns:1fr!important;
    grid-template-areas:
      "brand"
      "utility"
      "nav"!important;
    gap:10px!important;
  }

  .wtsh-header-brand,
  .wtsh-header-utility,
  .wtsh-topbar-v4{
    justify-self:center!important;
  }

  .wtsh-header-utility{
    border-left:0!important;
    padding-left:0!important;
  }

  .wtsh-topbar-v4{
    width:100%!important;
    overflow-x:auto!important;
    scrollbar-width:none!important;
  }
  .wtsh-topbar-v4::-webkit-scrollbar{ display:none!important; }

  .wtsh-topbar-v4 .wtsh-primary-menu{
    width:100%!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu{
    width:max-content!important;
    min-width:100%!important;
    justify-content:center!important;
    gap:16px!important;
  }
}

@media (max-width: 560px){
  .wtsh-site-header-v4{
    padding:12px 0 8px!important;
  }

  .wtsh-header-shell-v4{
    width:calc(100% - 22px)!important;
  }

  .wtsh-topbar-v4 .wtsh-primary-menu .menu{ gap:14px!important; }
  .wtsh-topbar-v4 .wtsh-primary-menu .menu-item>a{ font-size:.8rem!important; }
  .wtsh-header-utility{ font-size:.72rem!important; gap:7px!important; }
}


/* =========================================================
   WATASHI Bright 4.0.15 — User-adjustable Header Logo Size
   Values come from WATASHI Settings / Core 2.7
   ========================================================= */
.wtsh-header-brand{
  max-width:none!important;
  min-width:0!important;
}

.wtsh-header-brand img{
  width:auto!important;
  height:var(--wtsh-header-logo-height,76px)!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:contain!important;
}

@media(max-width:980px){
  .wtsh-header-brand img{
    height:var(--wtsh-header-logo-height-mobile,54px)!important;
    max-width:none!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.19 — Safe Share Toolbar
   ========================================================= */
.wtsh-share-tools{
  position:relative;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0 22px;
  padding-top:13px;
  border-top:1px solid rgba(76,61,43,.08);
}

.wtsh-share-label{
  margin-right:5px;
  color:#9a8b78;
  font-size:.64rem;
  font-weight:800;
  letter-spacing:.16em;
}

.wtsh-share-button{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:34px;
  padding:7px 11px;
  border:1px solid rgba(61,52,42,.12);
  border-radius:999px;
  background:rgba(255,255,255,.5);
  color:#423c34!important;
  text-decoration:none!important;
  font:inherit;
  font-size:.72rem;
  font-weight:700;
  cursor:pointer;
}

.wtsh-share-button:hover{
  background:#fff;
  border-color:rgba(61,52,42,.22);
}

.wtsh-share-button svg{
  width:15px;
  height:15px;
  fill:currentColor;
}

.wtsh-share-facebook:hover{color:#315e9d!important;}
.wtsh-share-instagram:hover{color:#9a416f!important;}

.wtsh-share-feedback{
  position:absolute;
  left:0;
  top:calc(100% + 6px);
  z-index:20;
  padding:7px 10px;
  border-radius:6px;
  background:#292722;
  color:#fff;
  font-size:.7rem;
  opacity:0;
  pointer-events:none;
  transform:translateY(-4px);
  transition:.18s ease;
}

.wtsh-share-feedback.show{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:560px){
  .wtsh-share-tools{
    gap:6px;
    margin:14px 0 18px;
  }
  .wtsh-share-label{
    width:100%;
    margin-bottom:2px;
  }
  .wtsh-share-button{
    padding:7px 9px;
    font-size:.68rem;
  }
}


/* =========================================================
   WATASHI Bright 4.0.20 — Product Archive Recovery
   ========================================================= */
.wtsh-empty-state-v4{
  max-width:720px;
  padding:34px 0 56px;
  border-top:1px solid var(--w4-line);
}

.wtsh-empty-state-v4 h2{
  margin:9px 0 12px;
  font-size:clamp(1.6rem,2.7vw,2.6rem);
}

.wtsh-empty-state-v4 p{
  color:#756d62;
  line-height:1.9;
}

.wtsh-empty-state-v4 .wtsh-button-v4{
  margin-top:14px;
}

.wtsh-product-pagination .page-numbers{
  list-style:none;
  padding-left:0;
}


/* =========================================================
   WATASHI Bright 4.0.21 — Aligned Product Cards
   Equal visual rhythm even when product data differs.
   ========================================================= */

/* Product card becomes a vertical layout with consistent zones. */
.wtsh-product-grid-v4 .wtsh-card-product{
  display:flex!important;
  flex-direction:column!important;
  height:100%!important;
}

/* Product image remains the first fixed visual zone. */
.wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-image-link{
  display:block!important;
  flex:0 0 auto!important;
}

/* Series / release year:
   reserve the same line height on every product card. */
.wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-chips{
  min-height:34px!important;
  margin:14px 0 8px!important;
  display:flex!important;
  align-items:flex-start!important;
  align-content:flex-start!important;
  flex-wrap:wrap!important;
  gap:5px!important;
}

/* Product title: two-line editorial title zone. */
.wtsh-product-grid-v4 .wtsh-card-product h3{
  min-height:3em!important;
  margin:0 0 10px!important;
  line-height:1.5!important;
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  overflow:hidden!important;
}

/* Specs: reserve enough room for Distillery / Age / Cask / ABV.
   Longer text may wrap, but all cards still start the next zone
   from the same baseline. */
.wtsh-product-grid-v4 .wtsh-card-product .wtsh-details{
  min-height:7.25em!important;
  margin:0!important;
  line-height:1.78!important;
  overflow:hidden!important;
}

/* The important fix:
   every card gets a rating SLOT.
   No rating = visually empty, but identical vertical space.
   Actual badge still does not display if no score exists. */
.wtsh-product-grid-v4 .wtsh-product-ratings-slot{
  min-height:58px!important;
  display:flex!important;
  align-items:flex-start!important;
  margin-top:10px!important;
  padding-top:9px!important;
  border-top:1px solid var(--w4-line-soft)!important;
}

.wtsh-product-grid-v4 .wtsh-product-ratings-slot:empty{
  visibility:hidden!important;
}

.wtsh-product-grid-v4 .wtsh-product-ratings-slot .wtsh-product-ratings{
  width:100%!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
}

/* Keep one or two rating badges in a tidy fixed zone. */
.wtsh-product-grid-v4 .wtsh-product-ratings-slot .wtsh-rating-badge{
  margin:0 6px 5px 0!important;
}

/* Footer is always pushed to the bottom of the product card,
   so price / status / View Product align across the row. */
.wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-footer{
  margin-top:auto!important;
  min-height:88px!important;
  padding-top:14px!important;
  border-top:1px solid var(--w4-line-soft)!important;
  align-items:flex-end!important;
}

.wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-footer > div:first-child{
  min-height:58px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
  align-items:flex-start!important;
  gap:7px!important;
}

.wtsh-product-grid-v4 .wtsh-card-product .wtsh-price{
  min-height:1.4em!important;
  display:flex!important;
  align-items:flex-end!important;
}

/* All cards in the same CSS-grid row naturally stretch to
   the tallest card, so the aligned footer stays level. */
.wtsh-product-grid-v4{
  align-items:stretch!important;
}

.wtsh-product-grid-v4 > .wtsh-card-product{
  align-self:stretch!important;
}

/* Homepage product cards use the same alignment behavior. */
.wtsh-product-grid-v4-home .wtsh-card-product,
.wtsh-product-grid-v4-related .wtsh-card-product{
  height:100%!important;
}

/* Tablet */
@media(max-width:900px){
  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-chips{
    min-height:32px!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product h3{
    min-height:3em!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-details{
    min-height:7.5em!important;
  }

  .wtsh-product-grid-v4 .wtsh-product-ratings-slot{
    min-height:54px!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-footer{
    min-height:84px!important;
  }
}

/* Mobile:
   keep alignment without making small cards excessively tall. */
@media(max-width:560px){
  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-chips{
    min-height:30px!important;
    margin-top:10px!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product h3{
    min-height:2.9em!important;
    line-height:1.45!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-details{
    min-height:7.2em!important;
    line-height:1.72!important;
  }

  .wtsh-product-grid-v4 .wtsh-product-ratings-slot{
    min-height:48px!important;
    margin-top:8px!important;
    padding-top:7px!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-footer{
    min-height:80px!important;
    padding-top:11px!important;
  }

  .wtsh-product-grid-v4 .wtsh-card-product .wtsh-card-footer > div:first-child{
    min-height:52px!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.22 — Pagination Layout Fix
   WordPress paginate_links(type=list) outputs:
   nav > ul.page-numbers > li > a/span.page-numbers
   ========================================================= */

/* Reset the OUTER ul so it is not treated like a page button. */
.wtsh-v4 nav.pagination ul.page-numbers,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers{
  width:auto!important;
  min-width:0!important;
  height:auto!important;
  min-height:0!important;
  margin:52px 0 0!important;
  padding:0!important;

  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:center!important;
  flex-wrap:wrap!important;
  gap:8px!important;

  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  list-style:none!important;
}

.wtsh-v4 nav.pagination ul.page-numbers > li,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li{
  display:block!important;
  width:auto!important;
  height:auto!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  list-style:none!important;
}

/* Apply button styling ONLY to links/spans inside each list item. */
.wtsh-v4 nav.pagination ul.page-numbers > li > a.page-numbers,
.wtsh-v4 nav.pagination ul.page-numbers > li > span.page-numbers,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > a.page-numbers,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > span.page-numbers{
  width:auto!important;
  min-width:42px!important;
  height:42px!important;
  min-height:42px!important;
  margin:0!important;
  padding:0 12px!important;

  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;

  border:1px solid rgba(76,61,43,.13)!important;
  border-radius:10px!important;
  background:rgba(255,255,255,.62)!important;
  box-shadow:none!important;

  color:#5f584f!important;
  text-decoration:none!important;
  font-size:.82rem!important;
  font-weight:650!important;
  line-height:1!important;
}

.wtsh-v4 nav.pagination ul.page-numbers > li > a.page-numbers:hover,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > a.page-numbers:hover{
  border-color:rgba(76,61,43,.24)!important;
  background:#fff!important;
  color:var(--w4-ink)!important;
}

.wtsh-v4 nav.pagination ul.page-numbers > li > span.page-numbers.current,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > span.page-numbers.current{
  border-color:var(--w4-ink)!important;
  background:var(--w4-ink)!important;
  color:#fff!important;
}

/* Ellipsis should not look like a large button. */
.wtsh-v4 nav.pagination ul.page-numbers > li > span.page-numbers.dots,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > span.page-numbers.dots{
  min-width:26px!important;
  padding:0 4px!important;
  border-color:transparent!important;
  background:transparent!important;
}

/* Previous / Next use a slightly wider button. */
.wtsh-v4 nav.pagination ul.page-numbers > li > .prev.page-numbers,
.wtsh-v4 nav.pagination ul.page-numbers > li > .next.page-numbers,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > .prev.page-numbers,
.wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > .next.page-numbers{
  min-width:46px!important;
}

@media(max-width:560px){
  .wtsh-v4 nav.pagination ul.page-numbers,
  .wtsh-v4 .wtsh-product-pagination ul.page-numbers{
    margin-top:38px!important;
    gap:6px!important;
  }

  .wtsh-v4 nav.pagination ul.page-numbers > li > a.page-numbers,
  .wtsh-v4 nav.pagination ul.page-numbers > li > span.page-numbers,
  .wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > a.page-numbers,
  .wtsh-v4 .wtsh-product-pagination ul.page-numbers > li > span.page-numbers{
    min-width:38px!important;
    height:38px!important;
    min-height:38px!important;
    padding:0 9px!important;
    border-radius:8px!important;
    font-size:.76rem!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.23 — Unified Catalogue Style
   Products / Partners / Team / Agency Brands
   ========================================================= */

/* Archive grids use the exact same four-column system as Products. */
.wtsh-directory-grid-v4{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:42px 24px!important;
  align-items:stretch!important;
}

/* Directory cards inherit the clean, borderless Product-card language. */
.wtsh-directory-grid-v4 .wtsh-card-partner,
.wtsh-directory-grid-v4 .wtsh-card-brand,
.wtsh-directory-grid-v4 .wtsh-card-member{
  display:flex!important;
  flex-direction:column!important;
  height:100%!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
}

.wtsh-directory-grid-v4 .wtsh-card-partner::before,
.wtsh-directory-grid-v4 .wtsh-card-brand::before,
.wtsh-directory-grid-v4 .wtsh-card-member::before{
  display:none!important;
}

/* Same image proportion as Product. */
.wtsh-directory-grid-v4 .wtsh-card-image{
  aspect-ratio:4/5!important;
  margin:0 0 18px!important;
  padding:18px!important;
  border:0!important;
  border-radius:0!important;
  background:linear-gradient(145deg,#faf8f3,#e9e2d7)!important;
  box-shadow:0 14px 32px rgba(45,35,24,.05)!important;
}

.wtsh-directory-grid-v4 .wtsh-card-brand .wtsh-card-image img,
.wtsh-directory-grid-v4 .wtsh-card-partner .wtsh-card-image img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
}

.wtsh-directory-grid-v4 .wtsh-card-member .wtsh-card-image{
  padding:0!important;
}

.wtsh-directory-grid-v4 .wtsh-card-member .wtsh-card-image img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

/* Chips / title align with Product card rhythm. */
.wtsh-directory-grid-v4 .wtsh-card-chips{
  min-height:34px!important;
  margin:14px 0 8px!important;
  display:flex!important;
  align-items:flex-start!important;
  align-content:flex-start!important;
  flex-wrap:wrap!important;
  gap:5px!important;
}

.wtsh-directory-grid-v4 .wtsh-chip{
  padding:3px 7px!important;
  border:0!important;
  border-radius:0!important;
  background:#e7dfd2!important;
  color:#665a4b!important;
  font-size:.61rem!important;
}

.wtsh-directory-grid-v4 h3{
  min-height:3em!important;
  margin:0 0 10px!important;
  font-size:1.06rem!important;
  line-height:1.5!important;
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  overflow:hidden!important;
}

.wtsh-directory-grid-v4 h3 a{
  color:inherit!important;
  text-decoration:none!important;
}

/* Equivalent information zone to Product specs. */
.wtsh-directory-grid-v4 .wtsh-details{
  min-height:8.25em!important;
  max-height:8.25em!important;
  margin:0!important;
  color:#7c746a!important;
  font-size:.77rem!important;
  line-height:1.75!important;
  overflow:hidden!important;
}

.wtsh-directory-grid-v4 .wtsh-partner-card-details{
  display:flex!important;
  flex-direction:column!important;
  gap:7px!important;
}

.wtsh-directory-grid-v4 .wtsh-partner-card-row{
  display:grid!important;
  grid-template-columns:18px minmax(0,1fr)!important;
  gap:6px!important;
}

.wtsh-directory-grid-v4 .wtsh-partner-mini-label{
  display:block!important;
  margin-bottom:1px!important;
  color:#595248!important;
  font-size:.68rem!important;
}

.wtsh-directory-grid-v4 .wtsh-brand-card-description,
.wtsh-directory-grid-v4 .wtsh-member-card-bio{
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:4!important;
  overflow:hidden!important;
}

.wtsh-directory-grid-v4 .wtsh-member-card-role{
  margin-bottom:8px!important;
  color:#5d554b!important;
  font-weight:750!important;
}

.wtsh-directory-grid-v4 .wtsh-member-card-bio{
  color:#81786d!important;
}

/* Footer aligns like Product price/action zone. */
.wtsh-directory-grid-v4 .wtsh-card-footer{
  min-height:64px!important;
  margin-top:auto!important;
  padding-top:14px!important;
  border-top:1px solid var(--w4-line-soft)!important;
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
}

.wtsh-directory-grid-v4 .wtsh-view-link{
  margin-left:auto!important;
  border:0!important;
  color:#615644!important;
  font-size:.7rem!important;
  letter-spacing:.04em!important;
}

.wtsh-directory-grid-v4 .wtsh-view-link::after{
  content:" ↗";
}

/* ---------------- detail pages ---------------- */
.wtsh-directory-image-v4{
  min-height:590px!important;
  display:grid!important;
  place-items:center!important;
}

.wtsh-directory-image-v4 > img{
  width:100%!important;
  height:100%!important;
  max-height:520px!important;
}

.wtsh-directory-image-partner-v4 > img,
.wtsh-directory-image-brand-v4 > img{
  object-fit:contain!important;
}

.wtsh-directory-image-member-v4{
  padding:0!important;
}

.wtsh-directory-image-member-v4 > img{
  max-height:none!important;
  object-fit:cover!important;
}

.wtsh-directory-placeholder-v4{
  width:100%;
  min-height:430px;
  display:grid;
  place-items:center;
  color:#9a9083;
  font-size:.75rem;
  font-weight:750;
  letter-spacing:.14em;
}

.wtsh-directory-summary-v4 h1{
  margin:14px 0 8px!important;
  font-size:clamp(2.6rem,4.5vw,4.8rem)!important;
  line-height:1.04!important;
  letter-spacing:-.045em!important;
}

.wtsh-directory-specs-v4{
  margin-top:26px!important;
  border-top:1px solid var(--w4-line)!important;
}

.wtsh-directory-specs-v4 .wtsh-spec-item{
  padding:12px 0!important;
  border-bottom:1px solid var(--w4-line-soft)!important;
}

.wtsh-directory-action-v4{
  margin-top:26px!important;
}

.wtsh-directory-lead-v4{
  margin-top:24px;
  color:#6f675d;
  font-size:.96rem;
  line-height:1.9;
}

.wtsh-directory-role-v4{
  margin-top:20px!important;
  font-size:1.05rem!important;
}

.wtsh-directory-editorial-v4{
  grid-template-columns:minmax(0,1fr)!important;
  max-width:920px;
}

.wtsh-directory-editorial-v4 .wtsh-product-editorial-block-v4{
  max-width:920px;
}

/* Responsive mirrors Product archive behavior. */
@media(max-width:1180px){
  .wtsh-directory-grid-v4{
    grid-template-columns:repeat(3,1fr)!important;
  }
}

@media(max-width:780px){
  .wtsh-directory-grid-v4{
    grid-template-columns:repeat(2,1fr)!important;
    gap:34px 16px!important;
  }

  .wtsh-directory-grid-v4 .wtsh-details{
    min-height:7.8em!important;
    max-height:7.8em!important;
  }

  .wtsh-directory-image-v4{
    min-height:420px!important;
  }
}

@media(max-width:520px){
  .wtsh-directory-grid-v4{
    grid-template-columns:repeat(2,1fr)!important;
  }

  .wtsh-directory-grid-v4 .wtsh-card-chips{
    min-height:30px!important;
    margin-top:10px!important;
  }

  .wtsh-directory-grid-v4 h3{
    min-height:2.9em!important;
    font-size:.94rem!important;
    line-height:1.45!important;
  }

  .wtsh-directory-grid-v4 .wtsh-details{
    min-height:7.4em!important;
    max-height:7.4em!important;
    font-size:.72rem!important;
    line-height:1.68!important;
  }

  .wtsh-directory-grid-v4 .wtsh-card-footer{
    min-height:56px!important;
    padding-top:11px!important;
  }

  .wtsh-directory-image-v4{
    min-height:340px!important;
  }
}


/* =========================================================
   WATASHI Bright 4.0.27 — Separate Partner Closed Days
   ========================================================= */
.wtsh-directory-specs-v4 .wtsh-spec-item dt{
  min-width:92px;
}

.wtsh-directory-specs-v4 .wtsh-spec-item dd{
  margin:0;
}



/* =========================================================
   WATASHI Bright 4.0.29 — Agency Brand Products
   ========================================================= */

.wtsh-brand-products-section-v4{
  margin-top:96px;
  padding-top:54px;
  border-top:1px solid var(--w4-line);
}

.wtsh-brand-product-grid-v4{
  align-items:stretch;
}

/* Brand products deliberately inherit the same product-card rhythm. */
.wtsh-card-brand-product{
  display:flex!important;
  flex-direction:column!important;
  height:100%!important;
}

.wtsh-card-brand-product .wtsh-card-chips{
  min-height:34px!important;
}

.wtsh-card-brand-product h3{
  min-height:3em!important;
}

.wtsh-card-brand-product .wtsh-details{
  min-height:7.25em!important;
}

.wtsh-card-brand-product .wtsh-product-ratings-slot{
  min-height:58px!important;
}

.wtsh-card-brand-product .wtsh-card-footer{
  margin-top:auto!important;
  min-height:88px!important;
}

.wtsh-brand-product-image-v4{
  min-height:590px;
  display:grid;
  place-items:center;
}

.wtsh-brand-product-image-v4 > img{
  width:100%;
  height:100%;
  max-height:520px;
  object-fit:contain;
}

.wtsh-product-distillery-v4 a{
  color:inherit;
  text-decoration:none;
}

.wtsh-product-distillery-v4 a:hover{
  color:var(--w4-gold);
}

.wtsh-brand-product-official-v4{
  margin-top:24px;
}

.wtsh-brand-product-back-v4{
  margin-top:72px;
  padding-top:26px;
  border-top:1px solid var(--w4-line);
}

@media(max-width:780px){
  .wtsh-brand-products-section-v4{
    margin-top:72px;
  }

  .wtsh-brand-product-image-v4{
    min-height:420px;
  }
}



/* =========================================================
   WATASHI Bright 4.0.30 — Native App Sharing UI
   ========================================================= */

.wtsh-share-native:hover{
  color:#645a4c!important;
}

.wtsh-share-native svg{
  width:14px;
  height:14px;
}

.wtsh-share-note{
  flex:0 0 100%;
  display:block;
  margin-top:3px;
  color:#9a9185;
  font-size:.62rem;
  line-height:1.6;
}


@media(max-width:560px){
  .wtsh-share-note{
    margin-top:5px;
    font-size:.6rem;
  }

  .wtsh-share-native{
    display:inline-flex;
  }
}



/* =========================================================
   WATASHI Bright 4.0.31 — Full Product/Post Sharing UI
   ========================================================= */
.wtsh-share-tools[data-share-text] .wtsh-share-copy{
  white-space:nowrap;
}



/* =========================================================
   WATASHI Bright 4.0.32 — Agency Product Quick Access
   ========================================================= */

.wtsh-agency-product-side-title{
  margin-top:26px!important;
}

.wtsh-agency-product-side-btn{
  position:relative;
  margin-top:4px!important;
  border-color:rgba(115,87,55,.24)!important;
  background:#f2eadf!important;
  color:#5d4b38!important;
  font-weight:760!important;
}

.wtsh-agency-product-side-btn:hover{
  background:#e9ddce!important;
  color:#3f3428!important;
}

.wtsh-archive-quick-actions-v4{
  margin-top:28px;
}

.wtsh-agency-products-cta-v4{
  width:min(520px,100%);
  min-height:76px;
  padding:15px 19px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
  border:1px solid rgba(97,73,45,.19)!important;
  background:#f1eadf!important;
  color:#4c4032!important;
  text-decoration:none!important;
}

.wtsh-agency-products-cta-v4 > span{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
}

.wtsh-agency-products-cta-v4 small{
  color:#8a7965;
  font-size:.61rem;
  font-weight:650;
  letter-spacing:.1em;
}

.wtsh-agency-products-cta-v4 strong{
  color:#463a2e;
  font-size:.96rem;
  font-weight:780;
}

.wtsh-agency-products-cta-v4 b{
  font-size:1.25rem;
  font-weight:400;
  transition:transform .2s ease;
}

.wtsh-agency-products-cta-v4:hover b{
  transform:translateX(4px);
}

.wtsh-brand-primary-actions-v4{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-top:26px;
}

.wtsh-brand-primary-actions-v4 .wtsh-directory-action-v4{
  margin-top:0!important;
}

.wtsh-brand-products-direct-v4{
  min-width:min(360px,100%);
  display:inline-flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:18px!important;
  padding:14px 17px!important;
  border:1px solid rgba(97,73,45,.20)!important;
  background:#f1eadf!important;
  color:#4c4032!important;
}

.wtsh-brand-products-direct-v4 > span{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}

.wtsh-brand-products-direct-v4 small{
  color:#887663;
  font-size:.62rem;
  font-weight:600;
}

.wtsh-brand-products-direct-v4 b{
  font-size:1.15rem;
  font-weight:400;
}

.wtsh-brand-official-direct-v4{
  background:transparent!important;
}

@media(max-width:560px){
  .wtsh-agency-products-cta-v4{
    min-height:68px;
    padding:13px 15px!important;
  }

  .wtsh-brand-products-direct-v4{
    width:100%;
    min-width:0;
  }
}



/* =========================================================
   WATASHI Bright 4.0.34 — Brand Official Website Text
   ========================================================= */
.wtsh-brand-official-direct-v4,
.wtsh-brand-official-direct-v4:visited{
  color:#211e1a!important;
  border-color:rgba(33,30,26,.62)!important;
  background:transparent!important;
}

.wtsh-brand-official-direct-v4:hover,
.wtsh-brand-official-direct-v4:focus{
  color:#000!important;
  border-color:#211e1a!important;
  background:rgba(255,255,255,.34)!important;
}



/* =========================================================
   WATASHI Bright 4.0.35 — Force Brand Website Text Dark
   ========================================================= */
.wtsh-v4 .wtsh-product-summary-v4
.wtsh-brand-primary-actions-v4
a.wtsh-button-v4.wtsh-brand-official-direct-v4,
.wtsh-v4 .wtsh-product-summary-v4
.wtsh-brand-primary-actions-v4
a.wtsh-button-v4.wtsh-brand-official-direct-v4:link,
.wtsh-v4 .wtsh-product-summary-v4
.wtsh-brand-primary-actions-v4
a.wtsh-button-v4.wtsh-brand-official-direct-v4:visited,
.wtsh-v4 .wtsh-product-summary-v4
.wtsh-brand-primary-actions-v4
a.wtsh-button-v4.wtsh-brand-official-direct-v4:hover,
.wtsh-v4 .wtsh-product-summary-v4
.wtsh-brand-primary-actions-v4
a.wtsh-button-v4.wtsh-brand-official-direct-v4:focus,
.wtsh-v4 .wtsh-product-summary-v4
.wtsh-brand-primary-actions-v4
a.wtsh-button-v4.wtsh-brand-official-direct-v4 > span{
  color:#211e1a!important;
  -webkit-text-fill-color:#211e1a!important;
}



/* =========================================================
   WATASHI Bright 4.0.36 — Agency Product Types
   ========================================================= */
.wtsh-chip-product-type{
  background:#ddd2c2!important;
  color:#4d4134!important;
  font-weight:760!important;
}
.wtsh-brand-product-type-section-v4{margin-top:56px}
.wtsh-brand-product-type-section-v4 + .wtsh-brand-product-type-section-v4{
  padding-top:46px;border-top:1px solid var(--w4-line-soft)
}
.wtsh-brand-product-type-heading-v4{margin-bottom:24px}
.wtsh-brand-product-type-heading-v4 h3{
  margin:5px 0 0;font-size:clamp(1.55rem,2.4vw,2.35rem);line-height:1.1;letter-spacing:-.03em
}
.wtsh-price-inquiry{font-size:.88em;letter-spacing:.03em;white-space:nowrap}
@media(max-width:780px){
  .wtsh-brand-product-type-section-v4{margin-top:42px}
  .wtsh-brand-product-type-section-v4 + .wtsh-brand-product-type-section-v4{padding-top:34px}
}


/* =========================================================
   WATASHI Bright 4.0.37 — Universal Contact-for-Price
   ========================================================= */
.wtsh-price-inquiry{
  display:inline-block;
  font-size:.9em;
  font-weight:760;
  letter-spacing:.035em;
  white-space:nowrap;
}

.wtsh-product-price-v4 strong .wtsh-price-inquiry{
  font-size:1em;
}

