/*---------------------------- GENERAL START -------------------------*/


    @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
      font-family: "Poppins";
      src: url("/assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Poppins";
      src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Poppins";
      src: url("/assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Poppins";
      src: url("/assets/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: "Montserrat";
      src: url("/assets/fonts/Montserrat/static/Montserrat-Black.ttf") format("truetype");
      font-display: swap;
    }

    /* ---------GENERAL--------- */

    a{
        text-decoration: none;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f8f9fa;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    main{
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .text-sm {
        font-size: 13px;
    }

    .text-app{
        color: #008080 !important;
    }

    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #e9ecef;
        opacity: 0.9;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999999999999 !important;
        }

    
    [data-bs-theme=dark] #preloader {
      background:  #16191c;
    }
    .loader-icon {
        animation: fadePulse 2s infinite ease-in-out;
    }

    @keyframes fadePulse {
        0%, 100% { opacity: 0.6; transform: scale(0.95); }
        50% { opacity: 1; transform: scale(1.05); }
    }

    .header {
        background: white;
        border-bottom: 1px solid #e9ecef;
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    [data-bs-theme=dark] .header {
        background: #070605;
        border-bottom: 1px solid #16191c;
    }

    .app-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #008080, #20b2aa);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
    }
    
    .app-img{
      
      width: 180px;
      border-radius: 8px;
      display: flex;
      overflow: hidden;
    }

    

    .app-img img{
      width: 100%;
      height: 100%;
    }

    .app-img-icon{
      height: 30px;
      width: 30px;
      border-radius: 5px;
    
      overflow: hidden;
    }

    
    .location {
        color: #6c757d;
        font-size: 0.875rem;
    }
    
    .currency {
        font-size: 0.875rem;
        color: #495057;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #008080, #20b2aa);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 500;
        font-size: 0.875rem;
    }
    
    .icon-btn {
        background: none;
        border: none;
        color: #6c757d;
        font-size: 1.2rem;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .icon-btn:hover {
        background: #f8f9fa;
        color: #008080;
    }
    
    .welcome {
        background: linear-gradient(135deg, #008080, #20b2aa);
        color: white;
        padding: 2rem 0;
        margin-bottom: 0;
    }
    
    .welcome-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .welcome-subtitle {
        opacity: 0.9;
        font-size: 0.9rem;
    }

    /* Side Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1030;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Side Menu */
        .side-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1040;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        [data-bs-theme=dark] .side-menu {
        background: #070605;
        }
        

        .side-menu.active {
            left: 0;
        }
        
        .menu-header {
            background: linear-gradient(135deg, #008080, #20b2aa);
            color: white;
            padding: 2rem 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .menu-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        
        .menu-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .menu-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        .menu-brand-img {
            width: 65%;
        }
        .menu-brand-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .menu-brand-text {
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .menu-user {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .menu-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .menu-user-info h6 {
            margin: 0;
            font-weight: 600;
        }
        
        .menu-user-info small {
            opacity: 0.9;
        }
        
        .menu-nav {
            padding: 1rem 0;
        }
        
        .menu-item {
            display: flex;
            align-items: center;
            padding: 0.875rem 1.5rem;
            color: #374151;
            text-decoration: none;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }
        
        .menu-item:hover,
        .menu-item.active {
            background: #f8f9fa;
            color: #008080;
            text-decoration: none;
            border-left-color: #008080;
        }
        
        .menu-item-icon {
            width: 20px;
            margin-right: 1rem;
            font-size: 1.1rem;
            text-align: center;
        }
        
        .menu-divider {
            height: 1px;
            background: #e9ecef;
            margin: 0.5rem 0;
        }
        
        .menu-section-title {
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .app-img{
      
                width: 140px
            }
            .side-menu {
                width: 280px;
                left: -280px;
            }
        }

        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            color: #374151;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        
        .form-control {
            border: 1.5px solid #d1d5db;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-control:focus {
            border-color: #008080;
            box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
            outline: none;
        }
        
        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        }
        
        .textarea {
            min-height: 100px;
            resize: vertical;
        }

        .se-input-group {
            position: relative !important;
        }
        
        .input-icon {
            position: absolute !important;
            left: 1rem !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            color: #9ca3af !important;
            
            color: #9ca3af !important;
        }
        
        .input-icon-right {
            position: absolute !important;
            right: .75rem !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            color: #9ca3af !important;
            background: none;
            border: none;
            padding: 0 .25rem;
            cursor: pointer;
            line-height: 1;
            transition: color .15s;
            z-index: 5;
        }
        .input-icon-right:hover { color: #008080 !important; }
        
        /* When a right icon is present, pad the input from the right */
        .se-input-group .form-control.has-icon-right {
            padding-right: 2.5rem !important;
        }
        
        .se-input-group .form-control {
            padding-left: 2.5rem !important;
            
        }
        
        .file-input {
            border: 2px dashed #d1d5db;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .file-input:hover {
            border-color: #008080;
            background: rgba(0, 128, 128, 0.05);
        }
        
        .file-input.dragover {
            border-color: #008080;
            background: rgba(0, 128, 128, 0.1);
        }

        /* Empty States */
        .empty-state {
            text-align: center;
            padding: 3rem 2rem;
            color: #6c757d;
        }
        
        .empty-icon {
            font-size: 4rem;
            color: #d1d5db;
            margin-bottom: 1rem;
        }
        
        .empty-title {
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }
        
        .empty-description {
            margin-bottom: 1.5rem;
            color: #6c757d;
        }
        
        /* Alerts & Notifications */
        .alert {
            border: none;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .alert-success {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            border-left: 4px solid #10b981;
        }
        
        .alert-error {
            background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
            border-left: 4px solid #ef4444;
        }
        
        .alert-info {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
            border-left: 4px solid #3b82f6;
        }
        
        .alert-warning {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
            border-left: 4px solid #f59e0b;
        }

        /* Status Badges */
        .se-badge {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: capitalize;
            border-radius: 6px;
            margin-right: 3px;   
            text-align: center;
            
        }
        @media (max-width: 768px) {
            .se-badge {
                padding: 0.3rem 0.8rem;
                font-size: 0.6rem;
                font-weight: 400;
                border-radius: 4px;
            }

            .filter-btn {
                padding: 0.3rem 0.8rem !important;
                font-size: 0.6rem !important;
                font-weight: 400 !important;
                
            }
        }

        .se-badge.primary {
            background: linear-gradient(135deg, #008080, #20b2aa);
            color: white;
            border: 1.5px solid #008080;
        }
        .se-badge.outline-primary {
            background: transparent;
            border: 1.5px solid #008080;
            color: #008080;
        }
        .se-badge.dark {
            background: #374151;
            border: 1.5px solid #374151;
            color: #fff;
        }

        .se-badge.outline-dark {
            background: white;
            border: 1.5px solid #374151;
            color: #374151;
        }

        .filter-cvr{
           position: relative;
           overflow-x: auto !important;
            white-space: nowrap !important;
            padding: 5px;
            
        }

         /* Optional: Style the scrollbar (customize as needed) */
        .filter-cvr::-webkit-scrollbar {
        width: 10px !important;
        height: 3px !important;
        }
        
        .filter-cvr::-webkit-scrollbar-track {
            background: #f1f1f1 !important;
        }
        
        .filter-cvr::-webkit-scrollbar-thumb {
            background: lightgray !important;
            border-radius: 5px !important;
            height: 2px !important;
        }

        /* Navigation Components */
        .nav-pill {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 25px;
            padding: 0.5rem 1rem;
            color: #6c757d;
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }
        
        .nav-pill:hover,
        .nav-pill.active {
            background: #008080;
            border-color: #008080;
            color: white;
            text-decoration: none;
        }
        
        /* Utility Classes */
        .text-primary { color: #008080 !important; }
        .text-muted { color: #6c757d !important; }
        .bg-light { background: #f8f9fa !important; }
        .border-radius { border-radius: 8px; }
        .shadow { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
        .text-bg-primary{
            background-color: #008080 !important;
            color: #f8f9fa !important;
        }

        /* Modal Components */
        .modal {
            z-index: 999999 !important;
        }
        .se-modal {
            border-radius: 12px;
            border: none;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .se-modal-header {
            border-bottom: 1px solid #f1f3f4;
            padding: 1.5rem 1.5rem 1rem;
        }
        
        .se-modal-title {
            color: #1a1a1a;
            font-weight: 600;
            margin: 0;
        }
        
        .se-modal-body {
            padding: 1.5rem;
        }
        
        .se-modal-footer {
            border-top: 1px solid #f1f3f4;
            padding: 1rem 1.5rem 1.5rem;
        }

        /* Small Notification Modal */
        .se-notification-modal .modal-dialog {
            max-width: 400px;
        }
        
        .se-notification-modal .se-modal {
            text-align: center;
        }
        
        .se-notification-modal .se-modal-body {
            padding: 2rem 1.5rem;
        }
        
        .se-notification-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 40px;
            color: white;
        }
        
        .se-notification-icon.success {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        
        .se-notification-icon.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        
        .se-notification-icon.warning {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .se-notification-icon.info {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }

        .se-notification-icon.primary {
            background: linear-gradient(135deg, #008080, #006666);
        }
        
        .se-notification-title {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .se-notification-text {
            color: #6c757d;
            margin-bottom: 1.5rem;
        }
        
        /* Toast Components */
        .se-toast {
            background: white;
            border: none;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 99999999999999 !important;
            min-width: 300px;
        }
        
        .se-toast-header {
            background: transparent;
            border-bottom: 1px solid #f1f3f4;
            padding: 1rem;
        }
        
        .se-toast-icon {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            margin-right: 0.75rem;
        }
        .btn-close-sm{

        }
        
        .se-toast-icon.success {
            background: #10b981;
        }
        
        .se-toast-icon.error {
            background: #ef4444;
        }
        
        .se-toast-icon.warning {
            background: #f59e0b;
        }
        
        .se-toast-icon.info {
            background: #3b82f6;
        }
        
        .se-toast-title {
            color: #1a1a1a;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .se-toast-body {
            padding: 0 1rem 1rem;
            color: #6c757d;
            font-size: 0.85rem;
        }

        /* Animations */
        .se-fade-in {
            animation: seFadeIn 0.6s ease-out;
        }
        
        @keyframes seFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .se-slide-up {
            animation: seSlideUp 0.3s ease-out;
        }
        
        @keyframes seSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .se-slide-in {
            animation: seSlideIn 0.8s ease-out;
        }
        
        @keyframes sSlideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

         /* Responsive adjustments */
        @media (max-width: 768px) {
            
            .se-toast {
                left: 20px;
                right: 20px;
                width: auto;
            }
        }

        /* Button Components */
        .se-btn-primary {
            background: linear-gradient(135deg, #008080, #20b2aa);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .se-btn-primary:hover {
            background: linear-gradient(135deg, #006666, #1a9999);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
            color: white;
        }
        
        .se-btn-secondary {
            background: white;
            /*border: 1.5px solid #e5e7eb;
            border: 1.5px solid #008080;*/
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #374151;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .se-btn-secondary:hover {
            border-color: #008080;
            background: #f8fdfd;
            color: #008080;
        }
        
        .se-btn-outline {
            background: transparent;
            border: 1.5px solid #008080;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #008080;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .se-btn-outline:hover {
            background: #008080;
            color: white;
        }
        
        .se-btn-danger {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-danger:hover {
            background: linear-gradient(135deg, #b91c1c, #dc2626);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            color: white;
        }

        .se-btn-error {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-error:hover {
            background: linear-gradient(135deg, #b91c1c, #dc2626);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            color: white;
        }

        .se-btn-danger-secondary {
            background: white;
            border: 1.5px solid #dc2626;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #374151;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-danger-secondary:hover {
            border-color: #dc2626;
            background: #fef2f2;
            color: #dc2626;
        }

        .se-btn-danger-outline {
            background: transparent;
            border: 1.5px solid #dc2626;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #dc2626;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-danger-outline:hover {
            background: #dc2626;
            color: white;
        }

        .se-btn-success {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-success:hover {
            background: linear-gradient(135deg, #15803d, #16a34a);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
            color: white;
        }

        .se-btn-success-secondary {
            background: white;
            border: 1.5px solid #16a34a;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #374151;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-success-secondary:hover {
            border-color: #16a34a;
            background: #f0fdf4;
            color: #16a34a;
        }

        .se-btn-success-outline {
            background: transparent;
            border: 1.5px solid #16a34a;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #16a34a;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-success-outline:hover {
            background: #16a34a;
            color: white;
        }

        .se-btn-warning {
            background: linear-gradient(135deg, #ea580c, #f97316);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-warning:hover {
            background: linear-gradient(135deg, #c2410c, #ea580c);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
            color: white;
        }

        .se-btn-warning-secondary {
            background: white;
            border: 1.5px solid #ea580c;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #374151;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-warning-secondary:hover {
            border-color: #ea580c;
            background: #fff7ed;
            color: #ea580c;
        }

        .se-btn-warning-outline {
            background: transparent;
            border: 1.5px solid #ea580c;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #ea580c;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-warning-outline:hover {
            background: #ea580c;
            color: white;
        }

        .se-btn-info {
            background: linear-gradient(135deg, #0284c7, #0ea5e9);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-info:hover {
            background: linear-gradient(135deg, #0369a1, #0284c7);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
            color: white;
        }

        .se-btn-info-secondary {
            background: white;
            border: 1.5px solid #0284c7;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #374151;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-info-secondary:hover {
            border-color: #0284c7;
            background: #f0f9ff;
            color: #0284c7;
        }

        .se-btn-info-outline {
            background: transparent;
            border: 1.5px solid #0284c7;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #0284c7;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-info-outline:hover {
            background: #0284c7;
            color: white;
        }

        .se-btn-black {
            background: linear-gradient(135deg, #1f2937, #374151);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-black:hover {
            background: linear-gradient(135deg, #111827, #1f2937);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
            color: white;
        }

        .se-btn-black-secondary {
            background: white;
            border: 1.5px solid #1f2937;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #374151;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-black-secondary:hover {
            border-color: #1f2937;
            background: #f9fafb;
            color: #1f2937;
        }

        .se-btn-black-outline {
            background: transparent;
            border: 1.5px solid #1f2937;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: #1f2937;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .se-btn-black-outline:hover {
            background: #1f2937;
            color: white;
        }
        
        .se-btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }

        .se-btn-ex-sm {
            padding: 0.3rem 0.8rem;
            font-size: 0.6rem;
        }
        
        .se-btn-lg {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        /* Link Components */
        .se-link {
            color: #008080;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            text-decoration: underline;
        }
        
        .se-link:hover {
            color: #006666;
            text-decoration: underline;
            font-weight: 600;
        }
        
        .se-link-muted {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .se-link-muted:hover {
            color: #008080;
        }

        /* Tab Components */
        .se-tabs {
            border-bottom: 2px solid #f1f3f4;
            margin-bottom: 1.5rem;
        }
        
        .se-tab-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .se-tab-item {
            margin-right: 2rem;
        }
        
        .se-tab-link {
            color: #6c757d;
            text-decoration: none;
            padding: 1rem 0;
            display: block;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }
        
        .se-tab-link:hover,
        .se-tab-link.active {
            color: #008080;
            border-bottom-color: #008080;
        }
        
        .se-tab-content {
            display: none;
        }
        
        .se-tab-content.active {
            display: block;
        }

        /* Section Components */
        .section {
            padding: 1.5rem;
            margin-bottom: 1.35rem;
        }
        
        .section.white{
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .section-header {
            border-bottom: 1px solid #f1f3f4;
            padding-top: 3px;
            padding-bottom: 3px;
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items:center;
            
        }
        .section-header-title {
            font-weight: 600;
            font-size: 1.3rem;
        }
        

        /* Typography Components */
        .se-heading-1 {
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .se-heading-2 {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .se-heading-3 {
            color: #1a1a1a;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .se-paragraph {
            color: #374151;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .se-small-text {
            color: #6c757d;
            font-size: 0.8rem;
            line-height: 1.5;
        }

        /* Bottom Navigation */
        .footer {
            background: white;
            margin-top: auto;
            padding: 0.5rem 0;
            color: #6c757d;
            font-size: 0.75rem;
        }
        .home-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e9ecef;
            padding: 0.5rem 0;
            z-index: 1000;
            display: block;
            
        }
        
        .home-nav-item {
            flex: 1;
            text-align: center;
            padding: 0.5rem;
            color: #6c757d;
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.2s ease;
        }
        
        .home-nav-item.active {
            color: #008080;
        }
        
        .home-nav-item:hover {
            color: #008080;
            text-decoration: none;
        }
        
        .home-nav-icon {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .home-bottom-nav {
                display: none;
            }
            
        }


        .error-container {
            text-align: center;
            max-width: 600px;
            padding: 0 1rem;
        }
        
        .error-illustration {
            width: 300px;
            height: 300px;
            margin: 0 auto 2rem;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .error-illustration::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 128, 128, 0.05), transparent);
            animation: errorShimmer 3s infinite;
        }
        
        .error-404 {
            font-size: 6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #008080, #20b2aa);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
        
        .error-title {
            color: #1a1a1a;
            font-weight: 600;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .error-description {
            color: #6c757d;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }
        
        .error-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        /* Animations */
        .error-fade-in {
            animation: errorFadeIn 0.8s ease-out;
        }
        
        .error-float {
            animation: errorFloat 6s ease-in-out infinite;
        }
        
        @keyframes errorFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes errorFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(1deg);
            }
        }
        
        @keyframes errorShimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .error-illustration {
                width: 250px;
                height: 250px;
            }
            
            .error-404 {
                font-size: 4.5rem;
            }
            
            .error-title {
                font-size: 1.5rem;
            }
            
            .error-description {
                font-size: 1rem;
            }
            
            .error-actions {
                flex-direction: column;
            }
            
            .error-links-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .error-illustration {
                width: 200px;
                height: 200px;
            }
            
            .error-404 {
                font-size: 3.5rem;
            }

            .section {
                padding: 1.1rem;
                margin-bottom: 1.15rem;
            }
        }

        .main-page {
            background: linear-gradient(135deg, #008080, #20b2aa);
            color: white;
            padding: 2rem 0;
            margin-bottom: 0;
        }
        
        .main-page.white{
            background: white;
            border-bottom: 1px solid #e9ecef;
        }

        .main-page-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .main-page.white .main-page-title{
            color: #1a1a1a;
        }
        
        
        .main-page-subtitle {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .main-page.white .main-page-subtitle{
            
            color: #6c757d;
        }

        .register-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .register-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            border: none;
        }
        
        .register-title {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .register-subtitle {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .home-search-section {
            background: white;
            padding: 1.5rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .home-search-bar {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .home-search-input {
            border: 1.5px solid #e9ecef;
            border-radius: 25px;
            padding: 0.75rem 3rem 0.75rem 1.5rem;
            font-size: 0.9rem;
            width: 100%;
        }
        
        .home-search-input:focus {
            border-color: #008080;
            box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
            outline: none;
        }
        
        .home-search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: #008080;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .category-card-col{
            background: white;
        }


        .category-card {
            
            background: white;
            border-radius: 6px;
            padding: 1.5rem 1rem;
            text-align: center;
            /*box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .category-card.dark{
            background: #008080;
            
        }
        
        
        .category-icon {
            width: 48px;
            height: 48px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            font-size: 1.5rem;
            color: #008080;
        }
        .category-img {
            width: 48px;
            margin: 0 auto 0.75rem;
            display: flex;
        }
        
        .category-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
        }
        .category-card.dark .category-name {
            color: #fff;
        }

        @media (max-width: 576px) {
            .listings-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
            }
            
            .category-card {
                padding: 1rem 0.75rem;
            }

            .category-icon {
                width: 38px;
                height: 38px;
            }

            .category-img {
                width: 40px;
            }
        }

        .listings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .listing-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .listing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        .listing-image {
            height: 200px;
            background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 2rem;
            overflow: hidden;
        }

        .listing-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: middle !important;
        }
        
        .listing-content {
            padding: 1rem;
        }
        
        .listing-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            font-size: 0.95rem;
        }
        
        .listing-price {
            color: #008080;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .listing-location {
            color: #6c757d;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .ad-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .ad-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0,128,128,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .ad-title {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.75rem;
        }
        
        .ad-subtitle {
            color: #6c757d;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        
        
        .coming-soon {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 2px dashed #f59e0b;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
        }
        
        .coming-soon-title {
            color: #92400e;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .coming-soon-subtitle {
            color: #a16207;
            font-size: 0.9rem;
        }
        
        .coming-soon-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: #f59e0b;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .listings-current-filter {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .listings-filter-text {
            font-weight: 500;
            color: #374151;
        }
        
        .listings-filter-count {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .listings-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .listings-pagination-btn {
            background: white;
            border: 1px solid #d1d5db;
            color: #374151;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }
        
        .listings-pagination-btn:hover {
            background: #f9fafb;
            border-color: #008080;
            color: #008080;
            text-decoration: none;
        }
        
        .listings-pagination-btn.active {
            background: #008080;
            border-color: #008080;
            color: white;
        }
        
        .listings-pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .listings-pagination-btn.disabled:hover {
            background: white;
            border-color: #d1d5db;
            color: #374151;
        }

        .listing-product-card{
            overflow: hidden !important;
            position: relative;
            background-color: #fff;
            border-radius: 5px !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 0 !important;
        }
    

        .listing-product-card-img-cvr{
            height: 150px;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }


        .listing-product-card-img-cvr img{
            width: 100%;
            height: 100%;
            object-fit: cover !important;
            vertical-align: middle !important;
        }

        @media only screen and (max-width: 768px) {
            .listing-product-card-img-cvr{
                max-height: 120px; 
            }
            
        }

        @media (max-width: 576px) {
            
            
            .listings-filter-section {
                top: 65px;
            }
            
            .listings-current-filter {
                
                gap: 0.5rem;
            }
            
            
        }


        .accordion-button:not(.collapsed) {
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        .accordion-item {
            border: none !important;
            border-bottom: 1px solid #dee2e6 !important;
        }
        .category-alert-switch {
            cursor: pointer;
        }

        .accordion-button-no-caret {
            padding: 1rem 1.25rem;
            font-size: 1rem;
            color: #212529;
            text-align: left;
            background-color: #fff;
            border: 0;
            border-radius: 0;
            overflow-anchor: none;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
            width: 100%;
        }
        .accordion-button-no-caret::after {
            display: none !important;
        }

        .categories-info h6 {
            margin: 0;
            color: #1a1a1a;
            font-weight: 500;
        }
        
        .categories-count {
            color: #6c757d;
            font-size: 0.8rem;
            margin: 0;
        }

        .categories-subcategory-name {
            color: #374151;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .categories-subcategory-count {
            color: #9ca3af;
            font-size: 0.75rem;
        }

        .categories-alert-toggle {
            background: none;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem;
            color: #6c757d;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .categories-alert-toggle:hover {
            border-color: #008080;
            color: #008080;
        }
        
        .categories-alert-toggle.active {
            background: #008080;
            border-color: #008080;
            color: white;
        }

        .cat-icon-list{
            width: 50px;
        }

        

        .sell-container {
            max-width: 800px;
            
        }

        .sell-form-card {
            background: white;
            border-radius: 16px;
            
            padding: 2rem;
            border: none;
        }

        

        .cat-item{
            cursor: pointer;
        }

        .gallery-container {
            position: relative;
            display: flex;
            overflow-x: auto;
        
        }

        .gallery-item {
            position: relative;
            width: 80px;
            height: 80px;
            flex: 0 0 auto;
            overflow: hidden;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: middle !important;
        }
        .remove-btn {
            position: absolute;
            top: 0;
            right: 0;
            border: none;
            cursor: pointer;
            padding: 2px 5px;
        }

        .custom-upload {
            width: 80px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: border-color 0.3s;
            text-align: center;
            background-color: #fafafa;
            color: #1A1D20;
            position: sticky;
            left: 0;
            flex-shrink: 0;
            z-index: 1;

        }
        
        .custom-upload:hover {
            background-color: #EBEBEB;
            
        }

        .custom-upload i {
            font-size: 2rem;
        }

        input[type="file"] {
            display: none;
        }

        @media (max-width: 576px) {
            .cat-icon-list{
                width: 30px;
            }

            .sell-form-card {
                padding: .5rem;
            }

            .custom-upload {
                width: 60px;
                height: 60px;
            }

            .gallery-item {
                position: relative;
                width: 60px;
                height: 60px;
            }
            .custom-upload i {
                font-size: 1.5rem;
            }
        }



        .product-gallery {
            background: white;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        

        .product-image{
            height: 400px;
            width: 100%;
            position: relative;
            overflow: hidden;
            text-align: center;
            cursor: pointer;
            
        }

        .product-image img{
            width: 100%;
            height: 100%;
            object-fit: contain !important;
            vertical-align: middle !important;
            cursor: zoom-in;
        }

        .product-image img:hover {
           transform: scale(1.05);
        }

       
        .zoom-btn{
            position: absolute;
            top: 0;
            left:0;
        }

        .modal-img {
            max-width: 90%;
            max-height: 80vh;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            padding: 10px 15px;
            color: white;
            font-size: 24px;
            z-index: 1056;
        }

        .prev-btn {
        left: 10px;
        }
        .next-btn {
        right: 10px;
        }
        
        .product-details {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .product-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }
        
        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #008080;
            margin-bottom: 1rem;
        }
        
        .product-description {
            color: #374151;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 15px;
        }

        .product-features {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .product-features-table {
            width: 100%;
            border: none;
        }
        
        .product-features-table tr {
            border-bottom: 1px solid #f1f3f4;
        }
        
        .product-features-table tr:last-child {
            border-bottom: none;
        }
        
        .product-features-table td {
            padding: 0.875rem 0;
            border: none;
            vertical-align: top;
        }
        
        .product-feature-label {
            font-weight: 500;
            color: #6c757d;
            width: 140px;
        }
        
        .product-feature-value {
            color: #374151;
            font-weight: 400;
        }
        
        .product-share {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .product-share-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .product-share-btn {
            flex: 1;
            min-width: 120px;
            padding: 0.75rem 1rem;
            border: 1.5px solid #e9ecef;
            background: white;
            color: #374151;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .product-share-btn:hover {
            border-color: #008080;
            background: #f0fffe;
            color: #008080;
            text-decoration: none;
        }
        
        .product-lister-review {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .product-lister-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        
        .product-lister-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #008080, #20b2aa);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.25rem;
        }
        
        .product-lister-info h4 {
            margin: 0 0 0.25rem 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .product-lister-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }
        
        .product-stars {
            color: #fbbf24;
        }
        
        .product-lister-stats {
            color: #6c757d;
            font-size: 0.875rem;
        }
        
        .product-view-profile-btn {
            background: #008080;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .product-view-profile-btn:hover {
            background: #006666;
        }
        
        .product-similar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .product-similar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .product-similar-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .product-similar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #008080;
        }
        
        .product-similar-image {
            height: 150px;
            background: linear-gradient(45deg, #e5e7eb, #d1d5db);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        
        .product-similar-title {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        
        .product-similar-price {
            color: #008080;
            font-weight: 600;
            font-size: 1rem;
        }

        @media (max-width: 576px) {
            .product-image {
                height: 300px;
                
            }
            .product-title {
                font-size: 1.25rem;
            }
            
            .product-price {
                font-size: 1.2rem;
            }
            
            .product-share-buttons {
                flex-direction: column;
            }
            
            .product-share-btn {
                min-width: auto;
            }
        }

        /* ---------SPLIDE--------- */
        .splide {
        margin-bottom: -20px !important;
        }
        
        .splide:active {
        cursor: zoom-in;
        }
        
        .splide .splide__list {
        padding-bottom: 20px !important;
        }

    .carousel-single .splide__slide {
        margin-left: -16px !important;
        padding-right: 16px !important;
        z-index: 99 !important;
        }

        
        @media (max-width: 768px) {
            .buyNowBtn{
                
                padding: 15px;
                width: 100%;
                position: fixed;
                bottom: 0;
                left: 0;
                height: fit-content;
                background-color: #fff;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
                z-index: 99999;
                border-radius:0 !important ;
                border-top-left-radius: 10px !important ;
                border-top-right-radius: 10px !important ;
                
            }

            .order-action{
                
                width: 100% !important;
                position: fixed !important;
                top: auto !important;
                bottom: 0 !important;
                left: 0 !important;
                height: fit-content !important;
                z-index: 99999 !important;
                padding: 0.75rem !important;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
                border-radius:0 !important ;
                border-top-left-radius: 10px !important ;
                border-top-right-radius: 10px !important ;
                
            }
            .editProductAction{
                width: 100% !important;
                position: fixed !important;
                top: auto !important;
                bottom: 0 !important;
                left: 0 !important;
                height: fit-content !important;
                z-index: 99999 !important;
                padding: 0.75rem !important;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
                border-radius:0 !important ;
                border-top-left-radius: 10px !important ;
                border-top-right-radius: 10px !important ;
                background: white;
            }

            .order-container{
                padding-bottom: 150px;
            }

            .productPageCont{
                margin-bottom: 100px !important;
            }
        }
    

        /* ACCOUNT */

        .account-profile-card {
            background: linear-gradient(135deg, #008080, #20b2aa);
            color: white;
            border-radius: 16px;
            padding: 2rem;
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .account-profile-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .account-avatar {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .account-profile-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .account-profile-email {
            opacity: 0.9;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .account-profile-stats {
            display: flex;
            gap: 2rem;
        }
        
        .account-stat {
            text-align: center;
        }
        
        .account-stat-number {
            font-size: 1.25rem;
            font-weight: 600;
            display: block;
        }
        
        .account-stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        .account-menu {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .account-menu-item {
            display: flex;
            align-items: center;
            padding: 1.25rem 1.5rem;
            color: #374151;
            text-decoration: none;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .account-menu-item:last-child {
            border-bottom: none;
        }
        
        .account-menu-item:hover {
            background: #f8f9fa;
            color: #008080;
            text-decoration: none;
        }
        
        .account-menu-item.logout {
            background: #fef2f2;
            color: #dc2626;
        }

        
        .account-menu-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 128, 128, 0.1);
            color: #008080;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.1rem;
            
            transition: all 0.2s ease;
        }
        
        .account-menu-item:hover .account-menu-icon {
            background: rgba(0, 128, 128, 0.1);
            color: #008080;
        }
        
        .account-menu-item.logout .account-menu-icon {
            background: rgba(220, 38, 38, 0.1);
            color: #dc2626;
        }
        
        .account-menu-content {
            flex: 1;
        }
        
        .account-menu-title {
            font-weight: 500;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .account-menu-subtitle {
            color: #6c757d;
            font-size: 0.8rem;
            margin: 0;
        }
        
        .account-menu-arrow {
            color: #9ca3af;
            font-size: 1rem;
        }
        
        .account-menu-badge {
            background: #dc2626;
            color: white;
            border-radius: 12px;
            padding: 0.25rem 0.5rem;
            font-size: 0.7rem;
            font-weight: 500;
            margin-left: auto;
            margin-right: 0.5rem;
        }
        
        .account-menu-badge.success {
            background: #16a34a;
        }
        
        .account-menu-badge.warning {
            background: #f59e0b;
        }

        .account-menu-badge.primary {
            background: #008080;
        }

        @media (max-width: 576px) {
            .account-profile-stats {
                gap: 1.5rem;
            }
            
            .account-profile-card {
                padding: 1.5rem;
            }
            
            .account-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
        
        /* Animations */
        .account-fade-in {
            animation: accountFadeIn 0.6s ease-out;
        }
        
        @keyframes accountFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .account-slide-up {
            animation: accountSlideUp 0.5s ease-out;
        }
        
        @keyframes accountSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .alerts-categories {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .alerts-category-item {
            display: flex;
            align-items: center;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.2s ease;
        }
        
        .alerts-category-item:last-child {
            border-bottom: none;
        }
        
        .alerts-category-item:hover {
            background: #f8f9fa;
        }
        
        .alerts-category-icon {
            width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            
            flex-shrink: 0;
        }
        
        .alerts-category-content {
            flex: 1;
            min-width: 0;
        }
        
        .alerts-category-name {
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .alerts-category-description {
            color: #6c757d;
            font-size: 0.8rem;
            margin: 0;
        }
        
        .alerts-category-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.25rem;
        }
        
        .alerts-category-count {
            color: #008080;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .alerts-category-last {
            color: #9ca3af;
            font-size: 0.7rem;
        }
        
        .alerts-toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
            margin-left: 1rem;
        }
        
        .alerts-toggle-input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .alerts-toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            border-radius: 26px;
            transition: .3s;
        }
        
        .alerts-toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            border-radius: 50%;
            transition: .3s;
        }
        
        .alerts-toggle-input:checked + .alerts-toggle-slider {
            background-color: #008080;
        }
        
        .alerts-toggle-input:checked + .alerts-toggle-slider:before {
            transform: translateX(24px);
        }
        
        .alerts-master-toggle {
            width: 60px;
            height: 30px;
        }
        
        .alerts-master-toggle .alerts-toggle-slider:before {
            height: 24px;
            width: 24px;
        }
        
        .alerts-master-toggle .alerts-toggle-input:checked + .alerts-toggle-slider:before {
            transform: translateX(30px);
        }
        @media (max-width: 576px) {
            .alerts-intro-stats {
                gap: 1.5rem;
            }
            
            .alerts-category-item {
                padding: 1rem;
            }
            
            .alerts-category-icon {
                width: 40px;
                
            }
            
            .alerts-controls {
                padding: 1rem;
            }
        }
        
        /* Animations */
        .alerts-fade-in {
            animation: alertsFadeIn 0.6s ease-out;
        }
        
        @keyframes alertsFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alerts-slide-in {
            animation: alertsSlideIn 0.4s ease-out;
        }
        
        @keyframes alertsSlideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .alerts-pulse {
            animation: alertsPulse 0.6s ease-in-out;
        }
        
        @keyframes alertsPulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }


        .wallet-card {
            background: linear-gradient(135deg, #008080, #20b2aa);
            color: white;
            border-radius: 20px;
            padding: 2rem;
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 128, 128, 0.3);
        }
        
        .wallet-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .wallet-card::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .wallet-card-header {
            display: flex;
            justify-content: between;
            align-items: flex-start;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .wallet-card-title {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 400;
        }
        
        .wallet-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-left: auto;
        }
        
        .wallet-balance {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
        }
        
        .wallet-balance-label {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }
        
        .wallet-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        .wallet-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .wallet-action-icon {
            font-size: 1.2rem;
        }
        
        .wallet-transaction-section {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .wallet-filter-btn {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            color: #6c757d;
            border-radius: 8px;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        
        .wallet-filter-btn:hover {
            background: #e9ecef;
            color: #374151;
        }
        
        .wallet-transaction-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.2s ease;
        }
        
        .wallet-transaction-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .wallet-transaction-item:hover {
            background: #f8f9fa;
            margin: 0 -1rem;
            padding: 1rem;
            border-radius: 12px;
        }
        
        .wallet-transaction-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .wallet-transaction-icon.credit {
            background: #dcfce7;
            color: #16a34a;
        }
        
        .wallet-transaction-icon.debit {
            background: #fef2f2;
            color: #dc2626;
        }
        
        .wallet-transaction-icon.pending {
            background: #fef3c7;
            color: #f59e0b;
        }
        
        .wallet-transaction-content {
            flex: 1;
        }
        
        .wallet-transaction-title {
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .wallet-transaction-desc {
            color: #6c757d;
            font-size: 0.8rem;
            margin: 0;
        }
        
        .wallet-transaction-amount {
            text-align: right;
        }
        
        .wallet-transaction-money {
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .wallet-transaction-money.credit {
            color: #16a34a;
        }
        
        .wallet-transaction-money.debit {
            color: #dc2626;
        }
        
        .wallet-transaction-money.pending {
            color: #f59e0b;
        }
        
        .wallet-transaction-date {
            color: #9ca3af;
            font-size: 0.75rem;
            margin: 0;
        }
        
        .wallet-transaction-status {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.025em;
        }
        
        .wallet-transaction-status.success {
            background: #dcfce7;
            color: #16a34a;
        }
        
        .wallet-transaction-status.pending {
            background: #fef3c7;
            color: #f59e0b;
        }
        
        .wallet-transaction-status.failed {
            background: #fef2f2;
            color: #dc2626;
        }

        .wallet-amount-shortcuts {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .wallet-amount-shortcut {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            color: #6c757d;
            border-radius: 6px;
            padding: 0.375rem 0.75rem;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .wallet-amount-shortcut:hover,
        .wallet-amount-shortcut.active {
            background: #008080;
            border-color: #008080;
            color: white;
        }
            

        @media (max-width: 576px) {
            .wallet-balance {
                font-size: 2rem;
            }
            
            .wallet-card {
                padding: 1.5rem;
            }
            
            .wallet-actions {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
        }
        
        /* Animations */
        .wallet-fade-in {
            animation: walletFadeIn 0.6s ease-out;
        }
        
        @keyframes walletFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .wallet-slide-up {
            animation: walletSlideUp 0.8s ease-out;
        }
        
        @keyframes walletSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .checkout-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #f1f3f4;
        }
        
        .checkout-section-title {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f1f3f4;
        }
        
        /* Product Summary */
        .checkout-product {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .checkout-product-image {
            width: 100px;
            height: 100px;
            min-width: 100px;
            overflow: hidden;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .checkout-product-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: middle;
        }   
        
        .checkout-product-info {
            flex: 1;
        }
        
        .checkout-product-name {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }
        
        .checkout-product-price {
            font-weight: 700;
            color: #008080;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .checkout-product-location {
            color: #6c757d;
            font-size: 0.875rem;
        }
        
        /* Escrow Rules Section */
        .checkout-warning {
            background: #fff9e6;
            border-left: 4px solid #f59e0b;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .checkout-warning-title {
            color: #d97706;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkout-warning-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .checkout-warning-list li {
            color: #374151;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
        }
        
        .checkout-warning-list li:before {
            /*content: '•';
            
            left: 0.5rem;*/
            position: absolute;
            color: #f59e0b;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .checkout-warning-list li strong {
            color: #1a1a1a;
        }
        
        /* Tips Section */
        .checkout-info {
            background: #e6f7f7;
            border-left: 4px solid #008080;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .checkout-info-title {
            color: #008080;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkout-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .checkout-info-list li {
            color: #374151;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
        }
        
        .checkout-info-list li:before {
            /*content: '✓';
            left: 0.5rem;*/
            position: absolute;
            
            color: #008080;
            font-weight: bold;
            font-size: 1.25rem;
        }
        
        /* Payment Section */
        .checkout-payment {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            border: 1px solid #f1f3f4;
            position: sticky;
            top: 90px;
        }
        
        .checkout-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f3f4;
        }
        
        .checkout-price-row:last-child {
            border-bottom: none;
        }
        
        .checkout-price-label {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .checkout-price-value {
            color: #1a1a1a;
            font-weight: 500;
        }
        
        .checkout-total-row {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }
        
        .checkout-total-label {
            color: #1a1a1a;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .checkout-total-value {
            color: #008080;
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .checkout-terms {
            background: #f8f9fa;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .checkout-terms-check {
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }
        
        .checkout-terms-check input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 0.25rem;
            cursor: pointer;
            accent-color: #008080;
        }
        
        .checkout-terms-check label {
            color: #374151;
            font-size: 0.9rem;
            line-height: 1.5;
            cursor: pointer;
        }
        
        
        
        /* Bottom Payment Bar (Mobile) */
        .checkout-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e9ecef;
            padding: 1rem;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            border-radius:0 !important ;
                border-top-left-radius: 10px !important ;
                border-top-right-radius: 10px !important ;
        }
        
        .checkout-bottom-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .checkout-bottom-total {
            color: #1a1a1a;
            font-weight: 600;
        }
        
        .checkout-bottom-price {
            color: #008080;
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        /* Scroll Indicator */
        .checkout-scroll-indicator {
            background: #fff9e6;
            border: 1px solid #fbbf24;
            border-radius: 8px;
            padding: 0.75rem;
            text-align: center;
            color: #d97706;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }
        
        .checkout-scroll-indicator i {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        /* Responsive */
        @media (min-width: 769px) {
            .checkout-bottom-bar {
                display: none;
            }
        }
        
        @media (max-width: 991.98px) {
            .checkout-container {
                margin-bottom: 180px;
            }
        }
        @media (max-width: 768px) {
           
            .checkout-payment {
                position: static;
            }
            
            .checkout-product {
                flex-direction: column;
            }
            
            .checkout-product-image {
                width: 100%;
                height: 200px;
            }
            
            
        }
        
        /* Animation */
        .checkout-fade-in {
            animation: checkoutFadeIn 0.6s ease-out;
        }
        
        @keyframes checkoutFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Filter Tabs */
        .status-tab {
            background: white;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            /*
            position: sticky;
            top: 90px; */
        }

        .sticky {
            
            position: sticky;
            top: 90px; 
        }
        
        
        .status-tab-tabs {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            padding-bottom: 0.3rem;
        }
        
        .status-tab-tabs::-webkit-scrollbar {
            height: 4px;
        }
        
        .status-tab-tabs::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 2px;
        }
        
        .status-tab-tab {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 20px;
            padding: 0.5rem 1rem;
            color: #6c757d;
            font-size: 0.875rem;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .status-tab-tab:hover {
            border-color: #008080;
            color: #008080;
        }
        
        .status-tab-tab.active {
            background: #008080;
            border-color: #008080;
            color: white;
        }
        
        .status-tab-tab .badge {
            background: rgba(0, 0, 0, 0.1);
            padding: 0.125rem 0.5rem;
            border-radius: 10px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }
        
        .status-tab-tab.active .badge {
            background: rgba(255, 255, 255, 0.3);
        }

        .orders-filter-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f3f4f6;
            background: #fafbfc;
        }

        .orders-filter-title {
            font-weight: 500;
            color: #374151;
            font-size: 0.9rem;
        }

        .orders-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .orders-item {
            border-bottom: 1px solid #f3f4f6;
            padding: 1.5rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .orders-item:last-child {
            border-bottom: none;
        }
        
        .orders-item:hover {
            /*background: #f8f9fa;*/
        }
        
        .orders-item-header {
            display: flex;
            justify-content: between;
            align-items: flex-start;
            
            gap: 1rem;
        }
        
        .orders-item-image {
            width: 60px;
            height: 60px;
            overflow: hidden;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .orders-item-image-sm {
            width: 40px !important;
            height: 40px !important;
        }

        .orders-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: middle !important;
        }

        .orders-item-details {
            flex: 1;
            min-width: 0;
        }
        
        .orders-item-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #1a1a1a;
            font-size: 0.95rem;
            line-height: 1.3;
        }
        
        .orders-item-id {
            color: #6c757d;
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }
        
        .orders-item-price {
            color: #008080;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .orders-item-date {
            color: #6c757d;
            font-size: 0.8rem;
        }
        
        .orders-item-status {
            flex-shrink: 0;
            text-align: right;
        }
        
        .orders-status-badge {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            display: inline-block;
        }
        
        .orders-status-badge.active {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
        }
        
        .orders-status-badge.withdrawn {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }
        
        .orders-status-badge.success {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        .orders-item-arrow {
            color: #9ca3af;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        @media (max-width: 576px) {
            .status-tab {
                border-radius: 8px;
                padding: 0.5rem;
                margin-bottom: 1rem;
                
            }

            .status-tab-tab {
                border-radius: 10px;
                padding: 0.3rem 0.7rem;
                color: #6c757d;
                font-size: 0.675rem;
            }

            .orders-item {
                padding: 1rem;
            }
            
            .orders-item-header {
                gap: 0.75rem;
            }
            
            .orders-item-image {
                width: 50px;
                height: 50px;
                
            }

            .orders-item-image-sm {
                width: 30px !important;
                height: 30px !important;
            }
            
            .orders-filter-section {
                padding: 0.75rem 1rem;
                /*
                flex-direction: column;
                align-items: flex-start; */
                gap: 0.5rem;
                
            }

        }


        .order-details-status-badge {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
        }

        .order-details-status-badge.warning {
            background: rgba(255, 193, 7, 0.2);   /* amber / pending */
            border-color: rgba(255, 193, 7, 0.35);
            color: #ffc107;
        }

        .order-details-status-badge.active {
            background: rgba(0, 123, 255, 0.2);   /* blue / active */
            border-color: rgba(0, 123, 255, 0.35);
            color: #007bff;
        }

        .order-details-status-badge.success {
            background: rgba(40, 167, 69, 0.2);   /* green / success */
            border-color: rgba(40, 167, 69, 0.35);
            color: #28a745;
        }

        .order-details-status-badge.failed {
            background: rgba(220, 53, 69, 0.2);   /* red / failed */
            border-color: rgba(220, 53, 69, 0.35);
            color: #dc3545;
        }

        .details-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        
        .details-card-header {
            padding: 1.5rem;
            border-bottom: 1px solid #f3f4f6;
            background: #fafbfc;
        }
        
        .details-card-title {
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
            font-size: 1.1rem;
        }
        
        .details-card-content {
            padding: 1.5rem;
        }

         @media (max-width: 576px) {
            .details-card-content {
                padding: 1rem;
            }
            
            .details-card-header {
                padding: 1rem;
            }
            
        }


        /* lister Section */
        .order-details-lister-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #008080, #20b2aa);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .order-details-lister-avatar-img{
            width: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid transparent;
            border-image: linear-gradient(135deg, #008080, #20b2aa) 1;
        }

        .order-details-lister-avatar-img img{
            width: 100%;
        }
        
        .order-details-lister-info {
            flex: 1;
            min-width: 0;
        }
        
        .order-details-lister-name {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }
        
        .order-details-lister-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .order-details-rating-stars {
            color: #fbbf24;
            font-size: 0.9rem;
        }
        
        .order-details-rating-text {
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        .order-details-lister-contact {
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        /* Order Timeline */
        .order-details-timeline {
            position: relative;
            padding-left: 2rem;
        }
        
        .order-details-timeline::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e5e7eb;
        }
        
        .order-details-timeline-item {
            position: relative;
            padding-bottom: 1.5rem;
        }
        
        .order-details-timeline-item:last-child {
            padding-bottom: 0;
        }
        
        .order-details-timeline-dot {
            position: absolute;
            left: -1.75rem;
            top: 0.25rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e5e7eb;
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px #e5e7eb;
        }
        
        .order-details-timeline-dot.pending {
            background: #ffc107;
            box-shadow: 0 0 0 2px #fff5cc;
        }
        .order-details-timeline-dot.active {
            background: #0d6efd;
            box-shadow: 0 0 0 2px #cfe2ff;
        }
        .order-details-timeline-dot.success {
            background: #198754;
            box-shadow: 0 0 0 2px #d1e7dd;
        }
        .order-details-timeline-dot.failed {
            background: #dc3545;
            box-shadow: 0 0 0 2px #f8d7da;
        }

        .order-details-timeline-dot.default {
            background: #008080;
            box-shadow: 0 0 0 2px #bcd0c7;
        }
        
        .order-details-timeline-content {
            font-size: 0.9rem;
        }
        
        .order-details-timeline-title {
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .order-details-timeline-description {
            color: #495057;
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
            font-style: italic;
        }
        
        .order-details-timeline-date {
            color: #6c757d;
            font-size: 0.8rem;
        }


        .order-action {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            border: 1px solid #f1f3f4;
            position: sticky;
            top: 90px;
        }


        .order-details-amount-breakdown {
            border-top: 1px solid #f3f4f6;
            padding-top: 1rem;
            margin-top: 1rem;
        }
        
        .order-details-amount-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        .order-details-amount-row:last-child {
            margin-bottom: 0;
            padding-top: 0.5rem;
            border-top: 1px solid #f3f4f6;
            font-weight: 600;
            font-size: 1rem;
            color: #1a1a1a;
        }
        
        .order-details-amount-label {
            color: #6c757d;
        }
        
        .order-details-amount-value {
            color: #1a1a1a;
            font-weight: 500;
        }
        
        .order-details-amount-row:last-child .order-details-amount-value {
            color: #008080;
        }

        .star-rating {
            
            
            cursor: pointer;
        }
        
        .star-rating i {
            font-size: 1.2rem;
            color: #6c757d;
            transition: all 0.2s ease;
            margin-right: 5px;
        }
        
        .star-rating i.bi-star-fill {
            color: #ffc107;
        }
        
        .star-rating i:hover {
            transform: scale(1.1);
        }


        /* Notifications List */
        .notifications-list {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .notifications-item {
            display: flex;
            gap: 1rem;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid #f1f3f4;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }
        
        .notifications-item:last-child {
            border-bottom: none;
        }
        
        .notifications-item:hover {
            background: #f8f9fa;
        }
        
        .notifications-item.unread {
            background: #f0fdfa;
        }
        
        .notifications-item.unread:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #008080;
        }
        
        .notifications-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
        }
        
        .notifications-icon.order {
            background: linear-gradient(135deg, #008080, #20b2aa);
        }
        
        .notifications-icon.message {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }
        
        .notifications-icon.payment {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        
        .notifications-icon.alert {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .notifications-icon.product {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }
        
        .notifications-icon.review {
            background: linear-gradient(135deg, #ec4899, #f97316);
        }

        .notifications-icon.settings {
            background: linear-gradient(135deg, #64748b, #334155);
        }

        .notifications-icon.auction {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
        }

        .notifications-icon.bid {
            background: linear-gradient(135deg, #9333ea, #db2777);
        }

        .notifications-content {
            flex: 1;
        }
        
        .notifications-content-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 0.25rem;
        }
        
        .notifications-content-title {
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .notifications-content-time {
            color: #9ca3af;
            font-size: 0.75rem;
            white-space: nowrap;
        }
        
        .notifications-content-message {
            color: #6c757d;
            font-size: 0.875rem;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        /* 📱 Mobile adjustments */
@media (max-width: 576px) {

    .notifications-item {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .notifications-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .notifications-content-title {
        font-size: 0.9rem;
    }

    .notifications-content-time {
        font-size: 0.5rem;
    }

    .notifications-content-message {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }

    .notifications-content-header {
        gap: 0.5rem;
    }
    .text-sm {
        font-size: 11px;
    }
}

        
    .transactions-summary-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .transactions-summary-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        border: 1px solid #f1f3f4;
    }
    
    .transactions-summary-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.25rem;
        color: white;
    }
    
    .transactions-summary-label {
        color: #6c757d;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .transactions-summary-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
    }


    .transactions-list {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .transactions-item {
            border-bottom: 1px solid #f1f3f4;
            padding: 1.25rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .transactions-item:last-child {
            border-bottom: none;
        }
        
        .transactions-item:hover {
            background: #f8f9fa;
        }
        
        .transactions-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.25rem;
            color: white;
        }
        
        .transactions-item-info {
            flex: 1;
        }
        
        .transactions-item-title {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .transactions-item-meta {
            color: #6c757d;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .transactions-item-amount {
            text-align: right;
        }
        
        .transactions-amount-value {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .transactions-amount-positive {
            color: #10b981;
        }
        
        .transactions-amount-negative {
            color: #ef4444;
        }
        
        .transactions-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
        }
        
        .transactions-badge-success {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
        }
        
        .transactions-badge-pending {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
        }
        
        .transactions-badge-settled {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }
        
        .transactions-badge-cancelled {
            background: rgba(107, 114, 128, 0.1);
            color: #6b7280;
        }

        .transactions-detail-section {
            margin-bottom: 1.5rem;
        }
        
        .transactions-detail-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .transactions-detail-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
            margin-bottom: 1rem;
        }
        
        .transactions-detail-amount {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        
        .transactions-detail-status {
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .transactions-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f3f4;
        }
        
        .transactions-detail-row:last-child {
            border-bottom: none;
        }
        
        .transactions-detail-label {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .transactions-detail-value {
            color: #1a1a1a;
            font-weight: 500;
            text-align: right;
        }
        
        .transactions-divider {
            height: 1px;
            background: #f1f3f4;
            margin: 1.5rem 0;
        }


        @media (max-width: 768px) {
        .transactions-summary-cards {
            grid-template-columns: 1fr;
        }

        .transactions-item-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
            }
    }


    /* Content Section */
        .maintenance-content {
            text-align: center;
            max-width: 600px;
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: maintenanceSlideUp 1s ease-out;
        }

        .maintenance-title {
            color: #1a1a1a;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #008080, #20b2aa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .maintenance-subtitle {
            color: #374151;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        
        .maintenance-description {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .maintenance-content {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }
            
            .maintenance-title {
                font-size: 2rem;
            }
            
            .maintenance-subtitle {
                font-size: 1.1rem;
            }
            
            
        }
        
        @media (max-width: 480px) {
            
            
            .maintenance-content {
                padding: 1.5rem 1rem;
            }
            
            
            .maintenance-title {
                font-size: 1.8rem;
            }
        }


        .products-item-details {
            flex: 1;
            min-width: 0;
        }
        
        .products-item-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #1a1a1a;
            font-size: 0.95rem;
            line-height: 1.3;
        }
        
        .products-item-category {
            color: #6c757d;
            font-size: 0.8rem;
            margin-bottom: 0.3rem;
        }
        
        .products-item-price {
            color: #008080;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        
        .products-item-meta {
            font-size: 0.8rem;
            color: #6c757d;
        }
        
        .products-item-meta span {
           margin-left: 2px;
           margin-right: 2px;
        }



        .editproduct-actions {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            position: sticky;
            top: 90px;
        }
        
        .editproduct-status-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .editproduct-status-label {
            font-size: 0.875rem;
            color: #6c757d;
            margin-bottom: 0.5rem;
        }
        
        .editproduct-status-value {
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Order Meta Grid Styles */
.order-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    
}

.meta-item-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    font-size: 0.8rem;
}

.meta-label {
    background: #e9ecef;
    padding: 0.375rem 0.5rem;
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
    min-width: fit-content;
}

.meta-value {
    padding: 0.375rem 0.5rem;
    flex: 1;
    color: #212529;
}

.order-role-indicator {
    margin-top: 0.25rem;
}

/* Responsive: Single column on small screens */
@media (max-width: 576px) {
    .order-meta-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .meta-item-wrapper {
        
        font-size: 0.7rem;
    }

    .meta-label {
        padding: 0.355rem 0.4rem;
    }

    .meta-value {
        padding: 0.355rem 0.4rem;
    }    
}

        @media (max-width: 768px) {
            
            .products-item-meta {
                font-size: 0.6rem;
                color: #6c757d;
            }
            .editproduct-actions {
                position: static;
                margin-top: 1.5rem;
            }

            .editproduct-action-box{
                width: 100% !important;
                position: fixed !important;
                top: auto !important;
                bottom: 0 !important;
                left: 0 !important;
                height: fit-content !important;
                z-index: 99999 !important;
                padding: 0.75rem !important;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
                border-radius:0 !important ;
                border-top-left-radius: 10px !important ;
                border-top-right-radius: 10px !important ;   
            }    
        }

        /* Hide default radio completely */
input[name="locationFilter"] {
    display: none;
}

/* Make the entire label clickable */
.form-check-label {
    cursor: pointer;
    display: block;
}

/* Default state */
.form-check-label .border {
    border: 1px solid #dee2e6 !important;
    transition: all 0.2s ease !important;
}

/* Hover state */
.form-check-label:hover .border {
    border-color: #008080 !important;
}

/* Checked state */
input[name="locationFilter"]:checked + label .border {
    border-color: #008080 !important;
    background-color: rgba(0, 128, 128, 0.05) !important;
}



/* Product Info Bar */
        .auctionbids-info-bar {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f3f4;
        }
        
        .auctionbids-product-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .auctionbids-product-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        
        .auctionbids-product-image img {
            width: 100%;
            height: 100%;

            object-fit: cover;
            vertical-align: middle !important;
            
        }
        .auctionbids-product-info {
            flex: 1;
        }
        
        .auctionbids-product-title {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }
        
        .auctionbids-product-meta {
            color: #6c757d;
            font-size: 0.875rem;
        }
        
        .auctionbids-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
        }
        
        .auctionbids-stat-item {
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .auctionbids-stat-label {
            color: #6c757d;
            font-size: 0.75rem;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .auctionbids-stat-value {
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .auctionbids-stat-value.highlight {
            color: #008080;
            font-size: 1.3rem;
        }
        
        .auctionbids-stat-value.urgent {
            color: #ef4444;
        }
        
        .auctionbids-status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
        }
        
        .auctionbids-status-active {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
        }
        
        .auctionbids-status-ending {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
        }
        
        .auctionbids-status-ended {
            background: rgba(107, 114, 128, 0.1);
            color: #6b7280;
        }
        
        /* Section Header */
        .auctionbids-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .auctionbids-section-title {
            color: #1a1a1a;
            font-weight: 600;
            margin: 0;
        }
        
        .auctionbids-bid-count {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        /* Bids List */
        .auctionbids-list {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .auctionbids-item {
            border-bottom: 1px solid #f1f3f4;
            padding: 1.25rem;
            transition: all 0.2s ease;
        }
        
        .auctionbids-item:last-child {
            border-bottom: none;
        }
        
        .auctionbids-item:hover {
            background: #f8f9fa;
        }
        
        .auctionbids-item.winner {
            background: rgba(0, 128, 128, 0.05);
            border-left: 4px solid #008080;
        }
        
        .auctionbids-item-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* User Card (Left Side) */
        .auctionbids-user-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }
        
        .auctionbids-user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #008080, #20b2aa);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .auctionbids-user-info {
            flex: 1;
        }
        
        .auctionbids-user-name {
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .auctionbids-user-location {
            color: #6c757d;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        /* Bid Amount (Right Side) */
        .auctionbids-bid-amount {
            text-align: right;
        }
        
        .auctionbids-bid-price {
            color: #008080;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .auctionbids-bid-status {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            display: inline-block;
        }
        
        .auctionbids-bid-leading {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
        }
        
        .auctionbids-bid-outbid {
            background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
        }
        
        .auctionbids-bid-winner {
            background: rgba(0, 128, 128, 0.1);
            color: #008080;
        }
        
        .auctionbids-bid-time {
            color: #9ca3af;
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }

        
        .auctionbids-bid-winning {
            background: rgba(16, 185, 129, 0.15);
            color: #047857;
            font-weight: 600;
        }


        .auctionbids-bid-failed {
           background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
        }

        /* Additional product status style */
        .auctionbids-status-pending {
            background: rgba(251, 191, 36, 0.1);
            color: #d97706;
        }
        
        /* Mobile adjustments */
        @media (max-width: 768px) {
            .auctionbids-main {
                padding-bottom: 6rem;
            }
            
            .auctionbids-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .auctionbids-product-header {
                flex-direction: column;
                text-align: center;
            }
            
            .auctionbids-bottom-nav {
                display: block;
            }
            
            .auctionbids-bid-price {
                font-size: 1rem;
            }

            .auctionbids-item {
                
                padding: 0.75rem;
                
            }
        }


        .auctionbids-status-selection {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.auctionbids-status-completed {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.auctionbids-status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Short Bids List Styles */
    .shortbids-list {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .shortbids-item {
        border-bottom: 1px solid #f1f3f4;
        padding: 0.85rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.2s ease;
    }
    
    .shortbids-item:last-child {
        border-bottom: none;
    }
    
    .shortbids-item:hover {
        background: #f8f9fa;
    }
    
    .shortbids-item.your-bid {
        background: rgba(0, 128, 128, 0.08);
        border-left: 4px solid #008080;
    }
    
    .shortbids-item.your-bid:hover {
        background: rgba(0, 128, 128, 0.12);
    }
    
    .shortbids-rank {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        color: white;
        flex-shrink: 0;
    }
    
    .shortbids-rank-1 {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
    }
    
    .shortbids-rank-2 {
        background: linear-gradient(135deg, #94a3b8, #64748b);
    }
    
    .shortbids-rank-3 {
        background: linear-gradient(135deg, #fb923c, #ea580c);
    }
    
    .shortbids-rank-4 {
        background: linear-gradient(135deg, #6366f1, #008080);
    }
    
    .shortbids-rank-5 {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    }
    
    .shortbids-info {
        flex: 1;
        min-width: 0;
    }
    
    .shortbids-name {
        color: #1a1a1a;
        font-weight: 600;
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .shortbids-meta {
        color: #6c757d;
        font-size: 0.55rem;
    }
    
    .shortbids-amount {
        color: #008080;
        font-weight: 700;
        font-size: .95rem;
        text-align: right;
        white-space: nowrap;
    }
    
    .shortbids-badge {
        background: rgba(0, 128, 128, 0.1);
        color: #008080;
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 500;
        margin-left: 0.5rem;
    }

    /* Two Column Table Styles */
    .two-column-table {
        width: 100%;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        border: 1px solid #f1f3f4;
    }
    
    .two-column-table table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .two-column-table th {
        background: #f8f9fa;
        color: #1a1a1a;
        font-weight: 600;
        text-align: left;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f3f4;
        width: 35%;
    }
    
    .two-column-table td {
        color: #374151;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .two-column-table tr:last-child th,
    .two-column-table tr:last-child td {
        border-bottom: none;
    }
    /* ============================================================
       HOME DASHBOARD QUICK LINKS
    ============================================================ */
    .home-dashboard-section {
        padding: 0 0 1rem;
    }

    .home-dashboard-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .home-dashboard-card {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 0.875rem 1rem;
        text-decoration: none;
        color: inherit;
        transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .home-dashboard-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-color: var(--se-primary, #008080);
        transform: translateY(-1px);
        color: inherit;
        text-decoration: none;
    }

    .home-dashboard-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(79, 70, 229, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--se-primary, #008080);
        flex-shrink: 0;
    }

    .home-dashboard-info {
        flex: 1;
        min-width: 0;
    }

    .home-dashboard-count {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.1;
        color: #111;
    }

    .home-dashboard-label {
        font-size: 0.75rem;
        color: #6b7280;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-dashboard-arrow {
        color: #9ca3af;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    /* ============================================================
   WELCOME MODAL SLIDER
============================================================ */
.welcome-slides {
    padding: 2.5rem 1.75rem 0.75rem;
    min-height: 260px;
    text-align: center;
}

.welcome-slide {
    display: none;
    animation: wSlideIn 0.3s ease;
}

.welcome-slide.active {
    display: block;
}

@keyframes wSlideIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

.welcome-slide-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,128,128,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--se-primary, #008080);
    margin: 0 auto 1.25rem;
}

.welcome-slide-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.6rem;
}

.welcome-slide-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.welcome-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 1rem 0 0.5rem;
}

.welcome-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.welcome-dot.active {
    background: var(--se-primary, #008080);
    transform: scale(1.25);
}

    /* ============================================================
       SEARCH RESULTS IN MODAL
    ============================================================ */
    .search-results-header {
        border-bottom: 1px solid #f1f3f4;
    }


    /* ============================================================
       AUCTION BADGES ON LISTING CARDS
    ============================================================ */
    .listing-image {
        position: relative;
        overflow: hidden;
    }

    .listing-auction-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        font-size: 0.7rem;
        font-weight: 600;
        padding: 3px 8px;
        border-radius: 20px;
        pointer-events: none;
        z-index: 2;
        letter-spacing: 0.02em;
    }

    .listing-auction-badge.bidding {
        background: rgba(22, 163, 74, 0.92);
        color: #fff;
    }

    .listing-auction-badge.selection {
        background: rgba(234, 179, 8, 0.92);
        color: #1a1a1a;
    }

    /* Product auction info strip below price */
    .product-auction-info {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        font-size: 0.72rem;
        margin: 3px 0 2px;
        padding: 4px 8px;
        border-radius: 6px;
    }

    .product-auction-info.bidding {
        background: rgba(22, 163, 74, 0.08);
        border: 1px solid rgba(22, 163, 74, 0.25);
    }

    .product-auction-info.selection {
        background: rgba(234, 179, 8, 0.08);
        border: 1px solid rgba(234, 179, 8, 0.35);
    }

    .product-auction-phase {
        font-weight: 600;
        color: #16a34a;
    }

    .product-auction-info.selection .product-auction-phase {
        color: #a16207;
    }

    .product-auction-highest {
        color: #374151;
        font-weight: 500;
    }

    .product-auction-countdown {
        color: #dc2626;
        font-weight: 600;
        font-variant-numeric: tabular-nums;
    }

    .listing-card.has-auction,
    .listing-product-card.has-auction {
        border-color: rgba(22, 163, 74, 0.3);
    }

    /* Search result auction badge */
    .product-auction-badge {
        font-size: 0.7rem;
        font-weight: 600;
    }

    /* ============================================================
       REGISTER / AUTH FORM — password strength hint
    ============================================================ */
    .password-hint {
        font-size: 0.72rem;
        color: #6b7280;
        margin-top: 4px;
    }

    .password-hint.valid {
        color: #16a34a;
    }

    /* ============================================================
       ABOUT PAGE
    ============================================================ */
    .about-headline {
        font-size: 1.6rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
    }
 
    .about-body {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 0;
    }
 
    .about-section-title {
        font-size: 1rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 1rem;
    }
 
    /* Mission / Vision cards */
    .about-mv-card {
        border-radius: 12px;
        padding: 1.25rem;
        height: 100%;
    }
 
    .about-mv-card.mission {
        background: rgba(79, 70, 229, 0.06);
        border: 1px solid rgba(79, 70, 229, 0.15);
    }
 
    .about-mv-card.vision {
        background: rgba(22, 163, 74, 0.06);
        border: 1px solid rgba(22, 163, 74, 0.15);
    }
 
    .about-mv-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
 
    .about-mv-card.mission .about-mv-icon { color: #008080; }
    .about-mv-card.vision  .about-mv-icon { color: #16a34a; }
 
    .about-mv-title {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        color: #111;
    }
 
    .about-mv-text {
        font-size: 0.875rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }
 
    /* Contact info list */
    .about-contact-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
 
    .about-contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: #374151;
    }
 
    .about-contact-item i {
        font-size: 1rem;
        color: var(--se-primary, #008080);
        width: 20px;
        flex-shrink: 0;
    }
 
    /* Social links */
    .about-social-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
 
    .about-social-item {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 7px 14px;
        border-radius: 20px;
        border: 1px solid #e5e7eb;
        background: #fff;
        font-size: 0.85rem;
        color: #374151;
        text-decoration: none;
        transition: border-color 0.15s, background 0.15s;
    }
 
    .about-social-item:hover {
        border-color: var(--se-primary, #008080);
        background: rgba(79, 70, 229, 0.05);
        color: var(--se-primary, #008080);
    }
 
    /* ============================================================
       MESSAGE PAGE
    ============================================================ */
    .message-contact-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
 
    .message-contact-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 7px 14px;
        border-radius: 20px;
        border: 1px solid #e5e7eb;
        background: #fff;
        font-size: 0.82rem;
        color: #374151;
        text-decoration: none;
        transition: border-color 0.15s;
    }
 
    .message-contact-chip:hover {
        border-color: var(--se-primary, #008080);
        color: var(--se-primary, #008080);
    }
 
    .message-contact-chip.whatsapp:hover {
        border-color: #25d366;
        color: #25d366;
    }
 
    .message-contact-chip i {
        font-size: 0.9rem;
    }
 
    /* ============================================================
       POLICIES & FAQs ACCORDION
    ============================================================ */
    .policy-accordion-btn {
        font-size: 0.9rem;
        font-weight: 600;
        color: #111;
        background: #f8f9fa;
        border-radius: 8px !important;
        border: 1px solid #e9ecef;
        padding: 0.875rem 1rem;
    }
 
    .policy-accordion-btn:not(.collapsed) {
        background: rgba(79, 70, 229, 0.06);
        color: var(--se-primary, #008080);
        border-color: rgba(79, 70, 229, 0.2);
        box-shadow: none;
    }
 
    .policy-accordion-btn::after {
        filter: none;
    }
 
    .policy-accordion-btn:not(.collapsed)::after {
        filter: invert(28%) sepia(89%) saturate(1277%) hue-rotate(230deg) brightness(90%);
    }
 
    .policy-accordion-body {
        font-size: 0.875rem;
        color: #555;
        line-height: 1.7;
        padding: 1rem 1rem 0.5rem;
        border: 1px solid #e9ecef;
        border-top: none;
        border-radius: 0 0 8px 8px;
        background: #fff;
    }
 
    .accordion-item:has(.policy-accordion-btn) {
        background: transparent;
    }

     .sim-summary-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f1f3f4;
        background: #fafafa;
    }
 
    .sim-summary-chip {
        display: inline-flex;
        align-items: center;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
    }
 
    .sim-summary-chip.strong {
        background: rgba(22, 163, 74, 0.1);
        color: #16a34a;
        border: 1px solid rgba(22, 163, 74, 0.25);
    }
 
    .sim-summary-chip.weak {
        background: rgba(107, 114, 128, 0.1);
        color: #6b7280;
        border: 1px solid rgba(107, 114, 128, 0.2);
    }
 
    /* Match strength badges on product cards */
    .sim-match-badge {
        display: inline-flex;
        align-items: center;
        font-size: 0.68rem;
        font-weight: 600;
        padding: 2px 8px;
        border-radius: 20px;
    }
 
    .sim-match-strong {
        background: rgba(22, 163, 74, 0.1);
        color: #16a34a;
        border: 1px solid rgba(22, 163, 74, 0.2);
    }
 
    .sim-match-good {
        background: rgba(0, 128, 128, 0.08);
        color: #008080;
        border: 1px solid rgba(0, 128, 128, 0.2);
    }
 
    .sim-match-weak {
        background: rgba(107, 114, 128, 0.08);
        color: #6b7280;
        border: 1px solid rgba(107, 114, 128, 0.15);
    }
 
    /* Auction badge inside similar products card */
    .sim-auction-badge {
        display: inline-flex;
        align-items: center;
        font-size: 0.68rem;
        font-weight: 600;
        padding: 2px 8px;
        border-radius: 20px;
        background: rgba(22, 163, 74, 0.1);
        color: #16a34a;
        border: 1px solid rgba(22, 163, 74, 0.2);
    }

    .alerts-category-count.strong {
    color: #16a34a;
    font-weight: 600;
}

.alerts-category-count.weak {
    color: #6b7280;
    font-weight: 500;
}

.alerts-category-count.muted {
    color: #9ca3af;
    font-style: italic;
}


/* ============================================================
       ACCOUNT MENU — GRID LAYOUT
       Overrides the list styles when .account-menu-grid is present
    ============================================================ */
    .account-menu.account-menu-grid {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .account-menu.account-menu-grid .account-menu-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1.1rem 0.75rem;
        border-bottom: none;
        border-radius: 14px;
        background: white;
        box-shadow: 0 1px 4px rgba(0,0,0,0.07);
        gap: 0.4rem;
        min-height: 100px;
        position: relative;
    }

    .account-menu.account-menu-grid .account-menu-item:last-child {
        border-bottom: none;
    }

    .account-menu.account-menu-grid .account-menu-item:hover {
        background: white;
        box-shadow: 0 4px 12px rgba(0,128,128,0.12);
        transform: translateY(-2px);
        color: #008080;
    }

    .account-menu.account-menu-grid .account-menu-item.logout:hover {
        background: #fef2f2;
        box-shadow: 0 4px 12px rgba(220,38,38,0.1);
        color: #dc2626;
    }

    .account-menu.account-menu-grid .account-menu-icon {
        margin-right: 0;
        margin-bottom: 0.25rem;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .account-menu.account-menu-grid .account-menu-content {
        flex: unset;
        width: 100%;
    }

    .account-menu.account-menu-grid .account-menu-title {
        font-size: 0.78rem;
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .account-menu.account-menu-grid .account-menu-subtitle {
        display: none;
    }

    .account-menu.account-menu-grid .account-menu-arrow {
        display: none;
    }

    .account-menu.account-menu-grid .account-menu-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        margin: 0;
        min-width: 20px;
        height: 20px;
        padding: 0 5px;
        font-size: 0.65rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    /* Logout spans full width on last row if it's alone */
    .account-menu.account-menu-grid .account-menu-item.logout {
        grid-column: 1 / -1;
        flex-direction: row;
        min-height: unset;
        padding: 0.85rem 1.25rem;
        justify-content: center;
        gap: 0.5rem;
    }

    .account-menu.account-menu-grid .account-menu-item.logout .account-menu-icon {
        margin-bottom: 0;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .account-menu.account-menu-grid .account-menu-item.logout .account-menu-title {
        font-size: 0.88rem;
    }

    @media (max-width: 360px) {
        .account-menu.account-menu-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .account-menu.account-menu-grid .account-menu-item.logout {
            grid-column: 1 / -1;
        }
    }


  /* ============================================================
       RED-FLAGGED ACCOUNT BANNER
    ============================================================ */
    .flagged-banner {
        background: #dc2626;
        color: #fff;
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
        font-weight: 500;
        text-align: center;
        position: sticky;
        top: 0;
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        flex-wrap: wrap;
        line-height: 1.4;
    }
 
    .flagged-banner strong {
        font-weight: 700;
    }
 
    .flagged-banner-link {
        color: #fff;
        font-weight: 700;
        text-decoration: underline;
        margin-left: 0.35rem;
    }
 
    .flagged-banner-link:hover {
        color: #fecaca;
    }
 
    /* Disabled menu item state for flagged accounts */
    .se-menu-item-disabled {
        opacity: 0.45;
        cursor: not-allowed;
        pointer-events: none;
    }

    .howto-card {
                background: var(--se-bg, #fff);
                border: 1.5px solid var(--se-border, #e5e7eb);
                border-radius: 14px;
                padding: 1.25rem 1rem;
                cursor: pointer;
                transition: box-shadow .18s, transform .18s, border-color .18s;
                height: 100%;
                display: flex;
                flex-direction: column;
                gap: .4rem;
            }
            .howto-card:hover {
                box-shadow: 0 6px 24px rgba(0,128,128,.13);
                border-color: #008080;
                transform: translateY(-2px);
            }
            .howto-card-icon {
                width: 42px; height: 42px;
                background: rgba(0,128,128,.1);
                border-radius: 10px;
                display: flex; align-items: center; justify-content: center;
                font-size: 1.25rem; color: #008080;
                margin-bottom: .35rem;
            }
            .howto-card-title { font-weight: 600; font-size: .9rem; color: var(--se-text, #111); }
            .howto-card-sub   { font-size: .78rem; color: #6b7280; line-height: 1.4; flex-grow: 1; }
            .howto-card-cta   { font-size: .78rem; color: #008080; font-weight: 500; margin-top: .3rem; }

            /* Steps inside modal */
            .howto-step { padding: 1.25rem 1.25rem 0; }
            .howto-step:last-child { padding-bottom: 1.25rem; }
            .howto-step-header {
                display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .6rem;
            }
            .howto-step-num {
                width: 28px; height: 28px; min-width: 28px;
                background: #008080; color: #fff;
                border-radius: 50%; display: flex; align-items: center;
                justify-content: center; font-size: .78rem; font-weight: 700;
            }
            .howto-step-title { font-weight: 600; font-size: .92rem; padding-top: 4px; }
            .howto-step-content { font-size: .85rem; color: #4b5563; line-height: 1.6; margin-left: 40px; }
            .howto-step-screenshots {
                margin-left: 40px; margin-top: .75rem;
                display: flex; gap: .5rem; flex-wrap: wrap;
            }
            .howto-step-screenshots img {
                max-width: 100%; border-radius: 8px;
                border: 1px solid #e5e7eb; cursor: zoom-in;
            }
            .howto-step + .howto-step { border-top: 1px solid #f3f4f6; }

            .auction-ad-banner {
                background: linear-gradient(135deg, #004d4d 0%, #008080 60%, #00b3a4 100%);
                border-radius: 14px; padding: 1rem 1.1rem; margin-bottom: 1.25rem;
            }
            .auction-ad-inner { display: flex; align-items: center; gap: .85rem; }
            .auction-ad-icon  { font-size: 1.6rem; color: #fff; opacity: .9; flex-shrink: 0; }
            .auction-ad-text  { flex: 1; min-width: 0; }
            .auction-ad-title { font-weight: 700; font-size: .95rem; color: #fff; line-height: 1.3; }
            .auction-ad-sub   { font-size: .78rem; color: rgba(255,255,255,.82); margin-top: .2rem; line-height: 1.4; }
            .auction-ad-btn {
                flex-shrink: 0;
                background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.55);
                color: #fff; font-weight: 600; font-size: .8rem;
                padding: .4rem .85rem; border-radius: 8px;
                text-decoration: none; white-space: nowrap; transition: background .15s;
            }
            .auction-ad-btn:hover { background: rgba(255,255,255,.28); color: #fff; }

            @media (max-width: 480px) {
                .auction-ad-inner { flex-direction: column; align-items: flex-start; gap: .6rem; }
                .auction-ad-icon  { display: none; }   /* save space on small screens */
                .auction-ad-btn   { align-self: stretch; text-align: center; padding: .55rem 1rem; }
            }