* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #D0F0C0;
    color: #333;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header & Navigation */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap; /* Ensure items stay in one line */
}

/* Logo stays on the left */
.logo-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 140px; /* Fixed width instead of percentage */
    height: auto;
    object-fit: contain;
}

/* Navigation centered */
nav {
    flex: 2;
    display: flex;
    justify-content: center;
    flex-shrink: 0; /* Prevent nav from shrinking */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #D0F0C0;
    color: #000;
}

nav ul li a.active {
    background-color: #00FA9A;
    color: #333;
}

/* Auth buttons on the right */
.auth-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
    flex-shrink: 0; /* Prevent auth section from shrinking */
}

.login-btn, .register-btn {
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-btn {
    background-color: transparent;
    color: #333;
    border: 2px solid #00FA9A;
}

.register-btn {
    background-color: #00FA9A;
    color: #333;
}

.login-btn:hover {
    background-color: #f0f0f0;
}

.register-btn:hover {
    background-color: #00e187;
}

/* ====== CART ICON STYLES ====== */
/* Add these to the existing .auth-section rules */
.auth-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center; /* Add this to vertically center items */
}

/* Cart Icon Container */
.cart-section {
    position: relative;
}

/* Cart Icon Link */
.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.cart-icon:hover {
    background-color: #00FA9A;
    color: #333;
    transform: scale(1.05);
    border-color: #00FA9A;
    box-shadow: 0 5px 15px rgba(0, 250, 154, 0.3);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid white;
}

/* Update the .login-btn styles to work with cart icon */
.login-btn {
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background-color: transparent;
    color: #333;
    border: 2px solid #00FA9A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background-color: #f0f0f0;
}

/* Remove register button if not needed */
/* .register-btn {
    display: none; 
} */

/* ====== RESPONSIVE DESIGN FOR CART ICON ====== */
@media (max-width: 992px) {
    .auth-section {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .cart-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo-section {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        justify-content: center;
    }
    
    .auth-section {
        order: 2;
        flex: 0 0 auto;
        margin-left: 0;
    }
    
    .cart-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        gap: 10px;
    }
    
    .cart-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Optional: Add animation for cart updates */
@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-icon.pulse {
    animation: cartPulse 0.5s ease;
}

/* Hero Section */
.hero {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero h1 span {
    color: #00FA9A;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Base button styles */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline if used as link */
    display: inline-block; /* Ensure proper button behavior */
    text-align: center;
    min-width: 180px; /* Ensure consistent minimum width */
}

.btn-primary {
    background-color: #00FA9A;
    color: #333;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #333;
    border: 2px solid #00FA9A;
}

.btn-primary:hover {
    background-color: #00e187;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 250, 154, 0.3);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #D0F0C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #333;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* CTA Section */
.cta {
    background-color: #FFFFFF;
    padding: 80px 5%;
    margin: 50px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* Responsive Design - Updated */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo-section {
        flex: 0 0 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav {
        flex: 1;
        order: 2;
    }
    
    .auth-section {
        flex: 1;
        order: 3;
        justify-content: center;
    }
    
    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-section, nav, .auth-section {
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .auth-section {
        order: 2;
    }
    
    nav {
        order: 3;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .login-btn, .register-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

footer {
    background-color: #00FA9A;
    padding: 50px 5% 20px;
    text-align: left;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #FFFFFF;
    transform: translateY(-3px);
}

.newsletter-text {
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    max-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 14px;
}

/* Active navigation link highlight */
nav ul li a.active {
    background-color: #00FA9A;
    color: #333;
}

/* Add these responsive styles to your existing media queries */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
}

/* _product.php */
/* Products Page Styles */
.products-page {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filter-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section h2 i {
    color: #00FA9A;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.filter-btn {
    padding: 12px 24px;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.filter-btn:hover {
    background-color: #e0e0e0;
}

.filter-btn.active {
    background-color: #00FA9A;
    border-color: #00FA9A;
    color: #333;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    min-width: 180px;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: #00FA9A;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00FA9A;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #00FA9A;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background-color: #ff4444;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
}

.rating {
    color: #ffc107;
}

.rating span {
    color: #666;
    margin-left: 5px;
}

.add-to-cart {
    background-color: #00FA9A;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart:hover {
    background-color: #00e187;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #f5f5f5;
}

.pagination-btn.active {
    background-color: #00FA9A;
    border-color: #00FA9A;
    color: #333;
}

/* Responsive Design for Products */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .filter-categories {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}


/* _login.php */
/* Login Page Styles */
.login-page {
    display: flex;
    min-height: calc(100vh - 200px); /* Adjust based on your header/footer height */
}

.login-container {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header .logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 16px;
}

/* User Type Selector */
.user-type-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 10px;
}

.user-type-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.user-type-option i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #888;
}

.user-type-option span {
    font-weight: 600;
    color: #666;
}

.user-type-option.active {
    background-color: #FFFFFF;
    border-color: #00FA9A;
    box-shadow: 0 5px 15px rgba(0, 250, 154, 0.1);
}

.user-type-option.active i {
    color: #00FA9A;
}

.user-type-option.active span {
    color: #333;
}

/* Form Styles */
.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #00FA9A;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00FA9A;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.toggle-password:hover {
    color: #333;
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #888;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00FA9A;
}

.forgot-password {
    color: #00FA9A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #00e187;
    text-decoration: underline;
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #00FA9A;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.login-submit-btn:hover {
    background-color: #00e187;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 250, 154, 0.3);
}

.login-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Demo Credentials */
.demo-credentials {
    background-color: #f8f9fa;
    border-left: 4px solid #00FA9A;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.demo-credentials h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    margin-bottom: 10px;
}

.demo-credentials h4 i {
    color: #00FA9A;
}

.credential-box {
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.credential {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.credential:last-child {
    margin-bottom: 0;
}

/* Register Link */
.register-link {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.register-link p {
    margin-bottom: 15px;
    color: #666;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}

.login-footer p {
    margin-bottom: 5px;
}

.login-footer a {
    color: #00FA9A;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Login Side Image */
.login-side-image {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

.image-overlay {
    max-width: 600px;
}

.image-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.image-overlay p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.feature i {
    color: #00FA9A;
    font-size: 20px;
}

/* Alert Messages */
.alert-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
}

/* Responsive Design */
@media (max-width: 992px) {
    .login-page {
        flex-direction: column;
    }
    
    .login-container {
        max-width: 100%;
    }
    
    .login-side-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 20px;
    }
    
    .user-type-option {
        padding: 15px 10px;
    }
    
    .user-type-option i {
        font-size: 20px;
    }
    
    .user-type-option span {
        font-size: 14px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Forgot Password Page Styles */
.forgot-password-page {
    display: flex;
    min-height: calc(100vh - 200px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.forgot-container {
    width: 100%;
    max-width: 500px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
}

.forgot-header {
    margin-bottom: 40px;
}

.forgot-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.forgot-header h1 i {
    color: #00FA9A;
    font-size: 36px;
}

.forgot-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Form Styles */
.forgot-form {
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: #00FA9A;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00FA9A;
    box-shadow: 0 0 0 3px rgba(0, 250, 154, 0.1);
}

/* Steps Indicator */
.recovery-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.recovery-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #999;
    margin-bottom: 10px;
    border: 3px solid #f5f5f5;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #00FA9A;
    border-color: #00FA9A;
    color: #333;
}

.step.completed .step-number {
    background-color: #00FA9A;
    border-color: #00FA9A;
    color: #333;
}

.step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.step.active .step-label {
    color: #00FA9A;
}

.step.completed .step-label {
    color: #00FA9A;
}

/* Recovery Options */
.recovery-options {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.recovery-options h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    border-color: #00FA9A;
    transform: translateY(-2px);
}

.option.selected {
    border-color: #00FA9A;
    background-color: rgba(0, 250, 154, 0.05);
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    flex-shrink: 0;
}

.option.selected .option-icon {
    background-color: #00FA9A;
    color: #333;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.option-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* OTP Input */
.otp-container {
    margin-bottom: 30px;
}

.otp-inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-input {
    width: 60px;
    height: 70px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: white;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #00FA9A;
    box-shadow: 0 0 0 3px rgba(0, 250, 154, 0.1);
}

.otp-input.filled {
    border-color: #00FA9A;
    background-color: rgba(0, 250, 154, 0.05);
}

.otp-hint {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.resend-otp {
    color: #00FA9A;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.resend-otp:hover {
    text-decoration: underline;
}

/* Timer */
.timer {
    color: #ff4444;
    font-weight: 600;
    font-size: 14px;
}

/* Submit Button */
.btn-primary {
    width: 100%;
    padding: 18px;
    background-color: #00FA9A;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.btn-primary:hover {
    background-color: #00e187;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 250, 154, 0.3);
}

.btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Back to Login */
.back-to-login {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.back-to-login a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00FA9A;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-to-login a:hover {
    color: #00e187;
    text-decoration: underline;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: #00FA9A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #333;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.success-message h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
}

.success-message p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forgot-container {
        padding: 30px 20px;
    }
    
    .forgot-header h1 {
        font-size: 28px;
    }
    
    .recovery-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .recovery-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 15px;
        width: 100%;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    
    .otp-inputs {
        gap: 10px;
    }
    
    .otp-input {
        width: 50px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .forgot-container {
        padding: 25px 15px;
    }
    
    .forgot-header h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .option {
        flex-direction: column;
        text-align: center;
    }
    
    .otp-input {
        width: 45px;
        height: 55px;
        font-size: 22px;
    }
    
    .btn-primary {
        padding: 16px;
        font-size: 16px;
    }
}

/* ====== GENERAL STYLES ====== */
.order-process-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 16px;
}


/* ====== BUBBLE PROCESS SECTION ====== */
.bubble-process-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.bubble-process-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 32px;
    position: relative;
}

.bubble-process-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #667eea, #764ba2);
    margin: 15px auto;
    border-radius: 2px;
}

.bubble-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.bubble-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bubble-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bubble-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.bubble-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.bubble-content h3 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.bubble-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Process Flow Visualization */
.process-flow {
    position: relative;
    height: 100px;
    margin-top: 40px;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, #667eea, #764ba2);
    transform: translateY(-50%);
    border-radius: 3px;
}

.flow-arrows {
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.flow-arrows i {
    color: #667eea;
    font-size: 24px;
    animation: bounce 2s infinite;
}

.flow-arrows i:nth-child(2) { animation-delay: 0.2s; }
.flow-arrows i:nth-child(3) { animation-delay: 0.4s; }
.flow-arrows i:nth-child(4) { animation-delay: 0.6s; }
.flow-arrows i:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ====== DETAILED STEPS SECTION ====== */
.detailed-steps-section {
    margin: 80px 0;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.detailed-steps-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
}

.step-icon {
    background: white;
    color: #667eea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.card-header h3 {
    margin: 0;
    font-size: 22px;
}

.card-content {
    padding: 30px;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content ul li {
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.card-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* ====== PAYMENT SECTION ====== */
.payment-section {
    margin: 80px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
}

.payment-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 32px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.payment-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 25px;
    flex-shrink: 0;
}

.payment-details h3 {
    color: #333;
    margin: 0 0 8px 0;
    font-size: 20px;
}

.payment-details p {
    color: #666;
    margin: 0 0 8px 0;
    font-size: 15px;
}

.payment-info {
    display: inline-block;
    background: #e9ecef;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ====== TIPS SECTION ====== */
.tips-section {
    margin: 80px 0;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tips-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 32px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tip-box {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-box:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.tip-box i {
    font-size: 42px;
    color: #667eea;
    margin-bottom: 25px;
    display: block;
}

.tip-box h3 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 22px;
}

.tip-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* ====== CALL TO ACTION ====== */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 36px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-help {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-help:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    .bubble-grid,
    .steps-grid,
    .payment-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bubble-item,
    .step-card,
    .payment-card,
    .tip-box {
        padding: 25px;
    }
    
    .process-flow {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .bubble-process-section,
    .detailed-steps-section,
    .payment-section,
    .tips-section {
        padding: 30px 20px;
    }
    
    .bubble-process-section h2,
    .detailed-steps-section h2,
    .payment-section h2,
    .tips-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .bubble-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 20px;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .bubble-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bubble-number {
        margin: 0 auto 20px;
    }
    
    .payment-card {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icon {
        margin: 0 auto 20px;
    }
}