/* =========================================================
   MAIN.CSS — Feminine Baby Pink / Arabic RTL Theme
   Palette:
     Soft blush bg: #FFF0F5, #FFFAFB
     Baby pink:     #F5A9C3, #FBCFE0, #FFE4EC
     Soft plum ink: #5C3A4E, #7A4D62
     Warm gold:     #D4A373
   Fonts: Amiri + Playfair Display (headings, warm serif),
          Cairo + Quicksand (body, warm rounded),
          Cormorant Garamond italic + Parisienne (accents)
   ========================================================= */

/* ---- CSS Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --washi-1: #FFF0F5;
  --washi-2: #FFFAFB;
  --sakura-1: #F28FB2;
  --sakura-2: #FBCFE0;
  --sakura-light: #FFE4EC;
  --sakura-deep: #E26A92;
  --ink-1: #5C3A4E;
  --ink-2: #7A4D62;
  --gold: #D4A373;
  --gold-light: #F5DDB0;
  --text-main: #4A2D3A;
  --text-muted: #8B6B78;
  --text-light: #C9A9B5;
  --border: #F5D5DF;
  --shadow-soft: 0 4px 24px rgba(242, 143, 178, 0.14);
  --shadow-card: 0 8px 40px rgba(242, 143, 178, 0.18);
  --shadow-hover: 0 20px 60px rgba(242, 143, 178, 0.32);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition: 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  --transition-fast: 0.2s ease;
}

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

body {
  direction: rtl;
  font-family: 'Cairo', 'Cormorant Garamond', sans-serif;
  background-color: var(--washi-1);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Kanji watermarks in body background */
body::before {
  content: '美';
  position: fixed;
  top: 8%;
  left: 3%;
  font-size: 260px;
  font-family: 'Amiri', serif;
  color: rgba(232, 117, 142, 0.035);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

body::after {
  content: '花';
  position: fixed;
  bottom: 5%;
  right: 2%;
  font-size: 200px;
  font-family: 'Amiri', serif;
  color: rgba(196, 150, 60, 0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ---- Sakura Petals Rain (25 petals) ---- */
.sakura-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sakura-petal {
  position: absolute;
  top: -30px;
  border-radius: 150% 0 150% 0;
  background: linear-gradient(135deg, var(--sakura-2), var(--sakura-1));
  opacity: 0;
  animation: sakura-fall linear infinite;
  transform-origin: center center;
  will-change: transform, opacity;
}

@keyframes sakura-fall {
  0% {
    opacity: 0;
    transform: translateY(-30px) rotate(0deg) translateX(0);
  }
  5% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(720deg) translateX(var(--sway));
  }
}

.sakura-petal:nth-child(1)  { width: 12px; height: 12px; left: 4%;  animation-duration: 14s; animation-delay: 0s;   --sway: 60px; }
.sakura-petal:nth-child(2)  { width: 9px;  height: 9px;  left: 10%; animation-duration: 18s; animation-delay: 1s;   --sway: -40px; }
.sakura-petal:nth-child(3)  { width: 15px; height: 15px; left: 18%; animation-duration: 22s; animation-delay: 2.5s; --sway: 80px; }
.sakura-petal:nth-child(4)  { width: 8px;  height: 8px;  left: 27%; animation-duration: 16s; animation-delay: 0.8s; --sway: -55px; }
.sakura-petal:nth-child(5)  { width: 18px; height: 18px; left: 35%; animation-duration: 26s; animation-delay: 3.2s; --sway: 70px; }
.sakura-petal:nth-child(6)  { width: 11px; height: 11px; left: 43%; animation-duration: 20s; animation-delay: 1.5s; --sway: -30px; }
.sakura-petal:nth-child(7)  { width: 14px; height: 14px; left: 52%; animation-duration: 17s; animation-delay: 4s;   --sway: 90px; }
.sakura-petal:nth-child(8)  { width: 10px; height: 10px; left: 61%; animation-duration: 24s; animation-delay: 0.3s; --sway: -70px; }
.sakura-petal:nth-child(9)  { width: 16px; height: 16px; left: 70%; animation-duration: 19s; animation-delay: 2s;   --sway: 50px; }
.sakura-petal:nth-child(10) { width: 8px;  height: 8px;  left: 78%; animation-duration: 28s; animation-delay: 5s;   --sway: -45px; }
.sakura-petal:nth-child(11) { width: 20px; height: 20px; left: 87%; animation-duration: 15s; animation-delay: 1.2s; --sway: 65px; }
.sakura-petal:nth-child(12) { width: 9px;  height: 9px;  left: 95%; animation-duration: 21s; animation-delay: 3.8s; --sway: -60px; }
.sakura-petal:nth-child(13) { width: 13px; height: 13px; left: 7%;  animation-duration: 23s; animation-delay: 6s;   --sway: 75px; }
.sakura-petal:nth-child(14) { width: 11px; height: 11px; left: 22%; animation-duration: 13s; animation-delay: 2.8s; --sway: -35px; }
.sakura-petal:nth-child(15) { width: 17px; height: 17px; left: 31%; animation-duration: 27s; animation-delay: 0.6s; --sway: 85px; }
.sakura-petal:nth-child(16) { width: 8px;  height: 8px;  left: 48%; animation-duration: 12s; animation-delay: 4.5s; --sway: -50px; }
.sakura-petal:nth-child(17) { width: 22px; height: 22px; left: 56%; animation-duration: 25s; animation-delay: 1.8s; --sway: 55px; }
.sakura-petal:nth-child(18) { width: 10px; height: 10px; left: 65%; animation-duration: 16s; animation-delay: 7s;   --sway: -80px; }
.sakura-petal:nth-child(19) { width: 14px; height: 14px; left: 74%; animation-duration: 20s; animation-delay: 3.5s; --sway: 40px; }
.sakura-petal:nth-child(20) { width: 9px;  height: 9px;  left: 83%; animation-duration: 18s; animation-delay: 0.9s; --sway: -65px; }
.sakura-petal:nth-child(21) { width: 16px; height: 16px; left: 14%; animation-duration: 22s; animation-delay: 5.5s; --sway: 95px; }
.sakura-petal:nth-child(22) { width: 12px; height: 12px; left: 39%; animation-duration: 14s; animation-delay: 2.2s; --sway: -25px; }
.sakura-petal:nth-child(23) { width: 19px; height: 19px; left: 58%; animation-duration: 29s; animation-delay: 4.8s; --sway: 70px; }
.sakura-petal:nth-child(24) { width: 8px;  height: 8px;  left: 90%; animation-duration: 17s; animation-delay: 1.4s; --sway: -55px; }
.sakura-petal:nth-child(25) { width: 11px; height: 11px; left: 2%;  animation-duration: 20s; animation-delay: 6.5s; --sway: 60px; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--sakura-deep) 0%, var(--ink-2) 50%, var(--sakura-deep) 100%);
  color: #FFF4F8;
  text-align: center;
  padding: 9px 20px;
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 100;
  direction: rtl;
}

.announcement-bar p {
  margin: 0;
  direction: rtl;
}

/* ---- Site Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(42, 31, 26, 0.06);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-direction: row-reverse;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-direction: row-reverse;
}

.nav-link {
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--sakura-1);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--sakura-1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--discover {
  color: var(--sakura-1);
  font-weight: 600;
  border: 1.5px solid var(--sakura-2);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link--discover:hover {
  background: var(--sakura-1);
  color: white;
}

.nav-link--discover::after {
  display: none;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-direction: row-reverse;
}

.logo-rose {
  font-size: 1.6rem;
  animation: logo-spin 8s linear infinite;
  display: inline-block;
  color: var(--sakura-1);
  filter: drop-shadow(0 0 6px rgba(232, 117, 142, 0.5));
}

@keyframes logo-spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

.logo-text {
  font-family: 'Amiri', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: 0.02em;
  direction: rtl;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 20px;
  height: 64px;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-1);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--washi-2);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
  text-align: right;
}

.mobile-menu.mobile-menu--open {
  display: flex;
}

.mobile-menu-link {
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  text-decoration: none;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(232, 117, 142, 0.1);
  transition: background var(--transition-fast), color var(--transition-fast);
  text-align: right;
}

.mobile-menu-link:hover {
  background: var(--sakura-light);
  color: var(--sakura-1);
}

.mobile-menu-link--accent {
  color: var(--sakura-1);
  font-weight: 600;
}

/* ---- Messages ---- */
.messages {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 320px;
  max-width: 560px;
}

.message {
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.95rem;
  background: var(--washi-2);
  box-shadow: var(--shadow-card);
  border-right: 4px solid var(--sakura-1);
  text-align: right;
}

.message--error {
  border-right-color: #c0392b;
}

/* ---- Main Content ---- */
.site-main {
  position: relative;
  z-index: 10;
  min-height: 60vh;
}

/* ---- Shared Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 28px;
  direction: rtl;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: right 0.55s ease;
  transform: skewX(-20deg);
}

.btn:hover::before {
  right: 120%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--sakura-2) 0%, var(--sakura-1) 55%, var(--sakura-deep) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(242, 143, 178, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(242, 143, 178, 0.55);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--sakura-1);
  border: 2px solid var(--sakura-1);
}

.btn--ghost:hover {
  background: var(--sakura-1);
  color: white;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn--large {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.badge--new {
  background: var(--ink-2);
  color: var(--gold-light);
}

.badge--best {
  background: var(--gold);
  color: white;
}

.badge--sale {
  background: var(--sakura-1);
  color: white;
}

/* ---- Product Card ---- */
.product-card {
  background: var(--washi-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform 0.1s linear;
  position: relative;
  will-change: transform;
  border: 1px solid rgba(232, 117, 142, 0.1);
  transform-style: preserve-3d;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
}

.product-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--washi-1);
}

.product-card__image-wrap {
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--washi-1), var(--sakura-light));
}

.product-card__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}

.product-card__img--primary {
  z-index: 1;
  opacity: 1;
}

.product-card__img--hover {
  z-index: 2;
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-card__img--hover {
  opacity: 1;
  transform: scale(1);
}

.product-card:hover .product-card__img--primary {
  transform: scale(1.04);
}

.product-card__img-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sakura-light), var(--washi-1));
}

.product-card__badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 5;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 31, 26, 0.72) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 4;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__overlay-text {
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}

.product-card__info {
  padding: 18px 18px 20px;
  text-align: right;
}

.product-card__category {
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sakura-1);
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.product-card__name {
  font-family: 'Amiri', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.product-card__name a {
  color: var(--text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.product-card__name a:hover {
  color: var(--sakura-1);
}

.product-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 12px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-direction: row-reverse;
}

/* ---- Prices ---- */
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.price--sale {
  color: var(--sakura-1);
  font-weight: 700;
}

.price--original {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 0.9rem;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  padding: 40px 0 28px;
  position: relative;
}

.section-title {
  font-family: 'Amiri', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-1);
  margin-bottom: 12px;
  direction: rtl;
}

.section-divider {
  font-size: 1.2rem;
  color: var(--sakura-1);
  letter-spacing: 10px;
  margin-bottom: 10px;
  display: block;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink-1);
  color: rgba(255,255,255,0.75);
  margin-top: 80px;
  padding: 60px 0 0;
  direction: rtl;
  text-align: right;
  position: relative;
  z-index: 10;
}

.site-footer::before {
  content: '花';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 160px;
  font-family: 'Amiri', serif;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.footer-rose-divider {
  text-align: center;
  font-size: 1.3rem;
  color: var(--sakura-1);
  letter-spacing: 12px;
  padding: 0 0 32px;
  opacity: 0.7;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  text-align: right;
  direction: rtl;
}

.footer-brand .logo-rose {
  color: var(--sakura-1);
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-links h4 {
  font-family: 'Amiri', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links a {
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sakura-2);
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 40px;
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  direction: rtl;
}

/* ---- Bloom entrance animation ---- */
.bloom-in {
  animation: bloom-entrance 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes bloom-entrance {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  /* CSS fallback: never stay invisible beyond 1.5s */
  animation: bloom-fallback 0s 1.5s forwards;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

@keyframes bloom-fallback {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up { opacity: 1; transform: none; animation: none; }
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: row-reverse;
  padding: 40px 0;
}

.pagination__btn {
  font-family: 'Cairo', 'Quicksand', sans-serif;
  font-size: 0.9rem;
  color: var(--sakura-1);
  text-decoration: none;
  border: 1.5px solid var(--sakura-1);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.pagination__btn:hover {
  background: var(--sakura-1);
  color: white;
}

.pagination__info {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Empty state ---- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state__icon {
  font-size: 3rem;
  color: var(--sakura-2);
  margin-bottom: 16px;
  animation: logo-spin 6s linear infinite;
  display: inline-block;
}

.empty-state h3 {
  font-family: 'Amiri', serif;
  font-size: 1.5rem;
  color: var(--ink-1);
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-muted);
  font-family: 'Cairo', 'Quicksand', sans-serif;
}

.empty-state a {
  color: var(--sakura-1);
  text-decoration: underline;
}

/* ---- Radial bloom glow on card hover ---- */
.product-card::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232, 117, 142, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
}

.product-card:hover::after {
  opacity: 1;
}

/* ---- Ink brush stroke decorative line ---- */
.brush-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sakura-1), transparent);
  margin: 0 auto 24px;
  border-radius: 2px;
  position: relative;
}

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .nav-inner {
    padding: 0 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px 40px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  body::before, body::after {
    font-size: 140px;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 20px 32px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
