/* ==========================================
   EASYPARA ENHANCED DESIGN SYSTEM
   ========================================== */

/* Enhanced CSS Variables */
:root {
    --primary-teal: #1a5f4f;
    --primary-teal-light: #4a9b8e;
    --primary-teal-dark: #145246;
    --secondary-coral: #FF7F7F;
    --secondary-coral-dark: #E65C5C;
    --accent-red: #E74C3C;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffa500;
    --primary-green: #22c55e;
    --primary-yellow: #fbbf24;
    --danger-red: #dc3545;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --medium-gray: #6C757D;
    --dark-gray: #333333;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #777777;
    --text-lighter: #999999;
    --border-light: #E9ECEF;
    --border-medium: #ddd;
    --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --border-radius-small: 4px;
    --border-radius-large: 20px;
    --transition: all 0.2s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --product-image-height: 180px;
    --teal-alpha-05: rgba(26, 95, 79, 0.05);
    --teal-alpha-08: rgba(26, 95, 79, 0.08);
    --teal-alpha-10: rgba(26, 95, 79, 0.10);
    --teal-alpha-15: rgba(26, 95, 79, 0.15);
    --teal-alpha-20: rgba(26, 95, 79, 0.20);
    --teal-alpha-25: rgba(26, 95, 79, 0.25);
}

/* Enhanced Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-light));
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar-item:hover {
    transform: translateY(-1px);
}

.top-bar-item i {
    font-size: 16px;
    opacity: 0.9;
}

/* Enhanced Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Enhanced Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: var(--transition);
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Search */
.search-container {
    flex: 1;
    max-width: 500px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-large);
    font-size: 16px;
    transition: var(--transition);
    background: var(--light-gray);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--teal-alpha-10);
}

.search-btn {
    position: absolute;
    right: 8px;
    padding: 12px 16px;
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-large);
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.search-btn:hover {
    background: var(--primary-teal-light);
    transform: scale(1.05);
}

/* Enhanced User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--light-gray);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.user-action:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.user-action i {
    font-size: 18px;
}

/* Enhanced Cart Count */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Enhanced Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 92px;
    z-index: 999;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-teal);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-teal);
    background: var(--teal-alpha-05);
}

.nav-highlight {
    background: var(--primary-teal);
    color: var(--white);
    border-radius: var(--border-radius);
    margin: 0 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-highlight:hover {
    background: var(--primary-teal-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-light));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    /* Replaces inline SVG data-URL with gradients to satisfy strict parsers */
    background:
        radial-gradient(1200px 600px at -10% -10%, rgba(255, 255, 255, 0.15), transparent 40%),
        radial-gradient(800px 400px at 110% 0%, rgba(255, 255, 255, 0.10), transparent 40%);
    opacity: 0.35;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-large);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-teal);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* NEW: Outline button variant matching theme */
.btn-outline {
    background: transparent;
    color: var(--primary-teal-dark);
    /* was #111111 */
    border: 2px solid var(--primary-teal-dark);
}

/* Ensure link-state consistency */
.btn-outline:link,
.btn-outline:visited {
    color: var(--primary-teal-dark);
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline:active {
    background: var(--primary-teal-dark);
    color: var(--white);
    border-color: var(--primary-teal-dark);
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

/* Enhanced Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   TYPOGRAPHY PARITY (Easypara-inspired)
   ========================================== */
/* Headings use League Spartan; body stays Inter */
h1,
h2,
h3,
h4,
h5,
h6,
.product-title {
    font-family: 'League Spartan', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.015em;
}

/* Enhanced Products Grid - COMPACT & MODERN */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* allow narrower cards to fit 5 per row */
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Force exactly 5 columns on large screens */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 480px;
    /* taller cards to accommodate content */
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
}

.product-card:focus-within {
    outline: 3px solid rgba(26, 95, 79, 0.25);
    outline-offset: 2px;
    box-shadow: 0 16px 40px rgba(26, 95, 79, 0.2), 0 0 0 4px rgba(26, 95, 79, 0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--teal-alpha-15);
    border-color: var(--primary-teal);
}

.product-card:hover::before {
    opacity: 0.05;
}

/* Floating Elements - ENHANCED */
.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-teal), var(--primary-teal-light), var(--accent-orange));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 0.2;
}

/* Product Card UI/UX enhancements */
.product-card {
    will-change: transform, box-shadow;
}

/* Keep CTA and price anchored at the bottom; support .product-content too */
.product-card .product-info,
.product-card .product-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px;
}

/* Push price to the very bottom; CTA follows it */
.product-card .product-info .product-price,
.product-card .product-content .product-price {
    margin-top: auto;
}

@media (min-width: 768px) {
    .product-card .product-card-actions {
        display: flex;
        gap: 10px;
        margin-top: 12px;
        width: 100%;
    }

    .product-card .product-info .product-btn-add,
    .product-card .product-info .product-btn-buy,
    .product-card .product-content .product-btn-add,
    .product-card .product-content .product-btn-buy {
        flex: 1;
        margin-top: 0;
        width: auto;
        padding: 12px 8px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        border: none;
        text-transform: none;
        white-space: nowrap;
    }
}

.product-btn-add {
    background: #f0faf8;
    color: #1a5f4f;
    border: 1.5px solid #1a5f4f !important;
}

.product-btn-buy {
    background: linear-gradient(135deg, #1a5f4f, #145246);
    color: white !important;
}

.product-btn-add:hover {
    background: #1a5f4f;
    color: white !important;
}

.product-btn-buy:hover {
    background: linear-gradient(135deg, #145246, #0d3d33);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 79, 0.2);
}

/* Ensure image area doesn't stretch and stays above */
.product-card .product-image {
    flex: 0 0 auto;
}

/* Keep product-info content inside the card and prevent overflow */
.product-card .product-info {
    min-height: 0;
    /* allow flex child to shrink within fixed-height card */
    overflow: hidden;
    /* clip any overflow just in case */
}

/* Also ensure any nested flex items can shrink without overflowing */
.product-card .product-info>* {
    min-height: 0;
}

/* Ensure alternate container also respects shrinking */
.product-card .product-content {
    min-height: 0;
    overflow: hidden;
}

.product-card .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .product-description,
.product-card .product-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .product-brand {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image actions (wishlist, quick view, compare) */
.product-image .card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
}

.product-card:hover .card-actions,
.product-card:focus-within .card-actions {
    opacity: 1;
    transform: translateY(0);
}

.icon-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}

.icon-btn:hover {
    transform: translateY(-2px);
    background: var(--white);
    box-shadow: 0 8px 20px var(--teal-alpha-15);
}

.icon-btn.is-active {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
    background: var(--teal-alpha-08);
}

/* Ribbon (top-left diagonal) */
.ribbon {
    position: absolute;
    top: 10px;
    left: -8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent-orange), #f7931e);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    transform: rotate(-12deg);
    box-shadow: 0 6px 16px rgba(247, 147, 30, 0.35);
    z-index: 3;
}

.ribbon::before,
.ribbon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    border: 6px solid transparent;
}

.ribbon::before {
    left: 6px;
    border-top-color: rgba(0, 0, 0, 0.15);
}

.ribbon::after {
    right: 6px;
    border-top-color: rgba(0, 0, 0, 0.15);
}

/* Stock badge (bottom-left on image) */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    width: fit-content;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.stock-badge.in-stock {
    background: rgba(34, 197, 94, 0.12);
    color: var(--primary-green);
    border-color: rgba(34, 197, 94, 0.25);
}

.stock-badge.low-stock {
    background: rgba(251, 191, 36, 0.15);
    color: #f59e0b;
    border-color: rgba(251, 191, 36, 0.35);
}

.stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.12);
    color: var(--danger-red);
    border-color: rgba(220, 53, 69, 0.25);
}

.product-card.out-of-stock .product-image img {
    filter: grayscale(0.2) opacity(0.8);
}

/* Price extras */
.save-badge {
    margin-left: auto;
    background: var(--teal-alpha-08);
    color: var(--primary-teal);
    border: 1px solid var(--teal-alpha-20);
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

/* NEW: Ensure image container can anchor overlays */
.product-image {
    position: relative;
}

/* NEW: Discount badge overlay (top-left on image) */
.product-card .discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    /* above ribbons/actions */
    padding: 8px 12px;
    border-radius: var(--border-radius-small);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    /* avoid blocking image hover */
    animation: pulse 2s infinite;
}

/* Savings text under prices (global) */
.product-card .savings,
.savings,
.savings-amount {
    display: block !important;
    width: 100% !important;
    font-size: 13px !important;
    color: var(--accent-red) !important;
    font-weight: 700 !important;
    margin-top: 6px !important;
    clear: both;
}

/* Detailed Price Styles */
.product-card .price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card .current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.product-card .current-price.discount-applied {
    color: var(--accent-red);
}

.product-card .old-price {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
}

/* Enhanced Discount Badge Overlay */
.product-card .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    pointer-events: none;
    text-transform: uppercase;
}

/* Focus ring for accessibility */
.product-card:focus-within {
    outline: 3px solid rgba(26, 95, 79, 0.25);
    outline-offset: 2px;
    box-shadow: 0 16px 40px rgba(26, 95, 79, 0.2), 0 0 0 4px rgba(26, 95, 79, 0.08);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .product-card,
    .product-image img,
    .discount-badge,
    .product-btn,
    .rating-stars i,
    .product-placeholder,
    .certification-badge {
        transition: none !important;
        animation: none !important;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .icon-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .ribbon {
        transform: rotate(-10deg);
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* Alias legacy class used in some grids */
.product-badge {
    /* legacy name in some views */
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 3;
    background: #e11d48;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

/* NEW: Image sizing and fit (avoid cropping by default)
   Use --product-image-fit: cover to allow cropping when uniform fills are desired. */
.product-card .product-image {
    /* keep existing position: relative; */
    height: var(--product-image-height, 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: var(--product-image-fit, contain);
    object-position: center;
}

/* Optional helper: add .product-image--cover on the container to opt into cover */
.product-card .product-image.product-image--cover img {
    object-fit: cover;
}

/* Ensure full-width Add to Cart button on brand page cards */
.product-card .product-actions {
    display: flex;
    justify-content: center;
}

.product-card .product-actions .product-btn {
    width: 80%;
    justify-content: center;
    /* keep icon/text centered */
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item.breadcrumb-item-light a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.breadcrumb-item-light.active {
    color: black;
}

.breadcrumb-item.active {
    color: white;
}