/* ================================
   EXPERT VERDICT BOX
   ================================ */

.verdict-box {
    margin: 50px 0;
    padding: 34px;
    background: #faf8f5; /* soft warm neutral */
    border-radius: 14px;
    border: 1px solid rgba(120, 98, 72, 0.18);
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    border-top: 4px solid #e8e2d9;
}


.verdict-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
    letter-spacing: .4px;
}

.verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media (max-width: 900px){
    .verdict-grid {
        grid-template-columns: 1fr;
    }
}

/* Columns */

.verdict-column h4 {
    margin-bottom: 14px;
    font-size: 1.1rem;
}

/* Check / X list */

.verdict-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verdict-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Icons */

.check-icon {
    color: #1DB954;   /* confident, modern green */
    font-weight: 800;
    font-size: 1.05rem;
}

.x-icon {
    color: #E63946;   /* strong but not harsh red */
    font-weight: 800;
    font-size: 1.05rem;
}


/* Commentary */

.verdict-notes {
    margin-top: 18px;
    font-size: .95rem;
    color: #5f5f5f;
}

.verdict-notes p {
    margin-bottom: 8px;
}

/* Insight strip */

.pro-insight {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-style: italic;
    color: #444;
}




/* BREED INFO & CARDS */
.breed-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.info-card h3 {
    color: #5C4A3A;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #8B7355;
    padding-bottom: 8px;
}

.info-card p {
    color: #5C4A3A;
    line-height: 1.6;
    margin-bottom: 15px;
}

.specs-list { 
    list-style-type: none; 
    padding: 0;
    margin: 0;
}

.specs-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding-left: 1em;
    color: #5C4A3A;
}

.specs-list li::before {
    content: "•";
    color: #5C4A3A;
    font-weight: bold;
    margin-left: -1em;
    margin-right: 0.5em;
}

/* Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 2rem auto;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
}

.alternating-columns {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    font-size: 1rem;
}

.alternating-columns th:nth-child(odd),
.alternating-columns td:nth-child(odd) {
    background-color: #F5F0E6;
}

.alternating-columns th:nth-child(even),
.alternating-columns td:nth-child(even) {
    background-color: #ffffff;
}

.alternating-columns th {
    background-color: #5C4A3A !important;
    color: white;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
    font-weight: 600;
}

.alternating-columns td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    transition: all 0.2s ease;
    color: #333;
}

.alternating-columns td:first-child {
    padding-left: 20px;
}

.alternating-columns tbody tr:hover td {
    background-color: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.alternating-columns {
    text-align: left;
}

/* Left-align table text */
.alternating-columns td:first-child {
    text-align: left;
    padding-left: 20px;
}

/* Health Concerns */
.health-concerns {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.health-concerns h2 {
    color: #5C4A3A;
    border-bottom: 2px solid #5C4A3A;
    padding-bottom: 10px;
    margin-top: 0;
}

.health-concerns h3 {
    color: #5C4A3A;
    margin-top: 0;
}

.health-concerns ul {
    padding-left: 20px;
}

.health-concerns li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #5C4A3A;
}

.health-concerns .highlight {
    font-weight: bold;
    color: #5C4A3A;
}

.icon-button {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 5px;
}

.fb-button { 
    background: #3B5998; 
    color: white; 
}

.website-button { 
    background: #555; 
    color: white; 
}

/* Slider Container Styles */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding-bottom: 60px;
    height: 600px; /* Fixed height for smoother transitions */
}

.slider {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.breed-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Slider Buttons - Smaller */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:focus-visible {
    outline: 2px solid #5C4A3A;
    outline-offset: 2px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-btn path {
    stroke: white;
    stroke-width: 2.5;
}

/* Slider Dots - Better visibility */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(100, 100, 100, 0.7);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dots button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: white;
    transform: scale(1.2);
}

.slider-dots button.active {
    background-color: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.slider-dots button:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Optional: Add subtle shadow to dots for better visibility */
.slider-dots {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

/* For crossfade effect (alternative to simple fade) */
.slider {
    position: relative;
}

.slide {
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    visibility: hidden;
}

.slide.active {
    visibility: visible;
}

/* CANVA CREDIT SECTION */
.canva-credit {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 3rem;
    border-top: 5px solid #00C4CC;
    position: relative;
    overflow: hidden;
}

.canva-credit:before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00C4CC, #00B2A9, #00C4CC);
}

.canva-header { 
    display: flex; 
    align-items: center; 
    margin-bottom: 20px; 
}

.canva-logo {
    width: 80px;
    height: 80px;
    background-color: #00C4CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.canva-logo i { 
    font-size: 40px; 
    color: white; 
}

.canva-title h2 { 
    color: #00C4CC; 
    font-size: 1.8rem; 
    margin-bottom: 5px; 
}

.canva-title p { 
    color: #8B7355; 
    font-size: 1rem; 
}

.credit-content { 
    margin-bottom: 25px; 
    line-height: 1.8; 
    color: #333;
}

.canva-link {
    display: inline-block;
    background: linear-gradient(135deg, #00C4CC, #00B2A9);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 196, 204, 0.3);
}

.canva-link:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.4); 
}

.canva-link:focus-visible {
    outline: 2px solid #00C4CC;
    outline-offset: 2px;
}

.canva-link i { 
    margin-left: 8px; 
}

/* FOOTER */
footer {
    background-color: #5C4A3A;
    color: #D9C7A7;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.footer-section h3 {
    color: #D9C7A7;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.footer-section p,
.footer-section a {
    color: #F5F0E6;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer-section a:hover { 
    opacity: 1; 
    color: #D9C7A7; 
}

.footer-section a:focus-visible {
    outline: 1px solid #D9C7A7;
    outline-offset: 2px;
}

.copyright {
    border-top: 1px solid #8B7355;
    padding-top: 1.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .info-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .table-container {
        padding: 0 10px;
    }
    
    .alternating-columns {
        font-size: 14px;
    }
    
    .alternating-columns th,
    .alternating-columns td {
        padding: 10px 8px;
    }
    
    .alternating-columns td:first-child {
        padding-left: 12px;
    }
    
    .health-concerns {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .slider-container {
        margin: 0 10px;
        padding-bottom: 35px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }
    
    .slider-dots button {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots button.active {
        transform: scale(1.2);
    }
    
    .photo-credit {
        font-size: 0.8rem;
        padding: 5px 8px;
        bottom: 35px;
        right: 8px;
    }
    
    .slide::after {
        height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .breed-info {
        gap: 20px;
        margin-top: 20px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .alternating-columns {
        font-size: 12px;
    }
    
    .slider-container {
        padding-bottom: 30px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }
    
    .slider-dots button {
        width: 8px;
        height: 8px;
    }
    
    .photo-credit {
        font-size: 0.7rem;
        padding: 4px 6px;
        bottom: 30px;
        right: 5px;
    }
    
    .slide::after {
        height: 50px;
    }
}

.check-bold {
    font-weight: bold;
    color: #2c5aa0;
    font-size: 1.5em;
}

/* Ensure proper box-sizing */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breed Header */
.breed-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.breed-header h1 {
    color: #5C4A3A;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.breed-header h2 {
    color: #8B7355;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.breed-header h3 {
    color: #8B7355;
    font-style: italic;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .breed-header h1 {
        font-size: 2rem;
    }
    
    .breed-header h2 {
        font-size: 1.3rem;
    }
    
    .breed-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .breed-header h1 {
        font-size: 1.8rem;
    }
    
    .breed-header h2 {
        font-size: 1.1rem;
    }
    
    .breed-header h3 {
        font-size: 1rem;
    }
}