/* =====================================================
   Bid Detail / Property Details — PREMIUM ULTRA UI
   Matching browse-bid.css design system
   ===================================================== */

/* === HERO BANNER === */
.bd-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.bd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bd-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: bdOrbFloat 8s ease-in-out infinite;
}

.bd-hero-orb-1 {
    width: 280px;
    height: 280px;
    background: rgba(99, 102, 241, 0.3);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.bd-hero-orb-2 {
    width: 180px;
    height: 180px;
    background: rgba(168, 85, 247, 0.25);
    bottom: -60px;
    left: 10%;
    animation-delay: -3s;
}

.bd-hero-orb-3 {
    width: 120px;
    height: 120px;
    background: rgba(236, 72, 153, 0.2);
    top: 20%;
    left: 45%;
    animation-delay: -5s;
}

@keyframes bdOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 10px) scale(1.05);
    }
}

.bd-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bd-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bd-hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.bd-hero-title span {
    background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb inside hero */
.bd-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.bd-breadcrumb li {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.bd-breadcrumb li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.bd-breadcrumb li a:hover {
    color: #c4b5fd;
}

.bd-breadcrumb li+li::before {
    content: '›';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.25);
}

/* === MAIN SECTION === */
.bd-main-section {
    padding: 40px 0 60px;
    background: #f8fafc;
    position: relative;
}

.bd-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #eef2ff 0%, transparent 100%);
    pointer-events: none;
}

/* === PROPERTY INFO CARD === */
.bd-info-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
    animation: bdCardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bd-info-accent {
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

.bd-info-body {
    padding: 28px 32px;
}

.bd-info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.bd-info-left {
    flex: 1;
    min-width: 0;
}

.bd-property-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.bd-property-id {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    color: #6366f1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bd-info-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.bd-callback-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.bd-callback-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.bd-callback-btn:hover::before {
    left: 100%;
}

.bd-callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.45);
    color: #fff;
}

.bd-action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.bd-action-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bd-action-btn i {
    position: relative;
    z-index: 1;
}

.bd-action-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.bd-action-btn:hover::after {
    opacity: 1;
}

.bd-action-btn:hover i {
    color: #fff;
}

.bd-action-btn .fa-solid.fa-heart {
    color: #ef4444;
}

.bd-action-btn:hover .fa-solid.fa-heart {
    color: #fff;
}

.bd-info-actions .social-media {
    position: absolute;
    top: 52px;
    right: 0;
    z-index: 100;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 12px;
    display: none;
    min-width: 170px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.bd-info-actions .social-media.show,
.bd-info-actions .social-media[style*="display: block"] {
    display: block !important;
}

.bd-info-actions .social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 3px;
    font-size: 16px;
    transition: all 0.25s ease;
}

/* Info Grid */
.bd-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.bd-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.bd-info-item:hover {
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    border-color: rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.bd-info-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ede9fe, #faf5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.1);
    flex-shrink: 0;
}

.bd-info-item-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.bd-info-item-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    word-break: break-word;
}

/* === TABS SECTION === */
.bd-tabs-wrapper {
    margin-top: 32px;
    animation: bdCardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
    opacity: 0;
}

.bd-tabs-nav {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 24px;
}

.bd-tabs-nav .nav-item {
    flex: 1;
    min-width: 130px;
}

.bd-tabs-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.bd-tabs-nav .nav-link:hover {
    background: #f8fafc;
    color: #4f46e5;
    border-color: rgba(99, 102, 241, 0.12);
}

.bd-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
}

.bd-tabs-nav .nav-link i {
    font-size: 14px;
}

/* Tab Content */
.bd-tab-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.bd-tab-card-header {
    padding: 22px 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-tab-card-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

.bd-tab-card-header h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.bd-tab-card-body {
    padding: 24px 28px 28px;
}

/* Data row style for tab content */
.bd-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.bd-data-item {
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.bd-data-item:hover {
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    border-color: rgba(99, 102, 241, 0.1);
}

.bd-data-item h6 {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 6px;
}

.bd-data-item p {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

/* Description text */
.bd-description-text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.bd-description-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px;
}

/* Address block */
.bd-address-block {
    margin-top: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bd-address-block i {
    font-size: 18px;
    color: #22c55e;
    margin-top: 2px;
    flex-shrink: 0;
}

.bd-address-block h6 {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 5px;
}

.bd-address-block p {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

/* Downloads tab */
.bd-download-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bd-download-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px solid rgba(249, 115, 22, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    color: #1e293b;
}

.bd-download-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.3);
    color: #1e293b;
}

.bd-download-link i {
    font-size: 38px;
    color: #ea580c;
}

.bd-download-link span {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}

.bd-no-download {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.bd-no-download i {
    font-size: 18px;
}

/* Accordion for mobile */
.bd-mobile-accordion .accordion-button {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    background: #f8fafc;
    border: none;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.bd-mobile-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}

.bd-mobile-accordion .accordion-button::after {
    filter: brightness(0.5);
}

.bd-mobile-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.bd-mobile-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 8px;
}

.bd-mobile-accordion .accordion-body {
    padding: 20px;
    background: #fff;
    border-radius: 0 0 14px 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: none;
}

/* === RELATED PRODUCTS SECTION === */
.bd-related-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 60px 0 80px;
    
    position: relative;
    overflow: hidden;
}

.bd-related-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.bd-related-bg-orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(99, 102, 241, 0.2);
    top: -100px;
    left: -80px;
    animation: bdOrbFloat 10s ease-in-out infinite;
}

.bd-related-bg-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(168, 85, 247, 0.15);
    bottom: -80px;
    right: -60px;
    animation: bdOrbFloat 8s ease-in-out infinite reverse;
}

.bd-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.bd-section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #fb923c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.bd-section-title {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.bd-section-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 400px;
    margin: 0 auto;
}

/* Related cards — glassmorphism, no image */
.bd-related-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.bd-related-card-accent {
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fb923c, #fbbf24);
}

.bd-related-inner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: calc(100% - 3px);
}

.bd-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bd-related-card:hover .bd-related-inner {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.15);
}

.bd-related-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bd-related-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #fb923c;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bd-related-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 14px;
}

.bd-related-title {
    font-size: 15px;
    font-weight: 700;
    color: #e2e8f0;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.bd-related-title:hover {
    color: #fbbf24;
}

.bd-related-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bd-related-price-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.bd-related-price-value {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.bd-related-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fb923c;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
    padding-top: 4px;
}

.bd-related-link:hover {
    color: #fbbf24;
    gap: 16px;
}

.bd-related-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.bd-related-link:hover i {
    transform: translateX(6px);
}

/* === MODAL STYLE UPGRADE === */
#exampleModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#exampleModal .modal-header {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-bottom: none;
    padding: 20px 24px;
}

#exampleModal .modal-header .modal-title {
    font-weight: 800;
    font-size: 18px;
}

#exampleModal .modal-header .btn-close {
    filter: brightness(10);
    opacity: 0.7;
}

#exampleModal .modal-body {
    padding: 28px 24px;
}

#exampleModal .modal-body label {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
}

#exampleModal .modal-body .form-control {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#exampleModal .modal-body .form-control:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

#exampleModal .modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 16px 24px;
}

#exampleModal .modal-footer .btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

#exampleModal .modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
}

/* === ANIMATION === */
@keyframes bdCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Override social-media display from share library */
.social-media {
    display: none;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .bd-hero-title {
        font-size: 28px;
    }

    .bd-info-body {
        padding: 22px 20px;
    }

    .bd-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bd-data-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bd-tab-card-body {
        padding: 20px;
    }

    .bd-tab-card-header {
        padding: 18px 20px 0;
    }
}

@media (max-width: 767.98px) {
    .bd-hero {
        padding: 35px 0 30px;
    }

    .bd-hero-title {
        font-size: 24px;
    }

    .bd-info-grid {
        grid-template-columns: 1fr;
    }

    .bd-data-grid {
        grid-template-columns: 1fr;
    }

    .bd-property-title {
        font-size: 20px;
    }

    .bd-info-top {
        flex-direction: column;
    }

    .bd-section-title {
        font-size: 24px;
    }

    .bd-related-inner {
        padding: 18px 16px;
    }

    .bd-tabs-nav .nav-item {
        min-width: 0;
    }

    .bd-tabs-nav .nav-link {
        padding: 12px 14px;
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .bd-info-body {
        padding: 18px 16px;
    }

    .bd-callback-btn {
        width: 100%;
        justify-content: center;
    }

    .bd-tabs-nav {
        gap: 4px;
        padding: 4px;
    }

    .bd-tabs-nav .nav-link {
        padding: 10px 10px;
        font-size: 11px;
        gap: 5px;
    }

    .bd-tabs-nav .nav-link i {
        font-size: 12px;
    }
}