



.fixed-button {
    width: 250px; /* Set to whatever width you want */
    text-align: center;
}

.feature-list li{
    font-size: large;
    color: #000;
}

@media (max-width: 576px) {
    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .feature-text h5 {
        font-size: 12px;
    }
}

.toast-success {
    background-color: #4CAF50;
    color: white;
}

.toast-error {
    background-color: #f44336; 
    color: white;
}

#toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

@media (min-width: 992px) {
    .custom-lg-img {
        height: 600px !important;
        object-fit: cover !important;
        width: 100% !important;
    }
}

/* .fullwidth-hero {
  width: 100%;
  padding-bottom: 3rem;
  margin: 0;
}

.hero-img {
  width: 100%;
  height: auto;

  display: block;
}

@media (min-width: 992px) {
  .hero-img {
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
} */

/* ===== VENDOR LOGIN STYLES ===== */
.login-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 1000px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(16, 42, 131, 0.08);
    overflow: hidden;
    display: flex;
    min-height: 500px;
    border: 1px solid #e1e5e9;
}

.login-image {
    background: linear-gradient(135deg, #102A83 0%, #1A2A36 100%);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.login-image-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    padding: 40px;
}

.login-image-content h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.login-image-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.vendor-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.login-form {
    flex: 1;
    padding: 50px 40px;
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.login-form.active {
    display: flex;
}

.signup-form {
    flex: 1;
    padding: 50px 40px;
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.signup-form.active {
    display: flex;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #102A83;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}

.vendor-info {
    background: #f8f9fa;
    border-left: 4px solid #102A83;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.vendor-info h6 {
    color: #102A83;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.vendor-info p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #102A83;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.required {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #102A83;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 42, 131, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-right: 45px;
}

.input-group .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.form-check-input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: #102A83;
}

.form-check-label {
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #102A83 0%, #1A2A36 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 42, 131, 0.3);
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    display: none;
}

/* ===== SIGNUP STYLES ===== */
.form-toggle {
    text-align: center;
    margin-bottom: 25px;
}

.form-toggle .toggle-btn {
    background: none;
    border: none;
    color: #102A83;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.form-toggle .toggle-btn.active {
    background: #102A83;
    color: white;
}

.form-toggle .toggle-btn:hover {
    background: #102A83;
    color: white;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.btn-signup {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #102A83 0%, #1A2A36 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 42, 131, 0.3);
}

.terms-check {
    margin-bottom: 20px;
}

.terms-check .form-check-label {
    font-size: 0.8rem;
    line-height: 1.4;
}

.terms-check .form-check-label a {
    color: #102A83;
    text-decoration: none;
    font-weight: 500;
}

.terms-check .form-check-label a:hover {
    text-decoration: underline;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e5e9;
}

.form-note small {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
        min-height: auto;
    }

    .login-image {
        display: none;
    }

    .login-form,
    .signup-form {
        padding: 35px 25px;
        min-height: auto;
        width: 100%;
    }

    .login-header h1 {
        font-size: 1.6rem;
    }

    .login-section {
        padding: 60px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .form-toggle {
        margin-bottom: 20px;
    }

    .form-toggle .toggle-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .vendor-info {
        padding: 12px;
        margin-bottom: 20px;
    }

    .vendor-info h6 {
        font-size: 0.9rem;
    }

    .vendor-info p {
        font-size: 0.8rem;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .btn-login,
    .btn-signup {
        padding: 12px;
        font-size: 0.95rem;
    }

    .terms-check .form-check-label {
        font-size: 0.75rem;
    }

    /* Ensure forms are properly displayed on mobile */
    .login-form.active,
    .signup-form.active {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .login-form,
    .signup-form {
        padding: 25px 20px;
    }

    .login-header h1 {
        font-size: 1.4rem;
    }

    .login-header p {
        font-size: 0.85rem;
    }

    .form-toggle .toggle-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 0 3px;
    }

    .vendor-info {
        padding: 10px;
        margin-bottom: 15px;
    }

    .vendor-info h6 {
        font-size: 0.85rem;
    }

    .vendor-info p {
        font-size: 0.75rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-control {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .btn-login,
    .btn-signup {
        padding: 10px;
        font-size: 0.9rem;
    }

    .form-check-label {
        font-size: 0.8rem;
    }

    .terms-check .form-check-label {
        font-size: 0.7rem;
    }

    .error-message,
    .success-message {
        padding: 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .login-form,
    .signup-form {
        padding: 20px 15px;
    }

    .login-header h1 {
        font-size: 1.3rem;
    }

    .form-toggle .toggle-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .form-control {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .btn-login,
    .btn-signup {
        padding: 8px;
        font-size: 0.85rem;
    }
}

/* ===== WARRANTY CLAIM SYSTEM STYLES ===== */
.warranty-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.warranty-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(16, 42, 131, 0.08);
    overflow: hidden;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 42, 131, 0.12);
}

.warranty-card .card-header {
    background: linear-gradient(135deg, #102A83 0%, #1A2A36 100%);
    border: none;
    padding: 1.5rem;
}

.warranty-card .card-header h4 {
    margin: 0;
    font-weight: 600;
    color: white;
}

.warranty-form {
    padding: 2rem;
}

.warranty-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.warranty-form .form-control,
.warranty-form .form-select {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.warranty-form .form-control:focus,
.warranty-form .form-select:focus {
    border-color: #102A83;
    box-shadow: 0 0 0 0.2rem rgba(16, 42, 131, 0.25);
}

.warranty-form .btn-primary {
    background: linear-gradient(135deg, #102A83 0%, #1A2A36 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.warranty-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 42, 131, 0.3);
}

.product-details-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(16, 42, 131, 0.08);
    overflow: hidden;
    border: 1px solid #e1e5e9;
    margin-top: 2rem;
}

.product-details-card .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 1.5rem;
}

.product-details-card .card-header h4 {
    margin: 0;
    font-weight: 600;
    color: white;
}

.product-details-content {
    padding: 2rem;
}

.product-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-detail-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.product-detail-item i {
    color: #102A83;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.product-detail-item h6 {
    margin: 0 0 0.25rem 0;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-detail-item p {
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
}

.error-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(16, 42, 131, 0.08);
    overflow: hidden;
    border: 1px solid #e1e5e9;
    margin-top: 2rem;
}

.error-card .card-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    padding: 1.5rem;
}

.error-card .card-header h4 {
    margin: 0;
    font-weight: 600;
    color: white;
}

.error-content {
    padding: 2rem;
    text-align: center;
}

.error-content i {
    color: #dc3545;
    margin-bottom: 1rem;
}

.download-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.warranty-status-valid {
    color: #28a745 !important;
}

.warranty-status-expired {
    color: #dc3545 !important;
}

/* Loading animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive design for warranty system */
@media (max-width: 768px) {
    .warranty-section {
        padding: 40px 0;
    }
    
    .warranty-card,
    .product-details-card,
    .error-card {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .warranty-form {
        padding: 1.5rem;
    }
    
    .product-details-content {
        padding: 1.5rem;
    }
    
    .product-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .product-detail-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .download-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .warranty-form,
    .product-details-content,
    .error-content {
        padding: 1rem;
    }
    
    .product-detail-item {
        padding: 1rem;
    }
    
    .warranty-card .card-header,
    .product-details-card .card-header,
    .error-card .card-header {
        padding: 1rem;
    }
    
    .warranty-card .card-header h4,
    .product-details-card .card-header h4,
    .error-card .card-header h4 {
        font-size: 1.1rem;
    }
}
