/*
Theme Name: Emporio Yokai
Theme URI: https://emporioyokai.com
Author: Emporio Yokai
Author URI: https://emporioyokai.com
Description: Handcrafted Japanese streetwear — authentic washi aesthetics meets urban culture.
Version: 2.7.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emporio-yokai
Tags: woocommerce, japanese, streetwear, fashion, ecommerce
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg: #F5ECD7;
  --bg-dark: #EDE0C8;
  --fg: #2A1A0E;
  --card: #EDE0C8;
  --muted: #E0D4BC;
  --primary: #E8435A;
  --gold: #B8960C;
  --red: #C1121F;
  --border: rgba(200,80,80,0.25);
  --border-light: rgba(42,26,14,0.15);
  --font-display: 'Noto Serif JP', serif;
  --font-body: 'Inter', sans-serif;
  --font-jp: 'Shippori Mincho', serif;
  --header-h: 200px;
  --radius: 0px;
  --trans: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: #F5ECD7;
  color: #2A1A0E;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #F5ECD7; }
::-webkit-scrollbar-thumb { background: #E8435A; }

/* Washi texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: 'Noto Serif JP', serif; }
.font-jp      { font-family: 'Shippori Mincho', serif; }
.font-body    { font-family: 'Inter', sans-serif; }

h1,h2,h3,h4 { font-family: 'Noto Serif JP', serif; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 20px rgba(193,18,31,.3); }
  50%     { box-shadow: 0 0 60px rgba(193,18,31,.6); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-up  { animation: fadeUp 0.8s ease forwards; }
.animate-fade-in  { animation: fadeIn 0.8s ease forwards; }
.animate-float    { animation: float 4s ease-in-out infinite; }
.animate-pulse-red{ animation: pulse-red 2s ease-in-out infinite; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ============================================================
   UTILITY
   ============================================================ */
.glow-red    { box-shadow: 0 0 40px rgba(232,67,90,.25), 0 0 80px rgba(232,67,90,.1); }
.glow-red-sm { box-shadow: 0 0 20px rgba(232,67,90,.2); }
.text-glow   { text-shadow: 0 0 30px rgba(232,67,90,.5); }
.text-red    { color: #E8435A; }
.text-gold   { color: #B8960C; }

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #B8960C, transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E8435A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all .3s ease;
  border-radius: 0;
  text-decoration: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);
  transform: skewX(-15deg);
}
.btn-primary:hover::before { animation: shimmer .6s ease forwards; }
.btn-primary:hover {
  background: #c93048;
  box-shadow: 0 0 30px rgba(232,67,90,.35);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #2A1A0E;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(42,26,14,.3);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: #E8435A;
  color: #E8435A;
  box-shadow: 0 0 20px rgba(193,18,31,.2);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,236,215,.97);
  backdrop-filter: blur(12px);
  border-bottom: none;
  transition: box-shadow .3s ease;
  overflow: visible;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,236,215,.85) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: -1;
}
.header-logo {
  overflow: visible;
}
.header-inner {
  overflow: visible;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(42,26,14,.08);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 200px;
  position: relative;
  overflow: visible;
}
.header-nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: calc(50% - 110px);
  transform: translateY(-50%) translateX(-100%);
}
.header-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: calc(50% + 110px);
  top: 50%;
  transform: translateY(-50%);
}
.header-social-row {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.header-instagram-btn svg,
.header-tiktok-btn svg { width: 26px; height: 26px; }

@media (max-width: 768px) {
  .header-nav-left { display: none; }
  .header-nav-right {
    position: absolute;
    right: 12px;
    top: calc(50% + 10px);
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
  .header-social-row {
    gap: 20px;
    position: absolute;
    top: calc(50% - 73px);
    right: 12px;
    transform: none;
    flex-direction: row;
  }
  .header-icons-row {
    gap: 8px;
    display: flex;
    align-items: center;
    margin-top: 3px;
  }
  .header-instagram-btn svg,
  .header-tiktok-btn svg { width: 21px; height: 21px; }
  .header-search-btn svg { width: 28px; height: 28px; }
  .header-cart-btn svg { width: 28px; height: 28px; }
}
.header-nav-left a,
.header-nav-right a {
  color: rgba(42,26,14,.8);
  transition: color .3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header-nav-left a:hover,
.header-nav-right a:hover,
.header-nav-left a.current,
.header-nav-right a.current { color: #E8435A; }

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-logo img {
  height: 170px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
@media (min-width: 769px) {
  .header-logo img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .header-logo img {
    height: 170px;
  }
}

.header-cart-btn {
  position: relative;
  color: #2A1A0E;
  padding: 4px;
  transition: color .3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header-cart-btn:hover { color: #E8435A; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  width: 16px; height: 16px;
  background: #E8435A;
  color: #2A1A0E;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #2A1A0E;
  transition: all .3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: #F5ECD7;
  border-right: 1px solid rgba(200,80,80,.2);
  z-index: 10001;
  padding: 80px 40px 40px;
  transition: left .4s cubic-bezier(.25,.46,.45,.94);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { left: 0; }
.mobile-menu-brand {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: #2A1A0E;
  margin-bottom: 40px;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu-nav a {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(42,26,14,.8);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(232,67,90,.1);
  transition: color .3s ease;
  text-decoration: none;
  display: block;
}
.mobile-menu-nav a:hover { color: #E8435A; }
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5ECD7;
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 0;
    padding: 20px 0 40px;
  }
}
.hero-rising-sun {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.hero-rising-sun svg { opacity: 0.04; }
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .4em;
  color: #E8435A;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  color: #2A1A0E;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title .glow-text {
  color: #E8435A;
  -webkit-text-stroke: 1px #E8435A;
  text-shadow: 0 0 60px rgba(232,67,90,.5);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(42,26,14,.3);
  animation: float 4s ease-in-out infinite;
}
.hero-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(232,67,90,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .container { padding-left: 24px; padding-right: 24px; }
}

/* ============================================================
   COLLECTION FILTER
   ============================================================ */
.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-pill {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(42,26,14,.15);
  background: transparent;
  color: rgba(42,26,14,.5);
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 999px;
  text-decoration: none;
}
.filter-pill:hover,
.filter-pill.active {
  background: #E8435A;
  color: #fff;
  border-color: #E8435A;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  position: relative;
  overflow: hidden;
  background: #EDE0C8;
  cursor: pointer;
  transition: all .4s ease;
}
.product-card:hover {
  box-shadow: 0 0 30px rgba(232,67,90,.2);
  transform: translateY(-4px);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.product-card:hover .card-img { transform: scale(1.07); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.product-card:hover .card-overlay { opacity: 1; }

.card-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.badge-new     { background: #E8435A; color: #fff; }
.badge-sale    { background: #B8960C; color: #fff; }
.badge-limited { background: #B8960C; color: #fff; }

.card-wishlist {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,11,.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease;
  border: none;
  cursor: pointer;
  color: rgba(42,26,14,.6);
}
.product-card:hover .card-wishlist { opacity: 1; }

.card-info { padding: 16px; }
.card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A1A0E;
  letter-spacing: .02em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.card-sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(42,26,14,.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 0;
  background: transparent;
  color: #2A1A0E;
}
.size-pill:hover, .size-pill.active {
  border-color: #E8435A;
  background: #E8435A;
  color: #fff;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  margin-bottom: 12px;
}
.card-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: #2A1A0E;
}
.card-price-original {
  font-size: 12px;
  color: rgba(42,26,14,.35);
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
  margin-left: 8px;
}
.card-add-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(42,26,14,.2);
  background: transparent;
  color: rgba(42,26,14,.8);
  cursor: pointer;
  transition: all .3s ease;
}
.card-add-btn:hover,
.card-add-btn.added {
  border-color: #E8435A;
  color: #E8435A;
  background: #E0D4BC;
}
.card-buy-btn {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: #E8435A;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: 999px;
  margin-top: 12px;
}
.card-buy-btn:hover { background: #c93048; }
.card-buy-btn.added { background: #c73550; }

/* ============================================================
   PROMO CARDS
   ============================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.promo-large {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #EDE0C8;
  border: 1px solid rgba(232,67,90,.15);
  aspect-ratio: 16/7;
}
.promo-large img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
  transition: transform .7s ease;
}
.promo-large:hover img { transform: scale(1.05); }
.promo-large-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to right, rgba(245,236,215,.95) 40%, transparent);
}
.promo-stacked {
  display: grid;
  grid-rows: 1fr 1fr;
  gap: 24px;
}
.promo-sm {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
}
.promo-sm img {
  width: 96px; height: 112px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform .5s ease;
}
.promo-sm:hover img { transform: scale(1.05); }

/* ============================================================
   BESTSELLERS SECTION
   ============================================================ */
.bestsellers-section {
  background: #EDE0C8;
  padding: 80px 48px;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: #E8435A;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #2A1A0E;
  letter-spacing: -.02em;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.section-divider span {
  font-size: 11px;
  color: rgba(42,26,14,.3);
  letter-spacing: .3em;
  font-family: 'Inter', sans-serif;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 40px; height: 1px;
  background: #E8435A;
}

/* ============================================================
   DROP LIMITATO BANNER
   ============================================================ */
.drop-banner {
  padding: 64px 48px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #F5ECD7 0%, #F0DDD0 50%, #F5ECD7 100%);
  border-top: 1px solid rgba(232,67,90,.15);
  border-bottom: 1px solid rgba(232,67,90,.15);
}
.drop-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,67,90,.08) 0%, transparent 70%);
  animation: pulse-red 2s ease-in-out infinite;
  pointer-events: none;
}
.drop-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.drop-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #2A1A0E;
  line-height: 1;
  margin-bottom: 16px;
}
.drop-title span {
  color: #E8435A;
  text-shadow: 0 0 40px rgba(232,67,90,.5);
}
.drop-desc {
  font-size: 14px;
  color: rgba(42,26,14,.45);
  font-family: 'Inter', sans-serif;
  max-width: 280px;
}
.drop-waves { flex-shrink: 0; opacity: .6; }
.drop-cta { text-align: center; }
.drop-cta-sub {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(42,26,14,.3);
  letter-spacing: .3em;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   NUOVI ARRIVI
   ============================================================ */
.nuovi-section {
  padding: 80px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.nuovi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.nuovi-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}
.nuovi-featured {
  position: relative;
  overflow: hidden;
}
.nuovi-featured .card-img-wrap { aspect-ratio: 2/3; height: 100%; }
.nuovi-featured-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(42,26,14,.85) 0%, transparent 60%);
}
.nuovi-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  padding: 80px 48px;
  background: #EDE0C8;
  border-top: 1px solid rgba(232,67,90,.1);
  position: relative;
  overflow: hidden;
}
.newsletter-kanji {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: 900;
  color: rgba(232,67,90,.03);
  pointer-events: none;
  select: none;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.newsletter-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #2A1A0E;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.newsletter-title span { color: #E8435A; }
.newsletter-desc {
  font-size: 14px;
  color: rgba(42,26,14,.45);
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  margin-bottom: 40px;
}
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: #EDE0C8;
  border: 1px solid rgba(42,26,14,.15);
  border-right: none;
  padding: 16px 20px;
  color: #2A1A0E;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .3s ease;
}
.newsletter-form input[type="email"]:focus { border-color: rgba(193,18,31,.5); }
.newsletter-thanks {
  font-size: 18px;
  color: #E8435A;
  letter-spacing: .3em;
  font-family: 'Inter', sans-serif;
}
.newsletter-fine {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(42,26,14,.2);
  letter-spacing: .1em;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #EDE0C8;
  border-top: 1px solid rgba(232,67,90,.15);
}
.footer-wave {
  height: 60px;
  overflow: hidden;
}
.footer-wave svg { width: 100%; height: 100%; }
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px 64px;
}
.footer-brand-logo { width: 260px; height: auto; margin-bottom: 24px; }
.footer-brand-desc {
  font-size: 14px;
  color: rgba(42,26,14,.45);
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(42,26,14,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(42,26,14,.4);
  transition: all .3s ease;
  font-size: 14px;
  text-decoration: none;
}
.footer-social a:hover {
  border-color: #E8435A;
  color: #E8435A;
}
.footer-col-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E8435A;
  margin-bottom: 24px;
  display: block;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-links a,
.footer-col-links span {
  font-size: 14px;
  color: rgba(42,26,14,.45);
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  transition: color .3s ease;
  text-decoration: none;
  cursor: pointer;
  display: block;
}
.footer-col-links a:hover,
.footer-col-links span:hover { color: #2A1A0E; }
.footer-newsletter-row {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(232,67,90,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-newsletter-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: #2A1A0E;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.footer-newsletter-sub {
  font-size: 14px;
  color: rgba(42,26,14,.4);
  font-family: 'Inter', sans-serif;
}
.footer-newsletter-form {
  display: flex;
  min-width: 380px;
}
.footer-newsletter-form input {
  flex: 1;
  background: #EDE0C8;
  border: 1px solid rgba(42,26,14,.15);
  border-right: none;
  padding: 14px 16px;
  color: #2A1A0E;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(42,26,14,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-text {
  font-size: 12px;
  color: rgba(42,26,14,.2);
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0; right: -100%;
  width: 420px;
  height: 100vh;
  background: #F0E6D0;
  border-left: 1px solid rgba(200,80,80,.25);
  z-index: 10000;
  transition: right .4s cubic-bezier(.25,.46,.45,.94);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,26,14,.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-hero {
  position: relative;
  padding: 120px 48px 64px;
  overflow: hidden;
  background: #F5ECD7;
}
.page-hero-kanji {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 900;
  color: rgba(232,67,90,.04);
  pointer-events: none;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.page-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: #E8435A;
  display: block;
  margin-bottom: 12px;
}
.page-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #2A1A0E;
  letter-spacing: -.02em;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(232,67,90,.1);
  margin-bottom: 32px;
}
.toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(42,26,14,.6);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .3s ease;
}
.filter-btn:hover,
.filter-btn.active { color: #E8435A; }
.filter-active-count {
  font-size: 9px;
  font-weight: 700;
  background: #E8435A;
  color: #2A1A0E;
  padding: 2px 5px;
}
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.product-count {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .3em;
  color: rgba(42,26,14,.3);
}
.sort-select {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 24px 8px 12px;
  background: #E0D4BC;
  border: 1px solid rgba(42,26,14,.1);
  color: rgba(42,26,14,.6);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.shop-layout {
  display: flex;
  gap: 48px;
}
.shop-sidebar {
  width: 224px;
  flex-shrink: 0;
  display: none;
}
.shop-sidebar.open { display: block; }
.shop-sidebar-inner { position: sticky; top: 100px; }
.filter-section { margin-bottom: 32px; }
.filter-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(42,26,14,.5);
  margin-bottom: 16px;
  display: block;
}
.filter-colors { display: flex; flex-direction: column; gap: 12px; }
.color-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.color-swatch {
  width: 20px; height: 20px;
  border: 2px solid rgba(42,26,14,.15);
  transition: all .2s ease;
  flex-shrink: 0;
}
.color-swatch.active {
  border-color: #E8435A;
  box-shadow: 0 0 8px rgba(232,67,90,.4);
}
.color-name {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: rgba(42,26,14,.5);
  letter-spacing: .04em;
}
.filter-divider {
  height: 1px;
  background: rgba(232,67,90,.1);
  margin: 16px 0;
}
.filter-collection-list { display: flex; flex-direction: column; gap: 8px; }
.filter-col-btn {
  text-align: left;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  color: rgba(42,26,14,.4);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-col-btn.active,
.filter-col-btn:hover { color: #E8435A; }
.filter-col-indicator { width: 12px; height: 1px; background: #E8435A; }

.shop-main { flex: 1; }
.shop-empty { text-align: center; padding: 80px 0; }
.shop-empty-kanji {
  font-size: 80px;
  color: rgba(42,26,14,.05);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.shop-empty-text { font-size: 14px; color: rgba(42,26,14,.3); font-family: 'Inter', sans-serif; }

/* ============================================================
   OFFERTE PAGE
   ============================================================ */
.offerte-hero {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F5ECD7 0%, #F2DDD8 40%, #F5ECD7 100%);
}
.offerte-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,67,90,.15) 0%, transparent 60%);
  animation: pulse-red 2s ease-in-out infinite;
  pointer-events: none;
}
.offerte-diagonal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .04;
}
.offerte-diagonal-line {
  position: absolute;
  width: 200%;
  height: 1px;
  background: #E8435A;
  left: -50%;
  transform: rotate(-12deg);
}
.offerte-kanji {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  font-weight: 900;
  color: rgba(232,67,90,.06);
  pointer-events: none;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.offerte-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 10;
}
.offerte-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.offerte-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  color: #2A1A0E;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.offerte-title span {
  color: #E8435A;
  text-shadow: 0 0 60px rgba(232,67,90,.4);
}
.offerte-desc {
  font-size: 15px;
  color: rgba(42,26,14,.5);
  font-family: 'Inter', sans-serif;
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Countdown */
.countdown-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(42,26,14,.4);
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
  display: block;
}
.countdown-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.countdown-box {
  background: #EDE0C8;
  border: 1px solid rgba(232,67,90,.3);
  padding: 12px 20px;
  text-align: center;
  min-width: 70px;
}
.countdown-num {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  color: #2A1A0E;
  min-width: 2ch;
  text-align: center;
  display: block;
  font-variant-numeric: tabular-nums;
}
.countdown-unit {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(42,26,14,.35);
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
  display: block;
}
.countdown-sep {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  color: #E8435A;
  font-weight: 900;
  padding-bottom: 16px;
}

/* Flash sale ticker */
.flash-ticker {
  background: #E8435A;
  border-bottom: 2px solid rgba(0,0,0,.3);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.ticker-item span.bold {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #2A1A0E;
}
.ticker-item span.sep {
  font-size: 12px;
  color: rgba(42,26,14,.6);
}

/* Sale products with glow border */
.sale-card-wrap {
  position: relative;
}
.sale-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 30px rgba(232,67,90,.15);
  border: 1px solid rgba(232,67,90,.2);
}
.sale-card-inner { position: relative; z-index: 1; }

/* Limited editions */
.limited-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(184,150,12,.3);
  box-shadow: 0 0 30px rgba(184,150,12,.08);
}
.limited-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  aspect-ratio: 3/2;
  display: block;
}
.limited-card:hover img { transform: scale(1.05); }
.limited-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,14,.85) 0%, transparent 50%);
}
.limited-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.limited-name-jp {
  font-size: 10px;
  color: #B8960C;
  letter-spacing: .3em;
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
}
.limited-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 900;
  color: #2A1A0E;
}
.limited-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 900;
  color: #2A1A0E;
  text-align: right;
}
.limited-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: #B8960C;
  color: #F5ECD7;
  padding: 2px 8px;
  margin-top: 4px;
}

/* ============================================================
   CARRELLO PAGE
   ============================================================ */
.cart-header {
  padding: 96px 48px 48px;
  background: #F5ECD7;
}
.cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(42,26,14,.4);
  transition: color .3s ease;
  margin-bottom: 24px;
  text-decoration: none;
}
.cart-back-link:hover { color: #E8435A; }
.cart-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #2A1A0E;
  letter-spacing: -.02em;
}
.cart-count-badge {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(42,26,14,.3);
  margin-left: 16px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 32px 48px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.cart-cols-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(232,67,90,.1);
}
.cart-col-label {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(42,26,14,.3);
}
.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px;
  padding: 24px 0;
  align-items: center;
  border-bottom: 1px solid rgba(42,26,14,.05);
}
.cart-item-product { display: flex; align-items: center; gap: 16px; }
.cart-item-img {
  width: 64px; height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: #E0D4BC;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A1A0E;
  letter-spacing: .02em;
}
.cart-item-jp {
  font-size: 10px;
  color: rgba(42,26,14,.35);
  letter-spacing: .3em;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
}
.cart-item-size {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  color: rgba(42,26,14,.6);
  border: 1px solid rgba(232,67,90,.3);
  padding: 6px 12px;
  display: inline-block;
}
.cart-item-price,
.cart-item-subtotal {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #2A1A0E;
}
.cart-item-subtotal { font-weight: 700; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42,26,14,.1);
  color: rgba(42,26,14,.4);
  background: transparent;
  cursor: pointer;
  transition: color .3s ease;
  font-size: 16px;
}
.qty-btn:hover { color: #E8435A; border-color: #E8435A; }
.qty-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #2A1A0E;
  width: 24px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.cart-remove-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(42,26,14,.2);
  transition: color .3s ease;
  padding: 4px;
}
.cart-remove-btn:hover { color: #E8435A; }
.cart-clear {
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
}
.cart-clear-btn {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(42,26,14,.2);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .3s ease;
}
.cart-clear-btn:hover { color: #E8435A; }

/* Order Summary */
.order-summary {
  background: #EDE0C8;
  border: 1px solid rgba(232,67,90,.15);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.order-summary-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: #2A1A0E;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232,67,90,.1);
  margin-bottom: 24px;
  display: block;
}
.shipping-progress { margin-bottom: 24px; }
.shipping-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.shipping-progress-labels .label { color: rgba(42,26,14,.4); }
.shipping-progress-labels .amount { color: #E8435A; }
.shipping-progress-bar {
  width: 100%; height: 2px;
  background: rgba(42,26,14,.1);
}
.shipping-progress-fill {
  height: 100%;
  background: #E8435A;
  transition: width .5s ease;
}
.summary-lines { margin-bottom: 24px; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}
.summary-line .label { color: rgba(42,26,14,.5); letter-spacing: .02em; }
.summary-line .value { color: #2A1A0E; }
.summary-line.discount .label,
.summary-line.discount .value { color: #E8435A; }
.summary-line.free .value { color: #E8435A; }
.coupon-wrap { margin-bottom: 24px; }
.coupon-row { display: flex; }
.coupon-input {
  flex: 1;
  background: #F5ECD7;
  border: 1px solid rgba(42,26,14,.1);
  border-right: none;
  padding: 12px 12px 12px 36px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: #2A1A0E;
  outline: none;
  position: relative;
}
.coupon-input.error { border-color: #E8435A; }
.coupon-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(42,26,14,.25);
  pointer-events: none;
}
.coupon-btn {
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #E0D4BC;
  border: 1px solid rgba(42,26,14,.1);
  color: rgba(42,26,14,.5);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}
.coupon-btn:hover { background: #E8435A; color: #fff; }
.coupon-error {
  font-size: 10px;
  color: #E8435A;
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(232,67,90,.15);
  margin-bottom: 24px;
}
.summary-total-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: #2A1A0E;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.summary-total-amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 900;
  color: #E8435A;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  padding-top: 8px;
}
.trust-badge {
  text-align: center;
  font-size: 9px;
  font-family: 'Inter', sans-serif;
  color: rgba(42,26,14,.25);
  letter-spacing: .04em;
  line-height: 1.5;
}

/* Cart Empty */
.cart-empty {
  text-align: center;
  padding: 96px 0;
}
.cart-empty-kanji {
  font-size: 120px;
  color: rgba(42,26,14,.03);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   INPUTS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="number"],
select {
  background: #EDE0C8;
  border: 1px solid rgba(42,26,14,.15);
  color: #2A1A0E;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .3s ease;
  width: 100%;
  border-radius: 0;
}
input:focus, select:focus {
  border-color: rgba(193,18,31,.5);
  box-shadow: 0 0 15px rgba(193,18,31,.1);
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }

/* ============================================================
   WOOCOMMERCE RESET
   ============================================================ */
.woocommerce-notices-wrapper { margin: 0; }
.woocommerce-breadcrumb { display: none; }

/* Featured section on home */
.py-featured {
  width: 100%;
  box-sizing: border-box;
  padding: 32px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nuovi-grid { grid-template-columns: 1fr; }
  .nuovi-sub-grid { grid-template-columns: repeat(2,1fr); }
  .drop-banner-inner { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 24px; height: 170px; }
  :root { --header-h: 170px; }
  .header-nav-left { display: none; }
  .header-nav-right .hidden-mobile { display: none; }
  .hamburger { display: flex; }
  .cart-sidebar { width: 100vw; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .product-grid-3 { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .promo-grid { grid-template-columns: 1fr; }
  .bestsellers-section { padding: 48px 24px; }
  .drop-banner { padding: 48px 24px; }
  .nuovi-section { padding: 48px 24px; }
  .py-featured { padding: 24px 16px; }
  .newsletter-section { padding: 48px 24px; }
  .footer-inner { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter-row { flex-direction: column; }
  .footer-newsletter-form { min-width: unset; width: 100%; }
  .page-hero { padding: 100px 24px 48px; }
  .shop-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .shop-layout { flex-direction: column; }
  #yokai-product-grid > div[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  .cart-header { padding: 80px 24px 32px; }
  .cart-layout { grid-template-columns: 1fr; padding: 24px; }
  .cart-cols-header { display: none; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item-size, .cart-item-price { display: none; }
  .offerte-inner { padding: 40px 24px; }
  .offerte-kanji { display: none; }
  .drop-waves { display: none; }
}
@media (min-width: 769px) {
  .hamburger { display: none; }
}

/* ── EMP-style product card ── */
.emp-card {
  background: #fff;
  cursor: pointer;
  transition: box-shadow .2s;
}
.emp-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.emp-card img {
  transition: transform .3s;
}
.emp-card:hover img {
  transform: scale(1.04);
}

/* Shop grid — 3 col default, 4 on wide */
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e0e0;
  width: 100%;
}
.shop-product-grid .emp-card {
  background: #fff;
}
@media (min-width: 1200px) {
  .shop-product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SINGLE PRODUCT PAGE  (sp- prefix)  — Pampling-inspired layout
   ============================================================ */

.sp-page {
  background: #fff;
  min-height: 100vh;
  padding-top: 80px;
}
.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ── Breadcrumb ── */
.sp-breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: #555;
  padding: 18px 0;
  margin-bottom: 28px;
}
.sp-breadcrumb a {
  text-decoration: none;
  color: #555;
  transition: color .2s;
}
.sp-breadcrumb a:hover { color: #222; }
.sp-bc-sep { color: #aaa; }
.sp-breadcrumb span:last-child { color: #222; font-weight: 500; }

/* ── Two-column layout ── */
.sp-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   GALLERY GRID (Pampling: 2-col masonry-style)
   ============================================================ */
.sp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
}
.sp-gallery-grid::-webkit-scrollbar { display: none; }

.sp-grid-item {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
}

/* First item spans both columns — big hero image */
.sp-grid-item--main {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}

.sp-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sp-grid-item:hover img {
  transform: scale(1.04);
}

/* Wishlist button overlay */
.sp-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s, color .2s;
  color: #aaa;
}
.sp-wishlist-btn:hover,
.sp-wishlist-btn.liked { color: #e8435a; background: #fff; }
.sp-wishlist-btn.liked svg { fill: #e8435a; stroke: #e8435a; }

/* ── Lightbox ── */
.sp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.sp-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.sp-lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.sp-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   INFO PANEL (sticky right)
   ============================================================ */
.sp-info {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 24px;
}
.sp-info::-webkit-scrollbar { display: none; }

/* Title */
.sp-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: #222;
  line-height: 1.15;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

/* Designer */
.sp-designer {
  font-size: 14px;
  color: #555;
  margin: 0 0 18px;
}
.sp-designer-link {
  color: #222;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .2s;
}
.sp-designer-link:hover { text-decoration-color: #222; }

/* Price */
.sp-price {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}
.sp-price del {
  font-size: 18px;
  color: #aaa;
  font-weight: 400;
  text-decoration: line-through;
}
.sp-price ins { text-decoration: none; }

/* Section label */
.sp-section-label {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin: 0 0 10px;
  letter-spacing: .01em;
}

/* ── Fit toggle (Women / Men) ── */
.sp-fit-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.sp-fit-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all .2s;
  line-height: 1;
}
.sp-fit-btn:hover {
  border-color: #222;
  color: #222;
}
.sp-fit-btn.active {
  border-color: #222;
  background: #222;
  color: #fff;
}

/* ── Colour swatches ── */
.sp-colour-section {
  margin-bottom: 22px;
}
.sp-colour-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-colour-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.sp-colour-swatch:hover {
  transform: scale(1.1);
}
.sp-colour-swatch.active {
  outline-color: #222;
}

/* ── Size section ── */
.sp-size-section {
  margin-bottom: 22px;
}
.sp-size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sp-size-header .sp-section-label { margin: 0; }
.sp-size-guide {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #222;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s;
}
.sp-size-guide:hover { opacity: .6; }

.sp-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 48px;
  padding: 0 12px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #222;
  transition: all .18s ease;
  user-select: none;
  letter-spacing: .02em;
}
.sp-size-pill:hover {
  border-color: #222;
}
.sp-size-pill.active {
  border-color: #222;
  background: #222;
  color: #fff;
}

/* Shake animation for validation */
@keyframes sp-shake {
  0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)}
}
.sp-shake { animation: sp-shake .45s ease; }

/* ── Quantity row ── */
.sp-qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.sp-qty-row .sp-section-label { margin: 0; white-space: nowrap; }
.sp-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
}
.sp-qty-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.sp-qty-btn:hover { color: #222; background: #f5f5f5; }
.sp-qty-num {
  width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  border-left: 1.5px solid #ddd;
  border-right: 1.5px solid #ddd;
  line-height: 44px;
  flex-shrink: 0;
}

/* ── CTA Buttons ── */
.sp-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.sp-atc-btn {
  width: 100%;
  padding: 17px 20px;
  background: #e8435a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid #e8435a;
  border-radius: 50px;
  cursor: pointer;
  transition: background .22s, transform .1s, box-shadow .2s;
  line-height: 1;
}
.sp-atc-btn:hover:not(:disabled) {
  background: #d63350;
  border-color: #d63350;
  box-shadow: 0 4px 20px rgba(232,67,90,.3);
}
.sp-atc-btn:active { transform: scale(.98); }
.sp-atc-disabled { opacity: .45; cursor: not-allowed; }

.sp-buynow-btn {
  width: 100%;
  padding: 17px 20px;
  background: transparent;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid #222;
  border-radius: 50px;
  cursor: pointer;
  transition: background .22s, color .22s, transform .1s;
  line-height: 1;
}
.sp-buynow-btn:hover {
  background: #222;
  color: #fff;
}
.sp-buynow-btn:active { transform: scale(.98); }

/* ── Description block ── */
.sp-desc-block {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 20px;
}
.sp-desc-label { margin-bottom: 10px; }
.sp-desc-body {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
.sp-desc-body p { margin: 0 0 10px; }
.sp-desc-body a { color: #e8435a; }

/* ── Delivery info ── */
.sp-delivery-info {
  border-top: 1px solid #eee;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}
.sp-delivery-item svg { flex-shrink: 0; color: #888; }

/* ── Related section ── */
.sp-related {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #eee;
}
.sp-related-header { margin-bottom: 32px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .sp-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sp-gallery-grid {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .sp-info {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .sp-container { padding: 0 20px 60px; }
}
@media (max-width: 540px) {
  .sp-gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .sp-grid-item--main { aspect-ratio: 1 / 1; }
  .sp-grid-item { aspect-ratio: 1 / 1; }
  .sp-title { font-size: 22px; }
  .sp-size-pill { min-width: 44px; height: 44px; font-size: 13px; }
}

/* ============================================================
   TRY-ON PAGE  (.tryon-*)
   ============================================================ */

/* Header button */
.tryon-header-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #E8435A;
  color: #F5ECD7;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.tryon-header-btn:hover {
  background: #c93450;
  color: #F5ECD7;
  transform: translateY(-1px);
}
.tryon-header-btn svg { flex-shrink: 0; }

/* Page layout */
.tryon-page {
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  color: #2A1A0E;
}
.tryon-hero {
  text-align: center;
  margin-bottom: 48px;
}
.tryon-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #2A1A0E;
  margin: 0 0 12px;
}
.tryon-hero p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Two-column layout */
.tryon-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .tryon-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* Left: upload zone */
.tryon-upload-section h2,
.tryon-garments-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8dfd4;
}

.tryon-drop-zone {
  border: 2px dashed #c8b89a;
  border-radius: 8px;
  background: #fdfaf5;
  text-align: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.tryon-drop-zone:hover,
.tryon-drop-zone.dragover {
  border-color: #E8435A;
  background: #fff5f6;
}
.tryon-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.tryon-drop-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}
.tryon-drop-zone p {
  font-size: 14px;
  color: #888;
  margin: 0;
  pointer-events: none;
}
.tryon-drop-zone strong {
  color: #E8435A;
}

/* Preview of uploaded photo */
#tryonPersonPreview {
  display: none;
  margin-top: 16px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8dfd4;
}
#tryonPersonPreview img {
  width: 100%;
  display: block;
  max-height: 320px;
  object-fit: cover;
}

/* Garment grid */
.tryon-garment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tryon-garment-item {
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  background: #fdfaf5;
}
.tryon-garment-item:hover {
  border-color: #c8b89a;
  transform: translateY(-2px);
}
.tryon-garment-item.selected {
  border-color: #E8435A;
}
.tryon-garment-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.tryon-garment-item span {
  display: block;
  font-size: 11px;
  text-align: center;
  padding: 4px 6px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA button */
.tryon-cta-wrap {
  margin-top: 28px;
  text-align: center;
}
#tryonSubmitBtn {
  background: #2A1A0E;
  color: #F5ECD7;
  border: none;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
#tryonSubmitBtn:hover:not(:disabled) {
  background: #E8435A;
  transform: translateY(-1px);
}
#tryonSubmitBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Status & result */
.tryon-status {
  margin-top: 16px;
  font-size: 13px;
  color: #888;
  text-align: center;
  min-height: 20px;
}
.tryon-status.error { color: #E8435A; }
.tryon-status.ok    { color: #2e7d32; }

.tryon-result {
  display: none;
  margin-top: 40px;
  text-align: center;
}
.tryon-result h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.tryon-result img {
  max-width: 100%;
  max-height: 600px;
  border-radius: 8px;
  border: 1px solid #e8dfd4;
  box-shadow: 0 8px 32px rgba(42,26,14,0.12);
}
.tryon-result-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tryon-result-actions a,
.tryon-result-actions button {
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.tryon-btn-download {
  background: #2A1A0E;
  color: #F5ECD7;
  border: none;
}
.tryon-btn-download:hover { background: #E8435A; }
.tryon-btn-shop {
  background: transparent;
  color: #2A1A0E;
  border: 2px solid #2A1A0E;
}
.tryon-btn-shop:hover { background: #2A1A0E; color: #F5ECD7; }

/* Spinner */
.tryon-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(245,236,215,0.4);
  border-top-color: #F5ECD7;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================================
   SEARCH
   ============================================================ */
.header-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-instagram-btn,
.header-tiktok-btn {
  color: rgba(42,26,14,.8); display: flex; align-items: center;
  transition: color .3s; padding: 0; text-decoration: none;
}
.header-instagram-btn:hover,
.header-tiktok-btn:hover { color: #E8435A; }
.header-social-divider { display: none; }
.header-search-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(42,26,14,.8); display: flex; align-items: center;
  transition: color .3s; padding: 0;
}
.header-search-btn:hover { color: #E8435A; }
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 1100;
}
.search-overlay.active { display: block; }
.search-modal {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  background: #F5ECD7; z-index: 1101; padding: 32px 48px 28px;
  box-shadow: 0 4px 40px rgba(0,0,0,.15);
}
.search-modal.active { display: block; }
.search-close {
  position: absolute; top: 16px; right: 24px;
  background: transparent; border: none; font-size: 28px;
  cursor: pointer; color: rgba(42,26,14,.4); line-height: 1;
}
.search-close:hover { color: #E8435A; }
.search-form {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid #2A1A0E; padding-bottom: 8px;
  max-width: 700px; margin: 0 auto;
}
.search-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: 'Noto Serif JP', serif; font-size: 24px;
  color: #2A1A0E; font-weight: 600;
}
.search-input::placeholder { color: rgba(42,26,14,.3); }
.search-submit {
  background: transparent; border: none; cursor: pointer;
  color: rgba(42,26,14,.6); display: flex; padding: 0;
}
.search-submit:hover { color: #E8435A; }
.search-live {
  max-width: 700px; margin: 16px auto 0;
}
.search-result-item {
  display: flex; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(42,26,14,.08);
  text-decoration: none; color: #2A1A0E; transition: color .2s;
}
.search-result-item:hover { color: #E8435A; }
.search-result-item img {
  width: 52px; height: 52px; object-fit: cover; flex-shrink: 0;
}
.sri-name { font-size: 14px; font-weight: 600; }
.sri-price { font-size: 13px; color: #E8435A; margin-top: 2px; }
.search-no-results {
  text-align: center; padding: 20px 0;
  color: rgba(42,26,14,.4); font-size: 14px;
}

/* ============================================================
   HEADER — decorazioni sakura / Fuji  (v199)
   ============================================================ */
.site-header { overflow: hidden; }
.header-deco {
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.header-deco-sakura { left: 0;  width: min(34vw, 400px); }
.header-deco-fuji   { right: 0; width: min(38vw, 460px); }
.header-inner { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .header-deco-sakura { width: 44vw; opacity: .85; }
  .header-deco-fuji   { width: 46vw; opacity: .85; }
}
@media (max-width: 600px) {
  .header-deco-sakura { width: 52vw; opacity: .7; }
  .header-deco-fuji   { width: 54vw; opacity: .7; }
}

/* Badge carrello tondo rosso, sempre visibile */
.cart-count {
  width: 18px;
  height: 18px;
  background: #C1121F;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  top: -6px;
  right: -6px;
}
