/* Global Styles */
:root {
    --primary-color: #1e7c52;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Media defaults for mobile responsiveness */
img, video {
    max-width: 100%;
    height: auto;
}

/* Long content handling */
.break-word { word-break: break-word; overflow-wrap: anywhere; }

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: #ffffff !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #171717 !important;
}

/* Override Bootstrap navbar-dark styling */
.navbar-dark {
    background-color: #ffffff !important;
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
    color: #171717 !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #171717 !important;
    opacity: 0.8;
}

/* Ensure all navbar links have correct color */
.navbar .navbar-nav .nav-link {
    color: #171717 !important;
}

.navbar .navbar-nav .nav-link:hover {
    color: #171717 !important;
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #155e3f 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Modern Hero Section Styles */
.hero-section {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-indicators {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Trust Items Hover Effect */
.trust-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 100px !important;
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content .lead {
        font-size: 1.2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-indicators .col-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content .lead {
        font-size: 1.1rem !important;
    }
    
    .hero-badge .badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image-container {
    height: 200px;
    width: 100%;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

/* Product Grid Optimizations for 8-product display */
@media (min-width: 1400px) {
    /* Extra large screens: 4 products per row */
    .product-grid .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Large screens: 3 products per row */
    .product-grid .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    /* Medium screens: 2 products per row */
    .product-grid .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /* Small screens: 2 products per row */
    .product-grid .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    /* Extra small screens: 1 product per row */
    .product-grid [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Perfect 4-per-row Product Grid Layout using CSS Grid */
.product-grid {
    margin: 0;
    padding: 0;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    min-height: auto;
    height: auto;
    overflow: visible;
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991.98px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure no max-height restrictions and proper display */
.product-grid,
.product-grid .row,
.container-xl {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
}

/* Ensure the main content area doesn't restrict height */
.col-12 {
    min-height: auto !important;
    height: auto !important;
}

/* Removed - now using specific column classes */

/* Ensure consistent card heights and proper spacing */
.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
}

.product-card .mt-auto {
    margin-top: auto !important;
}

/* Product title with consistent height */
.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    height: 2.6rem; /* Fixed height for 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Product description with consistent height */
.product-card .card-text {
    font-size: 0.9rem;
    line-height: 1.4;
    height: 3.6rem; /* Fixed height for ~3 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

/* Responsive image handling */
@media (max-width: 768px) {
    .product-image-container {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .product-image-container {
        height: 120px;
    }
    
    /* On mobile, show 1 per row with proper spacing */
    .product-grid.row-cols-1 .col {
        max-width: 100%;
    }
}

/* Ensure perfect spacing on large screens */
@media (min-width: 992px) {
    .product-grid .col-lg-3 {
        max-width: 25%;
        flex: 0 0 25%;
    }
}

/* CSS Grid overrides any conflicting Bootstrap flex rules */

/* Grid items - remove Bootstrap column classes interference */
.product-grid > div[class*="col-"] {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Make sure cards within grid items are flex */
.product-grid > div[class*="col-"] .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.product-info {
    padding: 1.5rem;
}

/* Ensure consistent card height and content distribution */
.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .card-body .mt-auto {
    margin-top: auto !important;
}

/* Improve product grid spacing */
.product-grid .mb-4 {
    margin-bottom: 2rem !important;
}

/* Ensure price display consistency */
.product-card .price-display {
    flex-shrink: 0;
}

/* Product title consistency */
.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    height: 2.6rem; /* Fixed height for 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Product description consistency */
.product-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    height: 3.6rem; /* Fixed height for 3 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--success-color);
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: #155e3f;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Extended Cart Layout */
.cart-item-extended {
    min-height: 140px !important;
    padding: 2rem 1rem !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease !important;
}

.cart-item-extended:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced Delete Button */
.cart-delete-btn-extended {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4) !important;
    transition: all 0.3s ease !important;
    font-size: 18px !important;
    color: white !important;
}

.cart-delete-btn-extended:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.5) !important;
    color: white !important;
}

.cart-delete-btn-extended:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.4) !important;
}

/* Extended Product Image */
.cart-product-image-extended {
    height: 100px !important;
    width: 100% !important;
    object-fit: contain !important;
    background-color: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 0.5rem !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
}

.cart-product-image-extended:hover {
    transform: scale(1.05) !important;
}

/* Extended Sections */
.cart-price-section-extended,
.cart-quantity-section-extended,
.cart-subtotal-section-extended {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-radius: 10px !important;
    padding: 1.5rem 1rem !important;
    border: 2px solid #e9ecef !important;
    min-height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}

.cart-subtotal-section-extended {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    border-color: #28a745 !important;
}

.cart-subtotal-section-extended:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2) !important;
}

.cart-price-section-extended:hover,
.cart-quantity-section-extended:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12) !important;
}

.cart-price-section-extended label,
.cart-quantity-section-extended label,
.cart-subtotal-section-extended label {
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 0.75rem !important;
    font-weight: 700 !important;
    color: #495057 !important;
}

.cart-price-section-extended p,
.cart-quantity-section-extended p,
.cart-subtotal-section-extended p {
    font-size: 1.2rem !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

/* Enhanced spacing and organization */
.cart .card-body {
    padding: 2.5rem !important;
    background: #fafbfc !important;
}

.cart .border-bottom {
    border-bottom: 3px solid #e9ecef !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Product info enhancements */
.cart-item-extended h6 {
    font-size: 1.2rem !important;
    color: #2c3e50 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

.cart-item-extended .badge {
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

/* Cart Page Button Fixes */
.cart .btn,
.cart button {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    position: relative !important;
    margin: 2px !important;
    min-width: auto !important;
    white-space: nowrap !important;
}

/* Delete/Remove button specific fixes */
.cart .btn-outline-danger {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #dc3545 !important;
    border-color: #dc3545 !important;
    background-color: transparent !important;
    padding: 0.375rem 0.75rem !important;
    margin: 2px !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

.cart .btn-outline-danger:hover {
    color: #fff !important;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* Clear Cart button fixes */
.cart .btn-outline-secondary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
    padding: 0.375rem 0.75rem !important;
    margin: 2px !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

.cart .btn-outline-secondary:hover {
    color: #fff !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

/* Quantity update button fixes */
.cart .btn-sm {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    border-radius: 0.25rem !important;
    margin: 2px !important;
    min-width: 32px !important;
    height: 32px !important;
}

/* Checkout button fixes */
.cart .btn[type="submit"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Cart layout organization */
.cart .row {
    margin: 0 !important;
    overflow: visible !important;
}

.cart .col-md-12 {
    overflow: visible !important;
    position: relative !important;
    padding: 0.5rem !important;
}

.cart .card-body {
    overflow: visible !important;
    padding: 1.25rem !important;
}

/* Form elements in cart */
.cart form {
    display: inline-block !important;
    margin: 2px !important;
}

.cart .d-flex {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
}

/* Ensure icons are visible */
.cart .fas,
.cart .fa {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: inherit !important;
    margin-right: 0.25rem !important;
}

/* Cart item organization */
.cart .border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
}

.cart .col-md-12 {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
}

/* Button spacing and organization */
.cart .btn {
    margin: 0.25rem !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: 1px solid !important;
    cursor: pointer !important;
}

.cart .btn-sm {
    padding: 0.375rem 0.75rem !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

.cart .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
}

/* Ensure proper button colors and visibility */
.cart .btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
    background-color: transparent !important;
}

.cart .btn-outline-primary:hover {
    color: #fff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/* Cart layout improvements */
.cart .card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.cart .card-body {
    padding: 1.5rem !important;
}

/* Form controls in cart */
.cart .form-control {
    display: block !important;
    width: 100% !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
}

.cart .form-control:focus {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Forms */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

/* Avatar (profile image) */
.avatar {
    width: 90px;
    height: 90px;
    border-radius: 8px; /* box shape */
    overflow: hidden;
    background: linear-gradient(180deg, #f5f8ff 0%, #eef3ff 100%);
    border: 2px solid #e9ecef;
    box-shadow: 0 6px 20px rgba(13,110,253,0.08);
    display: inline-block;
}
.avatar-lg { width: 140px; height: 140px; }
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
}

/* Reduce motion for admin UI */
.admin-ui *, .admin-ui *::before, .admin-ui *::after { 
    animation: none !important; 
    transition: none !important; 
}
.admin-ui .card:hover, 
.admin-ui .feature-card:hover, 
.admin-ui .product-card:hover { 
    transform: none !important; 
}
.admin-ui .avatar img { transition: none !important; }

/* Reduce motion for seller UI */
.seller-ui *, .seller-ui *::before, .seller-ui *::after {
    animation: none !important;
    transition: none !important;
}
.seller-ui .card:hover,
.seller-ui .feature-card:hover,
.seller-ui .product-card:hover { transform: none !important; }
.seller-ui .avatar { width: 90px; height: 90px; border-radius: 8px; }
.seller-ui .avatar img { width: 100%; height: 100%; object-fit: cover; }
.seller-ui img { max-width: 100%; height: auto; }

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 124, 82, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
}

/* Cards */
.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Dashboard Cards */
.dashboard-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #155e3f 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.dashboard-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.dashboard-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Blue Dashboard Cards - matching the image */
.dashboard-card-blue {
    background: #007bff;
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
    transition: all 0.2s ease;
}

.dashboard-card-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

.dashboard-card-blue h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.dashboard-card-blue p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    font-weight: 500;
}

.dashboard-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-icon i {
    font-size: 1.4rem;
    color: white;
}

/* Status Badges */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-pending {
    background: var(--warning-color);
    color: var(--dark-color);
}

.status-shipment {
    background: var(--info-color);
    color: white;
}

.status-delivered {
    background: var(--success-color);
    color: white;
}

.status-verified {
    background: var(--success-color);
    color: white;
}

/* Payment Verification Styles */
.payment-proof-container {
    max-width: 200px;
    margin: 0 auto;
}

.payment-proof-image {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.payment-proof-image:hover {
    transform: scale(1.05);
}

.payment-reference {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.verification-modal .modal-dialog {
    max-width: 800px;
}

.verification-actions .btn {
    min-width: 120px;
}


.status-pending-verify {
    background: var(--warning-color);
    color: var(--dark-color);
}

.status-not-verify {
    background: var(--danger-color);
    color: white;
}

/* Tables */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.table tbody tr:hover {
    background: rgba(30, 124, 82, 0.05);
}

/* Customer name links */
.customer-name a {
    transition: all 0.3s ease;
}

.customer-name a:hover {
    color: #155a3f !important;
    text-decoration: underline !important;
    transform: translateX(2px);
}

.customer-name a i {
    transition: transform 0.3s ease;
}

.customer-name a:hover i {
    transform: scale(1.1);
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

/* Modal */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .dashboard-card h3 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #155e3f;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #155e3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.border-radius-custom {
    border-radius: 15px;
}

/* Sticky sidebar for admin pages */
.admin-ui .sidebar,
.seller-ui .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding-top: 80px; /* compensate for fixed header */
    padding-bottom: 1rem;
    z-index: 1020; /* above content, below navbar */
    min-height: calc(100vh); /* ensure full-height column */
}

.admin-ui .sidebar {
    background: linear-gradient(195deg, #1f8a55 0%, #0f5031 100%);
    border-right: none;
    box-shadow: 0 18px 45px rgba(17, 98, 59, 0.3);
}

.admin-ui .sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(210deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.admin-ui .sidebar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.admin-ui .sidebar .sidebar-heading,
.admin-ui .sidebar .nav-link,
.admin-ui .sidebar .nav-link i {
    color: #ffffff !important;
}

.admin-ui .sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    border-radius: 14px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.admin-ui .sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
    box-shadow: 0 12px 28px rgba(12, 68, 40, 0.28);
}

.admin-ui .sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 16px 34px rgba(12, 68, 40, 0.32);
}

/* Default sidebar for other contexts */
.sidebar {
    position: sticky;
    top: 60px;
    overflow-y: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-right: 1px solid #e9ecef;
    padding-bottom: 1rem;
    min-height: calc(100vh - 60px);
}

/* Reserve space for fixed sidebar and avoid overlap */
@media (min-width: 768px) {
    .sidebar { width: 180px; }
    .sidebar + main, .sidebar ~ main { margin-left: 180px; }
}

@media (min-width: 992px) {
    .sidebar { width: 220px; }
    .sidebar + main, .sidebar ~ main { margin-left: 220px; }
}

/* Seller-specific sidebar sizing */
body.seller-ui { padding-top: 80px; }
body.admin-ui { padding-top: 80px; }
/* Customer fixed header spacing */
body.customer-ui { 
    padding-top: 60px; 
    margin: 0;
    overflow-x: hidden;
}

/* Customer layout improvements */
.customer-ui .container-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Ensure proper layout for customer pages */
.customer-ui {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.customer-ui .row {
    margin: 0;
    width: 100%;
}

.customer-ui .col-md-3,
.customer-ui .col-lg-2 {
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
}

.customer-ui .col-md-9,
.customer-ui .col-lg-10 {
    padding: 1.5rem;
    margin: 0;
    flex: 1;
}

/* Message icon styling */
.customer-ui .navbar .nav-link .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    line-height: 1.2;
    border-radius: 50%;
}

.customer-ui .navbar .nav-item {
    position: relative;
}

.customer-ui .sidebar .nav-link .badge {
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    line-height: 1.2;
    border-radius: 50%;
}

.customer-ui .main-content {
    min-height: calc(100vh - 60px);
    background-color: #f8f9fa;
    width: 100%;
}

.customer-ui .sidebar {
    min-height: calc(100vh - 60px);
    background: linear-gradient(195deg, #1a7a50 0%, #0c4b32 100%);
    border-right: none;
    box-shadow: 0 18px 40px rgba(12, 74, 44, 0.28);
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding-top: 0.5rem;
}

.customer-ui .sidebar .nav-link,
.customer-ui .sidebar .nav-link i,
.customer-ui .sidebar .sidebar-heading {
    color: #ffffff !important;
}

.customer-ui .sidebar .nav-link {
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.customer-ui .sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
    box-shadow: 0 12px 26px rgba(8, 64, 39, 0.26);
}

.customer-ui .sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 30px rgba(8, 64, 39, 0.32);
}

/* Ensure proper grid layout */
.customer-ui .row {
    margin: 0;
    width: 100%;
}

.customer-ui .col-md-9,
.customer-ui .col-lg-10 {
    padding-right: 0;
    margin-right: 0;
}

/* Responsive improvements for customer UI */
@media (max-width: 767.98px) {
    .customer-ui .sidebar {
        position: static;
        min-height: auto;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        top: auto;
    }
    
    .customer-ui .main-content {
        min-height: auto;
        padding: 1rem;
    }
    
    .customer-ui .container-fluid {
        padding: 0;
    }
    
    /* Stack sidebar and content vertically on mobile */
    .customer-ui .row {
        flex-direction: column;
    }
    
    .customer-ui .col-md-3,
    .customer-ui .col-lg-2,
    .customer-ui .col-md-9,
    .customer-ui .col-lg-10 {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
}

@media (min-width: 768px) {
    /* Ensure proper flex layout on tablet and desktop */
    .customer-ui .row {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .customer-ui .col-md-3 {
        width: 25%;
        max-width: 25%;
    }
    
    .customer-ui .col-md-9 {
        width: 75%;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    .customer-ui .col-lg-2 {
        width: 16.666667%;
        max-width: 16.666667%;
    }
    
    .customer-ui .col-lg-10 {
        width: 83.333333%;
        max-width: 83.333333%;
    }
}
/* Keep seller header fixed on scroll */
.seller-ui .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; }
/* Use the same widths/margins as the global customer sidebar */
@media (min-width: 768px) {
    .seller-ui .sidebar { width: 180px; }
    .seller-ui .sidebar + main, .seller-ui .sidebar ~ main { margin-left: 180px; }
}
@media (min-width: 992px) {
    .seller-ui .sidebar { width: 220px; }
    .seller-ui .sidebar + main, .seller-ui .sidebar ~ main { margin-left: 220px; }
}

@media (max-width: 991.98px) {
    .admin-ui .sidebar,
    .seller-ui .sidebar {
        position: static;
        top: auto;
        bottom: auto;
        height: auto;
    }
    
    .sidebar {
        position: static;
        top: auto;
        bottom: auto;
        height: auto;
    }
    
    .sidebar + main, .sidebar ~ main { margin-left: 0; }
    .admin-ui .sidebar + main, .admin-ui .sidebar ~ main { margin-left: 0; }
    .seller-ui .sidebar + main, .seller-ui .sidebar ~ main { margin-left: 0; }
}

/* Customer sidebar polish */
.sidebar .sidebar-inner { padding: 1rem; }
.sidebar .sidebar-search {
    position: sticky;
    top: 0;
    background: inherit;
    padding-bottom: .75rem;
}
.sidebar .sidebar-search .input-group-text {
    background: #f5f8ff;
    border-color: #e9ecef;
}
.sidebar .sidebar-search input[type="text"] {
    border-color: #e9ecef;
    background: #fff;
}
.sidebar .nav.flex-column { gap: .25rem; }
.sidebar .nav-link {
    color: #1e7c52;
    border-radius: 12px;
    padding: .6rem .75rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 500;
}
.sidebar .nav-link:hover { background: rgba(30,124,82,.08); }
.sidebar .nav-link.active { background: rgba(30,124,82,.15); font-weight: 600; }
.sidebar .sidebar-heading { padding: .25rem .5rem; color: #6c757d; text-transform: uppercase; font-size: .75rem; letter-spacing: .04em; }

/* Seller sidebar readability */
.seller-ui .sidebar .nav-link {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: inherit;
    padding: .6rem .75rem;
    gap: .6rem;
    line-height: 1.5;
    border-radius: 12px;
}
.seller-ui .sidebar .nav.flex-column { gap: .25rem; }
.seller-ui .sidebar .nav-link:hover { background: rgba(30,124,82,.08); }
.seller-ui .sidebar .nav-link.active { background: rgba(30,124,82,.14); color: #1e7c52; }
.seller-ui .sidebar .nav-link i { font-size: .9rem; min-width: 18px; text-align: center; color: #1e7c52; }
.seller-ui .sidebar .position-sticky { padding-top: .5rem; }

/* Seller UI polish */
.seller-ui main { background: #f7f9fc; }
.seller-ui .card { border-radius: 14px; box-shadow: 0 8px 18px rgba(0,0,0,.06); }
.seller-ui .card-header { background: #ffffff; border-bottom: 1px solid #eef2f7; border-top-left-radius: 14px; border-top-right-radius: 14px; }
.seller-ui .btn { border-radius: 10px; }
.seller-ui .navbar .dropdown-menu { border-radius: 12px; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.seller-ui .navbar .dropdown-item { padding: .55rem .85rem; }

/* Accent borders for metric cards */
.border-left-primary { border-left: .35rem solid var(--primary-color) !important; }
.border-left-success { border-left: .35rem solid var(--success-color) !important; }
.border-left-warning { border-left: .35rem solid var(--warning-color) !important; }
.border-left-info { border-left: .35rem solid var(--info-color) !important; }

/* Dashboard Stat Cards - matching the image design */
.dashboard-stat-card {
    background: white;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    height: 100%;
}

.dashboard-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dashboard-stat-card .card-body {
    padding: 1.5rem;
}

.dashboard-stat-card h6 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.dashboard-stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #212529;
}

.dashboard-stat-card .dashboard-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-stat-card .dashboard-icon i {
    font-size: 1.4rem;
    color: #212529;
}

/* Subtle hover for tables in seller area */
.seller-ui .table tbody tr:hover { background: rgba(30,124,82,.045); }

/* Make headings a touch bolder for clarity */
.seller-ui h1.h2, .seller-ui h2, .seller-ui h3 { letter-spacing: .2px; }

/* Seller theme: match customer sidebar styling */
.seller-ui .navbar.bg-primary { background: #ffffff !important; color: #1f2937; box-shadow: 0 1px 0 #e9edf5; }
.seller-ui .navbar a.navbar-brand, .seller-ui .navbar .nav-link { color: #374151 !important; }
.seller-ui .navbar .nav-link:hover { color: #111827 !important; }

/* Sidebar look aligned with customer */
.seller-ui .sidebar { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important; border-right: 1px solid #e9ecef; box-shadow: none; }
.seller-ui .sidebar .nav-link { color: #1e7c52; }
.seller-ui .sidebar .nav-link i { color: inherit; }
.seller-ui .sidebar .nav-link:hover { background: rgba(30,124,82,.08); color: #1e7c52; }
.seller-ui .sidebar .nav-link.active { background: rgba(30,124,82,.15); color: #1e7c52; }
.seller-ui .sidebar .nav-link.active i { color: inherit; }
.seller-ui .sidebar .nav-link.active::before { display: none; }

/* KPI tiles */
.seller-ui .kpi-card { background: #ffffff; border: 0; }
.seller-ui .kpi-card .text-xs { color: #6b7280; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.seller-ui .kpi-card .h5 { color: #111827; }

/* Auth / Registration enhancements */
.auth-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.register-type {
    background: #f8fbff;
    border-radius: 14px;
    padding: 6px;
    display: flex;
    overflow: hidden;
}
.register-type .btn {
    border-radius: 12px !important;
    padding: 10px 18px;
    border: 2px solid var(--primary-color);
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}
.register-type .btn i { opacity: 0.9; }
.register-type .btn-check:checked + .btn,
.register-type .btn.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}
.input-icon .input-group-text {
    background: #f5f8ff;
    border: 2px solid #e9ecef;
    border-right: 0;
}
.input-icon .form-control {
    border-left: 0;
}
.section-title {
    font-weight: 700;
    letter-spacing: .5px;
}

/* Login role selector (inside card) */
.login-role {
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    padding: 8px 10px;
    display: flex !important;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto; /* center within the card */
    overflow: hidden;            /* keep active state inside pill */
    flex-wrap: wrap;             /* allow wrap on small widths */
    min-height: 48px;
}
.login-role.btn-group > .btn + .btn { margin-left: 0 !important; }
.login-role .btn {
    border: 0;
    color: var(--primary-color);
    background: transparent;
    padding: 8px 12px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 18px;
    white-space: nowrap;
    flex: 0 0 auto;             /* size to content */
    min-width: auto;
    font-size: 14px;
}
.login-role .btn-check:checked + .btn {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 14px rgba(13,110,253,0.25);
}

@media (max-width: 480px) {
    .login-role { padding: 3px; }
    .login-role .btn { padding: 8px 12px; flex: 1 1 50%; } /* two per row */
}

/* Password toggle button fixes */
.input-group .form-control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
}

.input-group .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: 0 !important;
    z-index: 2;
    position: relative;
    min-width: 45px;
}

.input-group .btn:focus {
    box-shadow: none !important;
    border-color: var(--primary-color) !important;
}

/* Ensure password toggle buttons don't interfere with input */
.input-group .btn[type="button"] {
    background: #ffffff !important;
    border-color: #e9ecef !important;
    color: #6c757d !important;
    border-radius: 0 10px 10px 0 !important;
}

.input-group .btn[type="button"]:hover {
    background: #f8f9fa !important;
    border-color: #e9ecef !important;
    color: #495057 !important;
}

/* Fix any potential icon duplication issues */
.input-group .btn i {
    pointer-events: none;
    display: inline-block;
}

/* Ensure input group displays correctly */
.input-group {
    display: flex;
    align-items: stretch;
}

.input-group .form-control,
.input-group .btn {
    display: flex;
    align-items: center;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .modal,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        width: 100%;
    }
}

.seller-ui .sidebar {
    background: linear-gradient(195deg, #1e7c52 0%, #075038 100%) !important;
    border-right: none;
    box-shadow: 0 18px 40px rgba(10, 70, 44, 0.28);
}

.seller-ui .sidebar .nav-link,
.seller-ui .sidebar .nav-link i,
.seller-ui .sidebar .sidebar-heading {
    color: #ffffff !important;
}

.seller-ui .sidebar .nav-link {
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.seller-ui .sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(6px);
    box-shadow: 0 12px 26px rgba(8, 64, 39, 0.26);
}

.seller-ui .sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 30px rgba(8, 64, 39, 0.32);
}

/* Notification Modal Styles */
#seller-notification-modal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#seller-notification-modal .modal-header {
    background: linear-gradient(135deg, #1e7c52, #2d9a6b);
    color: white;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

#seller-notification-modal .modal-header .btn-close {
    filter: invert(1);
}

#seller-notification-modal .notification-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

#seller-notification-modal .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

/* Enhanced notification dropdown styles */
.dropdown-item {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f8f9fa !important;
    border-left-color: #1e7c52;
    transform: translateX(2px);
}

.dropdown-item.bg-light {
    border-left-color: #1e7c52;
    background-color: #e8f5e8 !important;
}

/* Notification type indicators */
.fa-check-circle.text-success {
    color: #198754 !important;
}

.fa-exclamation-triangle.text-warning {
    color: #ffc107 !important;
}

.fa-times-circle.text-danger {
    color: #dc3545 !important;
}

.fa-info-circle.text-info {
    color: #0dcaf0 !important;
}

/* Payment Method Badges */
.badge.bg-primary {
    background-color: #1e7c52 !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.payment-method-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.payment-method-badge .fas {
    font-size: 0.7rem;
}

/* Organized Order Display Styling */
.customer-info {
    line-height: 1.4;
}

.customer-info > div {
    margin-bottom: 2px;
}

.customer-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.customer-email {
    color: #666;
    font-size: 0.8rem;
}

.customer-phone {
    color: #666;
    font-size: 0.8rem;
}

.product-info {
    line-height: 1.4;
}

.product-info > div {
    margin-bottom: 2px;
}

.product-name-business {
    font-size: 0.9rem;
}

.product-name-business strong {
    color: #333;
    font-weight: 600;
}

.business-name {
    color: #666;
    font-weight: 400;
    margin-left: 5px;
}

.product-size {
    color: #666;
    font-size: 0.8rem;
}
