:root {
            --bg:#f5f7fb;
            --card:#ffffff;
            --text:#111827;
            --muted:#64748b;
            --line:#e2e8f0;
            --soft:#eef6ff;
            --accent:#2563eb;
            --accent-dark:#1d4ed8;
            --accent-soft:#dbeafe;
            --success:#16a34a;
            --warning:#f59e0b;
            --shadow:0 18px 45px rgba(15,23,42,.10);
            --radius:22px;
        }

.theme-blue {
            --bg:#f5f7fb;
            --card:#ffffff;
            --text:#111827;
            --muted:#64748b;
            --line:#e2e8f0;
            --soft:#eef6ff;
            --accent:#2563eb;
            --accent-dark:#1d4ed8;
            --accent-soft:#dbeafe;
            --topbar:#0f172a;
            --topnav:#cbd5e1;
            --hero-grad-1:var(--hero-grad-1);
            --hero-grad-2:#f8fbff;
        }

        .theme-dark {
            --bg:#101827;
            --card:#172033;
            --text:#f8fafc;
            --muted:#cbd5e1;
            --line:#26364f;
            --soft:#1e293b;
            --accent:#38bdf8;
            --accent-dark:#7dd3fc;
            --accent-soft:#123247;
            --topbar:#050816;
            --topnav:#dbeafe;
            --hero-grad-1:rgba(56,189,248,.18);
            --hero-grad-2:#172033;
            --shadow:0 18px 45px rgba(0,0,0,.28);
        }

        .theme-green {
            --bg:#f2fbf6;
            --card:#ffffff;
            --text:#102017;
            --muted:#52645a;
            --line:#d8eadf;
            --soft:#e8f8ee;
            --accent:#16a34a;
            --accent-dark:#15803d;
            --accent-soft:#dcfce7;
            --topbar:#052e16;
            --topnav:#bbf7d0;
            --hero-grad-1:rgba(22,163,74,.14);
            --hero-grad-2:#f7fff9;
        }

        .theme-warm {
            --bg:#fff8ed;
            --card:#ffffff;
            --text:#23180d;
            --muted:#7c6a55;
            --line:#f1dfc4;
            --soft:#fff2d8;
            --accent:#d97706;
            --accent-dark:#b45309;
            --accent-soft:#fef3c7;
            --topbar:#3b2206;
            --topnav:#fde68a;
            --hero-grad-1:rgba(217,119,6,.16);
            --hero-grad-2:#fffaf0;
        }

        .theme-purple {
            --bg:#f8f5ff;
            --card:#ffffff;
            --text:#1f1633;
            --muted:#6d5f83;
            --line:#e7def8;
            --soft:#f1eaff;
            --accent:#7c3aed;
            --accent-dark:#6d28d9;
            --accent-soft:#ede9fe;
            --topbar:#24103f;
            --topnav:#ddd6fe;
            --hero-grad-1:rgba(124,58,237,.15);
            --hero-grad-2:#fbf8ff;
        }

        * {
            box-sizing:border-box;
        }

        body {
            margin:0;
            font-family:Arial, Helvetica, sans-serif;
            background:var(--bg);
            color:var(--text);
            line-height:1.55;
        }

        a {
            color:inherit;
            text-decoration:none;
        }

        .wrap {
            width:min(1120px, calc(100% - 28px));
            margin:0 auto;
        }

        .topbar {
            background:var(--topbar);
            color:#fff;
            padding:12px 0;
        }

        .topbar-inner {
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:16px;
        }

        .brand {
            font-weight:800;
            letter-spacing:-.02em;
            font-size:18px;
        }

        .topnav {
            display:flex;
            gap:16px;
            font-size:14px;
            color:var(--topnav);
        }

        .hero {
            padding:34px 0 24px;
        }

        .hero-grid {
            display:grid;
            grid-template-columns:minmax(0, 1.25fr) minmax(300px, .75fr);
            gap:22px;
            align-items:stretch;
        }

        .hero-card,
        .side-card,
        .section-card,
        .rank-card {
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            box-shadow:var(--shadow);
        }

        .hero-card {
            padding:28px;
            background:
                radial-gradient(circle at 15% 15%, var(--hero-grad-1), transparent 32%),
                linear-gradient(135deg, var(--card) 0%, var(--hero-grad-2) 100%);
        }

        .kicker {
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:6px 11px;
            border-radius:999px;
            background:var(--accent-soft);
            color:var(--accent-dark);
            font-size:13px;
            font-weight:700;
            margin-bottom:14px;
        }

        h1 {
            margin:0;
            font-size:clamp(32px, 5vw, 56px);
            line-height:1.02;
            letter-spacing:-.045em;
        }

        .hero-subtitle {
            margin:18px 0 0;
            font-size:18px;
            color:var(--muted);
            max-width:760px;
        }

        .hero-actions {
            display:flex;
            gap:12px;
            flex-wrap:wrap;
            margin-top:24px;
        }

        .btn {
            display:inline-flex;
            justify-content:center;
            align-items:center;
            min-height:46px;
            padding:12px 18px;
            border-radius:999px;
            font-weight:800;
            border:1px solid transparent;
            cursor:pointer;
        }

        .btn-primary {
            background:var(--accent);
            color:#fff;
            box-shadow:0 12px 28px rgba(37,99,235,.24);
        }

        .btn-primary:hover {
            background:var(--accent-dark);
        }

        .btn-secondary {
            background:var(--card);
            border-color:var(--line);
            color:var(--text);
        }

        .trust-row {
            display:grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap:10px;
            margin-top:24px;
        }

        .trust-item {
            border:1px solid var(--line);
            background:var(--card);
            border-radius:16px;
            padding:12px;
            font-size:13px;
            color:var(--muted);
        }

        .trust-item strong {
            display:block;
            color:var(--text);
            font-size:14px;
            margin-bottom:3px;
        }

        .side-card {
            padding:22px;
        }

        .side-title {
            margin:0 0 12px;
            font-size:20px;
            letter-spacing:-.02em;
        }

        .quick-list {
            display:grid;
            gap:10px;
            margin-top:14px;
        }

        .quick-item {
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
            padding:12px;
            border:1px solid var(--line);
            border-radius:16px;
            background:var(--soft);
            font-size:14px;
            color:var(--muted);
        }

        .quick-rank {
            width:30px;
            height:30px;
            border-radius:50%;
            background:var(--topbar);
            color:#fff;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            font-weight:800;
            flex:0 0 auto;
        }

        .ad-slot {
            min-height:90px;
            border:1px dashed var(--line);
            border-radius:18px;
            background:var(--soft);
            margin:18px auto;
            display:flex;
            align-items:center;
            justify-content:center;
            color:var(--muted);
            font-size:13px;
            text-align:center;
        }

        .ad-slot:empty {
            display:none;
        }

        .section {
            padding:22px 0;
        }

        .section-head {
            display:flex;
            align-items:flex-end;
            justify-content:space-between;
            gap:18px;
            margin-bottom:16px;
        }

        .section-head h2 {
            margin:0;
            font-size:clamp(26px, 3vw, 38px);
            letter-spacing:-.035em;
        }

        .section-head p {
            margin:8px 0 0;
            color:var(--muted);
            max-width:720px;
        }

        .rank-list {
            display:grid;
            gap:14px;
        }

        .rank-card {
            padding:16px;
            display:grid;
            grid-template-columns:58px minmax(0, 1fr) auto;
            gap:16px;
            align-items:center;
            position:relative;
            overflow:hidden;
        }

        .rank-card:first-child {
            border-color:#bfdbfe;
            background:linear-gradient(135deg, var(--card) 0%, var(--soft) 100%);
        }

        .rank-card:first-child::before {
            content:"TOP IZBOR";
            position:absolute;
            top:0;
            right:0;
            background:#16a34a;
            color:#fff;
            padding:6px 12px;
            border-bottom-left-radius:14px;
            font-size:12px;
            font-weight:900;
            letter-spacing:.04em;
        }

        .rank-card.is-sponsored {
            border-color:#fbbf24;
            background:linear-gradient(135deg, var(--card) 0%, var(--soft) 100%);
        }

        .rank-card.is-sponsored .rank-num {
            background:#92400e;
        }

        .rating-line {
            margin-top:7px;
            color:#f59e0b;
            font-size:14px;
            font-weight:900;
            letter-spacing:1px;
        }

        .review-link {
            display:inline-flex;
            margin-top:8px;
            font-size:14px;
            font-weight:800;
            color:var(--accent-dark);
        }

        .review-link:hover {
            text-decoration:underline;
        }

        .rank-num {
            width:46px;
            height:46px;
            border-radius:16px;
            background:var(--topbar);
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:900;
            font-size:18px;
        }

        .rank-main {
            min-width:0;
        }

        .rank-title {
            display:flex;
            align-items:center;
            gap:10px;
            flex-wrap:wrap;
            margin:0 0 5px;
            font-size:20px;
            letter-spacing:-.02em;
        }

        .rank-title img {
            width:28px;
            height:28px;
            border-radius:7px;
            object-fit:cover;
            border:1px solid var(--line);
            background:var(--card);
        }

        .rank-desc {
            margin:0;
            color:var(--muted);
            font-size:15px;
        }

        .badges {
            display:flex;
            gap:6px;
            flex-wrap:wrap;
            margin-top:9px;
        }

        .badge {
            display:inline-flex;
            align-items:center;
            border-radius:999px;
            padding:4px 8px;
            background:var(--soft);
            color:var(--muted);
            font-size:12px;
            font-weight:700;
        }

        .badge:first-child {
            background:var(--accent-soft);
            color:var(--accent-dark);
        }

        .rank-action {
            display:flex;
            flex-direction:column;
            gap:8px;
            align-items:flex-end;
        }

        .small-note {
            color:var(--muted);
            font-size:12px;
        }

        .empty-state {
            padding:24px;
            background:var(--card);
            border:1px dashed var(--line);
            border-radius:var(--radius);
            color:var(--muted);
        }

        .cards-grid {
            display:grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap:14px;
        }

        .section-card {
            padding:20px;
        }

        .section-card h3 {
            margin:0 0 8px;
            font-size:20px;
            letter-spacing:-.02em;
        }

        .section-card p {
            margin:0;
            color:var(--muted);
        }

        .seo-box {
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            padding:26px;
            box-shadow:var(--shadow);
        }

        .seo-box h2 {
            margin:0 0 12px;
            font-size:30px;
            letter-spacing:-.03em;
        }

        .seo-box p {
            color:var(--muted);
            margin:0 0 13px;
        }

        .mobile-sticky {
            display:none;
            position:fixed;
            left:0;
            right:0;
            bottom:0;
            z-index:50;
            background:rgba(255,255,255,.96);
            border-top:1px solid var(--line);
            padding:10px 14px;
            box-shadow:0 -10px 30px rgba(15,23,42,.12);
        }

        .mobile-sticky .btn {
            width:100%;
        }

        footer {
            margin-top:30px;
            padding:26px 0 84px;
            color:var(--muted);
            font-size:14px;
            text-align:center;
        }

        @media (max-width: 820px) {
            .topnav {
                display:none;
            }

            .hero {
                padding-top:22px;
            }

            .hero-grid {
                grid-template-columns:1fr;
            }

            .hero-card {
                padding:22px;
            }

            .trust-row,
            .cards-grid {
                grid-template-columns:1fr;
            }

            .rank-card {
                grid-template-columns:44px minmax(0, 1fr);
            }

            .rank-num {
                width:40px;
                height:40px;
                border-radius:14px;
            }

            .rank-action {
                grid-column:1 / -1;
                align-items:stretch;
            }

            .rank-action .btn {
                width:100%;
            }

            .section-head {
                display:block;
            }

            .mobile-sticky {
                display:block;
            }
        }

.breadcrumb-wrap {
    border-bottom:1px solid rgba(15,23,42,.08);
    background:rgba(255,255,255,.72);
}

.breadcrumb {
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 0;
    font-size:13px;
    color:#64748b;
}

.breadcrumb a {
    color:inherit;
    text-decoration:none;
    font-weight:700;
}

.breadcrumb a:hover {
    color:var(--accent);
}

.breadcrumb span {
    display:inline-flex;
    align-items:center;
}


/* Polished breadcrumb */
.breadcrumb-wrap {
    border-bottom:0;
    background:transparent;
}

.breadcrumb {
    padding:22px 0 0;
    font-family:inherit;
    font-size:15px;
    line-height:1.4;
    font-weight:600;
    color:var(--text);
}

.breadcrumb a {
    color:var(--text);
    text-decoration:none;
    font-weight:800;
}

.breadcrumb a:hover {
    color:var(--accent);
}

.breadcrumb span {
    color:#64748b;
}

.breadcrumb span:last-child {
    color:var(--text);
    font-weight:800;
}


/* Strong breadcrumb override */
body .breadcrumb-wrap {
    border-bottom:0 !important;
    background:transparent !important;
}

body .breadcrumb-wrap .breadcrumb {
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    padding:18px 0 18px !important;
    font-family:inherit !important;
    font-size:15px !important;
    line-height:1.4 !important;
    font-weight:700 !important;
    color:var(--muted) !important;
}

body .breadcrumb-wrap .breadcrumb a {
    color:var(--text) !important;
    text-decoration:none !important;
    font-weight:900 !important;
}

body .breadcrumb-wrap .breadcrumb a:hover {
    color:var(--accent) !important;
}

body .breadcrumb-wrap .breadcrumb span {
    display:inline-flex !important;
    align-items:center !important;
    color:var(--muted) !important;
}

body .breadcrumb-wrap .breadcrumb span:last-child {
    color:var(--text) !important;
    font-weight:900 !important;
}


.section-actions {
    display:flex;
    justify-content:center;
    margin-top:22px;
}

.section-actions .btn {
    min-width:220px;
}


.review-city-pills {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    margin:22px auto 0;
}

.review-city-pills a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    border-radius:999px;
    border:1px solid var(--border);
    background:#fff;
    color:var(--text);
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    box-shadow:0 8px 20px rgba(15,23,42,.06);
}

.review-city-pills a:hover,
.review-city-pills a.is-active {
    border-color:var(--accent);
    background:var(--accent);
    color:#fff;
}


.featured-city-head {
    margin-top:42px;
}


/* Responsive YouTube embed in review/guide content */
.preporuke-video-box {
    margin: 30px 0;
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.preporuke-video-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.preporuke-video-box h2 {
    margin: 0 0 8px;
    font-size: clamp(20px, 3vw, 28px);
}

.preporuke-video-box p {
    margin: 0 0 14px;
    color: #475569;
}

.preporuke-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #020617;
}

.preporuke-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 640px) {
    .preporuke-video-box {
        margin: 22px 0;
        padding: 12px;
        border-radius: 15px;
    }

    .preporuke-video-frame {
        border-radius: 12px;
    }
}


/* Core ad block */
.core-ad-block {
    margin: 28px 0;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.92));
    box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.core-ad-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.core-ad-head h2 {
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 1.2;
}

.core-ad-head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.core-ad-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.core-ad-card {
    display: flex;
    flex-direction: column;
    min-height: 180px;
    padding: 18px;
    border: 1px dashed rgba(15, 23, 42, .18);
    border-radius: 20px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.core-ad-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, .28);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.core-ad-label {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.core-ad-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.core-ad-card p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.core-ad-cta {
    margin-top: auto;
    font-weight: 800;
    color: var(--accent, #2563eb);
}

.core-ad-media {
    margin: -6px -6px 12px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
}

.core-ad-media img {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: cover;
}

@media (max-width: 800px) {
    .core-ad-block {
        padding: 16px;
        border-radius: 20px;
    }

    .core-ad-grid {
        grid-template-columns: 1fr;
    }
}

/* Core ad block clean layout */
.core-ad-block {
    margin: 28px 0 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.core-ad-card {
    border-style: solid;
}

/* Center AdSense inside core ad cards */
.core-ad-card-html {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.core-ad-card-html .adsbygoogle {
    margin-left: auto;
    margin-right: auto;
}

/* Content inline ad */
.seo-box .core-ad-block-content_inline {
    margin: 22px 0;
}

.seo-box .core-ad-block-content_inline .core-ad-grid {
    grid-template-columns: minmax(0, 1fr);
}

.seo-box .core-ad-block-content_inline .core-ad-card-html {
    min-height: 280px;
    padding: 14px;
    background: #fff;
}

.seo-box .core-ad-block-content_inline .adsbygoogle {
    display: block !important;
    min-height: 250px;
}

/* Core ad order link */
.core-ad-order-link {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
}

.core-ad-order-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .05);
    color: #475569;
    text-decoration: none;
    font-weight: 700;
}

.core-ad-order-link a:hover {
    background: rgba(15, 23, 42, .09);
    color: #0f172a;
}

/* Mobile ad simplification */
@media (max-width: 800px) {
    .core-ad-grid .core-ad-card:nth-child(n+2) {
        display: none;
    }

    .core-ad-card-html {
        min-height: 250px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
    }

    .core-ad-card-html .adsbygoogle {
        display: block !important;
        width: 300px !important;
        max-width: 100% !important;
        min-height: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .seo-box .core-ad-block-content_inline,
    .seo-box .core-ad-block-main_3box {
        margin: 20px 0;
    }
}

/* Global order/advertising checkout */
.order-checkout {
    display:grid;
    grid-template-columns:minmax(260px, 360px) 1fr;
    gap:18px;
    align-items:start;
}
.order-summary-card {
    border:1px solid var(--border);
    border-radius:24px;
    padding:16px;
    background:linear-gradient(135deg, #fff 0%, var(--soft) 100%);
    box-shadow:0 14px 28px rgba(0,0,0,.08);
}
.order-profile-box {
    display:grid;
    grid-template-columns:92px 1fr;
    gap:14px;
    align-items:center;
    margin-bottom:14px;
}
.order-profile-avatar {
    width:92px;
    height:92px;
    border-radius:20px;
    overflow:hidden;
    background:var(--soft);
    border:1px solid var(--border);
    box-shadow:0 10px 22px rgba(0,0,0,.12);
}
.order-profile-avatar img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.order-profile-avatar-fallback {
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:34px;
    color:var(--accent);
}
.order-kicker {
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:var(--accent);
    margin-bottom:4px;
}
.order-summary-title {
    margin:0;
    font-size:24px;
    line-height:1.15;
    letter-spacing:-.02em;
    color:#111827;
}
.order-summary-text {
    margin:10px 0 0;
    color:#4b5563;
    line-height:1.65;
    font-size:15px;
}
.order-price-box {
    margin-top:14px;
    padding:14px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
}
.order-price {
    font-size:30px;
    line-height:1;
    font-weight:900;
    color:#111827;
}
.order-meta {
    display:grid;
    gap:8px;
    margin-top:12px;
    color:#4b5563;
    font-size:14px;
    line-height:1.45;
}
.order-meta-item {
    display:flex;
    gap:8px;
    align-items:flex-start;
}
.order-meta-item strong {
    color:#111827;
}
.order-form-card {
    border:1px solid var(--border);
    border-radius:24px;
    padding:18px;
    background:#fff;
    box-shadow:0 14px 28px rgba(0,0,0,.07);
}
.order-form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.order-field {
    display:grid;
    gap:6px;
}
.order-field.order-field-full {
    grid-column:1 / -1;
}
.order-field label {
    font-weight:900;
    color:#111827;
    font-size:14px;
}
.order-field input,
.order-field textarea {
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px 13px;
    font:inherit;
    color:#111827;
    background:#fff;
    outline:none;
}
.order-field input:focus,
.order-field textarea:focus {
    border-color:var(--accent);
    box-shadow:0 0 0 3px rgba(0,0,0,.06);
}
.order-form-note {
    margin:14px 0 0;
    padding:12px 14px;
    border-radius:16px;
    background:var(--soft);
    color:#4b5563;
    font-size:14px;
    line-height:1.55;
}
.order-submit-row {
    margin-top:14px;
    display:flex;
    justify-content:flex-end;
}
.order-submit-row .btn {
    border:0;
    cursor:pointer;
    font:inherit;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:13px 22px;
    border-radius:999px;
    background:var(--accent);
    color:#fff;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 12px 24px rgba(0,0,0,.14);
}
.order-submit-row .btn:hover {
    filter:brightness(.96);
}

@media (max-width:640px) {
    .order-checkout {
        grid-template-columns:1fr;
        gap:16px;
    }
    .order-summary-card,
    .order-form-card {
        width:100%;
        max-width:100%;
    }
    .order-profile-box {
        grid-template-columns:72px 1fr;
        gap:12px;
    }
    .order-profile-avatar {
        width:72px;
        height:72px;
        border-radius:16px;
    }
    .order-form-grid {
        grid-template-columns:1fr;
    }
    .order-price {
        font-size:26px;
    }
}

/* Advertising order form polish */
.order-form-card h2 {
    margin:0 0 8px;
    font-size:26px;
    letter-spacing:-.02em;
    color:#111827;
}

.order-form-card .order-summary-text {
    margin-bottom:18px;
}

.order-field label {
    display:block;
    margin-bottom:7px;
}

.order-field input,
.order-field select,
.order-field textarea {
    display:block;
    width:100%;
    min-height:48px;
    border:1px solid rgba(124,58,237,.22);
    border-radius:14px;
    padding:12px 14px;
    background:#fff;
    color:#111827;
    font:inherit;
    box-shadow:0 6px 16px rgba(17,24,39,.045);
}

.order-field textarea {
    min-height:150px;
    resize:vertical;
}

.order-field input[type="file"] {
    padding:10px 12px;
    background:#faf7ff;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(124,58,237,.12);
    outline:none;
}

.order-field input::placeholder,
.order-field textarea::placeholder {
    color:#9ca3af;
}

.order-field input[type="checkbox"] {
    width:auto;
    min-height:auto;
    box-shadow:none;
    display:inline-block;
    margin-right:8px;
    transform:translateY(1px);
}

.order-field label:has(input[type="checkbox"]) {
    display:flex;
    align-items:flex-start;
    gap:8px;
    line-height:1.5;
    padding:12px 14px;
    border:1px solid rgba(124,58,237,.18);
    border-radius:14px;
    background:#faf7ff;
}

.order-form-note strong {
    color:#111827;
}

.order-submit-row {
    justify-content:flex-start;
}

.order-submit-row .btn {
    min-width:190px;
}

@media (max-width:640px) {
    .order-form-card h2 {
        font-size:23px;
    }

    .order-field input,
    .order-field select,
    .order-field textarea {
        min-height:46px;
    }
}

/* Advertising traffic estimate */
.ad-traffic-estimate {
    display:inline-flex;
    flex-direction:column;
    gap:3px;
    margin-top:12px;
    padding:10px 13px;
    border-radius:16px;
    font-size:14px;
    line-height:1.35;
    border:1px solid rgba(15,23,42,.10);
}

.ad-traffic-estimate strong {
    font-weight:900;
}

.ad-traffic-estimate span {
    font-size:13px;
    color:#64748b;
}

.ad-traffic-estimate.real {
    background:#ecfdf5;
    border-color:#bbf7d0;
    color:#065f46;
}

.ad-traffic-estimate.projected {
    background:#fff7ed;
    border-color:#fed7aa;
    color:#9a3412;
}

.ad-traffic-estimate.real span {
    color:#047857;
}

.ad-traffic-estimate.projected span {
    color:#c2410c;
}

/* AdSense empty fallback */
.core-ad-card-html {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.core-ad-card-html .core-ad-fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.core-ad-card-html.core-ad-adsense-empty .adsbygoogle {
    display: none !important;
}

.core-ad-card-html.core-ad-adsense-empty .core-ad-fallback {
    display: flex;
}

/* AdSense fallback visual fix */
.core-ad-card-html {
    width: 100%;
    min-height: 250px;
    padding: 0;
    position: relative;
    align-items: center;
    justify-content: center;
}

.core-ad-card-html > ins.adsbygoogle {
    position: relative;
    z-index: 1;
}

.core-ad-card-html .core-ad-fallback {
    display: none !important;
}

.core-ad-card-html.core-ad-adsense-empty .core-ad-fallback {
    display: flex !important;
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 18px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #fff;
}

.core-ad-card-empty {
    min-height: 250px;
    padding: 0;
}

.core-ad-card-empty .core-ad-fallback {
    min-height: 250px;
    width: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

/* AdSense fallback: show by default, hide only when AdSense is filled */
.core-ad-card-html .core-ad-fallback {
    display: flex !important;
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 18px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #fff;
}

.core-ad-card-html.core-ad-adsense-filled .core-ad-fallback {
    display: none !important;
}
