@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
    /* Color System */
    --primary: #FF6A00;
    --primary-hover: #E85D00;
    --dark: #1F2937;
    --bg-color: #F3F4F6;
    --hero-bg: #1E3A8A; /* Blue Hero */
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --text-color: #374151;
    --text-muted: #6B7280;
    --success: #10B981;
    --warning: #F59E0B;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Styling */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

/* Base Overrides */
body {
    font-family: var(--font-body) !important;
    color: var(--text-color) !important;
    background-color: var(--bg-color) !important;
}

h1, h2, h3, h4, h5, h6, .heading, .title {
    font-family: var(--font-heading) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
}

a {
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Global Utilities */
.text-primary { color: var(--primary) !important; }
.text-dark { color: var(--dark) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-white { background-color: var(--white) !important; }

/* Buttons */
.btn-modern {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    font-family: var(--font-heading) !important;
    transition: all var(--transition-fast) !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-modern:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

.btn-modern-outline {
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    font-family: var(--font-heading) !important;
    transition: all var(--transition-fast) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-modern-outline:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* Cards */
.card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Header Adjustments */
.header-modern {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1040;
    border-bottom: none;
    padding: 15px 0;
}

.header-modern .logo img {
    max-height: 40px;
    width: auto;
}

.header-search-modern .input-group {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 5px;
}

.header-search-modern input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 20px;
}

.header-search-modern button {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    border: none;
    padding: 10px 20px;
}

.header-actions-modern .nav-item {
    margin-left: 15px;
}

.header-actions-modern .nav-item a {
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-actions-modern .nav-item a:hover {
    color: var(--primary);
}

/* Footer Adjustments */
.footer-modern {
    padding-top: 40px;
}
.footer-modern h4 {
    color: var(--dark) !important;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-modern ul li {
    margin-bottom: 12px;
}
.footer-modern a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.footer-modern a:hover {
    color: var(--primary);
}
.footer-modern .footer-bottom {
    background: var(--dark);
    color: var(--text-muted);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-modern .footer-bottom a {
    color: var(--white);
}

.hover-primary:hover { color: var(--primary) !important; }
.hover-white:hover { color: #ffffff !important; }


/* Guest Header */
.header-guest {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
}

.header-guest .nav-item a, .header-guest .nav-item button {
    color: var(--dark) !important;
    font-weight: 600 !important;
}

.header-guest .btn-post-ad {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* User Header */
.header-user {
    background-color: var(--primary) !important;
    border-bottom: none !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 15px 0 !important;
}

.header-user .logo img {
    filter: brightness(0) invert(1);
}

.header-user .nav-item > a, .header-user .nav-item > button {
    color: var(--white) !important;
}

.header-user .nav-item i {
    color: var(--white) !important;
    font-size: 20px;
}

.header-user .dropdown-toggle i {
    font-size: 14px;
}

.header-user .dropdown-menu i {
    color: var(--dark) !important;
}

.header-user .btn-post-ad {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.header-user .btn-post-ad i {
    color: var(--primary) !important;
    font-size: 16px;
}

/* Common Header Styles */
.header-modern .dropdown-menu-lang {
    min-width: 150px;
}

/* Hero Banner Heights Removed for Natural Img Scaling */
@media (max-width: 767px) {
    .hero-inner {
        padding: 1.5rem !important;
    }
    .hero-inner h1 {
        font-size: 2rem !important;
    }
    .hero-inner p {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }
}

/* Category Grid Exact 5-Column Layout on Mobile */
@media (max-width: 767px) {
    .category-item-modern {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    .category-grid-modern {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }
    .category-card-modern {
        padding: 8px 4px !important;
    }
    .category-icon-wrapper {
        width: 52px !important;
        height: 52px !important;
        margin-bottom: 6px !important;
    }
    .category-icon-wrapper img, .category-icon-wrapper svg {
        width: 30px !important;
        height: 30px !important;
    }
    .category-title {
        font-size: 11px !important;
        margin-top: 0 !important;
        line-height: 1.2 !important;
    }
    .category-count {
        display: none !important;
    }
}

/* Premium Ad Details UI */
.premium-ad-details { background-color: #f7f9fa; padding-bottom: 40px; padding-top: 20px; }
.premium-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04) !important;
    border: 1px solid #f0f2f5 !important;
    background: #fff;
    overflow: hidden;
}
.premium-card-title { font-size: 1.15rem; color: #1a1a1a; margin-bottom: 20px; font-weight: 600; }
.premium-title { font-size: 1.6rem; color: #222; font-weight: 700; line-height: 1.3; }
.category-badge { font-size: 12px; padding: 6px 12px; border-radius: 20px; background-color: #e8f0fe !important; color: #1967d2 !important; font-weight: 600; display: inline-block; }
.negotiable-badge { font-size: 12px; padding: 6px 12px; border-radius: 20px; background-color: #fce8e6 !important; color: #d93025 !important; font-weight: 600; display: inline-block; }
.highlights-card .row-highlights { margin: 0; padding: 10px 0; display: flex; }
.highlights-item { flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: flex-start; border-right: 1px solid #f0f2f5; padding: 0 15px; }
.highlights-item:last-child { border-right: none; }
.highlight-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: #eef2ff; border-radius: 10px; margin-right: 12px; color: #5c6bc0; font-size: 20px; }
.highlight-text .hl-label { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; }
.highlight-text .hl-value { font-size: 14px; color: #111827; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.specifications-grid .spec-row { padding: 12px 16px; background-color: #f9fafb; border-radius: 8px; align-items: center; height: 100%; }
.spec-label { font-size: 14px; color: #6b7280; font-weight: 500; }
.spec-value { font-size: 14px; color: #111827; font-weight: 600; }
.btn-message { background-color: #ff5722 !important; border-color: #ff5722 !important; font-weight: 600; border-radius: 8px !important; height: 48px; }
.btn-message:hover { background-color: #e64a19 !important; border-color: #e64a19 !important; }
.btn-call { background-color: #00a859 !important; border-color: #00a859 !important; font-weight: 600; border-radius: 8px !important; height: 48px; }
.btn-call:hover { background-color: #009624 !important; border-color: #009624 !important; }
.secondary-actions .btn { font-size: 14px; border-radius: 8px !important; border: 1px solid #e5e7eb !important; background: #fff !important; color: #4b5563 !important; height: 42px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; box-shadow: none !important; }
.secondary-actions .btn:hover { background: #f9fafb !important; border-color: #d1d5db !important; }
.seller-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn-view-profile { border-radius: 8px !important; border: 1px solid #e5e7eb !important; color: #374151 !important; font-weight: 600; height: 44px; display: flex; align-items: center; justify-content: center; background: #fff; transition: all 0.2s; }
.btn-view-profile:hover { background-color: #f3f4f6 !important; color: #111827 !important; border-color: #d1d5db !important; }
.safety-tips-card ul li { font-size: 14px; color: #4b5563; display: flex; align-items: flex-start; }
.safety-tips-card ul li i { margin-top: 4px; font-size: 12px; }
.col-product-details-left { padding-right: 15px; }
.col-product-details-right { padding-left: 15px; }
@media (max-width: 991px) {
    .col-product-details-left { padding-right: 15px; }
    .col-product-details-right { padding-left: 15px; margin-top: 20px; }
    .highlights-item { border-right: none; margin-bottom: 15px; flex: 1 1 50%; justify-content: flex-start; padding: 0 10px; }
    .row-highlights { flex-wrap: wrap; }
}

/* PREMIUM AD DETAILS LAYOUT - V2 */
.premium-ad-details .premium-card { border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; background: #fff; }
.premium-ad-details .premium-title { color: #111827; }
.premium-ad-details .premium-price { color: #111827 !important; }
.premium-ad-details .negotiable-badge { font-size: 12px; padding: 6px 12px; background-color: #fce8e6 !important; color: #d93025 !important; }
.premium-ad-details .specifications-grid .spec-row { padding: 12px 16px; background-color: #f9fafb; border-radius: 8px; align-items: center; height: 100%; border: 1px solid #f3f4f6; }
.premium-ad-details .spec-label { font-size: 14px; color: #6b7280; font-weight: 500; }
.premium-ad-details .spec-value { font-size: 14px; color: #111827; font-weight: 600; text-align: right; }
.premium-ad-details .btn-message { background-color: #ff5722 !important; border-color: #ff5722 !important; font-weight: 600; border-radius: 8px !important; height: 48px; }
.premium-ad-details .btn-message:hover { background-color: #e64a19 !important; border-color: #e64a19 !important; }
.premium-ad-details .btn-call { background-color: #00a859 !important; border-color: #00a859 !important; font-weight: 600; border-radius: 8px !important; height: 48px; color: #fff !important; }
.premium-ad-details .btn-call:hover { background-color: #009624 !important; border-color: #009624 !important; color: #fff !important; }
.premium-ad-details .secondary-actions .btn { font-size: 14px; border-radius: 8px !important; border: 1px solid #e5e7eb !important; background: #fff !important; color: #4b5563 !important; height: 42px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; box-shadow: none !important; }
.premium-ad-details .secondary-actions .btn:hover { background: #f9fafb !important; border-color: #d1d5db !important; }
.premium-ad-details .seller-avatar { border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.premium-ad-details .btn-view-profile-large { border-radius: 8px !important; font-weight: 600; height: 44px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; background-color: #fff; border: 1px solid #ff5722; color: #ff5722; }
.premium-ad-details .btn-view-profile-large:hover { background-color: #ff5722 !important; color: #fff !important; }
.premium-ad-details .safety-tips-card ul li { font-size: 14px; color: #4b5563; }
.premium-ad-details .sponsored-card { background-color: #fffbeb; }
.premium-ad-details .description-content { line-height: 1.7; color: #4b5563; font-size: 15px; }

/* REVIEWS CARD UI FIXES */
.premium-ad-details .reviews-card .progress { height: 8px; border-radius: 4px; background-color: #f3f4f6; }
.premium-ad-details .reviews-card .progress-bar { background-color: #fbbf24; border-radius: 4px; }
.premium-ad-details .reviews-card .review-item { border-bottom: 1px solid #f3f4f6; padding-bottom: 20px; margin-bottom: 20px; }
.premium-ad-details .reviews-card .review-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.premium-ad-details .reviews-card .reviewer-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }


/* PREMIUM AD DETAILS LAYOUT - V2 */
.premium-ad-details .premium-card { border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; background: #fff; }
.premium-ad-details .premium-title { color: #111827; }
.premium-ad-details .premium-price { color: #111827 !important; }
.premium-ad-details .negotiable-badge { font-size: 12px; padding: 6px 12px; background-color: #fce8e6 !important; color: #d93025 !important; }
.premium-ad-details .specifications-grid .spec-row { padding: 12px 16px; background-color: #f9fafb; border-radius: 8px; align-items: center; height: 100%; border: 1px solid #f3f4f6; }
.premium-ad-details .spec-label { font-size: 14px; color: #6b7280; font-weight: 500; }
.premium-ad-details .spec-value { font-size: 14px; color: #111827; font-weight: 600; text-align: right; }
.premium-ad-details .btn-message { background-color: #ff5722 !important; border-color: #ff5722 !important; font-weight: 600; border-radius: 8px !important; height: 48px; }
.premium-ad-details .btn-message:hover { background-color: #e64a19 !important; border-color: #e64a19 !important; }
.premium-ad-details .btn-call { background-color: #00a859 !important; border-color: #00a859 !important; font-weight: 600; border-radius: 8px !important; height: 48px; color: #fff !important; }
.premium-ad-details .btn-call:hover { background-color: #009624 !important; border-color: #009624 !important; color: #fff !important; }
.premium-ad-details .secondary-actions .btn { font-size: 14px; border-radius: 8px !important; border: 1px solid #e5e7eb !important; background: #fff !important; color: #4b5563 !important; height: 42px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; box-shadow: none !important; }
.premium-ad-details .secondary-actions .btn:hover { background: #f9fafb !important; border-color: #d1d5db !important; }
.premium-ad-details .seller-avatar { border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.premium-ad-details .btn-view-profile-large { border-radius: 8px !important; font-weight: 600; height: 44px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; background-color: #fff; border: 1px solid #ff5722; color: #ff5722; }
.premium-ad-details .btn-view-profile-large:hover { background-color: #ff5722 !important; color: #fff !important; }
.premium-ad-details .safety-tips-card ul li { font-size: 14px; color: #4b5563; }
.premium-ad-details .sponsored-card { background-color: #fffbeb; }
.premium-ad-details .description-content { line-height: 1.7; color: #4b5563; font-size: 15px; }

/* REVIEWS CARD UI FIXES */
.premium-ad-details .reviews-card .progress { height: 8px; border-radius: 4px; background-color: #f3f4f6; }
.premium-ad-details .reviews-card .progress-bar { background-color: #fbbf24; border-radius: 4px; }
.premium-ad-details .reviews-card .review-item { border-bottom: 1px solid #f3f4f6; padding-bottom: 20px; margin-bottom: 20px; }
.premium-ad-details .reviews-card .review-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.premium-ad-details .reviews-card .reviewer-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* SPACING & RESPONSIVENESS */
@media (min-width: 992px) {
    .premium-ad-details .col-product-details-left { padding-right: 20px; }
    .premium-ad-details .col-product-details-right { padding-left: 20px; }
}
@media (max-width: 991px) {
    .premium-ad-details .col-product-details-right { margin-top: 20px; }
    .premium-ad-details .spec-row { flex-direction: column; align-items: flex-start; text-align: left; }
    .premium-ad-details .spec-label, .premium-ad-details .spec-value { width: 100% !important; text-align: left !important; }
    .premium-ad-details .spec-value { margin-top: 4px; }
}

/* --- RECONSTRUCTION STYLES --- */
:root {
    /* Ad Details Global Design System */
    --ad-card-radius: 12px;
    --ad-card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --ad-card-padding: 24px;
    --ad-card-border: 1px solid #f0f2f5;
    
    /* Spacing Scale */
    --ad-space-xs: 8px;
    --ad-space-sm: 12px;
    --ad-space-md: 16px;
    --ad-space-lg: 24px;
    --ad-space-xl: 32px;
    
    /* Typography Scale */
    --ad-font-title: 24px;
    --ad-font-subtitle: 18px;
    --ad-font-body: 14px;
    --ad-font-meta: 12px;
    
    /* Elements */
    --ad-btn-height: 48px;
    --ad-btn-radius: 8px;
    --ad-icon-sm: 14px;
    --ad-icon-md: 16px;
    --ad-icon-lg: 20px;
}

.premium-ad-details .premium-card {
    margin-bottom: var(--ad-space-lg);
    border-radius: var(--ad-card-radius);
    box-shadow: var(--ad-card-shadow);
    background: #fff;
    border: var(--ad-card-border);
    overflow: hidden;
}
.premium-ad-details .premium-card .card-body {
    padding: var(--ad-card-padding);
}

/* Sticky Sidebar */
.premium-ad-details .sidebar-sticky { top: 20px; z-index: 100; padding-bottom: 20px; }

/* Ad Info */
.premium-ad-details .category-badge { background: #e8f0fe; color: #1967d2; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.premium-ad-details .premium-title { font-size: 24px; line-height: 1.35; margin-bottom: 12px; font-weight: 700; color: #111827; }
.premium-ad-details .premium-price-container { display: flex; align-items: center; margin-bottom: 16px; margin-top: 16px; }
.premium-ad-details .premium-price { font-size: 28px; color: #ff5722; font-weight: 700; margin: 0; }
.premium-ad-details .negotiable-badge { background: #e8f0fe; color: #1967d2; padding: 5px 10px; font-size: 12px; font-weight: 600; border-radius: 20px; margin-left: 16px; display: inline-block; }
.premium-ad-details .premium-meta { color: #6b7280; font-size: 13px; display: flex; align-items: center; margin-bottom: 24px; margin-top: 16px; }
.premium-ad-details .premium-meta i { font-size: 16px; margin-right: 6px; }

.premium-ad-details .card-hr { margin: 0 0 24px 0; border-top: 1px solid #e5e7eb; }

/* Seller Info (Primary Sidebar Card) */
.premium-ad-details .premium-seller-info { display: flex; align-items: flex-start; margin-bottom: 20px; }
.premium-ad-details .seller-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.premium-ad-details .seller-name { font-size: 16px; font-weight: 700; color: #111827; display: flex; align-items: center; margin-bottom: 4px; }
.premium-ad-details .seller-name:hover { color: #ff5722; text-decoration: none; }
.premium-ad-details .verified-icon { color: #10b981; margin-left: 6px; font-size: 14px; }
.premium-ad-details .seller-member-since { font-size: 12px; color: #6b7280; margin-bottom: 4px; }
.premium-ad-details .seller-rating { display: flex; align-items: center; font-size: 12px; }
.premium-ad-details .rating-stars { color: #fbbf24; margin-right: 6px; font-size: 11px; }
.premium-ad-details .rating-score { font-weight: 700; color: #4b5563; }
.premium-ad-details .rating-count { color: #6b7280; margin-left: 4px; }

/* Actions */
.premium-ad-details .premium-actions { margin-bottom: 0; }
.premium-ad-details .btn-action-main { display: flex; align-items: center; justify-content: center; font-size: 15px; height: 44px; border-radius: 8px; font-weight: 600; width: 100%; margin-bottom: 12px; color: #fff; transition: all 0.2s; border: none; }
.premium-ad-details .btn-action-main i { font-size: 16px; margin-right: 8px; }
.premium-ad-details .btn-view-profile { background-color: #fff; color: #ff5722; border: 1px solid #ff5722; }
.premium-ad-details .btn-view-profile:hover { background-color: #fff5f2; color: #e64a19; text-decoration: none; }
.premium-ad-details .btn-message { background-color: #ff5722; }
.premium-ad-details .btn-message:hover { background-color: #e64a19; color: #fff; }
.premium-ad-details .btn-call { background-color: #00a859; }
.premium-ad-details .btn-call:hover { background-color: #009624; color: #fff; }

.premium-ad-details .secondary-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 16px; }
.premium-ad-details .btn-secondary-action { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #4b5563; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; height: 44px; transition: all 0.2s; cursor: pointer; }
.premium-ad-details .btn-secondary-action:hover { background: #f9fafb; border-color: #d1d5db; color: #111827; }
.premium-ad-details .btn-secondary-action i { font-size: 16px; margin-right: 8px; }

/* Safety Tips */
.premium-ad-details .safety-tips-card .card-title { font-size: 14px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; color: #111827; }
.premium-ad-details .safety-tips-card ul li { font-size: 13px; color: #4b5563; margin-bottom: 12px; display: flex; align-items: flex-start; }
.premium-ad-details .safety-tips-card ul li i { margin-top: 3px; font-size: 14px; color: #ff5722 !important; }
.premium-ad-details .safety-tips-link { color: #ff5722; font-weight: 600; font-size: 13px; margin-top: 8px; display: inline-block; transition: all 0.2s; }
.premium-ad-details .safety-tips-link:hover { color: #e64a19; text-decoration: none; }

/* Sponsored Ad */
.premium-ad-details .sponsored-card .card-title { font-size: 14px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; color: #111827; }
.premium-ad-details .sponsored-card .card-title i { color: #ff5722; margin-right: 8px; font-size: 16px; }
.premium-ad-details .sponsored-img-link { width: 90px; height: 90px; flex-shrink: 0; display: block; border-radius: 8px; overflow: hidden; }
.premium-ad-details .sponsored-img-link img { height: 100%; width: 100%; object-fit: cover; }
.premium-ad-details .sponsored-title { color: #111827; font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; line-height: 1.3; }
.premium-ad-details .sponsored-title:hover { color: #ff5722; text-decoration: none; }
.premium-ad-details .sponsored-price { color: #ff5722; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.premium-ad-details .sponsored-location { color: #6b7280; font-size: 12px; display: flex; align-items: center; }
.premium-ad-details .sponsored-location i { margin-right: 4px; }

/* Detailed Seller Card */
.premium-ad-details .detailed-seller-card .card-title { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: #111827; text-align: left; }
.premium-ad-details .seller-avatar-large { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; margin-right: 16px; background: #fff5f2; display: flex; align-items: center; justify-content: center; color: #ff5722; font-size: 24px; flex-shrink: 0; }
.premium-ad-details .seller-name-large { font-size: 16px; font-weight: 700; display: flex; align-items: center; margin-bottom: 4px; margin-top: 0; }
.premium-ad-details .seller-name-large a { color: #111827; }
.premium-ad-details .seller-name-large a:hover { color: #ff5722; text-decoration: none; }
.premium-ad-details .seller-member-since-large { font-size: 12px; color: #6b7280; margin-bottom: 4px; }
.premium-ad-details .seller-rating-large { display: flex; align-items: center; font-size: 12px; margin-bottom: 4px; }
.premium-ad-details .seller-rating-large .rating-stars { color: #fbbf24; margin-right: 6px; }
.premium-ad-details .seller-verified-badge { color: #10b981; font-size: 12px; font-weight: 600; display: flex; align-items: center; }
.premium-ad-details .seller-verified-badge i { margin-right: 4px; }
.premium-ad-details .btn-view-profile-large { border-radius: 8px; font-weight: 600; height: 44px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; background-color: #fff; border: 1px solid #e5e7eb; color: #ff5722; width: 100%; margin-top: 20px; }
.premium-ad-details .btn-view-profile-large:hover { background-color: #fff5f2; color: #e64a19; text-decoration: none; border-color: #ff5722; }

/* Left Column Cards */
.premium-ad-details .premium-card-title { font-size: 16px; font-weight: 700; display: flex; align-items: center; margin-bottom: 20px; color: #111827; margin-top: 0; }
.premium-ad-details .premium-card-title i { color: #ff5722; margin-right: 12px; font-size: 18px; }
.premium-ad-details .description-content { line-height: 1.6; color: #4b5563; font-size: 14px; }

/* Specifications */
.premium-ad-details .specifications-grid .spec-row { padding: 0; background-color: transparent; border-radius: 0; border: none; align-items: center; height: 100%; display: flex; border-bottom: 1px solid #f3f4f6; padding-bottom: 12px; }
.premium-ad-details .spec-label { font-size: 14px; color: #6b7280; font-weight: 500; width: 40%; }
.premium-ad-details .spec-value { font-size: 14px; color: #111827; font-weight: 600; width: 60%; text-align: left; }

/* Map */
.premium-ad-details .location-address { font-size: 14px; color: #4b5563; margin-bottom: 16px; }
.premium-ad-details .product-location-map iframe { width: 100%; height: 250px; border-radius: 12px; border: 1px solid #e5e7eb; }

/* Reviews */
.premium-ad-details .btn-write-review { border-radius: 8px; font-weight: 600; padding: 8px 16px; border: 1px solid #ff5722; color: #ff5722; background: #fff; transition: all 0.2s; display: flex; align-items: center; font-size: 13px; }
.premium-ad-details .btn-write-review i { margin-right: 6px; font-size: 14px; }
.premium-ad-details .btn-write-review:hover { background: #ff5722; color: #fff; }

/* Related & Recent */
.premium-ad-details .section-title { font-size: 18px; font-weight: 700; color: #111827; }
.premium-ad-details .view-all-link { color: #ff5722; font-weight: 600; font-size: 14px; transition: all 0.2s; display: flex; align-items: center; border: 1px solid #ff5722; padding: 6px 12px; border-radius: 20px; background: #fff; }
.premium-ad-details .view-all-link i { margin-left: 6px; }
.premium-ad-details .view-all-link:hover { background: #ff5722; color: #fff; text-decoration: none; }
