/* ============================================================
   seedk_shared.css  —  Global responsive styles for seedk.com
   Playfair Display + Source Serif 4, green/teal brand system
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* ---------- BACKGROUND ---------- */
body {
  font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
  color: #1a1a1a;
  min-height: 100vh;
  background-color: #1a5c3a;
  overflow-x: hidden;
}
/* ── 背景图固定层：彻底修复 iOS 竖屏拉伸 / background-attachment:fixed bug ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/BELL-GARDEN-CO-LTD-seedk.com.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* ---------- LINKS ---------- */
a { color: #004ecb; text-decoration: none; }
a:visited { color: #004400; }
a:hover { color: #0055cc; text-decoration: underline; }

/* ---------- IMAGES ---------- */
img { max-width: 100%; height: auto; display: block; border: 0; }

/* ---------- PAGE WRAP ---------- */
.sk-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 10px 12px 60px;
  text-align: center;
}

/* ---------- GLASS CARD ---------- */
.sk-card {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.22);
  padding: 20px 18px;
  margin: 12px 0;
  text-align: left;
}
.sk-card-center { text-align: center; }

/* ---------- LOGO ---------- */
.sk-logo { width: 100%; margin-bottom: 6px; text-align: center; }
.sk-logo img {
  display: block;
  margin: 0 auto;
  height: auto;
  /* mobile: 80vw, desktop: up to 320px */
  max-width: clamp(180px, 70vw, 320px);
}
@media (min-width: 601px) {
  .sk-logo img { max-width: clamp(260px, 32vw, 340px); }
}

/* ---------- SITE TITLE ---------- */
.sk-title-box {
  display: inline-block;
  border: 4px solid #096;
  background: linear-gradient(135deg, #096 0%, #0aa 100%);
  padding: 8px 28px;
  border-radius: 9px;
  margin: 8px 0 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.sk-title-box a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  font-style: italic;
  letter-spacing: .04em;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* ---------- TAGLINE BADGE ---------- */
.sk-badge {
  display: inline-block;
  background: #33CCCC;
  color: #000;
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  padding: 5px 18px;
  border-radius: 20px;
  margin: 5px 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.sk-badge a { color: #000; }
.sk-badge a:hover { color: #003366; text-decoration: none; }
.sk-badge.red  { background: #ff4444; color: #fff; }
.sk-badge.red a { color: #fff; }
.sk-badge.gold { background: #FFCC00; }

/* ---------- THREE-WORD BANNER ---------- */
.three-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  margin: 10px 0 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(51,204,204,0.38);
  overflow: hidden;
}
.three-banner span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 4.2vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.three-banner .dot {
  color: #33cccc;
  font-size: clamp(1rem, 5vw, 2.2rem);
  font-weight: 400;
  flex-shrink: 0;
}

/* ---------- NAV ---------- */
.sk-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  margin: 8px 0 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.45);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.sk-nav a {
  display: inline-block;
  background: rgba(51,204,204,0.92);
  color: #000;
  font-weight: 700;
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  padding: 7px 14px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.sk-nav a:hover { background: #009999; color: #fff; text-decoration: none; }

/* ---------- ALPHA NAV ---------- */
.sk-alpha {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  text-align: center;
}
.sk-alpha .sk-alpha-title {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-weight: 700;
  color: #990000;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.sk-alpha a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  margin: 2px;
  background: rgba(10,158,122,0.10);
  border: 1px solid rgba(51,204,204,0.42);
  border-radius: 6px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a5c3a;
  transition: background .15s, color .15s;
}
.sk-alpha a:hover { background: #0a9e7a; color: #fff; text-decoration: none; }

/* ---------- KEY POINTS GRID ---------- */
.key-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.key-item {
  background: linear-gradient(135deg,rgba(10,158,122,0.10) 0%,rgba(51,204,204,0.13) 100%);
  border: 1px solid rgba(51,204,204,0.38);
  border-radius: 9px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
.key-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.key-text {
  font-size: clamp(0.92rem, 2.6vw, 1rem);
  color: #1a1a1a;
  line-height: 1.6;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
  min-width: 0;
}
.key-text strong {
  color: #0a6648;
  display: block;
  margin-bottom: 3px;
  font-size: 1.02em;
}

/* ---------- SECTION HEADING ---------- */
.sk-section-head {
  display: block;
  background: linear-gradient(135deg, #0a9e7a 0%, #33cccc 100%);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  padding: 9px 16px;
  border-radius: 8px;
  margin: 14px 0 8px;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.18);
  letter-spacing: .02em;
}

/* ---------- PAGE TITLE (h1 inside cards) ---------- */
.page-title, .sk-card h1, .pay-card h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 5vw, 1.65rem);
  background: linear-gradient(135deg, #0a9e7a 0%, #33cccc 100%);
  color: #fff;
  padding: 10px 16px;
  border-radius: 9px;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.18);
  letter-spacing: .02em;
}

/* ---------- DIVIDER ---------- */
.sk-divider {
  border: none;
  border-top: 2px solid rgba(0,150,100,0.4);
  margin: 16px auto;
  width: 55%;
  max-width: 200px;
}

/* ---------- INPUTS ---------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select, textarea {
  display: block;
  width: 100%;
  padding: 12px 12px;
  font-size: 16px;
  font-family: 'Source Serif 4', serif;
  border: 1.5px solid rgba(51,204,204,0.55);
  border-radius: 7px;
  color: #1a3a1a;
  background: #fff;
  margin-top: 4px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #0a9e7a;
  box-shadow: 0 0 0 3px rgba(10,158,122,0.15);
}
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ---------- BUTTONS ---------- */
.sk-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 14px auto 6px;
  padding: 14px 12px;
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 700;
  font-family: 'Source Serif 4', serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
  -webkit-appearance: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.sk-btn:active { transform: scale(0.98); }
.sk-btn-green  { background: #096; color: #fff; }
.sk-btn-green:hover  { opacity: .88; }
.sk-btn-teal   { background: linear-gradient(135deg,#0a9e7a,#33cccc); color: #fff; font-weight: 700; }
.sk-btn-teal:hover   { opacity: .88; }
.sk-btn-blue   { background: #0055cc; color: #fff; }
.sk-btn-blue:hover   { opacity: .88; }
.sk-btn-cart   { background: linear-gradient(135deg,#33CCCC,#096); color: #000; font-size: clamp(1.1rem,4vw,1.5rem); }
.sk-btn-cart:hover   { opacity: .88; }

/* ---------- STATS GRID ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
  gap: 8px;
  margin-bottom: 16px;
}
.stat-item {
  background: linear-gradient(135deg,rgba(10,158,122,0.11) 0%,rgba(51,204,204,0.14) 100%);
  border: 1px solid rgba(51,204,204,0.38);
  border-radius: 9px;
  padding: 10px 10px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem,3.5vw,1.5rem);
  font-weight: 700;
  color: #0a6648;
  display: block;
  line-height: 1.1;
  margin-bottom: 3px;
}
.stat-lbl { font-size: clamp(0.72rem,2vw,0.82rem); color: #444; line-height: 1.3; }

/* ---------- PRODUCT CARD ---------- */
.sk-product-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  padding: 20px 16px;
  margin: 12px 0;
  text-align: center;
}
.sk-product-name {
  display: block;
  background: linear-gradient(135deg,#0a9e7a,#33cccc);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem,4vw,1.55rem);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 7px;
  margin-bottom: 12px;
  word-break: break-word;
}
.sk-price-item {
  border: 1.5px solid rgba(51,204,204,0.5);
  border-radius: 10px;
  padding: 14px;
  margin: 12px 0;
  background: rgba(240,255,254,0.95);
  text-align: center;
}
.sk-price-label {
  display: inline-block;
  background: #33CCCC;
  color: #000;
  font-weight: 700;
  font-size: clamp(1rem,3.5vw,1.2rem);
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 10px;
  word-break: break-word;
}
.sk-unit-cost {
  display: inline-block;
  background: #33CCCC;
  color: #FF0000;
  font-weight: 700;
  font-size: clamp(1rem,3vw,1.2rem);
  padding: 3px 12px;
  border-radius: 5px;
  margin: 6px 0;
}

/* ---------- INFO BOX ---------- */
.sk-info-box {
  background: linear-gradient(135deg,rgba(10,120,80,0.94),rgba(0,90,60,0.95));
  backdrop-filter: blur(2px);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 12px 0;
  color: #e8f5e9;
  font-size: clamp(0.95rem,2.8vw,1.05rem);
  line-height: 1.82;
  text-align: left;
  border-left: 4px solid #33cccc;
}
.sk-info-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  text-align: center;
  font-size: clamp(1.1rem,4vw,1.4rem);
  background: linear-gradient(135deg,#0a9e7a,#33cccc);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  border-left: none;
}
.sk-info-box strong { color: #FFD700; }
.sk-info-box a { color: #7fffd4; font-weight: 600; }
.sk-info-box a:hover { color: #fff; }

/* ---------- GOODS LIST ---------- */
.sk-goods-list { list-style: none; padding: 0; margin: 10px 0; }
.sk-product-list { list-style: disc; padding-left: 1.4em; margin: 10px 0; }
.sk-product-list li { margin: 5px 0; font-size: clamp(0.95rem,3vw,1.05rem); line-height: 1.7; }
.sk-goods-list li {
  background: rgba(255,255,255,0.90);
  border-radius: 9px;
  margin: 6px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform .15s, box-shadow .15s;
  overflow: hidden;
}
.sk-goods-list li:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.sk-goods-list li a {
  display: block;
  padding: 12px 16px;
  font-size: clamp(1rem,3.5vw,1.2rem);
  font-weight: 600;
  color: #003399;
  word-break: break-word;
  line-height: 1.4;
  border-left: 5px solid #33CCCC;
}
.sk-goods-list li a:hover { background: rgba(51,204,204,0.12); text-decoration: none; color: #001166; }

/* ---------- ORDER TABLE ---------- */
.sk-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  background: rgba(255,255,255,0.92);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.sk-table th {
  background: linear-gradient(135deg,#0a9e7a,#33cccc);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.9rem,3vw,1.05rem);
  padding: 10px 12px;
  text-align: center;
}
.sk-table td {
  color: #1a1a1a;
  font-size: clamp(0.9rem,3vw,1rem);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(51,204,204,0.25);
  word-break: break-word;
}
.sk-table tr:last-child td { border-bottom: none; }

/* ---------- COUNTRY LETTER LIST ---------- */
.country-letter {
  display: flex; gap: 12px; padding: 9px 13px;
  border-bottom: 1px solid rgba(51,204,204,0.2);
  align-items: baseline; transition: background .14s;
}
.country-letter:last-child { border-bottom: none; }
.country-letter:hover { background: rgba(51,204,204,0.07); }
.letter-head {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem,3.8vw,1.45rem); font-weight: 700;
  color: #0a7a58; min-width: 30px; flex-shrink: 0; line-height: 1;
}
.letter-body { font-size: clamp(0.88rem,2.6vw,0.97rem); color: #2a2a2a; line-height: 1.65; }
.ctag {
  display: inline-block; background: rgba(10,158,122,0.09);
  border-radius: 4px; padding: 2px 7px;
  margin: 2px 3px 2px 0; white-space: nowrap;
  cursor: default; transition: background .14s; font-size: inherit;
}
.ctag:hover { background: rgba(10,158,122,0.22); }
.ctag.match { background: rgba(255,200,0,0.42) !important; font-weight: 600; }
.countries-box {
  background: rgba(248,255,252,0.97);
  border: 1px solid rgba(51,204,204,0.28);
  border-radius: 10px; padding: 4px;
  max-height: 60vh; overflow-y: auto; scroll-behavior: smooth;
}
.countries-box::-webkit-scrollbar { width: 6px; }
.countries-box::-webkit-scrollbar-track { background: rgba(51,204,204,0.07); border-radius: 6px; }
.countries-box::-webkit-scrollbar-thumb { background: rgba(10,158,122,0.38); border-radius: 6px; }

/* ---------- LETTER JUMP BAR ---------- */
.letter-jump { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-bottom: 10px; }
.letter-jump a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(10,158,122,0.10); border: 1px solid rgba(51,204,204,0.42);
  border-radius: 6px;
  font-family: 'Playfair Display', Georgia, serif; font-size: 0.86rem; font-weight: 700;
  color: #0a5c3a; transition: background .15s, color .15s;
}
.letter-jump a:hover { background: #0a9e7a; color: #fff; text-decoration: none; }
.letter-jump a.empty { opacity: 0.3; pointer-events: none; }

/* ---------- SEARCH BOX ---------- */
.sk-search-wrap {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  text-align: center;
}
.sk-search-wrap form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.sk-search-wrap input[type="text"] {
  flex: 1 1 180px;
  max-width: 100%;
  text-align: left;
}

/* ---------- FOOTER ---------- */
.sk-footer {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 16px 16px 14px;
  margin: 14px 0 0;
  text-align: center;
}
.sk-footer p { margin: 6px 0; font-size: clamp(0.9rem,3vw,1rem); color: #cce8ff; }
.sk-footer .sk-transport-img {
  width: clamp(100px,30vw,200px);
  height: auto;
  margin: 0 auto 8px;
  display: block;
}
.sk-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 10px;
}
.sk-footer-links a, .sk-footer-links span {
  color: #cce8ff;
  font-size: clamp(0.82rem,2.5vw,0.92rem);
}
.sk-footer-links a:hover { color: #fff; text-decoration: underline; }

/* ---------- CART POPUP ---------- */
#find {
  position: fixed;
  top: 0.5em; right: 0.5em;
  width: clamp(160px,35vw,210px);
  background: #ffffe0;
  border-radius: 8px;
  padding: 8px;
  z-index: 9999999;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
  font-size: 0.95rem;
  display: none;
}
@media (max-width: 480px) {
  #find { width: 88vw; right: 6vw; left: 6vw; top: auto; bottom: 0.5em; }
}

/* ---------- SCROLL TOP ---------- */
#scroll-top {
  position: fixed; bottom: 22px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(10,158,122,0.88);
  color: #fff; font-size: 1.2rem; font-weight: bold;
  border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  z-index: 100; transition: background .2s;
}
#scroll-top:hover { background: #087a5e; }
#scroll-top.visible { display: flex; }

/* ---------- MOBILE (≤600px) ---------- */
@media (max-width: 600px) {
  html { font-size: 18px; }
  .sk-wrap { padding: 8px 10px 50px; }
  .sk-logo img { max-width: 80vw; }
  .sk-title-box a { font-size: 2rem; }
  .sk-badge { font-size: 1rem; padding: 5px 18px; }
  .sk-nav { gap: 8px; padding: 12px 10px; }
  .sk-nav a { font-size: 1rem; padding: 8px 16px; }
  .three-banner { padding: 12px 10px; gap: 6px; }
  .three-banner span { font-size: clamp(1rem,4.2vw,1.3rem); }
  .key-grid { grid-template-columns: 1fr; }
  .key-text { font-size: 1rem; }
  .key-icon { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 1.4rem; }
  .letter-body { font-size: 0.98rem; }
  .letter-head { font-size: 1.4rem; }
  .ctag { font-size: 0.95rem; padding: 3px 8px; }
  .sk-search-wrap input[type="text"] { font-size: 1rem; }
  .sk-btn-teal { font-size: 1rem; padding: 10px 18px; }
  .sk-section-head { font-size: 1.05rem; }
  .sk-alpha-title { font-size: 1.05rem; }
  .sk-alpha a { width: 32px; height: 32px; font-size: 0.95rem; }
  .sk-footer-links a, .sk-footer-links span { font-size: 0.95rem; }
}

/* ---------- TABLET ---------- */
@media (min-width: 600px) {
  .sk-wrap { padding: 14px 20px 50px; }
  .sk-card { padding: 24px 22px; }
}
/* ---------- DESKTOP ---------- */
@media (min-width: 1024px) {
  .sk-wrap { padding: 20px 30px 60px; }
  .sk-alpha a { width: 34px; height: 34px; font-size: 0.95rem; }
  .three-banner span { font-size: 2rem; }
  .key-grid { grid-template-columns: repeat(4,1fr); }
}
