
:root {
  --background: 210 25% 97%;
  --foreground: 220 30% 15%;
  --card: 0 0% 100%;
  --card-foreground: 220 30% 15%;
  --primary: 225 45% 20%;
  --primary-foreground: 0 0% 98%;
  --secondary: 35 25% 92%;
  --secondary-foreground: 220 30% 20%;
  --muted: 210 20% 94%;
  --muted-foreground: 220 15% 45%;
  --accent: 8 75% 62%;
  --border: 220 15% 88%;
  --coral: 8 75% 62%;
  --coral-light: 8 85% 92%;
  --navy: 225 45% 20%;
  --navy-light: 225 35% 35%;
  --gold: 40 70% 50%;
  --sakura: 350 80% 88%;
  --gradient-hero: linear-gradient(135deg, hsl(225 45% 15%) 0%, hsl(225 35% 28%) 50%, hsl(220 30% 35%) 100%);
  --gradient-coral: linear-gradient(135deg, hsl(8 75% 62%) 0%, hsl(15 80% 55%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(210 25% 97%) 0%, hsl(210 20% 94%) 100%);
  --shadow-sm: 0 1px 2px 0 hsl(220 30% 15% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(220 30% 15% / 0.1), 0 2px 4px -2px hsl(220 30% 15% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(220 30% 15% / 0.1), 0 4px 6px -4px hsl(220 30% 15% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(220 30% 15% / 0.1), 0 8px 10px -6px hsl(220 30% 15% / 0.1);
  --shadow-glow: 0 0 40px hsl(8 75% 62% / 0.15);
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

.app-shell {
  background: hsl(var(--background));
  min-height: 100vh;
}

.landing {
  min-height: 100vh;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}

.logo__accent {
  color: hsl(var(--accent));
}

.logo--light {
  color: hsl(var(--background));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--coral {
  background: hsl(var(--accent));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}

.btn--coral:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn--hero {
  background: hsl(var(--primary-foreground));
  color: hsl(var(--primary));
}

.btn--hero-outline {
  background: transparent;
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary-foreground) / 0.4);
}

.btn--hero-outline:hover {
  background: hsl(var(--primary-foreground) / 0.15);
}

.btn--xl {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--lg {
  padding: 0.95rem 2rem;
}

.btn__icon {
  font-size: 1.1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.navbar__link {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar__link:hover {
  color: hsl(var(--foreground));
}

.navbar__toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 0.9rem;
}

.lang-select__label {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.lang-select__chevron {
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 180px;
  z-index: 10;
  display: grid;
  gap: 0.25rem;
}

.lang-menu--right {
  right: 0;
  left: auto;
}

.lang-menu--mobile {
  position: static;
  min-width: unset;
  box-shadow: none;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.lang-menu__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.lang-menu__item:hover {
  background: hsl(var(--muted));
}

.flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid hsl(var(--border));
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.flag--us {
  background: repeating-linear-gradient(
      to bottom,
      #b22234 0px,
      #b22234 3px,
      #ffffff 3px,
      #ffffff 6px
    );
}

.flag--us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 55%;
  background: #3c3b6e;
}

.flag--es {
  background: linear-gradient(
    to bottom,
    #aa151b 0%,
    #aa151b 30%,
    #f1bf00 30%,
    #f1bf00 70%,
    #aa151b 70%,
    #aa151b 100%
  );
}

.navbar__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: hsl(var(--foreground));
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar__mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  animation: fadeIn 0.4s ease forwards;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.7);
  backdrop-filter: blur(2px);
}

.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.hero__orb--left {
  top: 5rem;
  left: 4rem;
  width: 16rem;
  height: 16rem;
  background: hsl(var(--accent) / 0.2);
}

.hero__orb--right {
  bottom: 5rem;
  right: 4rem;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--sakura) / 0.2);
  animation-delay: 2s;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  text-align: center;
  color: hsl(var(--primary-foreground));
}

.hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: hsl(var(--primary-foreground) / 0.1);
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  margin-bottom: 2rem;
}

.hero__badge-icon {
  font-size: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient-coral {
  background-image: var(--gradient-coral);
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}


.section--contact .btn--hero-outline {
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary-foreground) / 0.4);
}


.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease infinite;
}

.hero__scroll-indicator {
  width: 24px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.4rem;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: hsl(var(--primary-foreground) / 0.5);
}

.section {
  padding: 6rem 0;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section__header--light {
  color: hsl(var(--primary-foreground));
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--accent));
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section__subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
  line-height: 1.6;
}

.section--services {
  background: var(--gradient-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: hsl(var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.section--benefits {
  background: hsl(var(--background));
}

.benefits-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.benefits-copy .section__subtitle {
  margin-bottom: 2rem;
}

.benefits-highlight {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: hsl(var(--secondary));
  padding: 1.5rem;
  border-radius: 1rem;
}

.benefits-highlight__kanji {
  font-size: 2.5rem;
  color: hsl(var(--accent));
  font-weight: 300;
}

.benefits-highlight__title {
  font-weight: 600;
}

.benefits-highlight__text {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.benefit-card {
  display: grid;
  gap: 0.5rem;
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.benefits-banner {
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: hsl(var(--primary));
  padding: 2.5rem;
  color: hsl(var(--primary-foreground));
}

.benefits-banner__kanji {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  color: hsl(var(--primary-foreground) / 0.03);
  pointer-events: none;
  user-select: none;
}

.benefits-banner__content {
  position: relative;
  z-index: 1;
}

.benefits-banner__content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.75rem 0 1rem;
}

.benefits-banner__content p {
  color: hsl(var(--primary-foreground) / 0.7);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 2rem;
}

.benefits-banner__grid {
  display: grid;
  gap: 1rem;
}

.benefits-banner__card {
  background: hsl(var(--primary-foreground) / 0.05);
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.benefits-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
  display: grid;
  place-items: center;
  font-weight: 700;
}

.benefits-banner__card h4 {
  font-size: 1rem;
}

.benefits-banner__card p {
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section--process {
  background: hsl(var(--primary));
  position: relative;
  overflow: hidden;
}

.section--process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, hsl(var(--primary-foreground) / 0.03) 10px, hsl(var(--primary-foreground) / 0.03) 11px);
  opacity: 0.7;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.process-card {
  position: relative;
  background: hsl(var(--primary-foreground) / 0.05);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  backdrop-filter: blur(6px);
}

.process-card__number {
  font-size: 2.5rem;
  color: hsl(var(--accent) / 0.5);
  font-weight: 700;
}

.process-card__content h3 {
  color: hsl(var(--primary-foreground));
  margin: 0.5rem 0;
}

.process-card__content p {
  color: hsl(var(--primary-foreground) / 0.7);
  line-height: 1.6;
}

.process-card__connector {
  display: none;
}

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

.section--faq {
  background: hsl(var(--secondary));
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-link {
  color: hsl(var(--accent));
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.35rem;
}

.faq-link:hover {
  text-decoration: underline;
}

.faq-panel {
  max-width: 860px;
  margin: 0 auto;
}

.faq-kanji {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground) / 0.5);
  margin-bottom: 1rem;
}

.faq-kanji span:first-child {
  font-size: 2rem;
  font-weight: 300;
}

.faq-kanji__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.about__story {
  text-align: center;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin: 2.5rem 0;
}

.about__story p + p {
  margin-top: 1.5rem;
}

.about__locations {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.location-card {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-xl);
}

.location-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: hsl(var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.location-card__flag {
  font-size: 1.75rem;
  margin-top: 1rem;
}

.section--contact {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-copy .section__subtitle {
  color: hsl(var(--primary-foreground) / 0.7);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact__info a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.8);
  transition: color 0.2s ease;
}

.contact__info a:hover {
  color: hsl(var(--primary-foreground));
}

.contact__icon {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: hsl(var(--accent));
}

.contact-card {
  background: hsl(var(--primary-foreground) / 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  color: hsl(var(--primary-foreground) / 0.9);
}

.form-input {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  padding: 0.75rem 0.9rem;
  background: hsl(var(--primary-foreground) / 0.1);
  color: hsl(var(--primary-foreground));
  font-size: 0.95rem;
}

.form-input::placeholder {
  color: hsl(var(--primary-foreground) / 0.4);
}

.form-textarea {
  min-height: 140px;
  resize: none;
}

.form-error {
  color: hsl(var(--accent));
  font-size: 0.8rem;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

.contact-success {
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: 2rem 1rem;
}

.contact-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-weight: 700;
}

.footer {
  background: hsl(var(--foreground));
  padding: 3rem 0;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer__tagline {
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  color: hsl(var(--muted));
}

.footer__links a {
  color: hsl(var(--muted));
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: hsl(var(--background));
}

.footer__copy {
  color: hsl(var(--muted));
  font-size: 0.85rem;
}

.products-page {
  min-height: 100vh;
  background: hsl(var(--background));
}

.products-hero {
  position: relative;
  padding: 7rem 0 3rem;
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  overflow: hidden;
}

.products-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(hsl(var(--primary-foreground) / 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
}

.products-hero__content {
  position: relative;
  z-index: 1;
}

.products-hero__copy {
  max-width: 600px;
}

.products-hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--accent));
  margin-bottom: 0.75rem;
}

.products-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.products-hero h1 span {
  color: hsl(var(--accent));
}

.products-hero p {
  color: hsl(var(--primary-foreground) / 0.7);
  font-size: 1.05rem;
}

.products-hero__kanji {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: hsl(var(--primary-foreground) / 0.05);
  display: none;
}

.products-body {
  padding: 3rem 0 4rem;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-pill {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  font-size: 0.9rem;
  cursor: pointer;
}

.category-pill.is-active {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.products-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.products-search {
  position: relative;
  max-width: 320px;
}

.products-search input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  padding: 0.6rem 1rem 0.6rem 2.5rem;
}

.products-search__icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.products-select {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 200px;
}

.products-select select {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 0.6rem 0.75rem;
  background: hsl(var(--card));
}

.products-count {
  margin-top: 1.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.products-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.5);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card__image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: hsl(var(--muted));
}

.product-card__body {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--accent));
  font-weight: 600;
}

.product-card__meta {
  display: grid;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-card__tags span {
  background: hsl(var(--secondary));
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
}

.products-empty {
  margin-top: 3rem;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.products-empty__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: hsl(var(--muted));
  display: grid;
  place-items: center;
  font-weight: 700;
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
  }

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

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

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

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

  .benefits-banner {
    padding: 3.5rem;
  }

  .benefits-banner__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .products-filters {
    flex-direction: row;
    align-items: flex-end;
  }

  .products-hero__kanji {
    display: block;
  }
}

@media (max-width: 767px) {
  .navbar__row {
    padding: 1rem 0;
  }
}
.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: hsl(var(--muted));
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.not-found p {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.not-found a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: hsl(32 90% 55%);
  color: hsl(var(--primary));
  overflow: hidden;
}

.splash__panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(32 90% 55%) 0%, hsl(22 80% 60%) 100%);
}

.splash__panel--left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.splash__panel--right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.splash__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.splash__logo {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--primary));
}

.splash__loader {
  display: inline-flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}

.splash__loader span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: hsl(var(--primary));
  animation: splashPulse 1s ease-in-out infinite;
}

.splash__loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.splash__loader span:nth-child(3) {
  animation-delay: 0.3s;
}

.splash__text {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--primary) / 0.8);
}

.splash--exit .splash__panel--left {
  animation: splashSplitLeft 0.9s ease forwards;
}

.splash--exit .splash__panel--right {
  animation: splashSplitRight 0.9s ease forwards;
}

.splash--exit .splash__content {
  animation: splashFade 0.5s ease forwards;
}

@keyframes splashPulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes splashSplitLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-110%, -110%, 0);
  }
}

@keyframes splashSplitRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(110%, 110%, 0);
  }
}

@keyframes splashFade {
  to {
    opacity: 0;
  }
}
