/* sticker.css */
.stk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stk-card {
  border: 1px solid var(--light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.stk-card:hover { border-color: #00A651; transform: translateY(-3px); }
.stk-card-img {
  aspect-ratio: 1/1;
  background: #F0FDF4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--light);
}
.stk-card-img img { width: 100%; height: 100%; object-fit: cover; }
.stk-card-ph {
  font-family: var(--font);
  font-size: 13px;
  color: #00A651;
  letter-spacing: 0.06em;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.stk-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.stk-card-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.stk-card-en { font-family: var(--font); font-size: 11px; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.04em; }
.stk-card-desc { font-size: 13px; font-weight: 300; color: var(--dark); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.stk-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.stk-tag {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--light);
  padding: 3px 9px;
  border-radius: 4px;
}
.stk-tag.hi { background: #E8F5E9; border-color: #A5D6A7; color: #00A651; }
.stk-card-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t);
}
.stk-card-btn:hover { background: #00A651; }

.stk-info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stk-info { text-align: center; }
.stk-info-num { font-family: var(--font); font-size: 28px; font-weight: 600; color: #00A651; margin-bottom: 4px; }
.stk-info-label { font-size: 12.5px; font-weight: 300; color: var(--muted); }

@media (max-width: 900px) { .stk-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .stk-grid { grid-template-columns: 1fr; } .stk-info-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
