/* dog-years-calculator — extracted from inline <style> */
.evvy-breed-search-wrap {
  position: relative;
}
.evvy-breed-search-wrap input {
  width: 100%;
}
.evvy-breed-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: var(--evvy-card-bg, #fff);
  border: 1px solid var(--evvy-border-color, #DEE2E6);
  border-top: none;
  border-radius: 0 0 var(--evvy-radius-md, 8px) var(--evvy-radius-md, 8px);
  z-index: 20;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.evvy-breed-dropdown.open { display: block; }
.evvy-breed-option {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--evvy-text-primary, #333);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.evvy-breed-option:hover,
.evvy-breed-option.active {
  background: color-mix(in srgb, var(--cluster-dark) 6%, transparent);
}
.evvy-breed-option-size {
  font-size: 0.6875rem;
  color: var(--evvy-text-secondary, #666);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.evvy-life-stage-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--bs-border-radius-pill, 50rem);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.evvy-life-stage-badge.stage-puppy    { background: #8b5cf6; }
.evvy-life-stage-badge.stage-junior   { background: #3b82f6; }
.evvy-life-stage-badge.stage-adult    { background: #22c55e; }
.evvy-life-stage-badge.stage-mature   { background: #f59e0b; }
.evvy-life-stage-badge.stage-senior   { background: #f97316; }
.evvy-life-stage-badge.stage-geriatric { background: #ef4444; }
.evvy-timeline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  margin-top: 0.75rem;
}
.evvy-timeline-table th {
  text-align: left;
  font-weight: 600;
  padding: 0.375rem 0.625rem;
  color: var(--evvy-text-secondary, #666);
  border-bottom: 2px solid var(--evvy-border-color, #DEE2E6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.evvy-timeline-table td {
  padding: 0.375rem 0.625rem;
  border-bottom: 1px solid var(--evvy-border-color, #DEE2E6);
  color: var(--evvy-text-primary, #333);
}
.evvy-timeline-table tr.current-age {
  background: color-mix(in srgb, var(--cluster-dark) 8%, transparent);
  font-weight: 600;
}
.evvy-lifespan-bar {
  position: relative;
  height: 22px;
  border-radius: 11px;
  background: var(--evvy-border-color, #DEE2E6);
  overflow: hidden;
  margin-top: 0.5rem;
}
.evvy-lifespan-fill {
  height: 100%;
  border-radius: 11px;
  background: var(--cluster-dark, #22c55e);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.evvy-lifespan-pct {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--evvy-text-secondary, #666);
  margin-top: 0.25rem;
}
.evvy-dog-stepper {
  display: flex;
  align-items: center;
  gap: 0;
}
.evvy-dog-stepper .evvy-hero-input {
  text-align: center;
  border-radius: 0;
  -moz-appearance: textfield;
}
.evvy-dog-stepper .evvy-hero-input::-webkit-inner-spin-button,
.evvy-dog-stepper .evvy-hero-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.evvy-stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 100%;
  min-height: 56px;
  border: 1px solid var(--evvy-border-color, #DEE2E6);
  background: var(--evvy-card-bg, #fff);
  color: var(--evvy-text-primary, #333);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.evvy-stepper-btn:hover {
  background: color-mix(in srgb, var(--cluster-dark) 6%, transparent);
}
.evvy-stepper-btn:first-child {
  border-radius: var(--evvy-radius-md, 8px) 0 0 var(--evvy-radius-md, 8px);
}
.evvy-stepper-btn:last-child {
  border-radius: 0 var(--evvy-radius-md, 8px) var(--evvy-radius-md, 8px) 0;
}
.evvy-premium-card {
  background: color-mix(in srgb, var(--cluster-dark) 4%, transparent);
  border: 1px solid var(--evvy-border-color, #DEE2E6);
  border-radius: var(--evvy-radius-lg, 12px);
  padding: 1rem;
  margin-top: 0.75rem;
}
.evvy-premium-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--evvy-text-primary, #333);
}
.evvy-milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: var(--evvy-text-secondary, #666);
  border-bottom: 1px solid var(--evvy-border-color, #DEE2E6);
}
.evvy-milestone-item:last-child { border-bottom: none; }
.evvy-milestone-age {
  font-weight: 600;
  color: var(--evvy-text-primary, #333);
  min-width: 3.5rem;
  flex-shrink: 0;
}
.evvy-comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  font-size: 0.75rem;
}
.evvy-comparison-col-header {
  font-weight: 700;
  text-align: center;
  padding: 0.25rem;
  color: var(--evvy-text-primary, #333);
}
.evvy-comparison-cell {
  text-align: center;
  padding: 0.25rem;
  color: var(--evvy-text-secondary, #666);
  border-bottom: 1px solid var(--evvy-border-color, #DEE2E6);
}
[data-bs-theme="dark"] .evvy-breed-dropdown {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
@media (max-width: 575.98px) {
  .evvy-comparison-grid { grid-template-columns: repeat(2, 1fr); }
  .evvy-comparison-col-header:nth-child(n+3),
  .evvy-comparison-cell:nth-child(4n+3),
  .evvy-comparison-cell:nth-child(4n+4) { display: none; }
}
