/**
 * NPL Sports Pro Theme - Universal Responsive Breadcrumb
 * Supports en, np, live languages.
 */

.breadcrumb-nav {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px; /* Modern Card Curve */
    padding: 12px 18px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.breadcrumb-container::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.breadcrumb-nav a {
    color: #0010a0; /* Brand Primary */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover { color: #dd0000; } /* Brand Secondary */

.breadcrumb-home::before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 6px;
}

.breadcrumb-separator {
    color: #cbd5e0;
    margin: 0 10px;
    font-size: 11px;
}

.current-item {
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

/* ============================================================
   RESPONSIVE STANDARDS (7 DEVICES)
   ============================================================ */

/* 1. Mobile Small (320px) */
@media (max-width: 320px) {
    .current-item { display: none; } /* Show only Home > Category */
    .breadcrumb-nav { padding: 8px 12px; }
}

/* 2. Mobile Medium (480px) */
@media (max-width: 480px) {
    .current-item { max-width: 100px; font-size: 13px; }
    .breadcrumb-nav a { font-size: 13px; }
}

/* 3. Mobile Large (640px) */
@media (max-width: 640px) {
    .current-item { max-width: 150px; }
}

/* 4. Tablet Portrait (768px) */
@media (max-width: 768px) {
    .current-item { max-width: 250px; }
}

/* 5. Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .current-item { max-width: 350px; }
}

/* 6. Laptop (1440px) */
@media (max-width: 1440px) {
    .current-item { max-width: 600px; }
}

/* 7. 4K & Large Monitors (1441px+) */
@media (min-width: 1441px) {
    .breadcrumb-nav { max-width: 1200px; margin-left: auto; margin-right: auto; }
    .current-item { max-width: 800px; }
}