/* ========================================
   NEW BREEDS GRID SHOWCASE
======================================== */
.breeds-showcase {
    background: var(--color-bg);
}

.breeds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .breeds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breeds-grid {
        grid-template-columns: 1fr;
    }
}

.breed-card-modern {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breed-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.breed-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.breed-card-modern:hover .breed-card-bg {
    transform: scale(1.05);
}

.breed-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}

.breed-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    color: var(--color-white);
}

.modern-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.highlight-badge {
    background: var(--color-secondary);
}

.breed-card-content h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-white) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breed-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
}

.modern-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
}

.modern-specs li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-specs li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
}

.breed-btn {
    width: 100%;
    margin-top: 1rem;
}

/* ========================================
   NEW DETAILS TABS SECTION
======================================== */
.details-tabs-section {
    background: var(--color-bg-alt);
    padding: 6rem 0;
}

.details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 600px;
}

@media (max-width: 992px) {
    .details-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.details-left {
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .details-left {
        padding: 2rem;
    }
}

.details-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.detail-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--font-heading);
}

.detail-btn::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.detail-btn.active {
    color: var(--color-text);
}

.detail-btn.active::after {
    width: 100%;
}

.detail-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.detail-pane.active {
    display: block;
}

.pane-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.35; /* Increased opacity for better visibility */
    line-height: 1;
    margin-bottom: -1rem;
    display: block;
    font-family: var(--font-heading);
}

.detail-pane h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.detail-pane p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.detail-feature-list {
    list-style: none;
    padding: 0;
}

.detail-feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.05rem;
}

.detail-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367B805' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center center;
}

.details-right {
    position: relative;
    min-height: 400px;
}

.detail-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.detail-image.active {
    opacity: 1;
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
