/* ================================================================
   Địa Điểm Pro — Local Guide CSS
   Card + Archive + Single + Breadcrumb
   ================================================================ */

/* ── Reset & Base ── */
.ddpg-card *, .ddpg-archive-page *, .ddpg-single-wrap * { box-sizing: border-box; }
.ddpg-archive-page, .ddpg-single-wrap {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
}

/* ════════════════════════════════════════════════════════════
   GUIDE CARD
   ════════════════════════════════════════════════════════════ */
.ddpg-card {
    background: #fff;
    border-radius: 14px;
    border: 2px solid #f1f5f9;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    height: 100%;
}
.ddpg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,.11);
    border-color: #dbeafe;
}
.ddpg-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Strip */
.ddpg-card-strip {
    height: 8px;
    background: var(--accent, #2563eb);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
    min-height: 28px;
}
.ddpg-badge-verified {
    font-size: 10px;
    font-weight: 700;
    background: #16a34a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}
.ddpg-badge-hot {
    font-size: 10px;
    font-weight: 700;
    background: #f59e0b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Top row: avatar + rating */
.ddpg-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 14px 6px;
}
.ddpg-card-av img,
.ddpg-card-av .ddpg-avatar-init {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    display: block;
}
.ddpg-avatar-init {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-family: inherit;
}
.ddpg-avatar-img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.ddpg-card-rating {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}
.ddpg-card-rating small {
    font-weight: 400;
    opacity: .7;
    margin-left: 2px;
}

/* Body */
.ddpg-card-body {
    padding: 4px 14px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ddpg-card-name {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
    line-height: 1.3;
}
.ddpg-card-tagline {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ddpg-card-cm {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 50px;
    align-self: flex-start;
}
.ddpg-card-area {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}
.ddpg-card-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #94a3b8;
}
.ddpg-card-langs {
    display: flex;
    gap: 3px;
    font-size: 16px;
}
.ddpg-card-services {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.ddpg-card-services span {
    font-size: 10px;
    padding: 2px 7px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    color: #475569;
    white-space: nowrap;
}
.ddpg-card-sv-more {
    background: #eff6ff !important;
    color: #2563eb !important;
    border-color: #bfdbfe !important;
    font-weight: 600 !important;
}

/* Footer */
.ddpg-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.ddpg-card-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.ddpg-card-actions {
    display: flex;
    gap: 6px;
}
.ddpg-act {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: transform .15s ease;
    cursor: pointer;
}
.ddpg-act:hover { transform: scale(1.12); }
.ddpg-act-call { background: #dcfce7; }
.ddpg-act-zalo { background: #dbeafe; }

/* Grid layout for cards */
.ddpg-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}
@media (min-width: 540px)  { .ddpg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .ddpg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .ddpg-grid { grid-template-columns: repeat(4, 1fr); } }


/* ════════════════════════════════════════════════════════════
   ARCHIVE PAGE
   ════════════════════════════════════════════════════════════ */
.ddpg-archive-page { background: #f8fafc; min-height: 60vh; }

/* Hero */
.ddpg-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #4c1d95 80%, #7c3aed 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}
.ddpg-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%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ddpg-hero-content { position: relative; z-index: 1; text-align: center; }
.ddpg-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .5px;
}
.ddpg-hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}
.ddpg-hero h1 .ddpg-hero-hl { color: #fbbf24; }
.ddpg-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin: 0 auto 24px;
    max-width: 520px;
}
.ddpg-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.ddpg-hero-badges span {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Hero search form */
.ddpg-hero-search {
    background: rgba(255,255,255,.97);
    border-radius: 14px;
    padding: 16px;
    max-width: 720px;
    margin: 24px auto 0;
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.ddpg-hs-row {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .ddpg-hs-row { grid-template-columns: 2fr 1fr 1fr auto; }
}
.ddpg-hs-field {
    position: relative;
    display: flex;
    align-items: center;
}
.ddpg-hs-field i {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
}
.ddpg-hs-field input {
    width: 100%;
    padding: 11px 12px 11px 36px;
    border: 2px solid #e2e8f0;
    border-radius: 9px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
    color: #1e293b;
}
.ddpg-hs-field input:focus { border-color: #7c3aed; }
.ddpg-hs-select {
    width: 100%;
    padding: 11px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 9px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    color: #1e293b;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%2394a3b8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.ddpg-hs-btn {
    padding: 11px 22px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.ddpg-hs-btn:hover { opacity: .88; }

/* Main content area */
.ddpg-main { padding: 30px 0 60px; }

/* Filter bar */
.ddpg-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
}
.ddpg-filter-left { flex: 1; min-width: 0; }
.ddpg-pills {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}
.ddpg-pill {
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #64748b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all .18s;
    white-space: nowrap;
}
.ddpg-pill:hover, .ddpg-pill.active {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}
.ddpg-filter-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ddpg-sort-select {
    padding: 7px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    cursor: pointer;
}
.ddpg-toggle-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    white-space: nowrap;
}

/* Results count */
.ddpg-results-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.ddpg-result-count { font-weight: 700; color: #0f172a; }
.ddpg-keyword-badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.ddpg-keyword-badge a { color: #2563eb; text-decoration: none; margin-left: 4px; }

/* Empty state */
.ddpg-empty {
    text-align: center;
    padding: 80px 20px;
}
.ddpg-empty-icon { font-size: 64px; margin-bottom: 16px; }
.ddpg-empty h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.ddpg-empty p  { color: #64748b; margin: 0 0 20px; }

/* Join banner */
.ddpg-join-banner {
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    padding: 40px 0;
}
.ddpg-join-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ddpg-join-inner h2 { font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.ddpg-join-inner p  { color: rgba(255,255,255,.8); margin: 0; font-size: 14px; }
.ddpg-join-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.ddp-btn-white-lg {
    padding: 12px 28px;
    background: #fff;
    color: #4c1d95;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}
.ddp-btn-white-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.ddp-btn-outline-white-lg {
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}
.ddp-btn-outline-white-lg:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* How it works */
.ddpg-how { padding: 60px 0; background: #f8fafc; }
.ddpg-how-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 36px;
}
.ddpg-how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.ddpg-how-step {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 0 16px;
}
.ddpg-how-num  { font-size: 48px; font-weight: 900; color: #e2e8f0; line-height: 1; }
.ddpg-how-icon { font-size: 36px; display: block; margin: -10px 0 12px; }
.ddpg-how-step h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.ddpg-how-step p  { font-size: 13px; color: #64748b; margin: 0; line-height: 1.6; }
.ddpg-how-arrow { font-size: 28px; color: #cbd5e1; padding-top: 56px; }
@media (max-width: 640px) { .ddpg-how-arrow { display: none; } }


/* ════════════════════════════════════════════════════════════
   SINGLE PAGE
   ════════════════════════════════════════════════════════════ */
.ddpg-single-wrap { background: #f8fafc; padding-bottom: 60px; }

/* Layout: main + sidebar */
.ddpg-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding-top: 24px;
}
@media (min-width: 960px) {
    .ddpg-single-layout { grid-template-columns: minmax(0,1fr) 300px; }
}

/* ── Hero card ── */
.ddpg-hero-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 2px solid #f1f5f9;
}
.ddpg-hero-cover {
    height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}
.ddpg-verified-chip {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.ddpg-featured-chip {
    background: rgba(251,191,36,.9);
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.ddpg-hero-body { padding: 0 22px 24px; }

/* Avatar + name row */
.ddpg-hero-top {
    display: flex;
    gap: 20px;
    margin-top: -44px;
    margin-bottom: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.ddpg-hero-av img,
.ddpg-hero-av .ddpg-avatar-init {
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.ddpg-hero-meta { flex: 1; padding-bottom: 6px; }
.ddpg-hero-name {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    margin: 0 0 4px;
    color: #0f172a;
    line-height: 1.2;
}
.ddpg-hero-tagline {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 10px;
}
.ddpg-hero-cms {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.ddpg-cm-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    background: #f3e8ff;
    color: #7c3aed;
    border-radius: 50px;
    text-decoration: none;
    transition: all .18s;
}
.ddpg-cm-tag:hover { background: #7c3aed; color: #fff; }

/* Stars */
.ddpg-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}
.ddpg-stars .star.full  { color: #fbbf24; font-size: 17px; }
.ddpg-stars .star.half  { color: #fbbf24; font-size: 17px; opacity: .6; }
.ddpg-stars .star.empty { color: #e2e8f0; font-size: 17px; }
.ddpg-score { font-weight: 800; font-size: 15px; color: #1e293b; margin-left: 4px; }
.ddpg-rv-count { font-size: 12px; color: #94a3b8; }

/* Stats strip */
.ddpg-hero-stats {
    display: flex;
    gap: 0;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.ddpg-hs-item {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-right: 2px solid #f1f5f9;
}
.ddpg-hs-item:last-child { border-right: none; }
.ddpg-hs-item strong { display: block; font-size: 20px; font-weight: 800; color: #0f172a; line-height: 1.1; }
.ddpg-hs-item span   { font-size: 11px; color: #94a3b8; }

/* CTA row */
.ddpg-hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ddpg-btn-call {
    background: #22c55e !important;
    color: #fff !important;
    border-color: #22c55e !important;
    font-size: 14px !important;
    padding: 11px 22px !important;
    border-radius: 9px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all .2s !important;
}
.ddpg-btn-call:hover { background: #16a34a !important; border-color: #16a34a !important; }
.ddpg-btn-zalo {
    background: #0068ff !important;
    color: #fff !important;
    border-color: #0068ff !important;
    font-size: 14px !important;
    padding: 11px 22px !important;
    border-radius: 9px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: opacity .2s !important;
}
.ddpg-btn-zalo:hover { opacity: .88 !important; }
.ddpg-btn-fb {
    background: #1877f2 !important;
    color: #fff !important;
    border-color: #1877f2 !important;
    font-size: 14px !important;
    padding: 11px 22px !important;
    border-radius: 9px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: opacity .2s !important;
}
.ddpg-btn-fb:hover { opacity: .88 !important; }

/* ── Sections ── */
.ddp-section {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    border: 2px solid #f1f5f9;
    margin-top: 16px;
}
.ddp-section-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8fafc;
}
.ddpg-content { font-size: 15px; line-height: 1.8; color: #334155; }
.ddpg-content p { margin: 0 0 12px; }

/* Services grid */
.ddpg-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 600px) { .ddpg-services-grid { grid-template-columns: repeat(4, 1fr); } }
.ddpg-sv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 10px;
    gap: 6px;
    transition: all .18s;
}
.ddpg-sv-card:hover { border-color: #dbeafe; background: #eff6ff; }
.ddpg-sv-icon { font-size: 28px; line-height: 1; }
.ddpg-sv-name { font-size: 12px; font-weight: 600; color: #475569; }

/* Languages */
.ddpg-langs-list { display: flex; gap: 10px; flex-wrap: wrap; }
.ddpg-lang-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.ddpg-lang-flag { font-size: 22px; }

/* Gallery */
.ddpg-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
@media (min-width: 600px) { .ddpg-gallery { grid-template-columns: repeat(4, 1fr); } }
.ddpg-gallery-item { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.ddpg-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.ddpg-gallery-item:hover img { transform: scale(1.06); }

/* Contact form */
.ddpg-contact-form { display: flex; flex-direction: column; gap: 14px; }
.ddp-form-row { display: grid; gap: 14px; }
.ddp-2col { grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .ddp-2col { grid-template-columns: 1fr; } }
.ddp-form-field { display: flex; flex-direction: column; gap: 5px; }
.ddp-form-field label { font-size: 13px; font-weight: 600; color: #374151; }
.ddp-form-field input,
.ddp-form-field select,
.ddp-form-field textarea {
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 9px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    outline: none;
    transition: border-color .2s;
    background: #fff;
    width: 100%;
}
.ddp-form-field input:focus,
.ddp-form-field select:focus,
.ddp-form-field textarea:focus { border-color: #7c3aed; }
.ddp-form-field textarea { resize: vertical; }

/* ── Sidebar ── */
.ddpg-single-sidebar { }
.ddpg-sticky { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 14px; }
.ddp-sidebar-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.ddp-sidebar-info {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}
.ddp-sidebar-info li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 9px 0 !important;
    border-bottom: 1px solid #f8fafc !important;
    list-style: none !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}
.ddp-sidebar-info li::before,
.ddp-sidebar-info li::marker { display: none !important; content: none !important; }
.ddp-sidebar-info li i {
    width: 18px !important;
    text-align: center !important;
    color: #7c3aed !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
.ddp-sidebar-info li:last-child { border-bottom: none !important; }
.ddp-sidebar-info a { color: #2563eb; text-decoration: none; word-break: break-word; }
.ddp-sidebar-info a:hover { text-decoration: underline; }
.ddp-sidebar-info span { word-break: break-word; }
.ddp-sidebar-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.ddp-btn-full { width: 100% !important; text-align: center !important; justify-content: center !important; }
.ddp-btn-outline {
    background: transparent !important;
    border: 2px solid #e2e8f0 !important;
    color: #475569 !important;
    padding: 10px 20px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    transition: all .2s !important;
}
.ddp-btn-outline:hover { border-color: #7c3aed !important; color: #7c3aed !important; }

/* Related guides */
.ddpg-related-section { background: #f8fafc; padding: 48px 0 60px; }
.ddp-section-title-lg {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 24px;
    color: #0f172a;
}
.ddpg-related-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
@media (min-width: 540px)  { .ddpg-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .ddpg-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Float CTA */
.ddp-float-btns {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.ddp-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transition: transform .2s;
}
.ddp-float-btn:hover { transform: scale(1.1); }
.ddp-float-call { background: #22c55e; }
.ddp-float-zalo { background: #0068ff; }
@media (min-width: 960px) { .ddp-float-btns { display: none; } }

/* ── Pagination ── */
.ddp-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.ddp-pagination a,
.ddp-pagination span {
    padding: 8px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #475569;
    transition: all .18s;
    background: #fff;
}
.ddp-pagination a:hover { border-color: #7c3aed; color: #7c3aed; }
.ddp-pagination .current { background: #7c3aed; color: #fff; border-color: #7c3aed; }

/* ── Mobile ── */
@media (max-width: 640px) {
    .ddpg-hero { padding: 36px 0 32px; }
    .ddpg-hero h1 { font-size: 26px; }
    .ddpg-filter-bar { flex-direction: column; align-items: flex-start; }
    .ddpg-hero-top { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: -50px; }
    .ddpg-hero-stats { flex-wrap: wrap; }
    .ddpg-hs-item { min-width: 80px; }
    .ddpg-hero-ctas { flex-direction: column; }
    .ddpg-hero-ctas a { justify-content: center; }
    .ddp-section { padding: 16px; }
}
