:root {
    --sm-crimson: #e31c4a;
    --sm-burgundy: #8f1234;
    --sm-gold: #d4a017;
    --sm-charcoal: #141414;
    --sm-cream: #fff7f0;
    --sm-green: #2f7a3d;
    --sm-amber: #f0a020;
    --sm-red: #e31c4a;
}

/* Puppy status badges */
.sm-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}
.sm-status-available { background: var(--sm-green); }
.sm-status-reserved  { background: var(--sm-amber); }
.sm-status-sold       { background: var(--sm-red); }

/* Deposit reservation button */
.sm-reserve-button {
    background: linear-gradient(135deg, var(--sm-crimson), var(--sm-burgundy)) !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(227, 28, 74, 0.28);
}
.sm-deposit-note {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}
.sm-deposit-label {
    font-size: 12px;
    color: var(--sm-gold);
    font-weight: 600;
}

/* Puppy-matching quiz */
.sm-quiz {
    background: var(--sm-cream);
    border-radius: 16px;
    padding: 32px;
    max-width: 640px;
    margin: 0 auto;
}
.sm-quiz-question {
    margin-bottom: 20px;
}
.sm-quiz-question label {
    display: block;
    margin: 6px 0;
    cursor: pointer;
}
.sm-quiz-submit {
    background: var(--sm-charcoal) !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 12px 28px !important;
}
.sm-quiz-result {
    margin-top: 24px;
}
.sm-quiz-result h3 {
    color: var(--sm-gold);
}
.sm-quiz-puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.sm-quiz-puppy-grid img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Litter countdown */
.sm-countdown {
    text-align: center;
    padding: 24px;
}
.sm-countdown-label {
    font-weight: 700;
    margin-bottom: 12px;
}
.sm-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.sm-countdown-timer > div {
    background: var(--sm-charcoal);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 64px;
}
.sm-countdown-timer span {
    display: block;
    font-size: 28px;
    font-weight: 800;
}
.sm-countdown-timer small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}
.sm-countdown-empty {
    text-align: center;
    color: #666;
}

/* Puppy update wall */
.sm-puppy-updates-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.sm-update-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.sm-update-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.sm-update-body {
    padding: 14px;
}
.sm-update-puppy-name {
    font-weight: 700;
    color: var(--sm-gold);
    margin: 0 0 4px;
}
.sm-update-caption {
    margin: 0 0 6px;
    color: var(--sm-charcoal);
}
.sm-update-date {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Testimonials */
.sm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.sm-testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}
.sm-testimonial-photo img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
}
.sm-testimonial-quote {
    font-style: italic;
    margin: 0 0 10px;
    color: var(--sm-charcoal);
}
.sm-testimonial-name {
    font-weight: 700;
    color: var(--sm-gold);
    margin: 0;
}

/* Litters + parents grids */
.sm-litters-grid,
.sm-parents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.sm-litter-card,
.sm-parent-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.sm-litter-photo img,
.sm-parent-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.sm-litter-body,
.sm-parent-body {
    padding: 16px;
}
.sm-litter-title,
.sm-parent-title {
    margin: 0 0 8px;
    font-size: 1.1rem;
}
.sm-litter-title a,
.sm-parent-title a,
.sm-update-puppy-name a {
    color: inherit;
    text-decoration: none;
}
.sm-litter-title a:hover,
.sm-parent-title a:hover,
.sm-update-puppy-name a:hover {
    color: var(--sm-gold);
}
.sm-litter-parents,
.sm-litter-meta,
.sm-parent-meta {
    margin: 0 0 4px;
    color: #666;
    font-size: 14px;
}
.sm-quiz-puppy-price {
    margin: 0;
    font-size: 13px;
    color: #666;
}
.sm-empty {
    text-align: center;
    color: #666;
}
