/* ============================================
   Store 365 Custom Styles
   ============================================ */

/* ----------------------------
   General Styles
   ---------------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ----------------------------
   Navbar Styles
   ---------------------------- */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* ----------------------------
   Footer Styles
   ---------------------------- */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    margin-top: auto;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #667eea;
}

footer .social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

footer .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ----------------------------
   Product Card Styles
   ---------------------------- */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #f8f9fa;
}

/* Fix for product thumbnails in cards */
.product-card .product-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-card .product-thumbnail img,
.product-card .product-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .card-body {
    padding: 1.25rem;
}

/* ----------------------------
   Product Thumbnail Fixes
   ---------------------------- */
.product-thumbnail {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f9fa;
}

.product-thumbnail img,
.product-thumbnail video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* For products without images */
.product-thumbnail .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #adb5bd;
    font-size: 3rem;
}

/* ----------------------------
   Button Styles
   ---------------------------- */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-success {
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* ----------------------------
   Category Card Styles
   ---------------------------- */
.category-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.category-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* ----------------------------
   Hero Section
   ---------------------------- */
.hero-section {
    /* No border-radius - straight edges */
}

.hero-section .btn-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-light:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.hero-section .btn-outline-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* ----------------------------
   Cart Badge Animation
   ---------------------------- */
#cartBadge {
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ----------------------------
   Toast Notification
   ---------------------------- */
.toast {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ----------------------------
   Dropdown Submenu Styles
   ---------------------------- */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 0 6px 6px 6px;
    min-width: 200px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu:hover > .dropdown-toggle::after {
    transform: rotate(-90deg);
}

.dropdown-submenu .dropdown-toggle::after {
    transition: transform 0.2s ease;
    margin-left: auto;
}

/* For the dropdown toggle in submenu */
.dropdown-submenu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hover effect for submenu items */
.dropdown-submenu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* Active state */
.dropdown-submenu .dropdown-item:active {
    background-color: #0d6efd;
    color: white;
}

/* Hide arrow on submenu items */
.dropdown-submenu .dropdown-toggle::after {
    display: none !important;
}

/* Mobile responsive - for smaller screens */
@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 1.5rem;
        border-radius: 0 0 6px 6px;
        position: relative;
        width: 100%;
    }
    
    .dropdown-submenu .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    
    .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

/* ----------------------------
   Responsive Adjustments
   ---------------------------- */
@media (max-width: 768px) {
    .hero-section {
        border-radius: 0 0 25px 25px;
        min-height: 300px !important;
    }
    
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section .display-3 {
        font-size: 2rem;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* ----------------------------
   Chat Button Styles
   ---------------------------- */
.chat-toggle {
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2) !important;
}

.chat-floating {
    display: none !important;
    animation: bounceIn 0.5s ease;
}

/* Show floating chat button on mobile */
@media (max-width: 768px) {
    .chat-toggle {
        display: none !important;
    }
    
    .chat-floating {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    #chatBox {
        bottom: 90px !important;
        right: 10px !important;
        width: 95% !important;
    }
}

@media (min-width: 769px) {
    .chat-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .chat-floating {
        display: none !important;
    }
}

/* Chat message animations */
.chat-messages .d-flex {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar styling for chat */
#chatBox .card-body::-webkit-scrollbar {
    width: 4px;
}

#chatBox .card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#chatBox .card-body::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

#chatBox .card-body::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}



/* ----------------------------
   Chat Status Dot Animation
   ---------------------------- */
.chat-status-dot {
    transition: all 0.5s ease;
    animation: pulse-dot 2s infinite;
}

.chat-status-dot.online {
    background: #2ecc71 !important;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse-dot-online 2s infinite;
}

.chat-status-dot.offline {
    background: #e74c3c !important;
    box-shadow: none;
    animation: none;
}

@keyframes pulse-dot-online {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

@keyframes pulse-dot {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}


/* Chat Drag Fixes - Only show grab cursor on header */
#chatBox {
    cursor: default !important;  /* Default cursor on the chat box body */
}

#chatBox .chat-drag-handle {
    cursor: grab !important;     /* Grab cursor only on the header */
    user-select: none !important;
}

#chatBox .chat-drag-handle:active {
    cursor: grabbing !important;
}

/* Chat body should have normal cursor */
#chatBox .chat-body {
    cursor: default !important;
}

/* Chat footer should have normal cursor */
#chatBox .chat-footer {
    cursor: default !important;
}

/* Allow text selection in chat body */
#chatBox .chat-body {
    user-select: text !important;
    -webkit-user-select: text !important;
}

/* Prevent text selection on header */
#chatBox .chat-drag-handle * {
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* Buttons should show pointer cursor */
#chatBox .btn,
#chatBox .btn-close {
    cursor: pointer !important;
}

/* Drag handle area should show grab */
#chatBox .chat-drag-handle {
    cursor: grab !important;
}

#chatBox .chat-drag-handle:active {
    cursor: grabbing !important;
}

/* Input fields should show text cursor */
#chatInput {
    cursor: text !important;
}

/* ============ SEARCH AUTOCOMPLETE ============ */
#searchResults {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    min-width: 300px;
}

#searchResults::-webkit-scrollbar {
    width: 4px;
}

#searchResults::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#searchResults::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

#searchResults::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

#searchResults a {
    transition: background 0.2s ease;
}

#searchResults a:hover {
    background: #f8f9fa !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #searchResults {
        min-width: 250px;
        max-width: 90vw;
        left: -20px;
        right: -20px;
    }
    
    #searchResults a {
        padding: 10px 12px !important;
    }
}


/* ============================================
   PURE HOVER DROPDOWN SUBMENU
   ============================================ */

/* On desktop (992px and above) - use hover */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none;
        min-width: 200px;
        border-radius: 0 6px 6px 6px;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        padding: 0.5rem 0;
    }
    
    /* Show submenu on hover */
    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
    }
    
    /* Ensure parent dropdown stays open */
    .dropdown:hover > .dropdown-menu {
        display: block !important;
    }
    
    /* Rotate arrow on hover */
    .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(-90deg);
    }
    
    .dropdown-submenu .dropdown-toggle::after {
        transition: transform 0.2s ease;
    }
}

/* On mobile (991px and below) - keep it simple */
@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-menu {
        margin-left: 1.5rem;
        border-radius: 0 0 6px 6px;
    }
}


/* Make parent dropdown open on hover */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block !important;
    }
    
    /* Prevent dropdown from closing when moving to submenu */
    .navbar-nav .dropdown .dropdown-menu {
        margin-top: 0;
    }
}

/* Color Image Buttons */
.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 3px solid #ddd;
    padding: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.color-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.color-btn.selected {
    border-color: #0d6efd;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.3);
}

.color-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
}

/* Size buttons */
.size-btn {
    min-width: 45px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.size-btn.selected {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.size-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.size-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}


/* ============================================
   COLOR TOGGLE - Show More / Show Less
   ============================================ */

.color-btn.hidden-color {
    display: none;
}

.color-btn.show-color {
    display: inline-block;
    animation: fadeIn 0.3s ease;
}

/* Toggle Button */
.color-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.color-toggle-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    border-color: #0d6efd;
}

.color-toggle-btn.rotated i {
    transform: rotate(180deg);
}

/* Color fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Color options container */
#colorOptionsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}


/* ============================================
   COLOR GALLERY - Arrow Navigation
   ============================================ */

.color-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-scroll-container {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.color-scroll-inner {
    display: flex;
    gap: 8px;
    transition: transform 0.4s ease;
    overflow-x: visible;
}

.color-item {
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.color-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    z-index: 5;
}

.color-nav-arrow:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.color-nav-arrow:active {
    transform: scale(0.95);
}

.color-nav-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Show arrows only when needed */
.color-nav-arrow.visible {
    display: flex !important;
}

/* Responsive */
@media (max-width: 768px) {
    .color-nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .color-item {
        width: 42px !important;
        height: 42px !important;
    }
}

@media (max-width: 480px) {
    .color-nav-arrow {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    
    .color-item {
        width: 36px !important;
        height: 36px !important;
    }
    
    .color-gallery-wrapper {
        gap: 5px;
    }
}

/* Custom 5-column grid */
@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}



/* ============================================
   REVIEW VOTING STYLES
   ============================================ */

.review-vote-btn {
    transition: all 0.2s ease;
    min-width: 60px;
}

.review-vote-btn:hover {
    transform: scale(1.05);
}

.review-vote-btn.active {
    transform: scale(1.05);
}

.review-vote-btn.active.btn-success {
    background: #28a745;
    color: white;
}

.review-vote-btn.active.btn-danger {
    background: #dc3545;
    color: white;
}

.review-vote-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.review-item {
    transition: all 0.2s ease;
}

.review-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.helpfulness-bar {
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .review-vote-btn {
        min-width: 50px;
        font-size: 12px;
        padding: 4px 10px;
    }
}
 


/* ============================================
   SUBSCRIPTION BADGE - Top Right Corner
   ============================================ */

.subscription-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px 8px 12px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: default;
}

.subscription-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Free Plan */
.subscription-badge.free {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-color: #dee2e6;
}

.subscription-badge.free .badge-icon {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

/* Premium Plans */
.subscription-badge.premium {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-color: #ffd54f;
    animation: glow-pulse 2s ease-in-out infinite;
}

.subscription-badge.premium .badge-icon {
    background: linear-gradient(135deg, #ffd700, #ff8f00);
    color: white;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.15); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.3); }
}

/* Pro Plan - Special */
.subscription-badge.premium .badge-title {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Badge Icon */
.subscription-badge .badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 4px;
}

/* Badge Text */
.subscription-badge .badge-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.subscription-badge .badge-subtitle {
    font-size: 10px;
    color: #6c757d;
    line-height: 1.2;
}

/* Badge Action Link */
.subscription-badge .badge-action {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 4px;
}

.subscription-badge .badge-action:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription-badge {
        padding: 6px 12px 6px 10px;
    }
    
    .subscription-badge .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .subscription-badge .badge-title {
        font-size: 12px;
    }
    
    .subscription-badge .badge-subtitle {
        font-size: 9px;
    }
    
    .subscription-badge .badge-action {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .subscription-badge .badge-subtitle {
        display: none;
    }
}

/* Add to your CSS */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   LOCALIZED ERROR MESSAGES - TINY TEXT
   (Bootstrap Compatible)
   ============================================ */
.local-error-msg {
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    margin-top: 0.125rem;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 0.125rem;
}

.local-error-msg.error {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.06);
    border-left: 2px solid #dc3545;
}

.local-error-msg.warning {
    color: #856404;
    background-color: rgba(255, 193, 7, 0.08);
    border-left: 2px solid #ffc107;
}

.local-error-msg.info {
    color: #0c5460;
    background-color: rgba(23, 162, 184, 0.06);
    border-left: 2px solid #17a2b8;
}

.local-error-msg.success {
    color: #155724;
    background-color: rgba(40, 167, 69, 0.06);
    border-left: 2px solid #28a745;
}

input.quantity-input.has-error {
    border-color: #dc3545;
}

input.quantity-input.has-warning {
    border-color: #ffc107;
}

.flash-sale-warning {
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    margin-top: 0.125rem;
    display: none;
    border-radius: 0.125rem;
    color: #856404;
    background-color: rgba(255, 193, 7, 0.08);
    border-left: 2px solid #ffc107;
}


/* Add to your main CSS file or product.css */

.flash-sale-btn {
    position: relative;
}

.flash-sale-btn .btn-add-to-cart {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background: #6c757d !important;
    border-color: #6c757d !important;
}

.flash-sale-btn .flash-sale-tag {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    animation: flash-sale-pulse 1.5s ease-in-out infinite;
    margin-left: 8px;
}

.flash-sale-btn .flash-sale-tag-sm {
    font-size: 9px;
    padding: 1px 6px;
}

@keyframes flash-sale-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.flash-sale-disabled-text {
    font-size: 11px;
    color: #dc3545;
    display: block;
    margin-top: 4px;
}

.flash-sale-disabled-text i {
    margin-right: 4px;
}

.flash-sale-badge {
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    margin-left: 6px;
}

/* Wishlist flash sale item */
.wishlist-flash-sale-item {
    opacity: 0.7;
    border-left: 3px solid #ff6b6b !important;
}

.navbar, .navbar-collapse, .navbar-nav, .nav-item, .dropdown { overflow: visible !important; }
.nav-item.dropdown .dropdown-menu { z-index: 999999 !important; position: absolute !important; top: 100% !important; right: 0 !important; left: auto !important; }

/* ============================================
   SKELETON LOADERS - Include
   ============================================ */
@import url('skeleton.css');