/*
 * Dokan Store — Neo-Luxury Overrides
 * Motors Child Theme
 * Loaded ONLY on Dokan store/vendor pages (conditional enqueue in functions.php)
 *
 * Depends on: neo-luxury.css (design tokens must already be defined)
 *
 * Sections:
 *  1. Global Dokan Page Overrides
 *  2. Full-Width Layout (no sidebar)
 *  3. Store Hero Banner
 *  4. Profile Card
 *  5. Floating Avatar
 *  6. Quick Action Buttons
 *  7. Store Name & Badge
 *  8. Stats Row
 *  9. Info List
 * 10. Open/Close Status
 * 11. Supported Makes Chips
 * 12. About Vendor
 * 13. Social Icons
 * 14. Navigation Tabs
 * 15. Search Bar & Filter Form
 * 16. WooCommerce Product Grid
 * 17. Pagination
 * 18. Empty State
 * 19. Footer
 * 20. Responsive
 */

/* ==========================================================================
   1. Global Dokan Page Overrides
   ========================================================================== */
body,
html {
    background-color: var(--neo-bg) !important;
}

body * {
    color: inherit;
}

#page,
#wrapper,
.site,
.site-content {
    background-color: var(--neo-bg) !important;
}

/* Hide redundant non-navigation elements, keep site nav */
.stm_breadcrumbs_unit,
.entry-header,
#breadcrumbs,
p#breadcrumbs {
    display: none !important;
}

/* Hide residual Dokan sidebar heading text */
.dokan-store-wrap .widget-title,
.dokan-sidebar .widget-title,
#dokan-sidebar,
.dokan-store-wrap>aside {
    display: none !important;
}

/* ==========================================================================
   2. Full-Width Layout (no sidebar)
   ========================================================================== */
.dokan-store-wrap.layout-left,
.dokan-store-wrap.layout-right,
.dokan-store-wrap {
    display: block !important;
}

.dokan-store-wrap>div:not(#dokan-primary) {
    display: none !important;
}

#dokan-primary,
.dokan-single-store,
#dokan-content {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   3. Store Hero Banner
   ========================================================================== */
.neo-store-hero {
    position: relative;
    isolation: isolate;
}

.neo-store-banner {
    height: auto;
    min-height: 0;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(22, 18, 18, 0.96), rgba(44, 28, 28, 0.88));
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neo-border);
    isolation: isolate;
    box-shadow: 0 36px 80px rgba(8, 8, 10, 0.34);
}

.neo-store-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(225, 29, 72, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 26%);
    pointer-events: none;
    z-index: 1;
}

.neo-store-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 9, 11, 0.04) 0%, rgba(9, 9, 11, 0.08) 28%, rgba(9, 9, 11, 0.3) 58%, rgba(9, 9, 11, 0.68) 100%),
        linear-gradient(115deg, rgba(225, 29, 72, 0.12), rgba(225, 29, 72, 0) 40%);
    z-index: 2;
}

.neo-store-banner>* {
    position: relative;
    z-index: 0;
}

.neo-store-banner__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: unset;
    object-position: center center;
    transform: none;
    filter: saturate(1.02) contrast(1.02);
}

.dummy-banner {
    background: linear-gradient(135deg, #1e1e24 0%, #0f0f13 100%);
}

.neo-store-header-content {
    position: relative;
    z-index: 4;
    margin-top: -76px;
    padding-inline: 18px;
}

body.dokan-store-page .neo-store-banner {
    border-radius: 34px !important;
    min-height: 0 !important;
    height: auto !important;
}

body.dokan-store-page .neo-store-banner__image {
    height: auto !important;
    max-height: none !important;
    object-fit: unset !important;
    object-position: center center !important;
    transform: none !important;
}

body.dokan-store-page .neo-store-header-content {
    margin-top: -88px;
    padding-inline: 18px;
}

body.dokan-store-page .neo-profile-card {
    border-radius: 30px !important;
    padding: 56px 28px 28px !important;
}

body.motors-website-ui.dokan-store-page .neo-profile-card,
body.motors-website-ui.dokan-store-page .neo-store-header-content .neo-profile-card {
    border-radius: 30px !important;
    padding: 56px 28px 28px !important;
}

/* ==========================================================================
   4. Profile Card
   ========================================================================== */
.neo-profile-card {
    background: var(--neo-surface) !important;
    backdrop-filter: var(--neo-glass-blur) !important;
    -webkit-backdrop-filter: var(--neo-glass-blur) !important;
    border: 1px solid var(--neo-border) !important;
    border-radius: 32px !important;
    padding: 60px 30px 30px !important;
    position: relative !important;
    box-shadow: 0 28px 60px rgba(8, 8, 10, 0.28) !important;
}

/* ==========================================================================
   5. Floating Avatar
   ========================================================================== */
.neo-floating-avatar {
    position: absolute;
    top: -48px;
    inset-inline-start: 30px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    background: #1e1e24;
    z-index: 20;
}

.neo-floating-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ==========================================================================
   6. Quick Action Buttons (Call / WhatsApp / SMS)
   ========================================================================== */
.neo-profile-actions {
    position: absolute;
    top: -44px;
    inset-inline-end: 30px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.neo-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.neo-action-btn.call {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.neo-action-btn.sms {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.neo-action-btn.wa {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.neo-action-btn:hover {
    transform: translateY(-3px) scale(1.08);
}

/* ==========================================================================
   7. Store Name & Badge
   ========================================================================== */
.neo-profile-name-block {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.neo-profile-name-block .neo-badge {
    margin-bottom: 8px;
}

.store-name {
    font-size: 28px !important;
    font-weight: 800 !important;
    margin: 6px 0 0 0 !important;
    letter-spacing: -0.8px;
    line-height: 1.15 !important;
    font-family: 'Outfit', sans-serif !important;
}

.neo-store-location-inline {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 10px;
    color: var(--neo-text-muted);
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
}

.neo-store-location-inline i {
    color: var(--neo-accent);
    font-size: 13px;
    margin-top: 3px;
}

.neo-makes-section--hero {
    margin-top: 18px;
    margin-bottom: 0;
    width: 100%;
}

.neo-makes-section--hero .neo-makes-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    text-align: start;
    width: 100%;
}

.neo-makes-section--hero .neo-makes-scroll--preview,
.neo-makes-section--hero .neo-makes-scroll--full {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 0;
    width: 100%;
}

.neo-makes-section--hero .neo-make-chip {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.neo-makes-details {
    margin-top: 12px;
}

.neo-makes-details summary {
    align-items: center;
    color: var(--neo-text-muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    list-style: none;
}

.neo-makes-details summary::-webkit-details-marker {
    display: none;
}

.neo-makes-details summary i {
    color: var(--neo-accent);
    font-size: 12px;
    transition: transform 0.24s ease;
}

.neo-makes-details[open] summary i {
    transform: rotate(180deg);
}

.neo-makes-details .neo-makes-scroll--full {
    margin-top: 12px;
}

.neo-store-request-cta {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.neo-store-request-cta .stm-request-part__btn-neo {
    width: auto;
    min-width: min(100%, 292px);
    max-width: 100%;
    min-height: 54px;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 52%, #f97316 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 30px rgba(220, 38, 38, 0.24);
    position: relative;
    overflow: hidden;
    text-align: start;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.neo-store-request-cta .stm-request-part__btn-neo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 26%);
    pointer-events: none;
}

.neo-store-request-cta .stm-request-part__btn-neo .btn-icon,
.neo-store-request-cta .stm-request-part__btn-neo .btn-arrow {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neo-store-request-cta .stm-request-part__btn-neo .btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff4df;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.neo-store-request-cta .stm-request-part__btn-neo .btn-arrow {
    width: 26px;
    height: 26px;
    margin-inline-start: auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(250, 244, 236, 0.88);
}

.neo-store-request-cta .stm-request-part__btn-neo .btn-text {
    position: relative;
    z-index: 1;
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.neo-store-request-cta .stm-request-part__btn-neo .btn-glow {
    position: absolute;
    inset-inline-start: 18px;
    inset-inline-end: 18px;
    bottom: 8px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(12px);
    opacity: 0.9;
    pointer-events: none;
}

.neo-store-request-cta .stm-request-part__btn-neo:hover,
.neo-store-request-cta .stm-request-part__btn-neo:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(220, 38, 38, 0.3);
    filter: saturate(1.05);
}

/* ==========================================================================
   8. Stats Row (Rating / Reviews / Products)
   ========================================================================== */
.neo-stats-row {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--neo-border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 22px;
}

.neo-stat-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
}

.neo-stat-item+.neo-stat-item {
    border-left: 1px solid var(--neo-border);
}

.neo-stat-icon {
    font-size: 18px;
}

.neo-stat-icon.star {
    color: #f59e0b;
}

.neo-stat-icon.review {
    color: #60a5fa;
}

.neo-stat-icon.products {
    color: #4ade80;
}

.neo-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.neo-stat-label {
    font-size: 11px;
    color: var(--neo-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
}

.neo-hours-card {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neo-border);
}

.neo-hours-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.neo-hours-card__title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.neo-hours-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.14);
    color: #4ade80;
    flex-shrink: 0;
}

.neo-hours-card__eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.neo-hours-card__summary {
    font-size: 14px;
    color: var(--neo-text-muted);
    line-height: 1.45;
}

.neo-hours-card__details {
    min-width: 140px;
}

.neo-hours-card__details summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neo-text-muted);
    font-size: 13px;
    font-weight: 700;
}

.neo-hours-card__details summary::-webkit-details-marker {
    display: none;
}

.neo-hours-card__details[open] summary i {
    transform: rotate(180deg);
}

.neo-hours-card__details summary i {
    transition: transform 0.2s ease;
}

.neo-hours-card__list {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.neo-hours-card__line {
    color: var(--neo-text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.neo-hours-card__line.is-today {
    color: #4ade80;
    font-weight: 700;
}

/* ==========================================================================
   9. Info List
   ========================================================================== */
.neo-store-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.neo-store-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--neo-text-muted);
}

.neo-store-info-list i {
    width: 16px;
    color: var(--neo-accent);
    font-size: 13px;
}

.neo-store-info-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.neo-store-info-list a:hover {
    color: var(--neo-accent);
}

/* ==========================================================================
   10. Open/Close Status & Hours Dropdown
   ========================================================================== */
.neo-status-badge {
    padding: 2px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neo-status-badge.open {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.neo-status-badge.closed {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.neo-status-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.neo-store-times-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    width: 260px;
    background: rgba(18, 18, 22, 0.97);
    border: 1px solid var(--neo-border);
    border-radius: 16px;
    padding: 14px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.neo-status-trigger:hover .neo-store-times-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   11. Supported Makes Chips
   ========================================================================== */
.neo-makes-section {
    margin-bottom: 22px;
}

.neo-makes-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--neo-text-muted);
    margin-bottom: 14px;
}

.neo-makes-heading i {
    color: var(--neo-accent);
    font-size: 13px;
}

.neo-makes-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.neo-makes-scroll::-webkit-scrollbar {
    display: none;
}

.neo-make-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--neo-border);
    padding: 6px;
    transition: all 0.3s;
    cursor: default;
}

.neo-make-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.neo-make-chip span {
    font-size: 10px;
    font-weight: 700;
    color: var(--neo-text-muted);
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

.neo-make-chip:hover {
    border-color: rgba(225, 29, 72, 0.3);
    background: rgba(225, 29, 72, 0.05);
    transform: translateY(-2px);
}

/* ==========================================================================
   12. About Vendor
   ========================================================================== */
.neo-about-section {
    margin-bottom: 22px;
}

.neo-about-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--neo-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.neo-about-heading i {
    color: var(--neo-accent);
    font-size: 13px;
}

.neo-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neo-text-muted);
}

/* ==========================================================================
   13. Social Icons
   ========================================================================== */
.neo-store-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.neo-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--neo-text-muted);
    border: 1px solid var(--neo-border);
    text-decoration: none;
    transition: all 0.3s;
}

.neo-social-icon:hover {
    background: var(--neo-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--neo-accent-glow);
    border-color: transparent;
}

/* ==========================================================================
   14. Navigation Tabs
   ========================================================================== */
.neo-store-tabs,
.dokan-store-tabs {
    background: var(--neo-surface) !important;
    backdrop-filter: var(--neo-glass-blur) !important;
    border: 1px solid var(--neo-border) !important;
    border-radius: 18px !important;
    padding: 6px 10px !important;
    margin: 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.neo-tabs-list,
.dokan-store-tabs ul.dokan-list-inline {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    gap: 4px !important;
}

.neo-tabs-list li a,
.dokan-store-tabs ul.dokan-list-inline li a {
    display: block !important;
    padding: 9px 20px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: var(--neo-text-muted) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    font-family: 'Outfit', sans-serif !important;
}

.neo-tabs-list li.active a,
.dokan-store-tabs ul.dokan-list-inline li.active a,
.dokan-store-tabs ul.dokan-list-inline li:first-child a {
    background: var(--neo-accent) !important;
    color: #fff !important;
    box-shadow: 0 6px 14px var(--neo-accent-glow) !important;
}

.neo-tabs-list li:hover:not(.active) a,
.dokan-store-tabs ul.dokan-list-inline li a:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
}

/* Share button inside tabs */
.dokan-store-tabs .dokan-store-share a,
.dokan-store-tabs .dokan-share-button {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--neo-border) !important;
    color: var(--neo-text-muted) !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    text-decoration: none !important;
}

.neo-modules-hook {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   15. Search Bar & Filter Form
   ========================================================================== */
.dokan-store-page .neo-store-tabs,
.dokan-store-page .dokan-store-tabs,
.dokan-store-page .dokan-store-products-filter-bar,
.dokan-store-page .dokan-store-search-form,
.dokan-store-page form.dokan-store-search-form,
.dokan-store-page .seller-items,
.dokan-store-page .neo-pagination-wrapper,
.dokan-store-page .dokan-content-nav {
    display: none !important;
}

.dokan-store-products-filter-bar,
.dokan-store-search-form,
form.dokan-store-search-form {
    background: var(--neo-surface) !important;
    border: 1px solid var(--neo-border) !important;
    border-radius: 14px !important;
    padding: 12px 16px !important;
    margin-bottom: 24px !important;
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
}

.dokan-store-products-filter-bar input[type="text"],
.dokan-store-search-form input[type="text"],
#dokan-content input[type="text"],
#dokan-content input[name="s"] {
    background: rgba(9, 9, 11, 0.7) !important;
    border: 1px solid var(--neo-border) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    padding: 10px 14px !important;
    flex: 1 !important;
}

.dokan-store-products-filter-bar input::placeholder,
#dokan-content input[type="text"]::placeholder {
    color: var(--neo-text-muted) !important;
}

.dokan-store-products-filter-bar .dokan-btn,
#dokan-content .dokan-btn,
#dokan-content input[type="submit"],
.dokan-store-search-form button,
.dokan-store-search-form input[type="submit"] {
    background: var(--neo-accent) !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding: 10px 18px !important;
    cursor: pointer !important;
}

#dokan-content select,
.dokan-store-search-form select,
.dokan-store-products-filter-bar select {
    background: rgba(9, 9, 11, 0.7) !important;
    border: 1px solid var(--neo-border) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-family: 'Outfit', sans-serif !important;
}

/* ==========================================================================
   16. WooCommerce Product Grid
   ========================================================================== */
.woocommerce ul.products li.product {
    background: var(--neo-surface) !important;
    border: 1px solid var(--neo-border) !important;
    border-radius: 22px !important;
    padding: 15px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(225, 29, 72, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--neo-text-main) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 12px 0 4px !important;
}

.woocommerce ul.products li.product .price {
    color: var(--neo-accent) !important;
    font-weight: 800 !important;
}

.woocommerce ul.products li.product a.button {
    background: var(--neo-accent) !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
}

/* ==========================================================================
   17. Pagination
   ========================================================================== */
.neo-pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.neo-pagination-wrapper .page-numbers,
.dokan-content-nav .page-numbers {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--neo-surface);
    border: 1px solid var(--neo-border);
    color: var(--neo-text-muted);
    text-decoration: none;
    font-weight: 600;
    margin: 0 3px;
    transition: all 0.3s;
}

.neo-pagination-wrapper .page-numbers.current,
.dokan-content-nav .page-numbers.current {
    background: var(--neo-accent);
    border-color: var(--neo-accent);
    color: #fff;
    box-shadow: 0 0 18px var(--neo-accent-glow);
}

.neo-pagination-wrapper .page-numbers:hover:not(.current) {
    color: #fff;
    border-color: var(--neo-accent);
}

/* ==========================================================================
   18. Empty State
   ========================================================================== */
.seller-items .stm-request-part__glass[style*="text-align: center"] {
    text-align: center;
    padding: 60px 20px;
}

/* ==========================================================================
   19. Footer
   ========================================================================== */
footer#footer,
.site-footer {
    background: #000 !important;
    border-top: 1px solid var(--neo-border) !important;
}

/* ==========================================================================
   20. Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .neo-floating-avatar {
        top: -40px;
        inset-inline-start: 20px;
        width: 80px;
        height: 80px;
    }

    .neo-profile-actions {
        top: -38px;
        inset-inline-end: 20px;
    }

    .neo-action-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .store-name {
        font-size: 22px !important;
    }

    .neo-hours-card__header {
        flex-direction: column;
    }

    .neo-hours-card__details {
        min-width: 0;
    }

    .neo-profile-card {
        padding: 52px 20px 24px !important;
        border-radius: 24px !important;
    }

    .neo-store-banner {
        height: 260px;
        border-radius: 24px;
    }

    .neo-store-header-content {
        margin-top: -42px;
        padding-inline: 12px;
    }

    body.dokan-store-page .neo-store-banner {
        border-radius: 24px !important;
        min-height: 300px !important;
    }

    body.dokan-store-page .neo-store-header-content {
        margin-top: -42px;
        padding-inline: 12px;
    }

    body.dokan-store-page .neo-profile-card {
        border-radius: 24px !important;
        padding: 52px 20px 24px !important;
    }

    body.motors-website-ui.dokan-store-page .neo-profile-card,
    body.motors-website-ui.dokan-store-page .neo-store-header-content .neo-profile-card {
        border-radius: 24px !important;
        padding: 52px 20px 24px !important;
    }

    .neo-makes-section--hero {
        margin-top: 14px;
    }

    .neo-makes-section--hero .neo-make-chip {
        width: 54px;
        height: 54px;
        border-radius: 14px;
    }

    .neo-makes-details {
        margin-top: 10px;
    }

    .neo-stats-row {
        flex-direction: column;
    }

    .neo-stat-item+.neo-stat-item {
        border-left: none;
        border-top: 1px solid var(--neo-border);
    }
}

/* Vibrant Commercial Dokan Storefront Overrides */
body.dokan-store-page,
body.motors-website-ui.dokan-store-page {
    --neo-bg: #f8fafc;
    --neo-surface: rgba(255, 255, 255, 0.98);
    --neo-border: rgba(15, 23, 42, 0.06);
    --neo-accent: #2563eb;
    --neo-accent-glow: rgba(37, 99, 235, 0.25);
    --neo-text-main: #0f172a;
    --neo-text-muted: #64748b;

    background: var(--neo-bg) !important;
    background-image:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 22%),
        radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.04), transparent 18%) !important;
    color: var(--neo-text-main) !important;
}

body.dokan-store-page::before,
body.dokan-store-page::after,
body.dokan-store-page .stm-request-part-neo::before {
    display: none !important;
}

body.dokan-store-page .neo-store-banner {
    background: linear-gradient(135deg, #2563eb, #8b5cf6) !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15) !important;
}

body.dokan-store-page .neo-store-banner::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 40%);
}

body.dokan-store-page .neo-store-banner::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

body.dokan-store-page .neo-profile-card,
body.motors-website-ui.dokan-store-page .neo-profile-card,
body.motors-website-ui.dokan-store-page .neo-store-header-content .neo-profile-card {
    background: var(--neo-surface) !important;
    border: 1px solid var(--neo-border) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06) !important;
}

body.dokan-store-page .neo-floating-avatar {
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    background: #ffffff;
}

body.dokan-store-page .neo-action-btn {
    border: none !important;
    backdrop-filter: none;
}

body.dokan-store-page .neo-action-btn.call {
    background: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25) !important;
}

body.dokan-store-page .neo-action-btn.wa {
    background: #22c55e !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.25) !important;
}

body.dokan-store-page .neo-action-btn.sms {
    background: #8b5cf6 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.25) !important;
}

body.dokan-store-page .neo-store-request-cta .stm-request-part__btn-neo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 48%, #f97316 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 18px 34px rgba(239, 68, 68, 0.22) !important;
}

body.dokan-store-page .neo-store-request-cta .stm-request-part__btn-neo .btn-text {
    color: #ffffff !important;
}

body.dokan-store-page .store-name,
body.dokan-store-page .gradient-text.store-name,
body.dokan-store-page .neo-profile-name-block .store-name {
    color: var(--neo-text-main) !important;
    background: none !important;
    -webkit-text-fill-color: var(--neo-text-main) !important;
    text-shadow: none !important;
}

/* Final store CTA override: beats website-ui + neo-luxury button rules */
html body.motors-website-ui.dokan-store-page .neo-store-request-cta {
    margin-top: 16px !important;
    display: flex !important;
    justify-content: flex-start !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: min(100%, 292px) !important;
    max-width: 100% !important;
    min-height: 54px !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 52%, #f97316 100%) !important;
    box-shadow: 0 18px 30px rgba(220, 38, 38, 0.24) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: start !important;
    transform: none !important;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 26%) !important;
    pointer-events: none !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary:hover,
html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary:focus-visible {
    background: linear-gradient(135deg, #f25b5b 0%, #e53935 52%, #fb923c 100%) !important;
    box-shadow: 0 22px 36px rgba(220, 38, 38, 0.3) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    filter: saturate(1.05) !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary .btn-icon,
html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary .btn-arrow {
    position: relative !important;
    z-index: 1 !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary .btn-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff4df !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary .btn-arrow {
    width: 26px !important;
    height: 26px !important;
    margin-inline-start: auto !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(250, 244, 236, 0.88) !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary .btn-text {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.3 !important;
}

html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary .btn-glow {
    position: absolute !important;
    inset-inline-start: 18px !important;
    inset-inline-end: 18px !important;
    bottom: 8px !important;
    height: 16px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    filter: blur(12px) !important;
    opacity: 0.9 !important;
    pointer-events: none !important;
}

@media (max-width: 767px) {
    html body.motors-website-ui.dokan-store-page .neo-store-request-cta {
        justify-content: stretch !important;
    }

    html body.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary {
        width: 100% !important;
        min-width: 0 !important;
    }
}

body.dokan-store-page .neo-badge {
    background: rgba(37, 99, 235, 0.1) !important;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    color: #2563eb !important;
}

body.dokan-store-page .neo-store-location-inline,
body.dokan-store-page .neo-about-text,
body.dokan-store-page .neo-hours-card__summary,
body.dokan-store-page .neo-hours-card__line,
body.dokan-store-page .neo-store-info-list li,
body.dokan-store-page .neo-store-info-list a {
    color: var(--neo-text-muted) !important;
}

body.dokan-store-page .neo-store-location-inline i,
body.dokan-store-page .neo-about-heading i,
body.dokan-store-page .neo-makes-heading i {
    color: #2563eb !important;
}

body.dokan-store-page .neo-stats-row,
body.dokan-store-page .neo-hours-card,
body.dokan-store-page .neo-store-times-dropdown,
body.dokan-store-page .neo-make-chip,
body.dokan-store-page .neo-social-icon {
    background: #ffffff !important;
    border: 1px solid var(--neo-border) !important;
}

body.dokan-store-page .neo-stat-item+.neo-stat-item {
    border-color: var(--neo-border) !important;
}

body.dokan-store-page .neo-stat-value,
body.dokan-store-page .neo-hours-card__eyebrow,
body.dokan-store-page .neo-about-heading,
body.dokan-store-page .neo-makes-heading {
    color: var(--neo-text-main) !important;
}

/* ==========================================================================
   RTL Overrides — site-rtl body class
   In direction:rtl, flex-start = visual RIGHT edge, flex-end = visual LEFT.
   All alignment below uses the correct logical/visual mapping.
   ========================================================================== */

/* Profile name block: column flex, start = right in RTL */
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-name-block,
body.site-rtl.dokan-store-page .neo-profile-name-block {
    align-items: flex-start !important;
    text-align: right !important;
    width: 100% !important;
}

/* Badge & store name: right-aligned text, no float hacks */
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-name-block .neo-badge,
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-name-block .store-name,
body.site-rtl.dokan-store-page .neo-profile-name-block .neo-badge,
body.site-rtl.dokan-store-page .neo-profile-name-block .store-name {
    text-align: right !important;
    align-self: flex-start !important;
    float: none !important;
    clear: none !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    max-width: 100% !important;
}

/* Main content column: right-start in RTL, full width */
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-card__main,
body.site-rtl.dokan-store-page .neo-profile-card__main {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: right !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Location row: keep natural RTL direction, start from right */
body.site-rtl.motors-website-ui.dokan-store-page .neo-store-location-inline,
body.site-rtl.dokan-store-page .neo-store-location-inline {
    justify-content: flex-start !important;
    text-align: right !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Makes section: full-width, right-start */
body.site-rtl.motors-website-ui.dokan-store-page .neo-makes-section--hero,
body.site-rtl.dokan-store-page .neo-makes-section--hero {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
}

/* Makes heading: row, start from right in RTL */
body.site-rtl.motors-website-ui.dokan-store-page .neo-makes-section--hero .neo-makes-heading,
body.site-rtl.dokan-store-page .neo-makes-section--hero .neo-makes-heading {
    justify-content: flex-start !important;
    text-align: right !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
}

/* Makes chips row: start = right in RTL */
body.site-rtl.motors-website-ui.dokan-store-page .neo-makes-section--hero .neo-makes-scroll--preview,
body.site-rtl.motors-website-ui.dokan-store-page .neo-makes-section--hero .neo-makes-scroll--full,
body.site-rtl.dokan-store-page .neo-makes-section--hero .neo-makes-scroll--preview,
body.site-rtl.dokan-store-page .neo-makes-section--hero .neo-makes-scroll--full {
    direction: rtl !important;
    justify-content: flex-start !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* CTA wrapper: full width, align button to right (start in RTL) */
body.site-rtl.motors-website-ui.dokan-store-page .neo-store-request-cta,
body.site-rtl.dokan-store-page .neo-store-request-cta {
    justify-content: flex-start !important;
    text-align: right !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
}

/* CTA button: no auto-margin tricks, let it sit at start (right in RTL) */
body.site-rtl.motors-website-ui.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary,
body.site-rtl.dokan-store-page .neo-store-request-cta a.stm-request-part__btn-neo.primary {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
}

/* Grid: stretch aside and footer */
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-card__grid,
body.site-rtl.dokan-store-page .neo-profile-card__grid {
    justify-items: stretch !important;
}

body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-card__aside,
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-card__footer,
body.site-rtl.dokan-store-page .neo-profile-card__aside,
body.site-rtl.dokan-store-page .neo-profile-card__footer {
    justify-self: stretch !important;
}

/* Clearfix no longer needed since we removed float hacks */
body.site-rtl.motors-website-ui.dokan-store-page .neo-profile-name-block::after,
body.site-rtl.dokan-store-page .neo-profile-name-block::after,
body.site-rtl.motors-website-ui.dokan-store-page .neo-makes-section--hero::after,
body.site-rtl.dokan-store-page .neo-makes-section--hero::after {
    content: none !important;
    display: none !important;
}

body.dokan-store-page .neo-social-icon {
    color: var(--neo-text-muted) !important;
}

body.dokan-store-page .neo-social-icon:hover {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
}

body.dokan-store-page .neo-profile-card__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

body.dokan-store-page .neo-profile-card__main,
body.dokan-store-page .neo-profile-card__aside,
body.dokan-store-page .neo-profile-card__footer {
    min-width: 0;
}

body.dokan-store-page .neo-profile-card__aside {
    display: grid;
    align-content: start;
    gap: 18px;
    grid-column: 1;
}

body.dokan-store-page .neo-profile-card__footer {
    border-top: 1px solid var(--neo-border);
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 22px;
}

@media (max-width: 980px) {
    body.dokan-store-page .neo-profile-card__grid {
        grid-template-columns: 1fr;
    }

    body.dokan-store-page .neo-profile-card__footer {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    body.dokan-store-page .neo-profile-card__footer {
        padding-top: 18px;
    }
}

/* Tabs & Forms bright theme */
body.dokan-store-page .neo-store-tabs,
body.dokan-store-page .dokan-store-products-filter-bar,
body.dokan-store-page .dokan-store-search-form {
    background: #ffffff !important;
    border-color: var(--neo-border) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03) !important;
}

body.dokan-store-page .neo-tabs-list li a {
    color: var(--neo-text-muted) !important;
}

body.dokan-store-page .neo-tabs-list li.active a {
    background: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25) !important;
}

body.dokan-store-page .neo-tabs-list li:hover:not(.active) a {
    background: #f1f5f9 !important;
    color: var(--neo-text-main) !important;
}

body.dokan-store-page .woocommerce ul.products li.product {
    background: #ffffff !important;
    border-color: var(--neo-border) !important;
}

body.dokan-store-page .woocommerce ul.products li.product:hover {
    border-color: #2563eb !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06) !important;
}

body.dokan-store-page .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--neo-text-main) !important;
}

body.dokan-store-page .woocommerce ul.products li.product .price {
    color: #2563eb !important;
}

body.dokan-store-page .woocommerce ul.products li.product a.button {
    background: #f1f5f9 !important;
    color: #2563eb !important;
}

body.dokan-store-page .woocommerce ul.products li.product a.button:hover {
    background: #2563eb !important;
    color: #ffffff !important;
}