/* ================================================
   WOTAKU SHOP — Professional Japanese Theme
   Light Design | Premium Merchandise Store
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@300;400;500;700;900&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --bg-primary: #FAFAFA;
  --bg-secondary: #F2F2F0;
  --bg-white: #FFFFFF;
  --text-primary: #111111;
  --text-secondary: #666666;
  --text-muted: #999999;
  --accent-red: #C8102E;
  --accent-red-dark: #A00C24;
  --accent-red-light: #FFE8EC;
  --accent-gold: #B8860B;
  --border: #E5E5E5;
  --border-light: #F0F0F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.16);
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-jp: 'Noto Serif JP', serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #CCCCCC; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #AAAAAA; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--text-primary);
  color: #FFFFFF;
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(200,16,46,0.15) 50%, transparent 100%);
  animation: shimmer 4s infinite;
}
@keyframes shimmer { to { left: 0%; } }

.announcement-bar span {
  margin: 0 32px;
}
.announcement-bar .jp {
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-family: var(--font-jp);
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Nav Left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.hamburger-btn:hover { opacity: 0.6; }
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent-red); }
.nav-links a:hover::after { width: 100%; }

/* Nav Brand Logo Images */
.nav-logo-link {
  display: flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all var(--transition);
  /* override underline pseudo */
}
.nav-logo-link::after { display: none !important; }
.nav-logo-link:hover { background: var(--bg-secondary); opacity: 0.85; }
.nav-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  /* mix-blend-mode so white bg blends with navbar bg */
  mix-blend-mode: multiply;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-logo-link:hover .nav-brand-logo { transform: scale(1.05); opacity: 0.9; }

/* Mobile Menu Brand Logos */
.mobile-logo-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Nav Logo */
.nav-logo { text-align: left; flex-shrink: 0; }
.logo-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}
.logo-brand .red { color: var(--accent-red); }
.logo-jp {
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}
.nav-icon-btn:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.nav-icon-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.cart-count {
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

/* ─── HERO STORE SELECTOR ─── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

/* Sakura decorative elements */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 200, 210, 0.25) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-welcome {
  text-align: center;
  padding: 52px 20px 36px;
  position: relative;
  z-index: 2;
}
.hero-welcome-sub {
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-welcome h1 {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.hero-welcome h1 .red { color: var(--accent-red); }

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.hero-divider::before, .hero-divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red));
}
.hero-divider::after { background: linear-gradient(90deg, var(--accent-red), transparent); }

.hero-jp-subtitle {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

/* Store Panels */
.store-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  height: 560px;
  position: relative;
  z-index: 2;
}

.store-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-slow);
}
.store-panel:hover { flex: 1.15; }

.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-panel:hover .panel-bg { transform: scale(1.04); }

.panel-overlay {
  position: absolute;
  inset: 0;
  transition: opacity var(--transition-slow);
}
.panel-wotaku .panel-overlay {
  background: linear-gradient(
    to top,
    rgba(80, 0, 15, 0.95) 0%,
    rgba(120, 5, 25, 0.3) 40%,
    rgba(0,0,0,0.0) 100%
  );
}
.panel-mnd .panel-overlay {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.82) 0%,
    rgba(30, 30, 30, 0.6) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
.store-panel:hover .panel-overlay { opacity: 0.85; }

.panel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
}

.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  transition: transform var(--transition), border-color var(--transition);
}
.store-panel:hover .panel-icon {
  transform: scale(1.1);
  border-color: rgba(255,255,255,0.9);
}
.panel-wotaku .panel-icon { background: rgba(200,16,46,0.3); }
.panel-mnd .panel-icon { background: rgba(255,255,255,0.1); }
.panel-aikoku .panel-icon { background: rgba(249,80,140,0.3); }

.panel-title {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}
.panel-title-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3em;
  margin-bottom: 18px;
}
.panel-tags {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.panel-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}
.panel-tag svg { width: 14px; height: 14px; opacity: 0.8; }

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.9);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  width: fit-content;
  backdrop-filter: blur(4px);
}
.panel-wotaku .panel-cta { background: rgba(200,16,46,0.25); }
.panel-mnd .panel-cta { background: rgba(255,255,255,0.1); }
.panel-aikoku .panel-cta { background: rgba(249,80,140,0.25); }
.panel-cta:hover { background: #FFFFFF !important; color: var(--text-primary) !important; }
.panel-cta:hover svg { color: var(--text-primary); }
.panel-cta svg { width: 14px; height: 14px; transition: transform var(--transition); }
.panel-cta:hover svg { transform: translateX(4px); }

/* Divider lines between panels */
.store-panels::after { display: none; }

/* Side labels (like HBX "OTAKU" on right) */
.side-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 5;
  opacity: 0;
  transition: opacity var(--transition);
}
.side-label-left { left: 12px; }
.side-label-right { right: 12px; transform: translateY(-50%) rotate(180deg); }
.navbar.scrolled ~ .hero-section .side-label { opacity: 1; }

/* ─── TRUST BADGES ─── */
.trust-badges {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.trust-item:hover { background: var(--bg-secondary); }
.trust-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.trust-item:hover .trust-icon { background: var(--accent-red-light); }
.trust-icon svg { width: 20px; height: 20px; color: var(--text-secondary); }
.trust-item:hover .trust-icon svg { color: var(--accent-red); }
.trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.trust-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  padding: 56px 0;
  background: var(--bg-primary);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 28px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.section-title-group {}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 6px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.section-title-jp {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.2em;
}
.section-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--text-secondary);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.section-view-all:hover { color: var(--text-primary); border-color: var(--text-primary); }
.section-view-all svg { width: 14px; height: 14px; transition: transform var(--transition); }
.section-view-all:hover svg { transform: translateX(3px); }

/* Product Scroll Container */
.product-scroll-wrapper {
  position: relative;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.product-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-scroll::-webkit-scrollbar { display: none; }

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
}
.product-scroll-wrapper:hover .scroll-btn { opacity: 1; }
.scroll-btn:hover { background: var(--text-primary); border-color: var(--text-primary); }
.scroll-btn:hover svg { color: white; }
.scroll-btn svg { width: 16px; height: 16px; color: var(--text-primary); transition: color var(--transition); }
.scroll-btn-prev { left: 4px; }
.scroll-btn-next { right: 4px; }

/* Product Card */
.product-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 0;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}
.badge-new { background: var(--text-primary); color: white; }
.badge-sale { background: var(--accent-red); color: white; }
.badge-limited { background: var(--accent-gold); color: white; }

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist svg { width: 14px; height: 14px; color: var(--text-secondary); transition: color var(--transition); }
.product-wishlist:hover svg { color: var(--accent-red); }

/* Quick Add to Cart overlay — index.html */
.card-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}
.quick-add-btn {
  width: 100%;
  padding: 10px;
  background: var(--text-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  font-family: 'Inter', sans-serif;
}
.quick-add-btn:hover { background: var(--accent-red); }
.product-card:hover .card-quick-add { transform: translateY(0); }

.product-info { padding: 14px 12px 16px; }
.product-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.price-original {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-sale { color: var(--accent-red); }

/* ─── SALE SECTION ─── */
.sale-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sale-section::before {
  content: 'SALE';
  position: absolute;
  font-size: 240px;
  font-weight: 900;
  color: rgba(0,0,0,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.sale-label {
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sale-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 36px;
}
.sale-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  flex-wrap: wrap;
}
.sale-link {
  position: relative;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--text-primary);
  transition: all var(--transition);
  letter-spacing: -0.01em;
}
.sale-link:hover { color: var(--accent-red); border-color: var(--accent-red); }
.sale-sep {
  margin: 0 16px;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 28px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 40px 32px;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--text-primary); }

.footer-newsletter {}
.footer-newsletter p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 2px 0 0 2px;
  font-size: 13px;
  font-family: var(--font-sans);
  background: var(--bg-white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--text-primary); }
.newsletter-btn {
  padding: 11px 18px;
  background: var(--text-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0 2px 2px 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--accent-red); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--text-primary); border-color: var(--text-primary); }
.social-btn:hover svg { color: white; }
.social-btn svg { width: 15px; height: 15px; color: var(--text-secondary); transition: color var(--transition); }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text-primary); }

/* ─── MOBILE MENU OVERLAY ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 360px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-logo { font-size: 18px; font-weight: 800; letter-spacing: 0.1em; }
.mobile-menu-logo .red { color: var(--accent-red); }
.close-menu-btn { padding: 8px; transition: opacity var(--transition); }
.close-menu-btn:hover { opacity: 0.5; }
.close-menu-btn svg { width: 20px; height: 20px; }
.mobile-nav-links { padding: 24px 28px; flex: 1; }
.mobile-nav-links a {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--accent-red); }
.mobile-nav-links .nav-jp {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.2em;
}
.mobile-nav-main {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.02em !important;
  transition: color var(--transition), padding-left var(--transition) !important;
}
.mobile-nav-main:hover {
  color: var(--accent-red) !important;
  padding-left: 6px !important;
}
.mobile-nav-main svg { flex-shrink: 0; color: var(--text-muted); transition: color var(--transition); }
.mobile-nav-main:hover svg { color: var(--accent-red); }

/* ─── SAKURA FLOAT ANIMATION ─── */
.sakura-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sakura-petal {
  position: absolute;
  top: -20px;
  width: 12px;
  height: 12px;
  background: radial-gradient(ellipse at center, #FFCCD5, #FF9EB0);
  border-radius: 50% 50% 50% 0;
  opacity: 0;
  animation: sakura-fall linear infinite;
}
@keyframes sakura-fall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg) translateX(80px); }
}

/* ─── FLOATING WHATSAPP ─── */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-wa svg { width: 34px; height: 34px; }
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

@media (max-width: 768px) {
  .nav-right .search-btn { display: none; }
  .mobile-search-btn { margin-bottom: 15px; width: 100%; justify-content: center; background: var(--bg-secondary); padding: 12px; border-radius: 8px; font-size: 15px; }
  .mobile-search-btn:hover { background: var(--border); }
  .floating-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .floating-wa svg { width: 30px; height: 30px; }
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .product-scroll { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-container { padding: 0 20px; }
  .nav-links { display: none; }
  .store-panels { grid-template-columns: 1fr; height: auto; }
  .store-panel { height: 420px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .product-scroll { grid-template-columns: repeat(2, 1fr); }
  .section-header, .product-scroll-wrapper, .sale-section, .footer { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sale-links { gap: 8px; }
  .sale-sep { margin: 0 8px; }
}
@media (max-width: 480px) {
  .store-panels { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-scroll { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── SEARCH OVERLAY ─── */
.search-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px 10px; border-radius: 4px;
  color: var(--text-primary); font-size: 13px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.search-btn:hover { background: var(--bg-secondary); }
.search-btn svg { flex-shrink: 0; }

.search-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 80px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }

.search-box {
  width: 100%; max-width: 680px; margin: 0 20px;
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(-16px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.search-overlay.open .search-box { transform: translateY(0); }

.search-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.search-input-row svg { color: var(--text-secondary); flex-shrink: 0; }
.search-input-field {
  flex: 1; border: none; outline: none; font-size: 16px;
  font-family: 'Inter', sans-serif; color: var(--text-primary);
  background: transparent;
}
.search-input-field::placeholder { color: var(--text-muted); }
.search-close-btn {
  background: var(--bg-secondary); border: none; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); flex-shrink: 0;
  transition: background 0.2s;
}
.search-close-btn:hover { background: var(--border); }

.search-results {
  max-height: 420px; overflow-y: auto; padding: 8px 0;
}
.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-track { background: transparent; }
.search-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; cursor: pointer;
  transition: background 0.15s; text-decoration: none;
}
.search-result-item:hover { background: var(--bg-secondary); }
.search-result-img {
  width: 44px; height: 44px; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--border); flex-shrink: 0; background: var(--bg-secondary);
}
.search-result-info { flex: 1; }
.search-result-name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.search-result-meta { font-size: 12px; color: var(--text-secondary); }
.search-result-price { font-size: 14px; font-weight: 700; color: var(--accent-red); flex-shrink: 0; }

.search-no-result {
  padding: 32px 20px; text-align: center;
  font-size: 14px; color: var(--text-secondary);
}
.search-hint {
  padding: 12px 20px 16px; font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 600;
  border-top: 1px solid var(--border);
}
.search-result-highlight { color: var(--accent-red); }

/* ================================================
   TOP ANNOUNCEMENT & UTILITY BAR (Multi-Lang & Multi-Currency)
   ================================================ */
.top-utility-bar {
  background: #111111;
  color: #f1f1f1;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1001;
  font-family: 'Inter', sans-serif;
}

.top-utility-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-announcement {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement-badge {
  background: var(--accent-red, #C8102E);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement-text {
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 500;
}

.top-switchers {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Dropdown Utility Button */
.utility-dropdown {
  position: relative;
}

.utility-dropdown-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.utility-dropdown-toggle:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
}

.active-lang-flag {
  font-size: 14px;
  line-height: 1;
}

.curr-icon-symbol {
  font-size: 11px;
  font-weight: 800;
  color: #ffc107;
}

.utility-dropdown-toggle svg {
  color: rgba(255,255,255,0.6);
  transition: transform 0.2s ease;
}

.utility-dropdown.open .utility-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Floating Dropdown Menu */
.utility-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #181818;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 175px;
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.utility-dropdown.open .utility-dropdown-menu {
  display: flex;
  animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.utility-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.utility-menu-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.utility-menu-item.active {
  background: rgba(200, 16, 46, 0.25);
  color: #ff6b7e;
  font-weight: 700;
}

.flag-icon {
  font-size: 16px;
  line-height: 1;
}

.curr-symbol-pill {
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.menu-item-text {
  flex: 1;
}

.menu-item-code {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

/* Mobile Regional Box in Drawer */
.mobile-regional-box {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border, #eee);
  background: var(--bg-secondary, #f8f8f8);
}

.mobile-regional-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary, #666);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-regional-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-toggle-btn {
  background: white;
  border: 1px solid var(--border, #ddd);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #111);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.mobile-toggle-btn.active {
  background: #111111;
  color: white;
  border-color: #111111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Footer Regional Selector */
.footer-regional-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 10px 0;
}

.footer-reg-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.footer-reg-btn:hover {
  color: white;
}

.footer-reg-btn.active {
  color: white;
  background: rgba(200, 16, 46, 0.5);
}

.footer-reg-sep {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
}

@media (max-width: 768px) {
  .top-utility-inner {
    padding: 0 16px;
    height: 34px;
  }
  .top-switchers {
    display: none; /* Accessible in mobile drawer */
  }
  .top-announcement {
    margin: 0 auto;
    font-size: 11px;
  }
}



/* =======================================================
   CUSTOM REVIEWS / TESTIMONIALS (MATCHING INSPIRATION)
======================================================= */
.custom-reviews-section {
  background: #FAF5EE;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(220, 210, 200, 0.4);
}

.custom-reviews-section .main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rv-section-header {
  margin-bottom: 34px;
}

.rv-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #8c827a;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rv-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #2b201a;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.rv-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -8px;
}

.rv-carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 14px 8px 24px;
}

.rv-carousel-container::-webkit-scrollbar {
  display: none;
}

.rv-cards-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.rv-card-item {
  flex: 0 0 280px;
  width: 280px;
  display: flex;
}

.rv-card-inner {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 24px 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(220, 210, 200, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.rv-stars {
  display: flex;
  gap: 3px;
  font-size: 16px;
  color: #ff6584;
  margin-bottom: 14px;
  line-height: 1;
}

.rv-star.empty {
  color: #e5e7eb;
}

.rv-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 400;
  word-break: break-word;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.rv-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.rv-author-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.rv-author-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.rv-author-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-author-role {
  font-size: 11.5px;
  color: #9ca3af;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* Arrow buttons */
.rv-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #374151;
}

.rv-nav-btn:hover {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.rv-nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.rv-nav-btn.rv-nav-prev {
  left: -20px;
}

.rv-nav-btn.rv-nav-next {
  right: -20px;
}

@media (max-width: 1240px) {
  .rv-nav-btn.rv-nav-prev { left: 4px; }
  .rv-nav-btn.rv-nav-next { right: 4px; }
}

@media (max-width: 768px) {
  .custom-reviews-section {
    padding: 50px 0 60px;
  }
  .rv-section-header {
    margin-bottom: 24px;
  }
  .rv-card-item {
    flex: 0 0 255px;
    width: 255px;
  }
  .rv-nav-btn {
    width: 36px;
    height: 36px;
  }
  .rv-nav-btn svg {
    width: 15px;
    height: 15px;
  }
  .rv-nav-btn.rv-nav-prev { left: 2px; }
  .rv-nav-btn.rv-nav-next { right: 2px; }
}
