/* Shih Tzu Puppies in Chennai Page Custom Premium Styling */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #dd0012;
    /* Theme Red */
    --primary-dark: #b8000f;
    --accent-color: #ffebeb;
    /* Soft red tint */
    --hover-accent: #fec708;
    /* Theme Gold */
    --text-dark: #2c3e50;
    --text-muted: #718096;
    --bg-light: #fdfafb;
    --bg-card: #ffffff;
    --border-color: #f5e1e2;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 20px rgba(221, 0, 18, 0.04);
    --shadow-lg: 0 20px 40px rgba(221, 0, 18, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & layout adjustments for this page block */
#shihtzuScreen {
    color: var(--text-dark);
    font-family: 'Outfit', 'Inter', sans-serif !important;
    line-height: 1.8;
    padding: 60px 0;
    background-color: #fff;
}

#shihtzuScreen h2,
#shihtzuScreen h3,
#shihtzuScreen h4,
.shihtzu-section-title {
    color: #1a202c;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: -0.02em;
}

#shihtzuScreen h2 {
    font-size: 2.25rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 12px;
    display: inline-block;
}

#shihtzuScreen h3 {
    font-size: 1.75rem;
    margin-top: 40px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

#shihtzuScreen p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Puppy Listing Cards Redesign (doglistingforcities) to match user's custom design style */
.blog-block {
    background: #fff;
    border: 1px solid #e8e3f5;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.blog-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 74, 243, 0.1);
    border-color: #bfa3ff;
}

.blog-img {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fcf8f2, #ffebeb);
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* "View Price" overlay on image to match requested design */
.blog-img::after {
    content: 'View Price';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px 10px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    box-sizing: border-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Quality Badge overlay matching reference */
.blog-img::before {
    content: 'Pet Quality';
    /* Fallback value badge */
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(94, 173, 226, 0.85);
    /* Purple tint badge */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom badge values depending on context if card has specific classes */
.blog-block:nth-child(even) .blog-img::before {
    content: 'KCI Registered';
    background-color: rgba(240, 121, 127, 0.85);
}

/* Table inside available cards */
.blog-block table.BreedInfoTable {
    width: 100% !important;
    margin: 0 !important;
    border-collapse: collapse;
}

/* Title Header redesign (Title is the <th> cell) */
.blog-block table.BreedInfoTable th {
    background-color: transparent !important;
    color: #ce5980 !important;
    /* Elegant Purple matching user design */
    font-weight: 700;
    text-transform: none;
    font-size: 1.25rem !important;
    padding: 15px 20px 10px 20px !important;
    letter-spacing: 0;
    border: none !important;
    display: block;
    width: 100% !important;
}

.blog-block table.BreedInfoTable td {
    padding: 8px 20px !important;
    font-size: 0.95rem !important;
    color: #4a5568 !important;
    border: none !important;
    background: transparent !important;
}

/* Grid display or clean display for details */
.blog-block table.BreedInfoTable tr {
    display: block;
    width: 100%;
}

.blog-block table.BreedInfoTable tr td {
    display: inline-block;
    padding: 6px 0 !important;
    margin-left: 20px;
}

.blog-block table.BreedInfoTable tr td:first-child {
    color: #718096 !important;
    font-weight: 500 !important;
    width: 80px;
    margin-left: 20px;
}

.blog-block table.BreedInfoTable tr td:first-child:not([colspan])::after {
    content: ' : ';
}

.blog-block table.BreedInfoTable tr td:last-child {
    color: #2d3748 !important;
    font-weight: 600 !important;
    margin-left: 5px;
}

/* Action button row layout inside table cells */
.blog-block table.BreedInfoTable tr td[colspan="2"] {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    margin: 0 !important;
}

/* Book Now bottom flat button matching user request */
.blog-block a.btn-success {
    display: block !important;
    background-color: #c04a4a !important;
    /* Purple button to match requested design */
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    transition: var(--transition) !important;
    text-transform: none;
    font-size: 1rem;
    text-align: center;
    margin: 0 !important;
    width: 100% !important;
}

.blog-block a.btn-success:hover {
    background-color: #c22d5e !important;
    transform: translateY(-1px);
}

/* Delivery cell styling as custom sub-badge */
.blog-block table.BreedInfoTable td.btn-success {
    display: block !important;
    background: #eef2f7 !important;
    color: #60b6d8 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 10px !important;
    border: none !important;
    text-align: center;
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
}

/* Micro animations */
.hover-card {
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Custom list markers */
.custom-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #4a5568;
}

.custom-bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

/* Call to Action Container */
.premium-cta {
    background: linear-gradient(135deg, #2d3952 0%, #3876e0 100%);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin: 45px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(221, 0, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-cta p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #e2e8f0;
    font-weight: 500;
}

.premium-cta a.btn-call {
    background-color: var(--primary-color);
    color: #fff !important;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 35px;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 10px 20px rgba(253, 131, 141, 0.3);
}

.premium-cta a.btn-call:hover {
    background-color: var(--hover-accent);
    color: #1a202c !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 199, 8, 0.3);
}

/* Premium Card Grid Styles */
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 35px 0;
}

.info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h4 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Specific Red Theme Table Style matching user's layout but website color scheme */
.premium-table-container {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #000000;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.premium-table th {
    background-color: var(--primary-color);
    /* Website Theme Red */
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 14px 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #000000;
}

.premium-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #000000;
    color: #333;
    font-size: 0.95rem;
}

.premium-table td strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #1a202c;
    font-weight: 700;
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tr:nth-child(even) td:first-child,
.premium-table tr:nth-child(odd) td:first-child {
    background-color: #FFF9F9;
    /* Soft red tint characteristic cells */
    border-right: 1px solid #000000;
    width: 30%;
}

.premium-table tr:hover td {
    background-color: var(--accent-color);
}

/* FAQ section */
.faq-section {
    background-color: #fafbfc !important;
}

.faq-section .panel-default {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition);
}

.faq-section .panel-default:hover {
    box-shadow: var(--shadow-md) !important;
    border-color: var(--primary-color) !important;
}

.faq-section .panel-heading {
    background-color: #fff !important;
    padding: 22px 28px !important;
    border: none !important;
}

.faq-section .panel-title a {
    font-weight: 600;
    font-size: 1.15rem;
    color: #2d3748 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.faq-section .panel-title a:hover {
    color: var(--primary-dark) !important;
}

.faq-section .panel-collapse {
    border-top: 1px solid var(--border-color);
}

.faq-section .panel-body {
    padding: 24px 28px !important;
    background-color: #fafbfc;
    color: #4a5568;
    font-size: 1.05rem;
}

/* Sidebar Links styling */
.otherPageLinksSectionBangalore {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.otherPageLinksSectionBangalore h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    color: #1a202c;
    border-left: none !important;
    padding-left: 0 !important;
}

.otherPageLinksSectionBangalore ol {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

@media (min-width: 992px) {
    .otherPageLinksSectionBangalore ol {
        grid-template-columns: 1fr;
    }
}

.otherPageLinksSectionBangalore li a {
    display: block;
    padding: 10px 16px;
    background: #f7fafc;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.otherPageLinksSectionBangalore li a:hover {
    background: var(--accent-color);
    border-left-color: var(--primary-color);
    color: var(--primary-dark);
    padding-left: 20px;
}

/* Considerations & Why Choose Slider Layout */
.considerations-slider-wrapper,
.why-choose-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.considerations-grid,
.why-choose-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide for Firefox */
    padding: 10px 0;
}

/* Hide scrollbars for Chrome/Safari */
.considerations-grid::-webkit-scrollbar,
.why-choose-grid::-webkit-scrollbar {
    display: none;
}

.considerations-card,
.why-choose-card {
    flex: 0 0 100%;
    /* Mobile: 1 card */
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .considerations-card,
    .why-choose-card {
        flex: 0 0 calc((100% - (24px * 2)) / 3);
        /* Desktop: 3 cards */
    }
}

.considerations-card h4,
.why-choose-card h4 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.considerations-card h4 i,
.why-choose-card h4 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Slider navigation button styles */
.slider-nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.slider-control-btn {
    background: #1a202c;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-control-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* FAQ Accordion hide by default on page load */
#accordionFourLeft .panel-collapse {
    display: none;
}

#accordionFourLeft .panel-collapse.show {
    display: block;
}

/* Custom Enquiry Form Styles */
.custom-enquiry-section {
    background-color: #fff;
    padding: 40px 30px;
    margin: 45px 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.custom-enquiry-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.custom-enquiry-img-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-right: 20px;
    text-align: center;
}
.custom-enquiry-img-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.custom-enquiry-form-col {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding-left: 20px;
}
@media (max-width: 768px) {
    .custom-enquiry-img-col, .custom-enquiry-form-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .custom-enquiry-img-col {
        margin-bottom: 25px;
    }
}
.custom-enquiry-form-col h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 8px;
}
.custom-enquiry-form-col p.desc {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.custom-enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 25px;
}
@media (max-width: 576px) {
    .custom-enquiry-grid {
        grid-template-columns: 1fr;
    }
}
.custom-input-group {
    position: relative;
}
.custom-input-group input,
.custom-input-group select {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #cbd5e0;
    background: transparent;
    font-size: 14px;
    color: #2d3748;
    outline: none;
    transition: border-bottom-color 0.3s;
}
.custom-input-group input:focus,
.custom-input-group select:focus {
    border-bottom-color: var(--primary-color);
}
.custom-input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
    padding-right: 15px;
}
.custom-lets-roll-btn-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.btn-lets-roll {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(176, 26, 26, 0.25);
}
.btn-lets-roll:hover {
    background-color: #8e1515;
    transform: translateY(-1px);
}

/* FAQ Accordion Styling overrides */
#faqGoldenRetriever .faq-collapse {
    display: none;
}
#faqGoldenRetriever .faq-collapse.show {
    display: block;
}

/* Additional layout alignments from inline CSS */
#accordionFourLeft {
    border-bottom: 1px solid #c4c4d3;
}
.row.mb-5 > .col-md-6:first-child > div {
    height: 100%;
}
.otherPageLinksSectionBangalore.custom-scrollable-links {
    height: 260px;
    overflow-y: auto;
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 15px;
}
.otherPageLinksSectionBangalore.custom-scrollable-links h3 {
    margin-top: 0;
    position: sticky;
    top: -15px;
    background: #fff;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Puppy Listings Slider Wrapper for Mobile */
.puppy-listings-slider-wrapper {
    position: relative;
    width: 100%;
}

.puppy-listings-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
}

.puppy-slider-nav-controls {
    display: none;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

@media (max-width: 767px) {
    .puppy-listings-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Hide for Firefox */
        margin-right: 0;
        margin-left: 0;
        padding-bottom: 10px;
    }
    .puppy-listings-grid::-webkit-scrollbar {
        display: none; /* Hide for Chrome/Safari */
    }
    .puppy-listings-grid > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-right: 10px;
        padding-left: 10px;
    }
    .puppy-slider-nav-controls {
        display: flex;
    }
}