* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f5f5; color: #333; }

/* Splash */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #fff8f0, #ffeede 60%, #ffe0c8);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}
.splash.hide { opacity: 0; visibility: hidden; }
.splash-content { text-align: center; }
.splash-logo { font-size: 5rem; margin-bottom: 16px; animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.splash-title { font-size: 2.8rem; color: #e8630a; margin-bottom: 10px; }
.splash-subtitle { font-size: 1rem; color: #a08060; margin-bottom: 36px; }
.btn-lg { padding: 16px 56px; font-size: 1.2rem; border-radius: 32px; }

header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 100;
}
header h1 { font-size: 1.3rem; }
.header-right { display: flex; align-items: center; gap: 10px; position: relative; }

/* Top nav */
.top-nav { display: flex; gap: 8px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-item {
  padding: 8px 22px; cursor: pointer; color: #666; font-size: 1rem;
  border-radius: 20px; transition: .2s; text-decoration: none;
}
.nav-item:hover { color: #e8630a; background: #fff3e0; }
.nav-item.active { color: #fff; background: #e8630a; font-weight: 600; }

/* Avatar dropdown */
.avatar-wrap { position: relative; }
.avatar-btn {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  background: #f5f5f5; border: 1px solid #ddd; border-radius: 24px;
  padding: 6px 16px; font-size: 0.9rem; color: #333; transition: .2s;
}
.avatar-btn:hover { background: #fff3e0; border-color: #e8630a; }
.avatar-icon { font-size: 1.1rem; }
.avatar-arrow { font-size: 0.7rem; color: #999; }
.avatar-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,.15);
  min-width: 180px; padding: 6px 0; z-index: 200;
  display: none; opacity: 0; transform: translateY(-8px); transition: .2s;
}
.avatar-dropdown.show { display: block; opacity: 1; transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 8px; padding: 12px 20px;
  cursor: pointer; color: #555; font-size: 0.92rem; transition: .15s;
}
.dropdown-item:hover { background: #fff3e0; color: #e8630a; }
.dropdown-divider { height: 1px; background: #eee; margin: 4px 0; }
.dropdown-logout { color: #d32f2f; }
.dropdown-logout:hover { background: #fff5f5; color: #d32f2f; }

main { padding: 24px; max-width: 1200px; margin: 0 auto; min-height: 70vh; }
.page { display: none; }
.page.active { display: block; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.product-card {
  background: #fff; border-radius: 12px; padding: 16px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: .3s;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.product-emoji { font-size: 3rem; margin-bottom: 8px; }
.product-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.product-price { color: #e8630a; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.qty-selector { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; }
.qty-selector button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 1rem; }
.qty-selector span { font-weight: 600; min-width: 30px; text-align: center; }

.btn {
  padding: 8px 20px; border: none; border-radius: 6px; cursor: pointer;
  font-size: 0.9rem; transition: .2s;
}
.btn-primary { background: #e8630a; color: #fff; }
.btn-primary:hover { background: #d4520a; }
.btn-outline { background: transparent; border: 1px solid #ddd; color: #666; }
.btn-outline:hover { border-color: #e8630a; color: #e8630a; }
.btn-warning { background: #f5a623; color: #fff; }
.btn-warning:hover { background: #e0951a; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-success { background: #52c41a; color: #fff; }
.btn-success:hover { background: #43a00e; }
.btn-info { background: #1890ff; color: #fff; }

.modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.5); z-index: 1000; justify-content: center; align-items: center;
}
.modal.show { display: flex; }
.modal-content {
  background: #fff; border-radius: 12px; padding: 24px; width: 90%;
  max-width: 420px; position: relative; box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.modal-close {
  position: absolute; top: 12px; right: 16px; font-size: 1.5rem;
  cursor: pointer; color: #999;
}
.modal-content h2 { margin-bottom: 16px; text-align: center; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; margin-bottom: 4px; font-size: 0.9rem; color: #555; }
.form-group input, .form-group select {
  width: 100%; padding: 8px 12px; border: 1px solid #ddd; border-radius: 6px;
  font-size: 0.95rem;
}
.divider-text {
  text-align: center; margin: 12px 0; position: relative;
  color: #bbb; font-size: 0.8rem;
}
.divider-text::before, .divider-text::after {
  content: ''; position: absolute; top: 50%; width: 38%; height: 1px; background: #eee;
}
.divider-text::before { left: 0; }
.divider-text::after { right: 0; }
.pay-product-info {
  background: #f9f9f9; border-radius: 8px; padding: 12px; margin-bottom: 16px;
  text-align: center;
}
.pay-total {
  font-size: 1.2rem; font-weight: 700; color: #e8630a; text-align: center;
  margin-bottom: 16px;
}

.order-list { display: flex; flex-direction: column; gap: 12px; }
.orders-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.status-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  padding: 6px 14px; border: 1px solid #ddd; border-radius: 20px;
  background: #fff; cursor: pointer; font-size: 0.85rem; transition: .2s;
}
.filter-btn.active { background: #e8630a; color: #fff; border-color: #e8630a; }
.filter-btn:hover { border-color: #e8630a; color: #e8630a; }

.order-card {
  background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-id { font-size: 0.8rem; color: #999; }
.order-status {
  padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600;
}
.status-待发 { background: #fff3e0; color: #f57c00; }
.status-已发 { background: #e3f2fd; color: #1565c0; }
.status-完成 { background: #e8f5e9; color: #2e7d32; }
.order-product { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.order-emoji { font-size: 2rem; }
.order-details { flex: 1; }
.order-name { font-weight: 600; }
.order-qty-price { font-size: 0.85rem; color: #888; }
.order-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #999; margin-bottom: 8px; flex-wrap: wrap; gap: 4px; }
.order-actions { display: flex; gap: 8px; justify-content: flex-end; }

.flow-list { display: flex; flex-direction: column; gap: 8px; }
.flow-item {
  background: #fff; border-radius: 8px; padding: 12px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); display: flex; justify-content: space-between; align-items: center;
}
.flow-left { display: flex; flex-direction: column; gap: 2px; }
.flow-id { font-size: 0.8rem; color: #999; }
.flow-desc { font-weight: 600; }
.flow-right { text-align: right; }
.flow-amount { color: #e8630a; font-weight: 700; }
.flow-time { font-size: 0.8rem; color: #999; }

.empty-state { text-align: center; padding: 40px; color: #999; }
.empty-state .empty-emoji { font-size: 3rem; margin-bottom: 8px; }
.login-error { color: #d32f2f; font-size: 0.85rem; text-align: center; margin-bottom: 12px; min-height: 18px; }

/* Profile page */
.profile-page { max-width: 800px; margin: 0 auto; }
.profile-header {
  display: flex; align-items: center; gap: 24px; background: #fff;
  border-radius: 16px; padding: 32px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: #fff3e0;
  display: flex; align-items: center; justify-content: center; font-size: 2.8rem;
}
.profile-info h2 { font-size: 1.5rem; color: #333; margin-bottom: 4px; }
.profile-id { font-size: 0.85rem; color: #999; }
.profile-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.stat-card {
  background: #fff; border-radius: 12px; padding: 24px 12px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.stat-num { font-size: 2rem; font-weight: 800; color: #333; margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: #999; }
.stat-pending .stat-num { color: #f57c00; }
.stat-shipped .stat-num { color: #1565c0; }
.stat-done .stat-num { color: #2e7d32; }
.profile-spent {
  background: linear-gradient(135deg, #fff3e0, #ffeede); border-radius: 12px;
  padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.spent-label { font-size: 1rem; color: #888; }
.spent-amount { font-size: 1.8rem; font-weight: 800; color: #e8630a; }
.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* About Us page */
.about-page { max-width: 900px; margin: 0 auto; }
.about-hero {
  text-align: center; padding: 48px 24px 32px; background: linear-gradient(135deg, #fff8f0, #ffeede);
  border-radius: 16px; margin-bottom: 24px;
}
.about-hero-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.about-hero h1 { font-size: 1.8rem; color: #333; margin-bottom: 8px; }
.about-hero p { color: #888; font-size: 1rem; }
.about-section {
  background: #fff; border-radius: 12px; padding: 28px 32px; margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.about-section-title { font-size: 1.3rem; color: #333; margin-bottom: 16px; }
.about-section p { color: #555; line-height: 1.8; margin-bottom: 12px; }
.about-section p:last-child { margin-bottom: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  text-align: center; padding: 24px 16px; background: #fafafa; border-radius: 12px;
}
.value-icon { font-size: 2.5rem; margin-bottom: 8px; }
.value-card h3 { font-size: 1.05rem; color: #333; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: #888; line-height: 1.6; margin: 0; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; padding: 28px 16px;
  background: #fafafa; border-radius: 12px; text-decoration: none; color: inherit;
  transition: .2s;
}
.contact-card:hover { background: #fff3e0; transform: translateY(-2px); }
.contact-icon { font-size: 2rem; margin-bottom: 8px; }
.contact-label { font-size: 0.85rem; color: #999; margin-bottom: 4px; }
.contact-value { font-size: 1.1rem; font-weight: 700; color: #e8630a; }

/* Footer */
.site-footer {
  background: #fff; border-top: 1px solid #eee; padding: 20px 24px;
  text-align: center; color: #999; font-size: 0.85rem;
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-content p { margin-bottom: 4px; }
.footer-icp a { color: #999; text-decoration: none; }
.footer-icp a:hover { color: #e8630a; }

/* Shop page */
.shop-page { max-width: 1100px; margin: 0 auto; }
.shop-header { text-align: center; padding: 32px 0; }
.shop-header h1 { font-size: 1.8rem; color: #333; margin-bottom: 8px; }
.shop-header p { color: #888; }
.shop-list { display: flex; flex-direction: column; gap: 24px; }
.shop-item {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: .25s;
}
.shop-item:hover { box-shadow: 0 8px 24px rgba(232,99,10,.12); }
.shop-item-img {
  width: 280px; height: 220px; border-radius: 12px; overflow: hidden;
  background: #fafafa;
}
.carousel { position: relative; width: 100%; height: 100%; }
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: center; justify-content: center;
}
.carousel-slide.active { opacity: 1; }
.product-img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%; background: linear-gradient(135deg, #fff8f0, #ffeede);
  border: 2px dashed #f5c99a; border-radius: 12px;
}
.placeholder-emoji { font-size: 3.5rem; margin-bottom: 8px; }
.placeholder-tip { font-size: 0.8rem; color: #c9a06a; }

/* Carousel arrows & dots */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.45); color: #fff; font-size: 1.6rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: .2s; z-index: 2;
}
.carousel-arrow:hover:not(.disabled) { background: rgba(232,99,10,.85); }
.carousel-arrow.disabled { opacity: .3; cursor: not-allowed; }
.carousel-arrow.prev { left: 8px; }
.carousel-arrow.next { right: 8px; }
.carousel-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5);
  cursor: pointer; transition: .2s;
}
.carousel-dot:hover { background: rgba(255,255,255,.8); }
.carousel-dot.active { background: #fff; }
.shop-item-info { display: flex; flex-direction: column; }
.shop-item-name { font-size: 1.4rem; color: #333; margin-bottom: 8px; }
.shop-item-desc { color: #e8630a; font-size: 0.95rem; font-weight: 500; margin-bottom: 12px; }
.shop-item-detail { color: #666; font-size: 0.95rem; line-height: 1.8; flex: 1; }
.shop-item-bottom {
  display: flex; align-items: center; justify-content: space-between; margin-top: 16px;
}
.shop-item-price { font-size: 1.8rem; font-weight: 800; color: #e8630a; }

/* Dog park page */
.dogpark-page { max-width: 1000px; margin: 0 auto; }
.dogpark-header {
  text-align: center; padding: 36px 0; background: linear-gradient(135deg, #fff8f0, #ffeede);
  border-radius: 16px; margin-bottom: 24px;
}
.dogpark-header h1 { font-size: 1.8rem; color: #333; margin-bottom: 8px; }
.dogpark-header p { color: #888; }
.dp-section { background: #fff; border-radius: 12px; padding: 28px 32px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.dp-section-title { font-size: 1.3rem; color: #333; margin-bottom: 20px; }
.dp-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dp-card { background: #fafafa; border-radius: 12px; padding: 20px; }
.dp-card-icon { font-size: 2.2rem; margin-bottom: 8px; }
.dp-card h3 { font-size: 1.05rem; color: #333; margin-bottom: 6px; }
.dp-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }
.dp-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dp-list-item {
  display: flex; gap: 14px; background: #fafafa; border-radius: 10px; padding: 16px; align-items: flex-start;
}
.dp-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #e8630a; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem;
}
.dp-list-item strong { color: #333; font-size: 0.95rem; }
.dp-list-item p { color: #666; font-size: 0.85rem; margin-top: 2px; line-height: 1.5; }
.dp-tips { display: flex; flex-direction: column; gap: 12px; }
.dp-tip {
  display: flex; gap: 12px; background: #fff5f5; border-left: 4px solid #e8630a; border-radius: 8px;
  padding: 14px 18px; align-items: flex-start;
}
.dp-tip-icon { flex-shrink: 0; font-size: 1.3rem; }
.dp-tip p { color: #555; font-size: 0.92rem; line-height: 1.6; }
.dp-tip strong { color: #333; }

/* ── Landing Page ── */
.landing { display: flex; flex-direction: column; gap: 0; }

.hero {
  background: linear-gradient(135deg, #fff8f0 0%, #ffeede 100%);
  border-radius: 16px; padding: 48px 40px; margin-bottom: 8px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.hero-left { text-align: left; }
.hero-badge {
  display: inline-block; background: #e8630a; color: #fff; padding: 5px 16px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero-emoji {
  font-size: 10rem; text-align: center; line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(232,99,10,.2));
}
.hero-title { font-size: 2.4rem; color: #333; margin-bottom: 12px; line-height: 1.3; }
.hero-tagline { color: #888; font-size: 1.05rem; margin-bottom: 24px; line-height: 1.6; }
.hero-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.hero-price { font-size: 2.6rem; font-weight: 800; color: #e8630a; }
.hero-original { font-size: 1.2rem; color: #bbb; text-decoration: line-through; }
.hero-unit { font-size: 0.95rem; color: #999; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 28px; }
.hero-points span { font-size: 0.95rem; color: #555; }
.btn-cta { font-size: 1.1rem; padding: 14px 48px; }

.lp-section { background: #fff; border-radius: 12px; padding: 32px; margin-top: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.lp-section-title { font-size: 1.4rem; color: #333; margin-bottom: 10px; }
.lp-section-desc { color: #888; font-size: 0.95rem; margin-bottom: 20px; }
.lp-tip { margin-top: 14px; font-size: 0.85rem; color: #e8630a; background: #fff8f0; padding: 10px 14px; border-radius: 8px; }

/* 适用犬种 */
.breed-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.breed-card {
  background: #f9f9f9; border-radius: 12px; padding: 24px 12px; text-align: center; transition: .2s;
}
.breed-card:hover { background: #fff3e0; transform: translateY(-3px); box-shadow: 0 4px 12px rgba(232,99,10,.15); }
.breed-emoji { font-size: 3rem; margin-bottom: 8px; }
.breed-name { font-size: 0.95rem; color: #555; font-weight: 500; }

/* 配方与营养 */
.formula-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ingredients h3, .nutrition h3 { font-size: 1.1rem; color: #333; margin-bottom: 16px; }
.ingredients ul { list-style: none; padding: 0; }
.ingredients li { padding: 10px 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; color: #555; line-height: 1.6; }
.ingredients li:last-child { border-bottom: none; }
.ingredients li strong { color: #e8630a; }
.formula-note {
  margin-top: 16px; background: #fff5f5; color: #d32f2f; padding: 12px 16px;
  border-radius: 8px; font-size: 0.9rem;
}
.nutri-row {
  display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #eee;
  font-size: 0.95rem; color: #555;
}
.nutri-row:last-child { border-bottom: none; }
.nutri-val { font-weight: 700; color: #333; }
.formula-basis { margin-top: 20px; font-size: 0.9rem; color: #888; line-height: 1.7; background: #f5f5f5; padding: 14px 18px; border-radius: 8px; }

/* 7天计划 */
.plan-timeline { display: flex; flex-direction: column; gap: 12px; }
.plan-day {
  display: flex; gap: 20px; background: #f9f9f9; border-radius: 12px; padding: 18px 22px; align-items: center;
}
.plan-day.highlight { background: linear-gradient(90deg, #fff3e0, #ffeede); border-left: 4px solid #e8630a; }
.day-num {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: #e8630a; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem;
}
.plan-day.highlight .day-num { background: #d4520a; }
.day-content strong { color: #333; font-size: 1rem; }
.day-content p { color: #888; font-size: 0.9rem; margin-top: 4px; }

/* 用户评价 */
.review-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: #f9f9f9; border-radius: 12px; padding: 20px; transition: .2s; }
.review-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-name { font-weight: 600; color: #333; font-size: 0.95rem; }
.review-stars { color: #ffb400; font-size: 0.9rem; }
.review-text { color: #666; font-size: 0.92rem; line-height: 1.7; }

/* 过敏风险提示 */
.warning-section { background: #fff8f0; border: 1px solid #ffd6b0; }
.warning-box ul { list-style: none; padding: 0; }
.warning-box li { padding: 12px 0; border-bottom: 1px dashed #ffd6b0; font-size: 0.95rem; color: #555; line-height: 1.7; }
.warning-box li:last-child { border-bottom: none; }
.warning-box li strong { color: #e8630a; }

/* 底部 CTA */
.cta-bar {
  position: sticky; bottom: 16px; display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 14px; padding: 18px 32px; margin-top: 16px;
  box-shadow: 0 -2px 20px rgba(0,0,0,.12); gap: 16px;
}
.cta-info { display: flex; flex-direction: column; }
.cta-price { font-size: 1.8rem; font-weight: 800; color: #e8630a; }
.cta-text { font-size: 0.9rem; color: #999; }
.cta-bar .btn { padding: 12px 40px; font-size: 1.05rem; white-space: nowrap; }

@media (max-width: 768px) {
  header { padding: 10px 20px; }
  main { padding: 20px; }
  .top-nav { position: static; transform: none; gap: 4px; }
  .nav-item { padding: 6px 12px; font-size: 0.85rem; }
  .hero { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; text-align: center; }
  .hero-left { text-align: center; }
  .hero-title { font-size: 1.8rem; }
  .hero-price { font-size: 2rem; }
  .hero-emoji { font-size: 6rem; }
  .hero-points { justify-content: center; }
  .breed-grid { grid-template-columns: repeat(3, 1fr); }
  .formula-wrap { grid-template-columns: 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-item { grid-template-columns: 1fr; }
  .shop-item-img { width: 100%; height: 200px; }
  .dp-cards { grid-template-columns: 1fr; }
  .dp-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .breed-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-day { flex-direction: column; text-align: center; }
}