/* ── Service Categories Section ────────────────────────────────────────── */
.service-cats-section {
    padding: 70px 0;
    background: #f4f6f9;
}

.service-cats-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-cat-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.service-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    color: #333;
    border-color: var(--accent-color);
}

.service-cat-icon {
    color: var(--accent-color);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0,150,60,0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cat-body {
    flex: 1;
    min-width: 0;
}

.service-cat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
    color: #1a1a1a;
}

.service-cat-desc {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-cat-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.service-cat-card:hover .service-cat-cta {
    gap: 8px;
}

@media (max-width: 767px) {
    .service-cats-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .service-cat-card {
        padding: 18px 16px;
    }
}

/* ── End Service Categories ─────────────────────────────────────────────── */

.cta-boxes-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.cta-box {
    background: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.cta-box:hover {
    border-bottom-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: #222;
}

.cta-box-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.cta-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.reviews-section {
    padding: 60px 0;
    background: #fff;
}

.reviews-carousel {
    position: relative;
}

/* --- JS-enabled carousel mode --- */
.js-reviews {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

@keyframes reviews-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* No-JS default: wrapping flex row (all cards visible) */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* JS-enabled: single-row track with infinite scroll */
.js-reviews .reviews-grid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    animation: reviews-scroll var(--reviews-scroll-duration, 40s) linear infinite;
}

.js-reviews.paused .reviews-grid {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .js-reviews .reviews-grid {
        animation: none;
    }
    .js-reviews {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.review-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s;
    flex: 0 0 300px;
    width: 300px;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.review-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

.review-quote-full { display: none; }
.review-quote-wrap.expanded .review-quote-short { display: none; }
.review-quote-wrap.expanded .review-quote-full { display: inline; }
.review-readmore-btn {
    display: block;
    margin-top: 6px;
    padding: 0;
    background: none;
    border: none;
    color: #0d6efd;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;
    text-decoration: underline;
}
.review-readmore-btn:hover { color: #084298; }

/* ── Review Card — Customer Avatar ─────────────────────────────── */
.review-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.review-avatar-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.review-avatar-initial {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    line-height: 1;
}

/* ── Happy Customers Gallery Section ────────────────────────────── */
.happy-customers-section {
    padding: 60px 0 0;
    background: #fff;
}

.happy-marquee-outer {
    margin-top: 32px;
    overflow: hidden;
    width: 100%;
    padding-bottom: 60px;
}

.happy-marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: happyScroll 40s linear infinite;
}

.happy-marquee-outer:hover .happy-marquee-track {
    animation-play-state: paused;
}

.happy-marquee-outer.no-loop {
    padding-bottom: 0;
}
.happy-marquee-outer.no-loop .happy-marquee-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes happyScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.happy-customer-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}

.happy-customer-item:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.happy-customer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.happy-customer-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 24px 10px 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .happy-customer-item {
        width: 160px;
        height: 160px;
    }
    .happy-marquee-track {
        gap: 10px;
    }
}

.dual-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dual-cta-card {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dual-cta-sell {
    background: var(--dark-bg);
    opacity: 0.85;
}

.dual-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.dual-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.dual-cta-content h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.inventory-strip-section {
    padding: 60px 0;
    background: #fff;
}

.inventory-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.inventory-strip-item {
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    transition: transform 0.2s;
}

.inventory-strip-item:hover {
    transform: scale(1.05);
}

.inventory-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip-no-img {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.service-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.service-card-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* ── Homepage "Latest Car Buying Tips" blog preview cards ──────────────── */
.blog-preview-section {
    padding: 60px 0;
    background: #fff;
}

.blog-preview-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.blog-preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-preview-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    font-size: 3rem;
    color: #dee2e6;
}

.blog-preview-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.blog-preview-date {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.blog-preview-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.blog-preview-excerpt {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
}

.blog-preview-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

.map-section {
    background: var(--dark-bg);
}

.map-header {
    text-align: center;
    padding: 40px 20px 20px;
}

.map-header h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.map-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.map-embed iframe {
    display: block;
    width: 100%;
}

.site-footer {
    margin-top: 0;
}

.footer-top {
    background: var(--dark-bg);
    color: #fff;
    padding: 50px 0 30px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: #fff;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

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

.footer-bottom {
    background: #12121f;
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .featured-card {
        flex-basis: calc((100% - 24px) / 2);
    }
    .cta-boxes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .body-style-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .inventory-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 0;
        height: 420px;
    }
    .hero-slide-img,
    .hero-section .carousel-inner img {
        height: 420px;
    }
    .hero-section .carousel,
    .hero-section .carousel-inner {
        height: 420px;
    }
    .hero-section .carousel-item {
        height: 420px;
    }
    .hero-placeholder {
        height: 420px;
    }
    .hero-overlay {
        top: 50%;
        padding: 0 16px;
    }
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    .btn-hero,
    .hero-buttons .btn-outline-light {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
    .hero-search-form {
        flex-direction: column;
        gap: 8px;
    }
    .search-field {
        min-width: 100%;
    }
    .featured-card {
        flex-basis: 85%;
    }
    .featured-carousel-arrow {
        display: none;
    }
    .cta-boxes-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        flex: 0 0 260px;
        width: 260px;
    }
    .js-reviews {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .dual-cta-grid {
        grid-template-columns: 1fr;
    }
    .dual-cta-card {
        height: 200px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .body-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .browse-by-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .inventory-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title-center {
        font-size: 1.4rem;
    }
}

/* Inline Editing Styles */
[data-editable] {
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 2px 4px;
    border-radius: 4px;
}

[data-editable]:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

[data-editable].editing {
    background-color: transparent;
    cursor: default;
}

.edit-icon {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.edit-icon:hover {
    opacity: 1;
}

/* Toast Notification Styles */
.toast-container {
    z-index: 9999;
}

.toast {
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast-body {
    padding: 1rem;
}

.toast .btn-close {
    padding: 0.5rem;
}

/* Editable content types */
[data-content-type="textarea"] {
    display: block;
    min-height: 60px;
}

[data-content-type="url"] {
    color: var(--primary-color);
    text-decoration: underline;
}

[data-content-type="email"] {
    color: var(--info-color);
}

[data-content-type="phone"] {
    font-weight: 500;
}

.text-white-50:hover {
    color: rgba(255, 255, 255, 0.75) !important;
}

:root {
    /* Ovi Motors — Admin Panel Tokens (distinct namespace from public-site --primary-color/--accent-color) */
    --sk-blue: #1a56db;
    --sk-blue-dark: #123f9e;
    --sk-blue-light: #e8f0fe;

    --sk-green: #4caf50;
    --sk-green-dark: #2d6a2d;
    --sk-green-light: #e8f5e9;

    --sk-red: #e53935;
    --sk-red-dark: #c62828;
    --sk-red-light: #fdecea;

    --sk-white: #ffffff;

    --sk-gray-50:  #f8f9fa;
    --sk-gray-100: #f5f6fa;
    --sk-gray-200: #e8e8e8;
    --sk-gray-300: #dcdce3;
    --sk-gray-400: #c0c0cc;
    --sk-gray-500: #8c8c9a;
    --sk-gray-600: #5a5a72;
    --sk-gray-700: #3a3a4a;
    --sk-gray-900: #1a1a2e;
}

.admin-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    background: #f5f6fa;
}

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-main {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.sidebar-brand {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-brand h6 {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: #1a1a2e;
}

.sidebar-brand small {
    color: #8c8c9a;
    font-size: 0.75rem;
}

.sidebar-section { border-bottom: 1px solid #f0f0f0; }

.sidebar-nav-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c8c9a;
    padding: 13px 20px 13px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s, background 0.15s;
}

.sidebar-nav-label:hover {
    color: #1a1a2e;
    background: #f9f9fb;
}

.sidebar-nav-label .snl-chevron {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    color: #c0c0cc;
}

.sidebar-section.open .snl-chevron {
    transform: rotate(180deg);
    color: #4caf50;
}

.sidebar-section.open .sidebar-nav-label {
    color: #1a1a2e;
}

.sidebar-section-items {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
}

.sidebar-section.open .sidebar-section-items {
    max-height: 1200px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #5a5a72;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s;
    border-radius: 0;
    margin: 1px 0;
}

.admin-nav-item:hover {
    background: #f0f7f0;
    color: #2d6a2d;
}

.admin-nav-item.active {
    background: #e8f5e9;
    color: #2d6a2d;
    font-weight: 600;
    border-left: 3px solid #4caf50;
}

.admin-nav-item i {
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
}

.sidebar-user {
    position: sticky;
    bottom: 0;
    padding: 16px 20px;
    border-top: 1px solid #e8e8e8;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-stat-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.2s;
}

.admin-stat-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.admin-stat-card .stat-label {
    font-size: 0.82rem;
    color: #8c8c9a;
    font-weight: 500;
    margin-bottom: 4px;
}

.admin-stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.admin-stat-card .stat-sub {
    font-size: 0.75rem;
    color: #aaa;
}

.admin-stat-card .stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.admin-stat-card .stat-icon-wrap.icon-green {
    background: #e8f5e9;
    color: #4caf50;
}

.admin-stat-card .stat-icon-wrap.icon-orange {
    background: #fef3e2;
    color: #f5a524;
}

.admin-stat-card .stat-icon-wrap.icon-red {
    background: #fce4ec;
    color: #e53935;
}

.admin-stat-card .stat-icon-wrap.icon-blue {
    background: #e3f2fd;
    color: var(--sk-blue);
}

.admin-stat-card .stat-icon-wrap.icon-purple {
    background: #eef0fd;
    color: #5b6fd8;
}
.admin-stat-card .stat-icon-wrap.icon-teal {
    background: #e0f2f1;
    color: #00897b;
}

.notif-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.notif-orange { background: #fef3e2; color: #f5a524; }
.notif-teal   { background: #e0f2f1; color: #00897b; }
.notif-blue   { background: var(--sk-blue-light); color: var(--sk-blue); }
.notif-purple { background: #eef0fd; color: #5b6fd8; }
.notif-green  { background: var(--sk-green-light); color: var(--sk-green-dark); }

.notif-row:hover { background: #f9fafb; }
.notif-row { transition: background 0.15s; }

.admin-page-header {
    margin-bottom: 24px;
}

.admin-page-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.admin-page-header p {
    color: #8c8c9a;
    font-size: 0.88rem;
    margin: 4px 0 0;
}

.admin-section-header {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8e8e8;
}

.admin-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.admin-card .admin-card-header {
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    border-bottom: 1px solid #e8e8e8;
}

.admin-card .admin-card-body {
    padding: 20px;
}

.admin-table {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.admin-table .table {
    margin-bottom: 0;
}

.admin-table .table thead th {
    background: #f8f9fa;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8c8c9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 16px;
}

.admin-table .table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 0.88rem;
    color: #3a3a4a;
    border-color: #f0f0f0;
}

.admin-table .table tbody tr:hover {
    background: #f8f9fa;
}

.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .admin-table .table thead th,
    .admin-table .table tbody td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

.admin-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #8c8c9a;
}

.admin-breadcrumb a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.admin-breadcrumb a:hover {
    text-decoration: underline;
}

.admin-breadcrumb .separator {
    margin: 0 2px;
}

.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.admin-quick-actions .btn {
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
}

