/* ========================================
   도쿠시마현 한국어 웹사이트 - 메인 스타일
   ======================================== */

:root {
  --color-navy: #1a1a2e;
  --color-orange: #f4a261;
  --color-teal: #2ec4b6;
  --color-cream: #fefae0;
  --color-white: #ffffff;
  --color-dark: #0f0f1a;
  --color-gray: #6b7280;
  --color-light-gray: #f3f4f6;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.2);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: var(--color-cream);
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================================
   일본 전통 패턴 배경
   ======================================== */
.pattern-bg {
  background-color: var(--color-navy);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4a261' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pattern-section {
  background-color: var(--color-cream);
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1a2e' fill-opacity='0.03'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ========================================
   헤더 & 네비게이션
   ======================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0 2rem;
}

#main-header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  color: var(--color-orange);
  font-weight: 700;
}

.logo-kr {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-orange);
  background: rgba(244,162,97,0.1);
}

.nav-links .nav-cta a {
  background: var(--color-orange);
  color: var(--color-navy);
  font-weight: 700;
  padding: 0.5rem 1.1rem;
}

.nav-links .nav-cta a:hover {
  background: #e8904d;
  color: var(--color-navy);
}

/* 햄버거 메뉴 */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

#hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 모바일 메뉴 */
#mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 1rem 2rem 2rem;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

#mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

#mobile-menu ul {
  list-style: none;
}

#mobile-menu ul li a {
  display: block;
  padding: 0.875rem 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

#mobile-menu ul li a:hover {
  color: var(--color-orange);
  padding-left: 0.5rem;
}

/* ========================================
   히어로 섹션
   ======================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/1920/1080?random=1');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.85) 0%,
    rgba(26,26,46,0.5) 50%,
    rgba(26,26,46,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(244,162,97,0.2);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--color-orange);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-orange);
  color: var(--color-navy);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--color-orange);
}

.btn-primary:hover {
  background: #e8904d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,162,97,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   공통 섹션 스타일
   ======================================== */
section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-orange);
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-desc {
  color: var(--color-gray);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}

/* ========================================
   주목 정보 카드 (섹션2)
   ======================================== */
#highlights {
  background: var(--color-navy);
}

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

.highlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(244,162,97,0.2);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: var(--transition);
  cursor: pointer;
}

.highlight-card:hover {
  background: rgba(244,162,97,0.1);
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,162,97,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.highlight-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.highlight-card h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.highlight-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ========================================
   추천 정보 그리드 (섹션3)
   ======================================== */
#categories {
  background: var(--color-cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.category-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.category-img-wrap {
  overflow: hidden;
}

.category-body {
  padding: 1.5rem;
}

.category-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.category-body p {
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.7;
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-orange);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: var(--transition);
}

.category-card:hover .category-arrow {
  gap: 0.5rem;
}

/* ========================================
   이달의 특산품 (섹션4)
   ======================================== */
#specialty-highlight {
  background: white;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.specialty-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--color-cream);
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.specialty-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.specialty-card-body {
  padding: 1.5rem;
}

.specialty-name-jp {
  font-family: 'Noto Serif JP', serif;
  color: var(--color-orange);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.specialty-name-kr {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.specialty-desc {
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  background: transparent;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

/* ========================================
   접근성 섹션 (섹션5)
   ======================================== */
#access-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #16213e 100%);
  color: white;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.access-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.access-card:hover {
  background: rgba(244,162,97,0.1);
  border-color: rgba(244,162,97,0.3);
}

.access-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.access-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.access-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ========================================
   푸터
   ======================================== */
footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo-jp {
  font-size: 1.6rem;
}

.footer-brand .logo-kr {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer-disclaimer {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(244,162,97,0.1);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 6px 6px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-nav h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 0.6rem;
}

.footer-nav ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1.5rem;
}

/* ========================================
   페이드인 애니메이션
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   페이지 공통 히어로 (서브페이지)
   ======================================== */
.page-hero {
  background: var(--color-navy);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4a261' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.page-hero h1 span {
  color: var(--color-orange);
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ========================================
   모달
   ======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-light-gray);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: #e5e7eb;
}

.modal h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.modal-product-name {
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  background: white;
  color: var(--color-navy);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(244,162,97,0.15);
}

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

.btn-submit {
  width: 100%;
  background: var(--color-navy);
  color: white;
  padding: 0.875rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Sans KR', sans-serif;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--color-orange);
}

/* ========================================
   탭 필터
   ======================================== */
.tab-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 100px;
  background: white;
  color: var(--color-gray);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(244,162,97,0.08);
}

/* ========================================
   상품 그리드 (market 페이지)
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.product-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 1.25rem;
}

.product-category-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tag-agriculture { background: #d1fae5; color: #065f46; }
.tag-seafood { background: #dbeafe; color: #1e40af; }
.tag-craft { background: #ede9fe; color: #5b21b6; }
.tag-processed { background: #fef3c7; color: #92400e; }

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.product-origin {
  font-size: 0.8rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ========================================
   갤러리 그리드
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.5);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========================================
   반응형
   ======================================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .highlight-grid,
  .categories-grid,
  .specialty-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
