/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f6f8f3;
  --card: #ffffff;
  --text: #192316;
  --muted: #66725f;
  --line: #e2e8dc;
  --brand: #2f7d3c;
  --brand-dark: #1f5d2c;
  --soft: #e9f5e7;
  --warning: #fff5d6;
  --danger: #b42318;
  --shadow-sm: 0 1px 2px rgba(25, 35, 22, 0.04);
  --shadow-md: 0 4px 12px rgba(25, 35, 22, 0.06);
  --shadow-lg: 0 12px 40px rgba(25, 35, 22, 0.1);
  --shadow-xl: 0 24px 80px rgba(47, 125, 60, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

*::selection {
  background: var(--soft);
  color: var(--brand-dark);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  background: rgba(246, 248, 243, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.logo:hover {
  color: var(--brand);
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

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

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 68px 0 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-gap: 36px;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-card {
  background: linear-gradient(145deg, #ffffff 0%, #e9f5e7 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(47, 125, 60, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.search-box {
  display: flex;
  gap: 10px;
  background: var(--card);
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(47, 125, 60, 0.1);
}

.input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: var(--transition);
  font-family: inherit;
}

.input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47, 125, 60, 0.1);
}

.input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.button {
  border: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.5s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 125, 60, 0.25);
}

.button:hover::before {
  left: 100%;
}

.button:active {
  transform: translateY(0);
}

.button.secondary {
  background: var(--soft);
  color: var(--brand-dark);
}

.button.secondary:hover {
  background: #d8eed9;
  box-shadow: 0 8px 24px rgba(47, 125, 60, 0.15);
}

.button.ghost {
  background: transparent;
  color: var(--muted);
}

.button.ghost:hover {
  background: var(--soft);
  color: var(--brand-dark);
  box-shadow: none;
}

.grid {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

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

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

.section {
  padding: 28px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.plant-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.plant-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(47, 125, 60, 0.2);
}

.plant-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.plant-card:hover img {
  transform: scale(1.03);
}

.plant-card-body {
  padding: 16px;
}

.plant-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.muted {
  color: var(--muted);
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  background: var(--soft);
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.badge:hover {
  background: #d8eed9;
  transform: translateY(-1px);
}

.detail-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-gap: 28px;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
}

.detail-hero img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.tabs {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.info-list {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.info-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 12px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  transition: var(--transition);
}

.info-list > div:hover {
  background: rgba(233, 245, 231, 0.3);
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}

.info-list > div:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--text);
  font-weight: 600;
}

.info-list span {
  color: var(--muted);
}

.form {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  max-width: 520px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.price {
  font-size: 34px;
  font-weight: 900;
  margin: 10px 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  background: rgba(246, 248, 243, 0.5);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
}

.table th {
  background: rgba(233, 245, 231, 0.5);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.table tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background: rgba(233, 245, 231, 0.3);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.notice {
  background: var(--warning);
  border: 1px solid #f4d06f;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.notice::before {
  content: '⚠';
  font-size: 16px;
}

.notice.success {
  background: var(--soft);
  border-color: rgba(47, 125, 60, 0.2);
}

.notice.success::before {
  content: '✓';
  color: var(--brand);
}

.notice.error {
  background: #fef2f2;
  border-color: rgba(180, 35, 24, 0.2);
}

.notice.error::before {
  content: '✕';
  color: var(--danger);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.skeleton {
  background: linear-gradient(90deg, var(--line) 25%, #f0f4eb 50%, var(--line) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 820px) {
  .hero,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .search-box {
    flex-direction: column;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 540px) {
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .detail-hero {
    padding: 20px 0;
  }
}

