﻿/* Root Variables - Light Modern Theme */
:root {
    /* Luminous OS Palette */
    --primary: #4285f4;
    --primary-glow: rgba(66, 133, 244, 0.4);
    --secondary: #34a853;
    --accent: #fbbc05;
    --danger: #ea4335;
    --bg-main: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(255, 255, 255, 0.4);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --border-color: rgba(226, 232, 240, 0.8);
    --accent-blue: #4285f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
}

.inemlak-plugin-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.inemlak-header {
    text-align: center;
    margin-bottom: 3rem;
}

.inemlak-header span.tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    background: #eff6ff;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1rem;
    display: inline-block;
}

.inemlak-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.inemlak-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    opacity: 0.9;
}

/* Search & Filter Bar */
.filter-section {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.search-wrap-full {
    width: 100%;
    margin-bottom: 24px;
}

.search-container {
    background: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: none;
    width: 100%;
    min-height: 52px;
}

.search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.08);
}

.search-container i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.search-container input {
    background: transparent;
    border: none !important;
    outline: none !important;
    flex: 1;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0;
    height: 100%;
}

.search-container input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.filter-controls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 50px;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.filter-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234285f4'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    min-height: 48px;
}

.filter-group select:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-filter select {
    background-color: #f0f7ff;
    border-color: var(--primary);
    color: var(--primary) !important;
}

.filter-actions {
    grid-column: auto;
    margin-top: 0;
}

.btn-clear {
    height: 52px;
    width: 100%;
    border-radius: 12px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 1.3rem;
}

.btn-clear:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-1px);
}

/* ─── Grid: Tek Sütun Liste ──────────────────────────────────────────────── */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ─── Card: Yatay Sahibinden Stili ──────────────────────────────────────── */
.property-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.property-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    border-color: #d1d5db;
}

/* Row: Photo + Body */
.card-main-row {
    display: flex;
    min-height: 180px;
}

/* LEFT: Photo Column */
.card-photo-col {
    width: 260px;
    min-width: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f3f4f6;
    align-self: stretch;
}

.card-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.property-card:hover .card-photo-col img {
    transform: scale(1.04);
}

/* Status badge on photo */
.badge-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
}

.badge-sale {
    background: #ef4444;
    color: #fff;
}

.badge-rent {
    background: #3b82f6;
    color: #fff;
}

/* Camera count badge */
.img-count-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.52);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* RIGHT: Body Column */
.card-body-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 18px 0 18px;
    min-width: 0;
}

/* Top row: Price + Date */
.card-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
}

.card-price-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.price-clock {
    font-size: 0.9rem;
    color: #ef4444;
    opacity: 0.85;
}

.card-date {
    font-size: 0.78rem;
    color: #6b7280;
    white-space: nowrap;
    margin-top: 4px;
}

/* Title */
.card-title {
    font-size: 0.98rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.45;
    margin-bottom: 8px;
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.card-title:hover {
    color: #3b82f6;
}

/* Spec Bar */
.card-spec-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 6px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.spec-pill {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.spec-pill i {
    color: #6b7280;
    font-size: 0.75rem;
}

.spec-divider {
    color: #d1d5db;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1;
}

/* Location */
.card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.card-location i {
    color: #9ca3af;
    font-size: 0.78rem;
}

/* Agent Box */
.card-agent-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 8px 0;
    justify-content: flex-end;
}

.agent-logo-wrap {
    width: 52px;
    height: 38px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-logo-placeholder {
    width: 100%;
    height: 100%;
    background: #1a3a6b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.agent-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.agent-brand {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.agent-person {
    font-size: 0.68rem;
    color: #6b7280;
}

/* Action Row */
.card-action-row {
    display: flex;
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 6px;
    font-size: 0.78rem;
    font-weight: 700;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: #374151;
    font-family: inherit;
    transition: background 0.18s ease;
    border-right: 1px solid #e5e7eb;
}

.btn-action:last-child {
    border-right: none;
}

.btn-action i {
    font-size: 0.9rem;
}

.btn-phone {
    background: #ef4444;
    color: #fff;
}

.btn-phone:hover {
    background: #dc2626;
}

.btn-detail {
    background: transparent;
    color: #374151;
}

.btn-detail:hover {
    background: #f3f4f6;
}

.btn-wa {
    background: transparent;
    color: #374151;
}

.btn-wa:hover {
    background: #f0fdf4;
    color: #16a34a;
}

.btn-share {
    background: transparent;
    color: #374151;
}

.btn-share:hover {
    background: #f3f4f6;
}

@media (max-width: 1024px) {
    .filter-controls-grid {
        grid-template-columns: repeat(2, 1fr) 50px;
    }

    .filter-actions {
        grid-column: 3;
        grid-row: 1 / span 2;
        display: flex;
        align-items: flex-end;
    }
}

@media (max-width: 768px) {
    .inemlak-header h1 {
        font-size: 1.75rem;
    }

    .filter-controls-grid {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        grid-column: span 2;
        margin-top: 10px;
    }

    .btn-clear {
        width: 100%;
        transform: none !important;
        grid-row: auto;
    }

    .card-photo-col {
        width: 140px;
        min-width: 120px;
    }

    .card-body-col {
        padding: 10px 12px 0 12px;
    }

    .card-price-main {
        font-size: 1.1rem;
    }

    .card-spec-bar {
        gap: 4px;
    }

    .property-card {
        flex-direction: column;
    }

    .card-photo-col {
        width: 100%;
        min-width: unset;
        height: 200px;
    }

    .card-photo-col img {
        min-height: unset;
        height: 200px;
    }

    .modal-box {
        display: flex !important;
        flex-direction: column !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        margin: 0 !important;
        background: #fff;
        overflow: hidden !important;
    }

    .modal-body {
        display: block !important;
        flex: 1 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        background: #fff;
        padding-bottom: 80px;
        /* Extra space at the end */
    }

    .modal-gallery {
        width: 100%;
        height: auto;
        min-height: 300px;
        flex: none;
        background: #000;
    }

    .modal-sidebar {
        width: 100% !important;
        padding-bottom: 40px;
        overflow-y: visible;
        flex: none;
        background: #fff;
    }

    .btn-action span {
        display: none;
    }
}

@media (max-width: 480px) {
    .card-photo-col {
        width: 110px;
        min-width: 100px;
    }

    .card-action-row {
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════
   MODAL / LIGHTBOX
═══════════════════════════════════════ */
#inemlak-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    /* More contrast */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.modal-box {
    position: relative;
    width: 95%;
    max-width: 1100px;
    height: 90vh;
    background: var(--card-bg);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Header Bar */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.5rem;
    background: #12122a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.modal-logo i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Modal Body */
.modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    background: #fff;
}

/* LEFT: Gallery */
.modal-gallery {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 400px;
}

.modal-gallery>img {
    width: 100%;
    height: calc(100% - 80px);
    object-fit: contain;
    display: block;
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: calc(50% - 40px);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.arrow-left {
    left: 1rem;
}

.arrow-right {
    right: 1rem;
}

.gallery-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* Thumbnails */
.gallery-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    gap: 4px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.6);
    overflow-x: auto;
}

.gallery-thumbs .thumb {
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s, outline 0.1s;
    flex-shrink: 0;
}

.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
    opacity: 1;
    outline: 2px solid #4CAF50;
}

/* RIGHT: Sidebar */
.modal-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Custom Premium Scrollbar for Modal */
.modal-body::-webkit-scrollbar,
.modal-sidebar::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track,
.modal-sidebar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-body::-webkit-scrollbar-thumb,
.modal-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover,
.modal-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.modal-agent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.agent-avatar {
    width: 48px;
    height: 48px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.agent-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
}

.agent-company {
    font-size: 0.75rem;
    color: #64748b;
}

.modal-prop-summary {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-prop-summary h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.modal-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 0.5rem;
}

.modal-specs-row {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.modal-specs-row i {
    color: #003366;
}

/* ─── Action Box & Grid ─── */
.modal-action-box {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.action-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.action-select {
    width: 100%;
    margin-bottom: 0.5rem;
    height: 48px;
    border-radius: 12px;
    padding: 0 16px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.2s;
}

.action-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 10px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
}

.action-btn i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.action-btn span {
    font-size: 0.8rem;
    font-weight: 700;
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.btn-call {
    background: #f1f5f9;
    color: var(--text-main);
}

.action-btn.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-calendar {
    background: #eef2ff;
    color: #4f46e5;
}

.btn-visit {
    background: #fff7ed;
    color: #ea580c;
}

/* Hover States with specialized shadows */
.btn-call:hover {
    background: #e2e8f0;
}

.action-btn.btn-whatsapp:hover {
    background: #128c7e;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-calendar:hover {
    background: #e0e7ff;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-visit:hover {
    background: #ffedd5;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
}

@media (max-width: 480px) {
    .action-grid {
        grid-template-columns: 1fr;
    }

}

/* Technical Specs Grid */
.technical-specs {
    margin-top: 20px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
}

.technical-specs h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
    margin-top: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.spec-item label {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item label i {
    width: 16px;
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.7;
}

.spec-item span {
    color: var(--text-main);
    font-weight: 700;
}

.spec-item.highlight span {
    color: var(--primary);
}

.modal-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ad-no-badge {
    font-size: 0.75rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
}

.ad-date-mini {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-video-watch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-video-watch:hover {
    background: #ea4335;
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        column-gap: 20px;
    }
}