:root {
    --primary-color: #7a1bb4;
    --primary-light: #ab47bc;
    --primary-dark: #5a3ac5;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --text-muted: #6c757d;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-hover: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
/* Breadcrumb Custom Styles */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    overflow: hidden;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 4px 0;
    gap: 8px;
    min-height: 28px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.breadcrumb-container::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    color: #7a1bb4;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    background: transparent;
}

.breadcrumb-item:hover {
    color: #5a3ac5;
    background-color: rgba(122, 27, 180, 0.1);
    text-decoration: none;
}

.breadcrumb-item.current {
    color: #6c757d;
    background-color: transparent;
    font-weight: 600;
    cursor: default;
}

.breadcrumb-item.current:hover {
    background-color: transparent;
}

.breadcrumb-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.breadcrumb-link:hover {
    text-decoration: none;
    color: inherit;
}

.breadcrumb-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: block;
}

.breadcrumb-separator {
    color: #6c757d;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin: 0 2px;
}

/* Mobile First Styles */
@media (max-width: 767px) {
    .breadcrumb-container {
        gap: 6px;
        padding: 2px 0;
    }

    .breadcrumb-item {
        font-size: 13px;
        padding: 3px 6px;
    }

    .breadcrumb-text {
        max-width: 100px;
    }

    .breadcrumb-separator {
        font-size: 14px;
        margin: 0 1px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .breadcrumb-container {
        gap: 4px;
    }

    .breadcrumb-item {
        font-size: 12px;
        padding: 2px 4px;
    }

    .breadcrumb-text {
        max-width: 80px;
    }

    .breadcrumb-separator {
        font-size: 12px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .breadcrumb-text {
        max-width: 70px;
    }

    .breadcrumb-item {
        font-size: 11px;
        padding: 1px 3px;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .breadcrumb-container {
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 12px;
    }

    .breadcrumb-item {
        font-size: 15px;
        padding: 6px 12px;
    }

    .breadcrumb-text {
        max-width: none;
    }

    .breadcrumb-separator {
        font-size: 18px;
        margin: 0 4px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .breadcrumb-item {
        font-size: 16px;
    }
}

/* Animation for better UX */
.breadcrumb-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb-item:not(.current):hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(122, 27, 180, 0.15);
}

/* Focus styles for accessibility */
.breadcrumb-item:focus {
    outline: 2px solid #7a1bb4;
    outline-offset: 2px;
}

/* Loading state */
.breadcrumb-container.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Ensure proper contrast for accessibility */
.breadcrumb-item.current {
    color: #495057;
}

/* Smooth scrolling behavior */
.breadcrumb-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .breadcrumb-item:active {
        background-color: rgba(122, 27, 180, 0.15);
        transform: scale(0.98);
    }

    .breadcrumb-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Print styles */
@media print {
    .breadcrumb-section {
        background: white !important;
        border-bottom: 1px solid #ccc !important;
    }

    .breadcrumb-item {
        color: black !important;
        background: transparent !important;
    }

    .breadcrumb-separator {
        color: black !important;
    }
}
/* Enhanced Sidebar Styles */
.sidebar-sticky {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.sidebar-card .card-header {
    border: none;
    font-weight: 600;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Store Quick Actions Card */
.store-sidebar-image {
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.store-sidebar-image:hover {
    transform: scale(1.05);
}

.quick-actions .btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-actions .btn:hover {
    transform: translateY(-2px);
}

/* Store Stats */
.stats-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-circle .stat-number {
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(122, 27, 180, 0.3);
    transition: all 0.3s ease;
}

.stat-circle:hover .stat-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(122, 27, 180, 0.4);
}

.mini-stat {
    padding: 0.5rem;
}

.mini-stat-number {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Filter Options */
.filter-options .btn {
    text-align: left;
    padding: 0.75rem 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-options .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.filter-options .btn:not(.active):hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-options .btn .badge {
    transition: all 0.3s ease;
}

.filter-options .btn:hover .badge {
    transform: scale(1.1);
}

.filter-subtitle {
    color: var(--primary-dark);
    font-size: 0.9rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 0.5rem;
}

/* Related Stores */
.related-store-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 10px !important;
}

.related-store-item.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
    background: white !important;
}

.related-store-image {
    transition: transform 0.3s ease;
}

.related-store-item:hover .related-store-image {
    transform: scale(1.1);
}

.related-store-info {
    flex: 1;
}

.related-store-name {
    color: #333;
    transition: color 0.3s ease;
}

.related-store-item:hover .related-store-name {
    color: var(--primary-color) !important;
}

.related-store-meta {
    font-size: 0.75rem;
}

.related-store-item .fa-chevron-right {
    transition: transform 0.3s ease;
}

.related-store-item:hover .fa-chevron-right {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* Store Header Mobile Layout */
.store-header-section .store-logo {
    max-width: 80px;
    border: 3px solid var(--light-bg);
    transition: transform 0.3s ease;
}

.store-header-section .store-logo:hover {
    transform: scale(1.05);
}

.store-header-section .store-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.store-header-section .store-rating {
    font-size: 0.9rem;
}

.store-header-section .store-tagline {
    font-size: 0.9rem;
}
/* Store Model */
.bg-purple {
    background-color: var(--primary-color) !important;
}

.text-purple {
    color: var(--primary-color) !important;
}
/* Responsive Design */
@media (max-width: 768px) {
    .store-header-section .store-title {
        font-size: 1.25rem;
    }

    .store-header-section .store-logo {
        max-width: 60px;
    }

    .sidebar-sticky {
        position: static;
        margin-top: 2rem;
    }

    .sidebar-card {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 769px) {
    .store-header-section .store-title {
        font-size: 2rem;
    }
}

/* Animation for sidebar elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card {
    animation: fadeInUp 0.6s ease;
}

.sidebar-card:nth-child(1) { animation-delay: 0.1s; }
.sidebar-card:nth-child(2) { animation-delay: 0.2s; }
.sidebar-card:nth-child(3) { animation-delay: 0.3s; }
.sidebar-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(122, 27, 180, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(122, 27, 180, 0.3);
}

/* Badge enhancements */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Loading animation for stats */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-circle .stat-number {
    animation: pulse 2s infinite;
}

/* Mobile-specific adjustments */
@media (max-width: 576px) {
    .store-header-section .row {
        align-items: flex-start;
    }

    .store-header-section .store-info {
        text-align: right;
    }

    .store-header-section .store-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .store-header-section .store-rating {
        justify-content: flex-end;
    }

    .store-header-section .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Ensure proper spacing on very small devices */
@media (max-width: 360px) {
    .store-header-section .store-logo {
        max-width: 50px;
    }

    .store-header-section .store-title {
        font-size: 1rem;
    }

    .sidebar-card .card-body {
        padding: 1rem;
    }
}



