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

.dlb-card,
.dlb-single-summary {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
    overflow: hidden;
}

.dlb-card__image-link img,
.dlb-single-media img {
    display: block;
    width: 100%;
    height: auto;
}

.dlb-card__body,
.dlb-single-summary {
    padding: 22px;
}

.dlb-card__title {
    margin: 0 0 10px;
}

.dlb-card__title a {
    color: #000;
    text-decoration: none;
}

.dlb-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #000;
}

.dlb-card__price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.dlb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    background: #d4a017;
    color: #111;
    font-weight: 700;
    border: 0;
}

.dlb-single-grid,
.dlb-form-grid {
    display: grid;
    gap: 20px;
}

.dlb-single-grid {
    grid-template-columns: 1.2fr .8fr;
}

.dlb-form-grid input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #d7dde4;
    border-radius: 12px;
    color: #000;
}

@media (max-width: 992px) {
    .dlb-grid,
    .dlb-single-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .dlb-grid,
    .dlb-single-grid {
        grid-template-columns: 1fr;
    }
}

.dlb-gallery-main img {
    width: 100%;
    display: block;
    border-radius: 18px;
}
.dlb-gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.dlb-gallery-strip__item img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
@media (max-width: 767px) {
    .dlb-gallery-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


.dlb-listings-shell {
    display: grid;
    gap: 22px;
}
.dlb-filter-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.dlb-filter-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #000;
}
.dlb-filter-sort select,
.dlb-filter-grid select,
.dlb-filter-grid input {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #d7dde4;
    border-radius: 12px;
    width: 100%;
    background: #fff;
}
.dlb-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.dlb-filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.dlb-results-head {
    color: #000;
}
.dlb-btn--ghost {
    background: #fff;
    border: 1px solid #d7dde4;
}
.dlb-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 992px) {
    .dlb-filter-grid,
    .dlb-grid,
    .dlb-single-grid,
    .dlb-settings-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .dlb-filter-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .dlb-filter-grid,
    .dlb-grid,
    .dlb-single-grid,
    .dlb-settings-grid {
        grid-template-columns: 1fr;
    }
}


.dlb-card__image-link {
    position: relative;
}
.dlb-status-badge,
.dlb-single-sold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dlb-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}
.dlb-single-sold {
    margin-bottom: 10px;
}


.dlb-filter-shell {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.dlb-filter-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.dlb-filter-sort-form {
    margin: 0;
}
.dlb-filter-panel[hidden] {
    display: none !important;
}
.dlb-filter-toggle {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #d7dde4;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}
.dlb-filter-toggle:hover {
    background: #f8fafc;
}


.dlb-single-wrap {
    display: grid;
    gap: 28px;
}
.dlb-single-media,
.dlb-single-summary,
.dlb-single-description {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.dlb-single-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.dlb-single-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s ease;
}
.dlb-single-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.dlb-single-thumb img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.dlb-single-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}
.dlb-single-excerpt {
    color: #000;
    margin-bottom: 18px;
}
.dlb-pricing-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}
.dlb-pricing-box.is-sale {
    background: #fffaf0;
    border-color: #f2d28c;
}
.dlb-price-old,
.dlb-card__price-old {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 4px;
}
.dlb-price-sale {
    font-size: 2rem;
    font-weight: 800;
}
.dlb-sale-timer {
    margin-top: 10px;
    color: #92400e;
}
.dlb-sale-badge,
.dlb-status-badge--sale {
    background: #d97706;
    color: #fff;
}
.dlb-status-badge--sale {
    left: auto;
    right: 12px;
}
.dlb-single-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.dlb-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.dlb-spec-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
}
.dlb-spec-label {
    display: block;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}
.dlb-spec-value {
    display: block;
    font-size: 1rem;
}
.dlb-single-description__content {
    color: #000;
}
.dlb-no-image {
    display: grid;
    place-items: center;
    min-height: 340px;
    background: #f8fafc;
    color: #6b7280;
}
@media (max-width: 992px) {
    .dlb-spec-grid,
    .dlb-single-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .dlb-spec-grid,
    .dlb-single-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.dlb-help-text {
    margin-top: 0;
    color: #000;
}
.dlb-field--checkbox {
    display: flex;
    align-items: center;
}
.dlb-field--checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dlb-sale-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border: 1px solid #f2d28c;
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.dlb-sale-topbar__copy {
    display: grid;
    gap: 4px;
}
.dlb-sale-topbar__copy span,
.dlb-sale-note {
    color: #92400e;
}
.dlb-sale-topbar__timer {
    font-weight: 800;
    white-space: nowrap;
}


.dlb-card__sale-mini {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
}


.dlb-sale-badge,
.dlb-status-badge--sale {
    background: #d97706;
    color: #fff;
}
.dlb-status-badge--sale {
    left: auto;
    right: 12px;
}
.dlb-sale-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border: 1px solid #f2d28c;
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.dlb-sale-topbar__copy {
    display: grid;
    gap: 4px;
}
.dlb-sale-topbar__copy span,
.dlb-sale-note,
.dlb-card__sale-mini {
    color: #92400e;
}
.dlb-sale-topbar__timer {
    font-weight: 800;
    white-space: nowrap;
}


.dlb-card__sale-mini {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
}


.dlb-sale-topbar {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-color: #f59e0b;
    color: #000;
}
.dlb-sale-topbar__copy strong {
    font-size: 1rem;
    letter-spacing: .03em;
}
.dlb-sale-topbar__copy span {
    color: #000;
    opacity: .9;
}
.dlb-sale-topbar__timer {
    display: grid;
    gap: 6px;
    justify-items: end;
}
.dlb-sale-timer-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.dlb-sale-timer--inline .dlb-sale-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
    background: rgba(17,24,39,.92);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
}
.dlb-pricing-box.is-sale {
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}
.dlb-price-sale {
    color: #000;
}
.dlb-sale-note {
    margin-top: 8px;
    font-weight: 700;
}
.dlb-sale-demand {
    margin-top: 6px;
    color: #b45309;
    font-weight: 700;
}
.dlb-btn--sale {
    background: #111827;
    color: #fff;
}
.dlb-btn--sale:hover {
    background: #000;
}
.dlb-card__sale-copy {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #b45309;
}

.dlb-gallery {
    position: relative;
    max-width: 600px;
    margin-bottom: 20px;
}

.dlb-gallery img {
    width: 100%;
    border-radius: 12px;
}

.dlb-gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.dlb-prev, .dlb-next {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.dlb-listings-shell,
.dlb-single-wrap {
    color: #000;
}

/* Gallery Improvements */
.dlb-gallery-viewer {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.dlb-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.dlb-gallery-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.dlb-gallery-arrow:focus {
    outline: 2px solid #d4a017;
    outline-offset: 2px;
}

.dlb-gallery-arrow--prev { left: 15px; }
.dlb-gallery-arrow--next { right: 15px; }

.dlb-single-thumb {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    padding: 2px;
}
.dlb-single-thumb:hover { opacity: 0.8; }
.dlb-single-thumb.is-active {
    border-color: #d4a017;
}
.dlb-single-thumb:focus {
    outline: 2px solid #d4a017;
}
/* Global Text Force */
.dlb-listings-shell *, 
.dlb-single-wrap * {
    color: inherit;
}
.dlb-listings-shell, 
.dlb-single-wrap {
    color: #000 !important;
}
