    /* 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;
        }
    }
 /* for blog content*/
       /* Blog Content Container */
.blog-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    word-wrap: break-word;
}

/* Typography */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.3;
    color: #1a202c;
}

.blog-content h1 { font-size: 2.5rem; }
.blog-content h2 { font-size: 2rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.3em; }
.blog-content h3 { font-size: 1.75rem; }
.blog-content h4 { font-size: 1.5rem; }
.blog-content h5 { font-size: 1.25rem; }
.blog-content h6 { font-size: 1.1rem; }

/* Paragraphs */
.blog-content p {
    margin-bottom: 1.5em;
    text-align: justify;
}

/* Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1.5em 0;
    display: block;
}

/* Image with caption */
.blog-content figure {
    margin: 2em 0;
    text-align: center;
}

.blog-content figure img {
    margin: 0 auto;
}

.blog-content figcaption {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5em;
    font-style: italic;
}

/* Links */
.blog-content a {
    color: #3182ce;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: #2c5282;
    border-bottom-color: #3182ce;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.blog-content li {
    margin: 0.5em 0;
    line-height: 1.6;
}

.blog-content ul ul,
.blog-content ol ol,
.blog-content ul ol,
.blog-content ol ul {
    margin: 0.5em 0;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #3182ce;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    background: #f7fafc;
    border-radius: 8px;
    font-style: italic;
    color: #4a5568;
}

.blog-content blockquote p {
    margin-bottom: 0;
}

.blog-content blockquote cite {
    display: block;
    margin-top: 0.5em;
    font-size: 0.9rem;
    color: #718096;
}

/* Code blocks */
.blog-content pre {
    background: #2d3748;
    color: #f7fafc;
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5em 0;
    font-family: 'Courier New', 'SF Mono', Monaco, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-content code {
    background: #edf2f7;
    color: #e53e3e;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'Courier New', 'SF Mono', Monaco, monospace;
    font-size: 0.9em;
}

.blog-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Tables */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow-x: auto;
    display: block;
}

.blog-content th,
.blog-content td {
    border: 1px solid #e2e8f0;
    padding: 0.75em;
    text-align: left;
}

.blog-content th {
    background: #f7fafc;
    font-weight: 600;
}

.blog-content tr:nth-child(even) {
    background: #f9fafb;
}

/* Horizontal rule */
.blog-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
    margin: 2em 0;
}

/* Embedded content (videos, iframes) */
.blog-content iframe,
.blog-content video,
.blog-content embed {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5em 0;
    display: block;
}

/* Image alignment classes (if your editor supports these) */
.blog-content .align-left {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
    max-width: 40%;
}

.blog-content .align-right {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
    max-width: 40%;
}

.blog-content .align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.blog-content .align-none {
    display: block;
}

/* Clearfix for floated elements */
.blog-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive images */
@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-content h1 { font-size: 2rem; }
    .blog-content h2 { font-size: 1.75rem; }
    .blog-content h3 { font-size: 1.5rem; }
    .blog-content h4 { font-size: 1.25rem; }
    
    .blog-content .align-left,
    .blog-content .align-right {
        float: none;
        max-width: 100%;
        margin: 1em 0;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .blog-content {
        color: #e2e8f0;
    }
    
    .blog-content h1,
    .blog-content h2,
    .blog-content h3,
    .blog-content h4,
    .blog-content h5,
    .blog-content h6 {
        color: #f7fafc;
    }
    
    .blog-content blockquote {
        background: #2d3748;
        color: #cbd5e0;
    }
    
    .blog-content code {
        background: #4a5568;
        color: #fc8181;
    }
    
    .blog-content th {
        background: #4a5568;
    }
    
    .blog-content tr:nth-child(even) {
        background: #2d3748;
    }
}