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

:root {
  --cream: #FAF6F0;
  --cream-dark: #F0EBE3;
  --indigo: #1B2838;
  --indigo-light: #2A3D52;
  --wasabi: #7B8F4E;
  --wasabi-light: #9AAF6E;
  --terracotta: #C4713B;
  --terracotta-light: #D48B5A;
  --charcoal: #333333;
  --gray: #777777;
  --gray-light: #BBBBBB;
  --white: #FFFFFF;
  --shadow: rgba(27, 40, 56, 0.08);
  --shadow-md: rgba(27, 40, 56, 0.12);
  --shadow-lg: rgba(27, 40, 56, 0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  line-height: 1.4;
  color: var(--indigo);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 16px auto 0;
}

.section-title span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 2px;
}

section {
  padding: 80px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 40, 56, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 2px;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.7;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--indigo);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition);
}

.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--cream);
  box-shadow: -4px 0 30px var(--shadow-lg);
  z-index: 1000;
  padding: 100px 32px 32px;
  transition: right var(--transition);
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--indigo);
  border-bottom: 1px solid rgba(27, 40, 56, 0.06);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav a:hover {
  color: var(--terracotta);
  padding-left: 8px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 40, 56, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0D1821;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) saturate(0.8);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(13, 24, 33, 0.85) 0%, rgba(13, 24, 33, 0.4) 50%, rgba(13, 24, 33, 0.7) 100%);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-glow-1 {
  top: 10%;
  left: -5%;
  background: var(--terracotta);
}

.hero-glow-2 {
  bottom: 5%;
  right: -8%;
  background: var(--wasabi);
  animation-delay: 3s;
}

@keyframes glowPulse {
  0% { opacity: 0.15; transform: scale(1); }
  100% { opacity: 0.35; transform: scale(1.2); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(250, 246, 240, 0.25);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.hero-particle:nth-child(1) { left: 12%; animation-duration: 14s; animation-delay: 0s; width: 2px; height: 2px; }
.hero-particle:nth-child(2) { left: 28%; animation-duration: 18s; animation-delay: 2s; }
.hero-particle:nth-child(3) { left: 45%; animation-duration: 12s; animation-delay: 4s; width: 4px; height: 4px; opacity: 0.4; }
.hero-particle:nth-child(4) { left: 62%; animation-duration: 16s; animation-delay: 1s; }
.hero-particle:nth-child(5) { left: 78%; animation-duration: 20s; animation-delay: 3s; width: 2px; height: 2px; }
.hero-particle:nth-child(6) { left: 90%; animation-duration: 15s; animation-delay: 5s; }
.hero-particle:nth-child(7) { left: 35%; animation-duration: 22s; animation-delay: 7s; width: 2px; height: 2px; }
.hero-particle:nth-child(8) { left: 55%; animation-duration: 17s; animation-delay: 6s; width: 4px; height: 4px; opacity: 0.3; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(196, 113, 59, 0.4), transparent);
  opacity: 0;
  animation: heroFadeIn 1.5s 1.2s forwards;
}

.hero-deco-line-1 {
  top: 15%;
  right: 10%;
}

.hero-deco-line-2 {
  bottom: 20%;
  left: 8%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(123, 143, 78, 0.35), transparent);
  animation-delay: 1.6s;
}

.hero-deco-circle {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(250, 246, 240, 0.06);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  opacity: 0;
  animation: heroFadeIn 2s 1s forwards, decoSpin 40s linear infinite;
}

@keyframes decoSpin {
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(196, 113, 59, 0.15);
  border: 1px solid rgba(196, 113, 59, 0.3);
  border-radius: 30px;
  color: var(--terracotta-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s 0.2s forwards;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-text h1 {
  color: var(--cream);
  font-size: 3.6rem;
  line-height: 1.25;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.4s forwards;
  letter-spacing: 2px;
}

.hero-text h1 .hero-accent {
  color: var(--terracotta-light);
  position: relative;
}

.hero-text h1 .hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--terracotta);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-text p {
  color: rgba(250, 246, 240, 0.75);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.6s forwards;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.8s forwards;
}

.hero-vertical {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: rgba(250, 246, 240, 0.08);
  letter-spacing: 14px;
  user-select: none;
  opacity: 0;
  animation: heroFadeIn 1.5s 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  color: rgba(250, 246, 240, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250, 246, 240, 0.4), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--terracotta-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 4;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 113, 59, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 240, 0.4);
}

.btn-secondary:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: rgba(250, 246, 240, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.7s forwards;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px var(--shadow-md);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 20px;
}

.product-card-category {
  font-size: 0.75rem;
  color: var(--wasabi);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 8px;
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terracotta);
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 18px;
  background: var(--indigo);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
}

.product-card-btn:hover {
  background: var(--terracotta);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 40, 56, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform var(--transition);
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27, 40, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--indigo);
  z-index: 10;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--terracotta);
  color: var(--white);
}

.modal-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-product-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-product-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-product-info .product-card-category {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.modal-product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal-product-info .product-card-price {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.modal-product-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 24px;
}

.modal-blog {
  padding: 0;
}

.modal-blog-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-blog-content {
  padding: 36px;
}

.modal-blog-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-blog-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.modal-blog-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--charcoal);
}

.modal-blog-text p {
  margin-bottom: 16px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--white);
  color: var(--indigo);
  border: 1px solid rgba(27, 40, 56, 0.1);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 8px;
  line-height: 1.5;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item i {
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-top: 4px;
  width: 20px;
  text-align: center;
}

.contact-info-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-item a {
  color: var(--terracotta);
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--indigo);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(27, 40, 56, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 113, 59, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--terracotta);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--terracotta);
  text-decoration: underline;
}

.site-footer {
  background: var(--indigo);
  color: rgba(250, 246, 240, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--terracotta);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--cream);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--terracotta);
  width: 16px;
  text-align: center;
}

.footer-contact-item a:hover {
  color: var(--terracotta);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.4);
  max-width: 800px;
  margin: 0 auto 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.5);
}

.page-hero {
  padding: 140px 0 60px;
  background: var(--indigo);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(123, 143, 78, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(196, 113, 59, 0.1) 0%, transparent 50%);
}

.page-hero h1 {
  color: var(--cream);
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(250, 246, 240, 0.6);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.5);
  justify-content: center;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(250, 246, 240, 0.5);
}

.breadcrumb a:hover {
  color: var(--cream);
}

.cart-page {
  padding: 120px 0 80px;
  min-height: 70vh;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
}

.cart-empty i {
  font-size: 3rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.cart-empty p {
  color: var(--gray);
  margin-bottom: 24px;
}

.cart-items {
  margin-bottom: 40px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px var(--shadow);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--terracotta);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-qty button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--indigo);
  transition: all var(--transition);
}

.cart-item-qty button:hover {
  background: var(--terracotta);
  color: var(--white);
}

.cart-item-qty span {
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  color: var(--gray-light);
  font-size: 1.1rem;
  transition: color var(--transition);
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cart-total {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27, 40, 56, 0.06);
}

.cart-total-row.total {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--indigo);
  padding-top: 16px;
}

.checkout-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
}

.checkout-form h3 {
  margin-bottom: 24px;
}

.payment-methods {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.payment-btn {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
}

.payment-btn.stripe {
  background: #635BFF;
  color: var(--white);
}

.payment-btn.stripe:hover {
  background: #4B44CC;
}

.payment-btn.paypal {
  background: #FFC439;
  color: #003087;
}

.payment-btn.paypal:hover {
  background: #F0B82D;
}

.success-modal {
  text-align: center;
  padding: 48px 36px;
}

.success-modal i {
  font-size: 3.5rem;
  color: var(--wasabi);
  margin-bottom: 20px;
}

.success-modal h3 {
  margin-bottom: 12px;
}

.success-modal p {
  color: var(--gray);
  line-height: 1.8;
}

.policy-page {
  padding: 40px 0 80px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 2;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.policy-content ul li {
  list-style: disc;
  color: var(--gray);
  margin-bottom: 6px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--indigo);
  color: var(--cream);
  padding: 20px;
  z-index: 3000;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px var(--shadow-lg);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner p a {
  color: var(--terracotta-light);
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}

.cookie-accept:hover {
  background: var(--terracotta-light);
}

.cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(250, 246, 240, 0.6);
  border: 1px solid rgba(250, 246, 240, 0.2);
  border-radius: var(--radius);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(250, 246, 240, 0.5);
  color: var(--cream);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

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

.about-full-page {
  padding: 40px 0 80px;
}

.about-full-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  height: 360px;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.about-full-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-full-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-full-content h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.about-full-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 2;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
}

.about-value-card i {
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.about-value-card h4 {
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 0;
}

.usp-strip {
  background: var(--indigo);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.usp-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(123, 143, 78, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(196, 113, 59, 0.08) 0%, transparent 50%);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.usp-item {
  text-align: center;
  color: var(--cream);
}

.usp-item i {
  font-size: 1.8rem;
  color: var(--terracotta-light);
  margin-bottom: 12px;
  display: block;
}

.usp-item h4 {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.usp-item p {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.6);
  line-height: 1.6;
}

.categories-section {
  background: var(--cream-dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-md);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 40, 56, 0.85) 0%, rgba(27, 40, 56, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(27, 40, 56, 0.9) 0%, rgba(27, 40, 56, 0.2) 60%);
}

.category-card-overlay h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.category-card-overlay p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.85rem;
}

.stats-section {
  background: var(--white);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  font-size: 1.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.reviews-section {
  background: var(--cream-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: 'Noto Serif JP', serif;
  font-size: 4rem;
  color: var(--terracotta);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.review-stars {
  color: #F0B429;
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 2px;
}

.review-author-info p {
  font-size: 0.78rem;
  color: var(--gray);
}

.cta-section {
  background: var(--indigo);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(196, 113, 59, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(123, 143, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(250, 246, 240, 0.7);
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.2;
  margin-bottom: 12px;
  line-height: 1;
}

.process-step i {
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: block;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gray-light);
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  .hero-text h1 { font-size: 2.6rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .cart-summary { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 60px 0; }

  .main-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { min-height: 85vh; }
  .hero-text h1 { font-size: 2rem; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-vertical { display: none; }
  .hero-scroll { display: none; }
  .hero-deco-circle { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-badge { font-size: 0.72rem; }
  .hero-text p { max-width: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-product { grid-template-columns: 1fr; }
  .modal-product-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .page-hero { padding: 120px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }
  .about-values { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }

  .cart-item { flex-direction: column; text-align: center; }
  .cart-item-qty { justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .header-inner { height: 60px; }
  .logo { font-size: 1.3rem; }
  .hero-text h1 { font-size: 1.6rem; }
  .policy-content { padding: 24px; }
  .contact-form { padding: 24px; }
  .payment-methods { flex-direction: column; }
  .usp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
