/* ==========================================================================
   Directorio Coronado — Public Styles
   ========================================================================== */

:root {
    --dc-primary:    #0e7abe;
    --dc-primary-dk: #095d8e;
    --dc-accent:     #f59e0b;
    --dc-success:    #10b981;
    --dc-danger:     #ef4444;
    --dc-featured:   #f59e0b;
    --dc-whatsapp:   #25d366;
    --dc-text:       #1e293b;
    --dc-muted:      #64748b;
    --dc-border:     #e2e8f0;
    --dc-bg:         #f8fafc;
    --dc-white:      #ffffff;
    --dc-radius:     10px;
    --dc-shadow:     0 2px 10px rgba(0,0,0,.08);
    --dc-shadow-lg:  0 8px 30px rgba(0,0,0,.14);
    --dc-font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Scope all public styles */
.dc-directory,
.dc-single,
.dc-featured-section,
.dc-search-form {
    font-family: var(--dc-font);
    color: var(--dc-text);
    box-sizing: border-box;
}
.dc-directory *,
.dc-single *,
.dc-featured-section *,
.dc-search-form * {
    box-sizing: border-box;
}

/* ============ BUTTONS ============ */
.dc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .18s ease;
    line-height: 1.2;
    white-space: nowrap;
}
.dc-btn-primary {
    background: var(--dc-primary);
    color: #fff !important;
    border-color: var(--dc-primary);
}
.dc-btn-primary:hover {
    background: var(--dc-primary-dk);
    border-color: var(--dc-primary-dk);
}
.dc-btn-outline {
    background: transparent;
    color: var(--dc-primary) !important;
    border-color: var(--dc-primary);
}
.dc-btn-outline:hover {
    background: var(--dc-primary);
    color: #fff !important;
}
.dc-btn-ghost {
    background: transparent;
    color: var(--dc-muted) !important;
    border-color: var(--dc-border);
}
.dc-btn-ghost:hover {
    background: var(--dc-bg);
}
.dc-btn-whatsapp {
    background: var(--dc-whatsapp);
    color: #fff !important;
    border-color: var(--dc-whatsapp);
}
.dc-btn-whatsapp:hover {
    background: #1fa855;
    border-color: #1fa855;
}
.dc-btn-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============ SEARCH BAR ============ */
.dc-search-bar {
    background: #fff;
    border-radius: var(--dc-radius);
    padding: 20px;
    box-shadow: var(--dc-shadow);
    margin-bottom: 24px;
}
.dc-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.dc-search-input-wrap {
    position: relative;
    flex: 1 1 240px;
}
.dc-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dc-muted);
    font-size: 18px;
    width: 18px;
    height: 18px;
    pointer-events: none;
}
.dc-search-input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 2px solid var(--dc-border);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color .18s;
    font-family: var(--dc-font);
}
.dc-search-input:focus { border-color: var(--dc-primary); }

.dc-filter-select {
    padding: 10px 12px;
    border: 2px solid var(--dc-border);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color .18s;
    min-width: 160px;
    font-family: var(--dc-font);
}
.dc-filter-select:focus { border-color: var(--dc-primary); }

/* ============ CATEGORY PILLS ============ */
.dc-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.dc-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: var(--dc-bg);
    color: var(--dc-muted);
    text-decoration: none !important;
    border: 1px solid var(--dc-border);
    transition: all .16s;
    cursor: pointer;
}
.dc-pill:hover,
.dc-pill.active {
    background: var(--dc-primary);
    color: #fff !important;
    border-color: var(--dc-primary);
}

/* ============ RESULTS HEADER ============ */
.dc-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dc-results-count {
    font-size: 14px;
    color: var(--dc-muted);
}

/* ============ BUSINESS GRID ============ */
.dc-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

/* ============ BUSINESS CARD ============ */
.dc-business-card {
    background: var(--dc-white);
    border-radius: var(--dc-radius);
    overflow: hidden;
    box-shadow: var(--dc-shadow);
    transition: transform .22s ease, box-shadow .22s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dc-border);
}
.dc-business-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dc-shadow-lg);
}
.dc-card-featured {
    border-color: var(--dc-featured);
    box-shadow: 0 0 0 2px var(--dc-featured), var(--dc-shadow);
}

/* Cover */
.dc-card-cover-link { display: block; }
.dc-card-cover {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.dc-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.dc-business-card:hover .dc-card-cover img { transform: scale(1.04); }
.dc-card-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dc-card-cover-placeholder .dashicons {
    font-size: 56px;
    width: 56px;
    height: 56px;
    color: #94a3b8;
}

/* Featured badge */
.dc-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--dc-featured);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}
.dc-featured-badge .dashicons {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

/* Card body */
.dc-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.dc-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.dc-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--dc-border);
    background: var(--dc-bg);
}
.dc-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.dc-card-meta { flex: 1; min-width: 0; }
.dc-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--dc-primary);
    margin-bottom: 2px;
}
.dc-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.dc-card-title a {
    color: var(--dc-text) !important;
    text-decoration: none !important;
}
.dc-card-title a:hover { color: var(--dc-primary) !important; }
.dc-card-desc { font-size: 13px; color: var(--dc-muted); margin: 0; line-height: 1.5; flex: 1; }

/* Card footer */
.dc-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--dc-border);
}
.dc-card-contact {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--dc-muted) !important;
    text-decoration: none !important;
}
.dc-card-contact .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--dc-primary);
}
.dc-card-whatsapp {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dc-whatsapp) !important;
    text-decoration: none !important;
}
.dc-card-whatsapp svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.dc-card-more {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dc-primary) !important;
    text-decoration: none !important;
}
.dc-card-more .dashicons { font-size: 16px; width: 16px; height: 16px; }

/* No results */
.dc-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--dc-muted);
}
.dc-no-results .dashicons { font-size: 56px; width: 56px; height: 56px; color: #cbd5e1; display: block; margin: 0 auto 12px; }

/* ============ PAGINATION ============ */
.dc-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 32px 0;
}
.dc-pagination a,
.dc-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--dc-border);
    background: #fff;
    color: var(--dc-text) !important;
    transition: all .16s;
}
.dc-pagination a:hover { background: var(--dc-primary); color: #fff !important; border-color: var(--dc-primary); }
.dc-pagination .current { background: var(--dc-primary); color: #fff !important; border-color: var(--dc-primary); }

/* ============ SINGLE BUSINESS ============ */
.dc-single-cover {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #0e7abe 0%, #095d8e 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}
.dc-single-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 32px;
}
.dc-single-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 4px solid #fff;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    box-shadow: var(--dc-shadow-lg);
}
.dc-single-logo img { width: 100%; height: 100%; object-fit: cover; }
.dc-single-cover-info { flex: 1; }
.dc-single-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
    line-height: 1.2;
}
.dc-single-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.dc-single-cats .dc-pill { font-size: 12px; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.2); color: #fff !important; backdrop-filter: blur(4px); }
.dc-single-district { color: rgba(255,255,255,.85); font-size: 14px; display: flex; align-items: center; gap: 4px; }
.dc-single-district .dashicons { font-size: 16px; width: 16px; height: 16px; }

/* Single container */
.dc-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .dc-single-container { grid-template-columns: 1fr; }
}

/* Action buttons */
.dc-single-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

/* Short desc */
.dc-single-short-desc {
    font-size: 17px;
    color: var(--dc-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Sections */
.dc-single-section {
    margin-bottom: 36px;
}
.dc-single-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dc-border);
}
.dc-single-section h2 .dashicons { color: var(--dc-primary); font-size: 22px; width: 22px; height: 22px; }
.dc-single-long-desc { font-size: 15px; line-height: 1.8; color: var(--dc-text); }

/* Promos */
.dc-promos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.dc-promo-card {
    background: linear-gradient(135deg, #fff8e1 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: var(--dc-radius);
    padding: 16px;
    position: relative;
}
.dc-promo-title { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: #92400e; }
.dc-promo-card p { font-size: 13px; color: #7a5000; margin: 0 0 8px; }
.dc-promo-expiry { font-size: 12px; color: #92400e; font-weight: 600; }

/* Services/Products */
.dc-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.dc-item-card {
    background: var(--dc-bg);
    border: 1px solid var(--dc-border);
    border-radius: 8px;
    padding: 14px;
}
.dc-item-card h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: var(--dc-text); }
.dc-item-card p { margin: 0 0 6px; font-size: 13px; color: var(--dc-muted); }
.dc-item-price { font-size: 14px; font-weight: 700; color: var(--dc-primary); }

/* Gallery */
.dc-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.dc-gallery-thumb {
    display: block;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.dc-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease, opacity .3s ease;
}
.dc-gallery-thumb:hover img { transform: scale(1.06); opacity: .9; }

/* Video */
.dc-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--dc-radius);
}
.dc-video-wrapper iframe,
.dc-video-wrapper embed,
.dc-video-wrapper object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sidebar */
.dc-single-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 24px; }
.dc-sidebar-card {
    background: var(--dc-white);
    border-radius: var(--dc-radius);
    padding: 20px;
    box-shadow: var(--dc-shadow);
    border: 1px solid var(--dc-border);
}
.dc-sidebar-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dc-border);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dc-text);
}
.dc-sidebar-card h3 .dashicons { color: var(--dc-primary); font-size: 18px; width: 18px; height: 18px; }

/* Contact list */
.dc-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.dc-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.dc-contact-icon { flex-shrink: 0; margin-top: 2px; color: var(--dc-primary); font-size: 17px; width: 17px; height: 17px; }
.dc-whatsapp-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: var(--dc-whatsapp);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.dc-contact-list a { color: var(--dc-text) !important; text-decoration: none !important; }
.dc-contact-list a:hover { color: var(--dc-primary) !important; text-decoration: underline !important; }

/* Schedule */
.dc-schedule { font-size: 14px; line-height: 1.8; color: var(--dc-text); white-space: pre-line; }

/* Social links */
.dc-social-links { display: flex; flex-direction: column; gap: 8px; }
.dc-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    background: var(--social-color, #333);
    transition: opacity .16s;
}
.dc-social-link:hover { opacity: .85; }

/* Plan badge */
.dc-plan-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dc-primary);
}
.dc-plan-badge .dashicons { font-size: 20px; width: 20px; height: 20px; }

/* Map */
.dc-map-section { max-width: 1200px; margin: 0 auto 40px; padding: 0 20px; }
.dc-map-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--dc-border); display: flex; align-items: center; gap: 8px; }
.dc-map-section h2 .dashicons { color: var(--dc-primary); }
.dc-map-container { width: 100%; height: 380px; border-radius: var(--dc-radius); overflow: hidden; border: 1px solid var(--dc-border); }
.dc-map-fallback { margin-top: 12px; }

/* ============ LIGHTBOX ============ */
.dc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.dc-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.92);
}
.dc-lightbox-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dc-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(0,0,0,.8);
}
.dc-lightbox-close,
.dc-lightbox-prev,
.dc-lightbox-next {
    position: absolute;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .16s;
    z-index: 2;
}
.dc-lightbox-close { top: 20px; right: 20px; font-size: 32px; }
.dc-lightbox-prev { left: 20px; }
.dc-lightbox-next { right: 20px; }
.dc-lightbox-close:hover,
.dc-lightbox-prev:hover,
.dc-lightbox-next:hover { background: rgba(255,255,255,.3); }

/* ============ SEARCH FORM SHORTCODE ============ */
.dc-search-form { max-width: 600px; }
.dc-search-form-inner { display: flex; gap: 10px; }
.dc-search-form .dc-search-input { flex: 1; }

/* ============ FEATURED SECTION ============ */
.dc-featured-section { margin-bottom: 40px; }
.dc-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.dc-section-title .dashicons { color: var(--dc-featured); font-size: 26px; width: 26px; height: 26px; }
.dc-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .dc-filter-form { flex-direction: column; }
    .dc-filter-select { width: 100%; }
    .dc-search-input-wrap { width: 100%; }

    .dc-single-cover { height: 260px; }
    .dc-single-cover-overlay { padding: 20px; gap: 14px; }
    .dc-single-logo { width: 72px; height: 72px; }
    .dc-single-title { font-size: 22px; }
    .dc-single-container { padding: 20px 16px; grid-template-columns: 1fr; }
    .dc-single-actions { gap: 8px; }
    .dc-single-actions .dc-btn { padding: 8px 14px; font-size: 13px; }

    .dc-business-grid { grid-template-columns: 1fr; }
    .dc-featured-grid  { grid-template-columns: 1fr; }

    .dc-gallery { grid-template-columns: repeat(3, 1fr); }
    .dc-gallery-thumb { height: 100px; }
}

@media (max-width: 480px) {
    .dc-single-cover-overlay { flex-direction: column; align-items: flex-start; }
    .dc-gallery { grid-template-columns: repeat(2, 1fr); }
}
