/* ===== index.blade.php ===== */
/* Password toggle icon styles */
    .password-toggle {
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 65%;
        transform: translateY(-50%);
        z-index: 10;
        color: #666;
    }
    .password-toggle:hover {
        color: #333;
    }
    .form-group.input-group {
        position: relative;
    }
    .form-group.input-group label {
        display: block;
        width: 100%;
    }
    .form-group.input-group .form-control {
        border-radius: 4px;
    }
    .form-control.is-invalid {
        border-color: #dc3545;
        background-image: none !important;
        padding-right: 0.75rem !important;
    }
    .invalid-feedback {
        display: none !important;
    }
    .warning-text {
        color: #dc3545;
        display: none;
        font-size: 13px;
        margin-left: 5px;
    }
    .warning-text.show {
        display: inline;
    }
    
    /* Phone verification modal styles - matching checkout design */
    .verification-modal .modal-content {
        border-radius: 8px;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .verification-modal .modal-header {
        border-bottom: 1px solid #e9ecef;
        padding: 1rem 1.5rem;
        background: #f8f9fa;
    }
    .verification-modal .modal-body {
        padding: 1.5rem;
    }
    .verification-modal .modal-title {
        font-weight: 600;
        color: #333;
        font-size: 1.1rem;
    }
    .verification-modal .close {
        color: #6c757d;
        opacity: 0.7;
    }
    .verification-modal .close:hover {
        opacity: 1;
    }
    
    /* Step styling */
    .verification-step {
        text-align: center;
    }
    .verification-step .text-muted {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .verification-step .alert-info {
        background-color: #e3f2fd;
        border-color: #bbdefb;
        color: #1976d2;
        border-radius: 6px;
        padding: 0.75rem 1rem;
    }
    
    /* OTP input styling */
    .otp-input {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 3px;
        border: 2px solid #e9ecef;
        border-radius: 6px;
        padding: 0.75rem;
        width: 100%;
        margin: 1rem 0;
        background: #fff;
    }
    .otp-input:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
        outline: none;
    }
    .otp-input::placeholder {
        color: #adb5bd;
        font-weight: normal;
    }
    
    /* Button styling */
    .verification-modal .btn {
        border-radius: 6px;
        font-weight: 500;
        padding: 0.5rem 1.5rem;
        transition: all 0.2s ease;
    }
    .verification-modal .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
    }
    .verification-modal .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }
    .verification-modal .btn-success {
        background-color: #28a745;
        border-color: #28a745;
    }
    .verification-modal .btn-success:hover {
        background-color: #1e7e34;
        border-color: #1e7e34;
    }
    
    /* Timer and resend styling */
    .resend-timer {
        color: #6c757d;
        font-size: 0.875rem;
        margin-top: 0.75rem;
        font-weight: 500;
    }
    .resend-link {
        color: #007bff;
        text-decoration: none;
        cursor: pointer;
        font-size: 0.875rem;
        font-weight: 500;
    }
    .resend-link:hover {
        text-decoration: underline;
        color: #0056b3;
    }
    .resend-link:disabled {
        color: #6c757d;
        cursor: not-allowed;
        text-decoration: none;
    }
    
    /* Success step styling */
    .verification-success {
        text-align: center;
        padding: 1rem 0;
    }
    .verification-success i {
        color: #28a745;
        margin-bottom: 1rem;
    }
    .verification-success h5 {
        color: #28a745;
        margin-bottom: 0.5rem;
    }
    .verification-success p {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    /* Loading states */
    .btn-loading {
        position: relative;
        pointer-events: none;
    }
    .btn-loading .spinner-border {
        width: 1rem;
        height: 1rem;
        margin-right: 0.5rem;
    }
    
    /* Message styling */
    .verification-message {
        border-radius: 6px;
        border: none;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        animation: slideIn 0.3s ease;
    }
    .verification-message.alert-success {
        background-color: #d4edda;
        color: #155724;
        border-left: 4px solid #28a745;
    }
    .verification-message.alert-danger {
        background-color: #f8d7da;
        color: #721c24;
        border-left: 4px solid #dc3545;
    }
    .verification-message i {
        margin-right: 0.5rem;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* ===== dashboard.blade.php ===== */
.user-dashboard-page {
        position: relative;
        background-color: transparent;
    }
    .user-dashboard-page .user-mobile-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
    }
    .user-dashboard-page .user-mobile-avatar {
        width: 128px;
        height: 128px;
        border-radius: 50%;
        overflow: hidden;
        border: 6px solid #f4f4f4;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }
    .user-dashboard-page .user-mobile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .user-dashboard-page .user-mobile-title {
        font-size: 17px;
        font-weight: 600;
        color: #111;
    }
    .user-dashboard-page .user-mobile-subtitle {
        font-size: 13px;
        color: #555;
    }
    .user-dashboard-page .user-mobile-card-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
    .user-dashboard-page .mobile-dashboard-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 26px 12px 22px;
        border-radius: 20px;
        background: #ffffff;
        border: 1px solid #f0f0f0;
        text-decoration: none;
        color: #111;
        box-shadow: 0 12px 30px rgba(14, 30, 37, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .user-dashboard-page .mobile-dashboard-card .mobile-card-icon {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .user-dashboard-page .mobile-dashboard-card .mobile-card-icon .iconify {
        color: #fff;
        font-size: 28px;
    }
    .user-dashboard-page .mobile-dashboard-card .mobile-card-label {
        font-size: 14px;
        font-weight: 600;
        color: #555;
        text-align: center;
    }
    .user-dashboard-page .mobile-dashboard-card .mobile-card-count {
        font-size: 20px;
        font-weight: 600;
        color: #111;
        line-height: 1;
    }
    .user-dashboard-page .mobile-dashboard-card.logout {
        border-color: #ffd5cf;
        background: #fff4f2;
        color: #d7263d;
    }
    .user-dashboard-page .mobile-dashboard-card.logout .mobile-card-icon {
        background: #d7263d;
    }
    .user-dashboard-page .mobile-dashboard-card:active {
        transform: translateY(2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    @media (max-width: 991px) {
        .user-dashboard-page {
            background-color: #ffffff;
        }
        .user-dashboard-page .user-dashboard-sidebar {
            display: none;
        }
    }
    @media (max-width: 575px) {

        .user-dashboard-page .user-mobile-card-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .user-dashboard-page .mobile-dashboard-card {
            border-radius: 18px;
            padding: 22px 8px 18px;
            gap: 8px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-icon {
            width: 62px;
            height: 62px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-icon .iconify {
            font-size: 26px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-label {
            font-size: 13px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-count {
            font-size: 18px;
        }
    }
    @media (max-width: 400px) {
        .user-dashboard-page .user-mobile-card-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
        .user-dashboard-page .mobile-dashboard-card {
            padding: 20px 6px 16px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-icon {
            width: 56px;
            height: 56px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-icon .iconify {
            font-size: 24px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-label {
            font-size: 12px;
        }
        .user-dashboard-page .mobile-dashboard-card .mobile-card-count {
            font-size: 16px;
        }
    }

/* ===== change_password.blade.php ===== */
/* Password toggle icon styles */
    .password-toggle {
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 38px;
        color: #666;
        background: transparent;
        border: none;
        z-index: 3;
        padding: 0;
    }
    .password-toggle:hover {
        color: #333;
    }
    /* Input group styles for password fields */
    .form-group.password-group {
        position: relative;
    }
    .form-group.password-group .form-control {
        padding-right: 40px;
    }
    /* Adjust icon position for different field positions */
    .form-group.password-group:nth-of-type(1) .password-toggle {
        top: 38px;
    }
    .form-group.password-group:nth-of-type(2) .password-toggle {
        top: 38px;
    }
    .form-group.password-group:nth-of-type(3) .password-toggle {
        top: 38px;
    }

/* ===== login.blade.php ===== */
body {
            background-color: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .login-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 10px;
            min-height: 70vh;
            width: 100%;
        }
        
        .login-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            padding: 48px;
            width: 100%;
            max-width: 550px;
            border: none;
        }
        
        .login-title {
            font-size: 28px;
            font-weight: 600;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.2;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-label {
            display: block;
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        
        .form-input {
            width: 100%;
            height: 46px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 0 18px;
            font-size: 14px;
            background-color: #fff;
            color: #505050;
            transition: color 0.25s, background-color 0.25s, border-color 0.25s;
            box-sizing: border-box;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #cccccc;
        }
        
        .form-input.is-invalid {
            border-color: #dc3545;
        }
        
        .password-container {
            position: relative;
        }
        
        .password-toggle {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            padding: 4px;
        }
        
        .password-toggle:hover {
            color: #333;
        }
        
        .forgot-password {
            text-align: right;
            margin-bottom: 32px;
        }
        
        .forgot-password a {
            color: #007AFF;
            text-decoration: none;
            font-size: 14px;
        }
        
        .forgot-password a:hover {
            text-decoration: underline;
        }
        
        .login-btn {
            width: 100%;
            height: 46px;
            background: #000;
            color: white;
            border: none;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .login-btn:hover {
            background: #333;
        }
        
        .divider {
            text-align: center;
            position: relative;
            color: #666;
            font-size: 14px;
            margin: 20px 0;
        }
        
        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e5e5e5;
            z-index: 1;
        }
        
        .divider span {
            background: white;
            padding: 0 16px;
            position: relative;
            z-index: 2;
        }
        
        .social-btn {
            width: 100%;
            height: 46px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            background: white;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 16px;
            transition: border-color 0.2s ease;
            text-decoration: none;
        }
        
        .social-btn:hover {
            border-color: #ccc;
            text-decoration: none;
            color: #1a1a1a;
        }
        
        .social-btn.facebook {
            background: #1877F2;
            color: white;
            border-color: #1877F2;
        }
        
        .social-btn.facebook:hover {
            background: #166FE5;
            border-color: #166FE5;
            color: white;
        }
        
        .register-link {
            text-align: center;
            margin-top: 32px;
            color: #666;
            font-size: 14px;
        }
        
        .register-link a {
            color: #007AFF;
            text-decoration: none;
            font-weight: 500;
        }
        
        .register-link a:hover {
            text-decoration: underline;
        }
        
        .warning-text {
            color: #dc3545;
            font-size: 13px;
            margin-top: 4px;
            display: none;
        }
        
        .warning-text.show {
            display: block;
        }
        
        @media (max-width: 768px) {
            .login-card {
                padding: 20px;
            }
        }

/* ===== register.blade.php ===== */
/* Password toggle icon styles */
        .password-toggle {
            cursor: pointer;
            position: absolute;
            right: 10px;
            top: 65%;
            transform: translateY(-50%);
            z-index: 10;
            color: #666;
        }
        .password-toggle:hover {
            color: #333;
        }
        .form-group.input-group {
            position: relative;
        }
        .form-group.input-group label {
            display: block;
            width: 100%;
        }
        .form-group.input-group .form-control {
            border-radius: 4px;
        }
        .form-control.is-invalid {
            border-color: #dc3545;
            background-image: none !important;
            padding-right: 0.75rem !important;
        }
        .invalid-feedback {
            display: none !important;
        }
        .warning-text {
            color: #dc3545;
            display: none;
            font-size: 13px;
            margin-left: 5px;
        }
        .warning-text.show {
            display: inline;
        }
        /* Hide Bootstrap's default validation feedback */
        .was-validated .form-control:invalid ~ .invalid-feedback,
        .was-validated .form-control.is-invalid ~ .invalid-feedback,
        .form-control.is-invalid ~ .invalid-feedback {
            display: none !important;
        }

/* ===== changepass.blade.php ===== */
/* Input group styles */
        .form-group.input-group {
            position: relative;
            margin-bottom: 20px;
        }
        .form-group.input-group label {
            display: block;
            width: 100%;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }
        .form-group.input-group .form-control {
            padding-left: 40px;
            padding-right: 40px;
            height: 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #fff;
            transition: all 0.3s ease;
        }
        .form-group.input-group .form-control:focus {
            border-color: #333;
            box-shadow: none;
        }
        .form-group.input-group .form-control.is-invalid {
            border-color: #dc3545;
            padding-right: 40px !important;
        }
        .input-group-addon {
            position: absolute;
            left: 15px;
            top: 42px;
            color: #666;
            z-index: 3;
        }
        .input-group-addon i {
            font-size: 16px;
        }
        /* Password toggle icon styles */
        .password-toggle {
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 38px;
            color: #666;
            background: transparent;
            border: none;
            z-index: 3;
            padding: 0;
        }
        .password-toggle:hover {
            color: #333;
        }
        .warning-text {
            color: #dc3545;
            display: none;
            font-size: 13px;
            margin-left: 5px;
        }
        .warning-text.show {
            display: inline;
        }
        /* Card styles */
        .auth-form-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
            padding: 30px !important;
        }
        .auth-form-card h4 {
            margin-bottom: 25px;
            font-weight: 600;
        }
        /* Button styles */
        .btn-primary {
            height: 45px;
            font-weight: 500;
            font-size: 15px;
        }

/* ===== index.blade.php ===== */
.order-mobile-list {
                display: none;
            }
            @media (max-width: 991px) {
                .order-mobile-list {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    margin-bottom: 20px;
                }
                .order-mobile-card {
                    border-radius: 12px;
                    background: #ffffff;
                    padding: 18px;
                    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
                }
                .order-mobile-head {
                    display: flex;
                    justify-content: space-between;
                    gap: 10px;
                    margin-bottom: 12px;
                }
                .order-mobile-head h6 {
                    margin: 0;
                    font-size: 15px;
                    font-weight: 600;
                    color: #111;
                }
                .order-mobile-head span {
                    font-size: 12px;
                    color: #777;
                }
                .order-mobile-body {
                    display: flex;
                    gap: 14px;
                    align-items: center;
                }
                .order-mobile-thumb {
                    height: 200px;
                    border-radius: 5px;
                    background: #f6f6f6;
                    overflow: hidden;
                    flex-shrink: 0;
                }
                .order-mobile-thumb img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .order-mobile-meta {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    font-size: 13px;
                    color: #555;
                }
                .order-mobile-meta strong {
                    font-size: 15px;
                    color: #111;
                }
                .order-mobile-status {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;
                    margin-top: 12px;
                }
                .order-mobile-actions {
                    display: flex;
                    flex-wrap: nowrap;
                    gap: 10px;
                    margin-top: 14px;
                    overflow-x: auto;
                    padding-bottom: 6px;
                }
                .order-mobile-actions form {
                    display: inline-flex;
                }
                .order-mobile-actions .btn {
                    border-radius: 5px;
                    padding: 6px 14px;
                    font-size: 12px;
                    white-space: nowrap;
                }
                .order-desktop-table {
                    display: none;
                }
            }
            @media (min-width: 992px) {
                .order-desktop-table {
                    display: block;
                }
            }

/* ===== history.blade.php ===== */
.history-timeline {
        position: relative;
    }
    .history-step {
        position: relative;
        padding-left: 3rem;
        padding-bottom: 2rem;
    }
    .history-step::before {
        content: '';
        position: absolute;
        left: 1.3rem;
        top: 0;
        bottom: -2rem;
        width: 2px;
        background: #e5e7eb;
    }
    .history-step:last-child::before {
        bottom: 0;
    }
    .history-indicator {
        position: absolute;
        left: 0.6rem;
        top: 0.3rem;
        width: 1.6rem;
        height: 1.6rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.75rem;
        box-shadow: 0 4px 8px rgba(15, 23, 42, 0.16);
    }
    .history-indicator-success {
        background: #198754;
    }
    .history-indicator-danger {
        background: #dc3545;
    }
    .history-indicator-primary {
        background: #0d6efd;
    }
    .history-indicator-info {
        background: #0dcaf0;
    }
    .history-indicator-warning {
        background: #ffc107;
        color: #111827;
    }
    .history-card {
        background: #fff;
        border-radius: 1rem;
        border: 1px solid #e5e7eb;
        padding: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }
    .history-card-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        background: #f8fafc;
        border-bottom: 1px solid #e5e7eb;
    }
    .history-chip {
        background: #e0e7ff;
        color: #3730a3;
        padding: 0.3rem 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.8rem;
        font-weight: 500;
    }
    .history-time {
        color: #64748b;
        font-size: 0.8rem;
    }
    .history-card-body {
        padding: 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .history-line {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.4rem;
        line-height: 1.5;
    }
    .history-line-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #64748b;
        flex-shrink: 0;
    }
    .history-line-value {
        font-size: 0.95rem;
        color: #1e293b;
        font-weight: 500;
    }
    .history-line-sub {
        font-size: 0.9rem;
        color: #64748b;
        font-weight: 400;
    }
    .history-line-what {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    .history-line-what .history-line-value {
        font-weight: 400;
        color: #334155;
    }
    .history-payment-details {
        margin-top: 0.25rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    .history-payment-details .history-line-label {
        display: block;
        margin-bottom: 0.5rem;
    }
    .history-details {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
    }
    .history-details li {
        font-size: 0.875rem;
    }
    .history-details-label {
        color: #64748b;
    }
    .history-details-value {
        color: #1e293b;
        font-weight: 500;
    }
    .history-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        align-items: center;
        padding: 1rem 1.5rem;
        margin: 0;
        border-top: 1px solid #e5e7eb;
        background: #fafafa;
        color: #64748b;
        font-size: 0.8rem;
    }
    .history-actor {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-weight: 400;
        color: #374151;
    }
    .history-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .history-tag {
        background: #f1f5f9;
        color: #334155;
        border-radius: 999px;
        padding: 0.3rem 0.75rem;
        font-size: 0.8rem;
        font-weight: 400;
    }
    .history-tag.info {
        background: #e0f2fe;
        color: #0369a1;
    }
    @media (max-width: 575.98px) {
        .history-step {
            padding-left: 2.5rem;
            padding-bottom: 1.5rem;
        }
        .history-step::before {
            left: 1.1rem;
            bottom: -1.5rem;
        }
        .history-indicator {
            left: 0.4rem;
        }
    }

/* ===== index.blade.php ===== */
.wishlist-mobile-list {
                    display: none;
                }
                @media (max-width: 991px) {
                    .wishlist-mobile-list {
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        margin-bottom: 20px;
                    }
                    .wishlist-mobile-card {
                        border-radius: 10px;
                        background: #ffffff;
                        padding: 16px;
                        box-shadow: 0 16px 32px rgba(20, 20, 20, 0.08);
                    }
                    .wishlist-mobile-card .wishlist-mobile-head {
                        display: flex;
                        gap: 14px;
                    }
                    .wishlist-mobile-card .wishlist-mobile-thumb {
                        width: 96px;
                        height: 128px;
                        border-radius: 5px;
                        overflow: hidden;
                        background: #f5f5f5;
                        flex-shrink: 0;
                    }
                    .wishlist-mobile-card h6 {
                        font-size: 15px;
                        margin-bottom: 6px;
                        font-weight: 600;
                    }
                    .wishlist-mobile-meta {
                        font-size: 12px;
                        color: #777;
                        margin-bottom: 4px;
                    }
                    .wishlist-mobile-price {
                        font-size: 14px;
                        font-weight: 600;
                        color: #000;
                        line-height: 1.8;
                    }
                    .wishlist-mobile-footer {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 14px;
                    }
                    .wishlist-mobile-actions {
                        display: flex;
                        gap: 10px;
                    }
                    .wishlist-mobile-actions .btn {
                        border-radius: 12px;
                        padding: 8px 14px;
                        font-size: 12px;
                    }
                    .wishlist-desktop-table {
                        display: none;
                    }
                }
                @media (min-width: 992px) {
                    .wishlist-desktop-table {
                        display: block;
                    }
                }
                .wishlist-empty-state .table-responsive {
                    overflow-x: visible !important;
                }
                .wishlist-empty-state table {
                    width: 100%;
                }
                .wishlist-empty-state .card-body {
                    overflow-x: hidden;
                }
