/* Main Puppy Profile card container */
.puppy-card-ad99bc1f {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.puppy-card-ad99bc1f:hover {
    transform: translateY(-2px);
}

/* Image section */
.puppy-image-wrapper-ad99bc1f {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f3f4f6;
}

.puppy-badge-ad99bc1f {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background-color: #FEF9C3;
    color: #713F12;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.puppy-main-slider-ad99bc1f {
    position: relative;
    width: 100%;
    height: 100%;
}

.puppy-slide-ad99bc1f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.puppy-slide-ad99bc1f.active {
    opacity: 1;
    z-index: 2;
}

.puppy-slide-ad99bc1f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nav Buttons */
.puppy-nav-btn-ad99bc1f {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 5;
    transition: background-color 0.2s;
}

.puppy-nav-btn-ad99bc1f:hover {
    background-color: #ffffff;
}

.puppy-nav-btn-ad99bc1f.prev {
    left: 12px;
}

.puppy-nav-btn-ad99bc1f.next {
    right: 12px;
}

.puppy-slide-counter-ad99bc1f {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 9999px;
    z-index: 5;
}

/* Thumbnails row */
.puppy-thumbnails-ad99bc1f {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    border-bottom: 1px solid #f3f4f6;
}

.puppy-thumb-ad99bc1f {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.puppy-thumb-ad99bc1f.active, .puppy-thumb-ad99bc1f:hover {
    border-color: #10B981;
    opacity: 1;
}

.puppy-thumb-ad99bc1f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Details and specs area */
.puppy-meta-container-ad99bc1f {
    padding: 20px;
}

.puppy-header-row-ad99bc1f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.puppy-name-ad99bc1f {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px 0;
}

.puppy-breed-ad99bc1f {
    font-size: 15px;
    color: #4B5563;
    font-weight: 500;
}

.puppy-price-ad99bc1f {
    font-size: 20px;
    font-weight: 700;
    color: #10B981;
}

.puppy-attributes-ad99bc1f {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 20px;
}

.puppy-attr-item-ad99bc1f {
    font-weight: 500;
}

.puppy-attr-dot-ad99bc1f {
    color: #D1D5DB;
}

.status-ready {
    color: #047857;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-style: dotted;
}

/* Action CTA */
.puppy-cta-btn-ad99bc1f {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #10B981;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.puppy-cta-btn-ad99bc1f:hover {
    background-color: #059669;
}

.puppy-cta-btn-ad99bc1f:active {
    transform: scale(0.98);
}
