    /* Breadcrumb Section - Custom CSS */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb-nav {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    border-radius: 6px;
}

.breadcrumb-item:hover {
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-item.current {
    color: #495057;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item.current .breadcrumb-text {
    color: #d4af37;
}

.breadcrumb-text {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.breadcrumb-link:hover {
    color: #d4af37;
}

.breadcrumb-separator {
    color: #adb5bd;
    font-weight: 600;
    margin: 0 2px;
    user-select: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-container {
        font-size: 12px;
        gap: 6px;
    }

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

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

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

@media (max-width: 480px) {
    .breadcrumb-container {
        font-size: 11px;
    }

    .breadcrumb-text {
        font-size: 11px;
    }

    /* Hide some breadcrumbs on very small screens */
    .breadcrumb-item:nth-last-child(n+4) {
        display: none;
    }

    /* Show ellipsis for hidden items */
    .breadcrumb-container::before {
        content: '...';
        color: #adb5bd;
        margin-right: 6px;
    }
}

/* Animation for breadcrumb hover */
.breadcrumb-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f9e076);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.breadcrumb-item:hover::after {
    width: 80%;
}

.breadcrumb-item.current::after {
    width: 80%;
    background: linear-gradient(90deg, #d4af37, #f9e076);
}

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

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .breadcrumb-section {
        background: linear-gradient(135deg, #145f59 0%, #4a5568 100%);
        border-bottom-color: #4a5568;
    }

    .breadcrumb-item {
        color: #cbd5e0;
    }

    .breadcrumb-item:hover {
        background-color: rgba(212, 175, 55, 0.2);
    }

    .breadcrumb-item.current {
        color: #e2e8f0;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .breadcrumb-separator {
        color: #718096;
    }
}

/* Print styles */
@media print {
    .breadcrumb-section {
        background: none;
        border-bottom: 1px solid #000;
    }

    .breadcrumb-item {
        color: #000;
    }

    .breadcrumb-item:hover {
        background: none;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .breadcrumb-item {
        border: 1px solid currentColor;
    }

    .breadcrumb-item.current {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .breadcrumb-item {
        transition: none;
    }

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

    .breadcrumb-item::after {
        transition: none;
    }
}

/* Breadcrumb loading state */
.breadcrumb-container.loading .breadcrumb-text {
    color: transparent;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 3px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
    /* Enhanced Button Animations */
    @keyframes shine {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }

    .btn-shine {
        animation: shine 2s infinite;
    }

    /* Enhanced Card Hover Effects */
    .hover-lift {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Premium Badge Styling */
    .premium-badge .badge {
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    }

    /* Hot Offer Ribbon */
    .hot-offer-ribbon .ribbon {
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        z-index: 1;
    }

    /* Store Image Container */
    .store-image-container::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
        border-radius: 50%;
        z-index: -1;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.05);
            opacity: 0.8;
        }
    }

    /* Enhanced Modal Styles */
    .modal-content {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .ribbon-left {
        position: absolute;
        top: 20px;
        left: -35px;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 8px 40px;
        transform: rotate(-45deg);
        box-shadow: 0 4px 12px rgba(238, 90, 36, 0.3);
        z-index: 1000;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .ribbon-left-content {
        display: block;
        text-align: center;
    }

    /* Bounce Animation for Logo */
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }

    .bounce {
        animation: bounce 2s infinite;
    }

    /* Divider Lines */
    .divider-line {
        height: 2px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
        flex: 1;
    }

    /* Responsive Improvements */
    @media (max-width: 768px) {
        .coupon-card {
            margin-bottom: 1rem;
        }

        .hot-offer-ribbon .ribbon {
            transform: rotate(45deg) translate(20px, -8px) !important;
            font-size: 0.6rem !important;
            padding: 4px 12px !important;
        }
    }

    /* Accessibility Improvements */
    @media (prefers-reduced-motion: reduce) {
        .hover-lift,
        .btn-shine,
        .bounce {
            animation: none;
            transition: none;
        }

        .hover-lift:hover {
            transform: none;
        }
    }
