/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f8fa;
  color: #1a1a2e;
  min-height: 100vh;
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
em { font-style: normal; }

/* ── Variables ─────────────────────────────────────── */
:root {
  --primary: #1a6b8a;
  --primary-dark: #125270;
  --primary-light: #e8f4f8;
  --accent: #f0a500;
  --accent-dark: #c88400;
  --green: #3a7c4e;
  --green-light: #eaf4ee;
  --red: #e53935;
  --text: #1a1a2e;
  --text-sub: #5a6278;
  --border: #e2e6ee;
  --bg: #f7f8fa;
  --card: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 28px rgba(0,0,0,.14);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ── Header ────────────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}
.logo-text { line-height: 1.2; }
.logo-main {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-sub { font-size: 11px; color: var(--text-sub); }
.logo-wando {
  font-size: 20px;
  color: #f97316;
}

.search-bar {
  flex: 1;
  max-width: 520px;
  position: relative;
  display: flex;
  align-items: center;
}
.search-bar input {
  width: 100%;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 0 90px 0 18px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  background: var(--bg);
}
.search-bar input:focus { border-color: var(--primary); background: #fff; }
.search-bar input::placeholder { color: #aaa; }
.search-btn {
  position: absolute;
  right: 44px;
  top: 50%; transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 6px 14px;
  font-size: 13px;
  transition: background .2s;
}
.search-btn:hover { background: var(--primary-dark); }
.search-clear {
  position: absolute;
  right: 10px;
  top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-size: 14px;
}
.search-clear:hover { background: #999; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.signup-btn {
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  background: #fff;
  transition: all .2s;
  white-space: nowrap;
}
.signup-btn:hover { background: var(--primary); color: #fff; }

/* 로그인 버튼 */
.login-btn {
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  transition: all .2s;
  white-space: nowrap;
}
.login-btn:hover { background: var(--primary-dark); }

/* 로그인 후 유저 정보 */
.user-info-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border-radius: 22px;
  padding: 6px 14px 6px 8px;
  cursor: pointer;
}
.user-avatar {
  width: 30px; height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.user-name-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  white-space: nowrap;
}
.user-name-label:hover { text-decoration: underline; }
.logout-btn {
  font-size: 12px;
  color: var(--text-sub);
  padding: 3px 8px;
  border-radius: 8px;
  transition: background .2s;
}
.logout-btn:hover { background: #ddd; }

/* ── 로그인 모달 ────────────────────────────────────── */
.login-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  border-radius: 20px;
  z-index: 201;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  overflow: hidden;
}
.login-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.login-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d4f6b 100%);
  padding: 32px 32px 24px;
  text-align: center;
  color: #fff;
}
.login-modal-logo {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}
.login-modal-logo img { width: 100%; height: 100%; object-fit: contain; }
.login-modal-header h2 { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.login-modal-header p  { font-size: 13px; opacity: .85; }

.login-modal-body { padding: 24px 28px 28px; }
.login-form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.login-form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.login-form-group input {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.login-form-group input:focus { border-color: var(--primary); }

.login-pw-wrap { position: relative; }
.login-pw-wrap input { width: 100%; padding-right: 44px; }
.login-pw-wrap button {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-sub);
}

.login-error {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  min-height: 18px;
  margin-bottom: 4px;
}

.btn-login-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  transition: background .2s;
  box-shadow: 0 4px 14px rgba(26,107,138,.3);
}
.btn-login-submit:hover { background: var(--primary-dark); }

.login-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sub);
}
.login-links a { color: var(--primary); font-weight: 600; }

/* ── 마이페이지 패널 ─────────────────────────────────── */
.mypage-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.mypage-overlay.open { opacity: 1; visibility: visible; }

.mypage-panel {
  position: fixed;
  top: 0; right: -440px;
  width: 420px; max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 301;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
}
.mypage-panel.open { right: 0; }

.mypage-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary) 0%, #0d4f6b 100%);
  color: #fff;
}
.mypage-header h2 { font-size: 18px; font-weight: 800; }
.mypage-header button { font-size: 22px; color: rgba(255,255,255,.8); }

.mypage-body { flex: 1; overflow-y: auto; padding: 20px; }

.mp-profile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--primary-light);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--primary);
}
.mp-avatar {
  width: 52px; height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mp-info h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; color: var(--text); }
.mp-info p  { font-size: 12px; color: var(--text-sub); line-height: 1.8; }
.mp-intro   { font-style: italic; }
.mp-joined  { color: var(--text-sub); font-size: 11px; margin-top: 4px; }

.mp-section-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}
.mp-section-title span { color: var(--primary); }

.mp-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mp-product-img {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg);
}
.mp-product-img img { width: 100%; height: 100%; object-fit: cover; }
.mp-product-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mp-product-info strong { font-size: 14px; font-weight: 700; }
.mp-product-info span   { font-size: 12px; color: var(--text-sub); }
.mp-product-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  flex-shrink: 0;
}
.mp-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 2;
}
.mp-empty a { color: var(--primary); font-weight: 700; }

/* ── 마이페이지 추가 상품 등록 폼 ───────────────────── */
.mp-add-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--green) 0%, #2d6b40 100%);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 0;
  transition: opacity .2s;
  user-select: none;
}
.mp-add-toggle:hover { opacity: .9; }
.mp-add-arrow { font-size: 12px; transition: transform .2s; }

.mp-add-form {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: #f8fffe;
  border: 1.5px solid #b2dfdb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 18px;
  margin-bottom: 4px;
}
.mp-add-form.open { display: flex; }

.mp-add-success {
  align-items: center;
  gap: 10px;
  background: #e8f5e9;
  border: 1.5px solid #66bb6a;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

.mp-form-row { display: flex; flex-direction: column; gap: 6px; }
.mp-form-row label { font-size: 12px; font-weight: 700; color: var(--text); }
.mp-req { color: var(--red); }
.mp-form-row input,
.mp-form-row select,
.mp-form-row textarea {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  width: 100%;
  transition: border-color .2s;
}
.mp-form-row input:focus,
.mp-form-row select:focus,
.mp-form-row textarea:focus { border-color: var(--green); }
.mp-form-row textarea { resize: vertical; min-height: 72px; line-height: 1.6; }

.mp-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex-direction: unset; }

.mp-input-unit { display: flex; }
.mp-input-unit input { border-radius: 9px 0 0 9px; flex: 1; }
.mp-input-unit span {
  background: var(--border);
  border: 1.5px solid var(--border);
  border-left: none;
  border-radius: 0 9px 9px 0;
  padding: 9px 10px;
  font-size: 12px;
  color: var(--text-sub);
  white-space: nowrap;
}

.mp-img-wrap {
  display: flex;
  gap: 10px;
}
.mp-img-main {
  flex: 1;
  min-height: 130px;
}
.mp-img-sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 76px;
}
.mp-img-sub { flex: 1; min-height: 38px; }

.mp-img-upload {
  border: 2px dashed var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  overflow: hidden;
  height: 100%;
}
.mp-img-upload:hover { border-color: var(--green); background: #f1f8f4; }
.mp-img-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 130px;
  font-size: 13px;
  color: var(--text-sub);
}
.mp-img-preview span { font-size: 24px; }
.mp-img-preview-sub {
  flex-direction: column;
  gap: 2px;
  min-height: 38px;
}
.mp-img-preview-sub span { font-size: 16px; font-weight: 700; }
.mp-img-preview-sub p { font-size: 10px; margin: 0; }

.mp-submit-btn {
  background: linear-gradient(135deg, var(--green) 0%, #2d6b40 100%);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: all .2s;
  box-shadow: 0 3px 10px rgba(58,124,78,.3);
  width: 100%;
  text-align: center;
}
.mp-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(58,124,78,.4); }

.producer-btn {
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border: 2px solid var(--green);
  background: var(--green-light);
  transition: all .2s;
  white-space: nowrap;
}
.producer-btn:hover { background: var(--green); color: #fff; }

.cart-btn {
  position: relative;
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .1s;
}
.cart-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.cart-badge {
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

/* ── Banner ────────────────────────────────────────── */
.banner-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--primary-dark);
}
.banner-track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.banner-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 48px;
}
.banner-content {
  display: flex;
  align-items: center;
  gap: 28px;
}
.banner-icon { font-size: 72px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); }
.banner-text { color: #fff; }
.banner-sub { font-size: 15px; opacity: .85; margin-bottom: 6px; }
.banner-title { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.banner-badge {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.banner-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;
}
.banner-dot.active { background: #fff; width: 22px; border-radius: 4px; }

/* ── Main Layout ───────────────────────────────────── */
.main { max-width: 1280px; margin: 0 auto; padding: 28px 24px 60px; }

/* ── Category Bar ──────────────────────────────────── */
.section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.category-tagline {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  text-align: center;
}

/* 서브카테고리 바 */
.sub-category-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.sub-category-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: all .2s;
}
.sub-category-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.sub-category-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
.category-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 32px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-sub);
  background: #fff;
  border: 2px solid var(--border);
  transition: all .2s;
  flex-shrink: 0;
}
.category-btn:hover { border-color: var(--primary); color: var(--primary); }
.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.cat-icon { font-size: 32px; }

/* ── Product Section ───────────────────────────────── */
.product-section { margin-top: 48px; }
.product-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.product-section-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.empty-sub {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 6px;
  margin-bottom: 16px;
}
/* ── 생산자 프로필 카드 ─────────────────────────────── */
.producer-profile-card {
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  animation: fadeInDown .35s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pp-left {
  display: flex;
  gap: 18px;
  flex: 1;
  min-width: 0;
  align-items: flex-start;
}
.pp-avatar {
  width: 60px; height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-info { flex: 1; min-width: 0; }
.pp-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.pp-name { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.pp-id   { font-size: 12px; color: var(--text-sub); margin-bottom: 6px; }
.pp-intro {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pp-tags span {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 14px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}
.pp-right {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}
.pp-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pp-stat strong { font-size: 18px; font-weight: 900; color: var(--primary); }
.pp-stat span   { font-size: 11px; color: var(--text-sub); }

.empty-reg-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 11px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s;
}
.empty-reg-btn:hover { background: #2d6b40; }

/* ── Product Controls ──────────────────────────────── */
.product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.product-count { font-size: 15px; color: var(--text-sub); font-weight: 500; }
.sort-btns { display: flex; gap: 6px; }
.sort-btn {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-sub);
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
}
.sort-btn:hover { border-color: var(--primary); color: var(--primary); }
.sort-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Product Grid ──────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  transition: transform .3s;
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Product image color themes */
.product-img-seaweed, .product-img-seaweed2, .product-img-seaweed3 { background: linear-gradient(135deg, #c8e6c9, #a5d6a7); }
.product-img-abalone, .product-img-oyster { background: linear-gradient(135deg, #b3e5fc, #81d4fa); }
.product-img-fish, .product-img-mackerel { background: linear-gradient(135deg, #bbdefb, #90caf9); }
.product-img-processed, .product-img-porridge { background: linear-gradient(135deg, #fff9c4, #fff176); }
.product-img-yuzu, .product-img-yuzucheong { background: linear-gradient(135deg, #fff9c4, #ffe082); }
.product-img-hwangchil, .product-img-tea { background: linear-gradient(135deg, #dcedc8, #c5e1a5); }
.product-img-garlic { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
.product-img-fig { background: linear-gradient(135deg, #e8d5f5, #ce93d8); }
.product-img-sweetpotato { background: linear-gradient(135deg, #ffe0b2, #ffcc80); }

.product-emoji { filter: drop-shadow(0 3px 6px rgba(0,0,0,.12)); }

/* 실제 업로드 이미지 */
.product-img-uploaded { background: #f0f0f0; }
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.2px;
}
.badge-best { background: #fff3e0; color: #e65100; }
.badge-hot  { background: #fce4ec; color: #c62828; }
.badge-fresh { background: #e3f2fd; color: #1565c0; }
.badge-season { background: #e8f5e9; color: #2e7d32; }
.badge-gift { background: #f3e5f5; color: #6a1b9a; }
.badge-special { background: #fff8e1; color: #f57f17; }
.badge-organic { background: #e8f5e9; color: #1b5e20; }
.badge-premium { background: #ede7f6; color: #4527a0; }
.badge-easy { background: #e0f2f1; color: #00695c; }
.badge-new  { background: #e3f2fd; color: #0d47a1; }
.badge-신규 { background: #e8f5e9; color: #2e7d32; }
.badge-default { background: #eceff1; color: #37474f; }

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  font-size: 18px;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.wishlist-btn:hover, .wishlist-btn.active { color: var(--red); background: rgba(255,255,255,.95); }
.wishlist-btn.large { position: static; width: 42px; height: 42px; font-size: 22px; flex-shrink: 0; }

.product-info { padding: 14px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.product-category { font-size: 11px; color: var(--primary); font-weight: 600; background: var(--primary-light); padding: 2px 7px; border-radius: 6px; }
.product-origin { font-size: 11px; color: var(--text-sub); }
.product-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); line-height: 1.4; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; margin-bottom: 10px; }
.stars { color: var(--accent); font-size: 12px; }
.rating-num { font-weight: 700; color: var(--text); }
.review-count { color: var(--text-sub); }
.product-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 6px; }
.product-price { display: flex; flex-direction: column; }
.price { font-size: 18px; font-weight: 800; color: var(--primary); }
.price em { font-size: 13px; font-weight: 600; }
.unit { font-size: 11px; color: var(--text-sub); }
.add-cart-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, transform .1s;
}
.add-cart-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.product-seller { font-size: 11px; color: var(--text-sub); }

/* ── Empty State ───────────────────────────────────── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.empty-icon { font-size: 60px; margin-bottom: 16px; }
.empty-state p { font-size: 16px; color: var(--text-sub); margin-bottom: 20px; }
.empty-state button {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}

/* ── Modal ─────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.overlay.open { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(780px, calc(100vw - 32px));
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  z-index: 201;
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
}
.modal-close:hover { background: rgba(0,0,0,.15); }

.modal-img-wrap {
  flex-shrink: 0;
  width: 280px;
  position: relative;
}
.modal-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-emoji { font-size: 110px; }
.modal-badge { top: 16px; left: 16px; }

.modal-details {
  flex: 1;
  padding: 28px 28px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.modal-category { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 6px; display: block; }
.modal-title { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.3; }
.modal-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.modal-rating .stars { font-size: 16px; }
.modal-rating strong { font-size: 16px; }

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--bg);
  border-radius: 12px;
  padding: 14px;
}
.info-item { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 11px; color: var(--text-sub); font-weight: 500; }
.info-item > span:last-child { font-size: 13px; font-weight: 600; color: var(--text); }
.stock-low { color: var(--red) !important; }

.modal-desc { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}

.modal-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--bg);
  border-radius: 12px;
}
.modal-price { font-size: 26px; font-weight: 800; color: var(--primary); }
.modal-price em { font-size: 16px; }
.modal-unit { font-size: 12px; color: var(--text-sub); margin-top: 2px; }
.modal-qty-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.modal-total { font-size: 14px; font-weight: 700; color: var(--primary); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.qty-control button {
  width: 34px; height: 34px;
  font-size: 18px;
  color: var(--text);
  transition: background .2s;
}
.qty-control button:hover { background: var(--bg); }
.qty-control span { min-width: 36px; text-align: center; font-weight: 700; font-size: 15px; }
.qty-control.small button { width: 28px; height: 28px; font-size: 15px; }
.qty-control.small span { min-width: 28px; font-size: 13px; }

.modal-actions { display: flex; gap: 10px; }
.btn-cart {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
}
.btn-cart:hover { background: var(--primary-light); }
.btn-buy {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}
.btn-buy:hover { background: var(--primary-dark); }

.modal-shipping {
  font-size: 13px;
  color: var(--text-sub);
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.6;
}

/* ── Cart Panel ────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 301;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
}
.cart-panel.open { right: 0; }
.cart-header {
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-size: 18px; font-weight: 800; }
.cart-header button { font-size: 22px; color: var(--text-sub); }
.cart-list { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 56px; margin-bottom: 14px; }
.cart-empty p { color: var(--text-sub); margin-bottom: 18px; }
.cart-empty button { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 10px; font-weight: 600; }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-unit { font-size: 11px; color: var(--text-sub); margin-top: 2px; }
.cart-item-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--primary); min-width: 70px; text-align: right; }
.cart-remove { font-size: 16px; color: #bbb; transition: color .2s; }
.cart-remove:hover { color: var(--red); }

.cart-footer { padding: 16px; border-top: 1px solid var(--border); }
.cart-summary { margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; }
.summary-row.total { font-size: 16px; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.summary-row.total strong { font-size: 20px; font-weight: 800; color: var(--primary); }
.free { color: var(--green); font-weight: 700; }
.free-shipping-notice {
  background: #e8f5e9;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin: 8px 0;
}
.btn-checkout {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: background .2s;
}
.btn-checkout:hover { background: var(--primary-dark); }
.btn-clear-cart {
  width: 100%;
  color: var(--text-sub);
  font-size: 13px;
  padding: 8px;
  border-radius: 10px;
  transition: background .2s;
}
.btn-clear-cart:hover { background: var(--bg); }

.cart-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 10px;
}
.cart-user-avatar {
  width: 26px; height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.cart-guest-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 10px;
}

/* ── Toast ─────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30,30,50,.88);
  color: #fff;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: all .3s;
  z-index: 500;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Scroll Top ────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(26,107,138,.4);
  z-index: 150;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); visibility: visible; }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: #1a2035;
  color: rgba(255,255,255,.7);
  padding: 48px 24px 32px;
  margin-top: 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}
.footer-logo-text { color: #fff; font-size: 16px; font-weight: 800; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; padding: 5px 0; cursor: pointer; transition: color .2s; }
.footer-col ul li:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
}

/* ── Geo Section ───────────────────────────────────── */
.geo-section {
  margin-bottom: 48px;
}

/* 헤더 */
.geo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d4f6b 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.geo-header::before {
  content: '🌊';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 160px;
  opacity: .08;
  pointer-events: none;
}
.geo-label {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.geo-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.geo-subtitle {
  font-size: 14px;
  line-height: 1.8;
  opacity: .88;
  max-width: 560px;
}
.geo-logo-img {
  width: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

/* 통계 */
.geo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stat-icon { font-size: 30px; margin-bottom: 10px; }
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { font-size: 16px; font-weight: 700; }
.stat-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.stat-sub { font-size: 11px; color: var(--text-sub); }

/* 특성 카드 */
.geo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.geo-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.geo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.geo-card-sea   { border-left-color: #1a6b8a; }
.geo-card-land  { border-left-color: #3a7c4e; }
.geo-card-special { border-left-color: var(--accent); }

.geo-card-icon { font-size: 36px; margin-bottom: 12px; }
.geo-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.geo-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 14px;
}
.geo-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.geo-features li { font-size: 12px; color: var(--text); font-weight: 500; }

/* 위치 안내 */
.geo-location {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.geo-location-text { flex: 1; }
.geo-location-text h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.geo-location-text p { font-size: 14px; color: var(--text-sub); line-height: 1.8; margin-bottom: 14px; }
.geo-location-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-location-tags span {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}
.geo-location-map { flex-shrink: 0; width: 260px; }
.beach-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow);
}
.beach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.beach-img-wrap:hover .beach-img { transform: scale(1.04); }
.beach-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  padding: 20px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.beach-img-caption span:first-child { font-size: 13px; font-weight: 700; }
.beach-img-caption span:last-child  { font-size: 11px; opacity: .85; }
.beach-zoom-hint {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  transition: opacity .3s;
}
.beach-img-wrap:hover .beach-zoom-hint { opacity: 0; }
#lightbox { display: none; }
#lightbox.active { display: flex !important; }

/* CTA */
.geo-cta {
  background: linear-gradient(90deg, var(--green-light) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.geo-cta p { font-size: 15px; font-weight: 600; color: var(--text); }
.geo-cta-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .1s;
  white-space: nowrap;
}
.geo-cta-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .geo-stats { grid-template-columns: repeat(2, 1fr); }
  .geo-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .banner-title { font-size: 24px; }
  .modal { flex-direction: column; max-height: 95vh; width: calc(100vw - 24px); }
  .modal-img-wrap { width: 100%; height: 200px; }
  .geo-header { flex-direction: column; padding: 28px 24px; }
  .geo-logo-img { width: 120px; }
  .geo-cards { grid-template-columns: 1fr; }
  .geo-location { flex-direction: column; }
  .geo-location-map { width: 100%; }
  .beach-img-wrap { height: 200px; }
}
@media (max-width: 640px) {
  .header-inner { padding: 0 14px; gap: 10px; }
  .logo-sub { display: none; }
  .search-bar { max-width: none; }
  .main { padding: 18px 14px 48px; }
  .banner-wrap { height: 160px; }
  .banner-slide { padding: 0 20px; }
  .banner-icon { font-size: 48px; }
  .banner-title { font-size: 18px; }
  .banner-sub { font-size: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 13px; }
  .price { font-size: 15px; }
  .add-cart-btn { padding: 6px 10px; font-size: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; }
  .modal-details { padding: 18px; }
  .geo-stats { grid-template-columns: repeat(2, 1fr); }
  .geo-header { padding: 22px 18px; }
  .geo-title { font-size: 20px; }
  .stat-num { font-size: 26px; }
  .geo-cta { flex-direction: column; align-items: flex-start; }
}
