/* ==========================================================================
   Ad Detail Page Styles
   ========================================================================== */


.ad-header {
    border: 1px solid #e9ecef;
}

.breadcrumb-item a {
    color: #1e293b;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.image-gallery {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-image-container {
    text-align: center;
}

#mainImage {
    transition: transform 0.3s ease;
}

#mainImage:hover {
    transform: scale(1.02);
}

.modal-content {
    background: rgba(0, 0, 0, 0.9) !important;
}

#imageModal .modal-body {
    padding: 20px;
}

#modalImage {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.thumbnail-gallery {
    justify-content: center;
}

.thumbnail-img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-img:hover {
    transform: scale(1.05);
    border-color: #1e293b;
}

.thumbnail-img.active {
    border-color: #1e293b;
    box-shadow: 0 0 10px rgba(30, 41, 59, 0.3);
}

.ad-description,
.ad-details,
.contact-card,
.quick-actions,
.related-ads {
    border: 1px solid #e9ecef;
}

.description-content {
    line-height: 1.8;
    color: #0f172a;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
}

.contact-item {
    text-align: center;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.related-ad-title {
    font-size: 0.9rem;
    line-height: 1.4;
}

.similar-ad-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.similar-ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.similar-ad-image {
    overflow: hidden;
}

.similar-ad-card:hover .similar-ad-image img {
    transform: scale(1.05);
}

.similar-ad-image img {
    transition: transform 0.3s ease;
}

/* ==========================================================================
   Ad Detail Page Styles
   ========================================================================== */

.ad-detail-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #1e293b;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.action-buttons .btn-group .btn {
    border-radius: 8px;
    margin-right: 5px;
}

.thumbnail-img {
    transition: all 0.3s ease;
}

.thumbnail-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.related-ad-item {
    transition: all 0.3s ease;
}

.related-ad-item:hover {
    background: #f8f9fa !important;
    transform: translateX(5px);
}

.keywords-section {
    background: #f8f9fa;
}

.keywords-list .badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.keywords-list .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(30, 41, 59, 0.3);
}

/* ==========================================================================
   Safety Tips Section
   ========================================================================== */

.safety-tips-section {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.safety-tips-section .text-warning {
    color: #f57c00 !important;
}

/* ==========================================================================
   Location Information Section
   ========================================================================== */

.location-info-section {
    background: rgba(13, 202, 240, 0.1);
}

.location-highlights .badge {
    background: rgba(13, 202, 240, 0.2) !important;
    color: #0dcaf0 !important;
}

/* ==========================================================================
   Category Guide Section
   ========================================================================== */

.category-guide-section {
    background: rgba(25, 135, 84, 0.1);
}

.guide-item h6 {
    color: #198754 !important;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    background: #f8f9fa;
}

.accordion-button {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #1e293b, #334155);
    color: white;
    border-color: transparent;
}

.accordion-body {
    background: white;
    border-radius: 8px;
}

/* ==========================================================================
   Related Questions Section
   ========================================================================== */

.related-questions-section {
    background: rgba(30, 41, 59, 0.1);
}

.question-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.question-item:hover {
    background: #f8f9fa !important;
    transform: translateX(5px);
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 15px 25px;
}

/* ==========================================================================
   Lazy Loading
   ========================================================================== */

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* ==========================================================================
   Fixed Contact Buttons (Right Side) - Same colors as listing page
   ========================================================================== */

.fixed-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-contact-buttons .contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.fixed-contact-buttons .contact-btn:hover {
    transform: scale(1.1);
    color: white;
}

.fixed-contact-buttons .call-btn {
    background-color: #3498db;
}

.fixed-contact-buttons .whatsapp-btn {
    background-color: #25d366;
}

.fixed-contact-buttons .telegram-btn {
    background-color: #0088cc;
}

.fixed-contact-buttons .arattai-btn {
    background-color: #ff9800;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        right: 10px;
        gap: 8px;
    }

    .fixed-contact-buttons .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Specific Contact Buttons */
.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%) !important;
    border: none !important;
}

.arattai-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
    border: none !important;
}

.arattai-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.arattai-floating-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ==========================================================================
   Heading Sizes - Refined & Professional
   ========================================================================== */

/* Desktop Heading Sizes */
h1,
.h1 {
    font-size: 1.75rem !important;
    /* 28px */
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #1a202c 0%, #ff3366 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

h2,
.h2 {
    font-size: 1.5rem !important;
    /* 24px */
    font-weight: 600;
    line-height: 1.4;
}

h3,
.h3 {
    font-size: 1.25rem !important;
    /* 20px */
    font-weight: 600;
    line-height: 1.4;
}

h4,
.h4 {
    font-size: 1.1rem !important;
    /* 17.6px */
    font-weight: 600;
    line-height: 1.5;
}

h5,
.h5 {
    font-size: 1rem !important;
    /* 16px */
    font-weight: 500;
    line-height: 1.5;
}

h6,
.h6 {
    font-size: 0.9rem !important;
    /* 14.4px */
    font-weight: 500;
    line-height: 1.5;
}

/* Mobile Heading Sizes */
@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 1.5rem !important;
        /* 24px */
    }

    h2,
    .h2 {
        font-size: 1.3rem !important;
        /* 20.8px */
    }

    h3,
    .h3 {
        font-size: 1.15rem !important;
        /* 18.4px */
    }

    h4,
    .h4 {
        font-size: 1.05rem !important;
        /* 16.8px */
    }

    h5,
    .h5 {
        font-size: 0.95rem !important;
        /* 15.2px */
    }

    h6,
    .h6 {
        font-size: 0.85rem !important;
        /* 13.6px */
    }
}

/* ==========================================================================
   Premium High-Class Enhancements
   ========================================================================== */

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Gold Pulse Animation */
@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(218, 165, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
    }
}

/* Marquee Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ad-header {
    border: 1px solid rgba(218, 165, 32, 0.3);
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    position: relative;
    overflow: hidden;
}

.ad-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #daa520, #ffd700, #daa520);
}

.premium-badge-detail {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffd700;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #daa520;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: gold-pulse 2s infinite;
}

.premium-badge-detail i {
    color: #ffd700;
}

.verified-badge-detail {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 100%);
    color: #000;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.verified-badge-detail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: shimmer 3s infinite;
}

/* Premium Marquee Strip */
.premium-marquee-strip {
    background: #000;
    color: #ffd700;
    padding: 8px 0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #daa520;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 15s linear infinite;
}

.marquee-item {
    display: inline-block;
    padding: 0 30px;
}

.marquee-item i {
    margin-right: 8px;
}

/* Enhanced Contact Card */
.contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(218, 165, 32, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    color: #1a202c;
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
    padding-bottom: 15px;
    position: relative;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #daa520;
}

.contact-btn {
    backdrop-filter: blur(5px);
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



.title-gradient-premium {
    color: #1e293b;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

/* Premium Image Glow Border */
.premium-glow-border {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
}

.premium-glow-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: linear-gradient(45deg, #ffd700, #ffecb3, #daa520, #ffd700);
    z-index: -1;
    animation: rotate-border 4s linear infinite;
    background-size: 400% 400%;
}

@keyframes rotate-border {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Liquid Gold Buttons */
.btn-premium-gold {
    background: linear-gradient(45deg, #daa520, #ffd700);
    border: none;
    color: #000;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-premium-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
    color: #000;
}

.btn-premium-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Premium Ribbon Styles */
.premium-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    animation: gold-pulse 3s infinite;
}

.premium-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.8) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

.premium-ribbon-text {
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.contact-item .premium-shine {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-width: 2px !important;
}

.contact-item .premium-shine:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
}


/* Browse More Listings (Brand Colored) */
.browse-more-card {
    background: #fff;
    border: 1px solid rgba(255, 107, 157, 0.2) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.browse-more-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ff1493, #ffd700);
}

.browse-more-card h3 {
    color: #d63384;
    /* Deep Pink */
}

.browse-more-card h3 i {
    color: #ff6b9d !important;
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.4);
}

.browse-more-card .location-link-item .hover-lift {
    background: #fff0f5 !important;
    /* Lavender Blush (light pink) */
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.browse-more-card .location-link-item .hover-lift:hover {
    transform: translateX(5px);
    background: #ffe4e1 !important;
    /* Misty Rose */
    border-color: #ff6b9d;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.browse-more-card .btn-outline-primary {
    color: #d63384;
    border-color: #ff6b9d;
}

.browse-more-card .btn-outline-primary:hover {
    background: linear-gradient(45deg, #ff6b9d, #ff1493);
    color: white;
    border-color: transparent;
}

.browse-more-card .city-badge {
    background: #fff0f5 !important;
    color: #d63384 !important;
    border: 1px solid rgba(255, 107, 157, 0.2) !important;
    transition: all 0.3s ease;
}

.browse-more-card .city-badge:hover {
    background: #ff6b9d !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 107, 157, 0.3) !important;
}

.browse-more-card .other-cities-section h4 {
    color: #d63384 !important;
}


/* Premium Marquee Gloss */
.premium-marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}

/* ==========================================================================
   Full Page Premium Brand Theme Override
   ========================================================================== */

/* 1. Global Color Overrides */
.ad-detail-container .text-primary,
.ad-header .text-primary {
    color: #d63384 !important;
    /* Brand Deep Pink */
}

/* 2. Breadcrumbs */
.breadcrumb-item a {
    color: #d63384;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #ff6b9d;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* 3. Badges (Standard) */
.badge.bg-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
    /* Keep info blue or change to brand? Keeping gentle blue for status is often safer, but let's try a soft brand purple */
    background: linear-gradient(135deg, #a668ff, #9c27b0) !important;
    color: white;
}

/* 4. Icons & Meta Data */
.ad-meta i {
    color: #ff6b9d !important;
}

.ad-meta span {
    color: #4a5568;
    font-weight: 500;
}

/* 5. Buttons (Primary - View Full Size, etc.) */
.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #d63384 100%) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8eb3 0%, #e64999 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
}

/* 6. Outline Buttons (Copy, Share, etc.) */
.btn-outline-secondary {
    color: #6c757d;
    border-color: #dee2e6;
}

.btn-outline-secondary:hover {
    background: #f8f9fa;
    color: #d63384;
    border-color: #ff6b9d;
}

/* 7. Image Gallery Controls */
.image-gallery .badge.bg-dark {
    background: linear-gradient(135deg, #343a40, #000) !important;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

/* 8. Contact Card Enhancements */
.contact-card {
    border-top: 3px solid #ff6b9d;
    /* Brand accent on top */
}

.contact-card h3 i {
    color: #ff6b9d !important;
}

/* 9. Description Area */
.ad-description h2 {
    color: #d63384;
    border-bottom: 2px solid rgba(255, 107, 157, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

/* 10. Floating Contact Buttons (Right side) - Add gentle glow */
.fixed-contact-buttons .contact-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
}

/* 11. Modal Styles */
.modal-header {
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.modal-title {
    color: #d63384;
}

.modal-footer {
    border-top: 1px solid rgba(255, 107, 157, 0.2);
}

/* 12. Leaflet Map/Location Text */
/* 12. Leaflet Map/Location Text */
.location-link-item i {
    color: #ff6b9d !important;
}

/* 13. Contact Card Specific Updates (User Requested) */
.contact-card {
    background: #fff !important;
    transform: none !important;
    transition: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.contact-card:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

/* Force icons inside buttons to be brand pink (logo icon color) */
.contact-card .btn i,
.contact-card .btn-icon i {
    color: #ff6b9d !important;
}

/* Except for social buttons that might need specific branding, but user asked for "logo icon color" */
/* Let's make the outline buttons use brand color text/border */

.contact-card .btn-outline-primary,
.contact-card .btn-outline-success,
.contact-card .btn-info,
.contact-card .btn-warning {
    color: #d63384 !important;
    border-color: #ff6b9d !important;
    background: transparent !important;
}

.contact-card .btn:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #d63384 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

.contact-card .btn:hover i {
    color: white !important;
}

/* 14. Social Media Standard Typography (FB & Twitter Inspired) */
body,
.ad-detail-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #050505;
    /* FB Primary Text Color */
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #050505;
    font-weight: 700;
    /* Bolder headings like FB/Twitter */
    letter-spacing: -0.3px;
    /* Slightly tight spacing */
}

/* Description Text - SEO Optimized & Social Media Style */
.description-content,
.ad-description p {
    font-size: 16px;
    /* 16px is Google's recommended minimum for mobile */
    line-height: 1.6;
    /* Perfect readability */
    color: #050505;
    margin-bottom: 12px;
    letter-spacing: normal;
    word-wrap: break-word;
}

/* Secondary Meta Data (Dates, Locations) */
.ad-meta,
.text-muted,
.small {
    font-size: 14px;
    /* Slightly larger for better legibility */
    color: #65676B !important;
    font-weight: 400;
}

/* Formatted Lists in Description */
.description-content ul,
.description-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.description-content li {
    margin-bottom: 6px;
    font-size: 16px;
    /* Match paragraph size */
    line-height: 1.6;
}

/* Links */
a {
    transition: all 0.2s ease-in-out;
}

/* Brand colored links are handled by previous overrides, but base hover can be cleaner */
a:hover {
    text-decoration: none;
}