/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #ff69b4;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --accent-color: #ffd700;
    --text-color: #333;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #fff;
}

.elegant-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Navbar Styles (Glassmorphism) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-icon {
    font-size: 1rem;
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cart-icon::after {
    display: none;
}

.cart-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: calc(80vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%), url('https://images.unsplash.com/photo-1563241527-3004b7be0ffd?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.5rem;
    color: #e91e63;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-text p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.cta-button, .add-btn, .shop-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.hero .cta-button {
    animation: slideInLeft 0.8s ease 0.4s both;
}

.cta-button:hover, .add-btn:hover, .shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
    background: var(--secondary-color);
}

/* Packages Grid */
.packages-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Category Cards */
.category-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25);
}

.category-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.category-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.category-content h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Occasion Hero */
.occasion-hero {
    margin-top: 90px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    text-align: center;
    color: var(--dark-color);
}

.occasion-hero-content h2 {
    font-size: 3rem;
    margin: 0.5rem 0 0.5rem;
}

.occasion-hero-content .tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
}

/* Occasion grid adjustments */
.occasion-grid-section {
    padding: 4rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.occasion-grid .category-card {
    height: 320px;
}

/* Category Detail Page */
#category-view {
    margin-top: 100px;
    padding: 2rem;
    min-height: 60vh;
    animation: fadeIn 0.5s ease;
}

.category-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.category-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 1.5rem;
}

.sort-dropdown {
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.sort-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.product-img {
    height: 280px;
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-card h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.product-card .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-card .add-btn {
    margin: auto 1.5rem 0;
    width: calc(100% - 3rem);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    border-radius: 20px;
    margin-bottom: 4rem;
}

.reviews-header h3 {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 50px;
    margin: 0 auto 3rem;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    border: none;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.info-card {
    background: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.bg-orange { background: #ff9800; }
.bg-purple { background: #9c27b0; }

.reviewer h4 { font-size: 1.1rem; color: var(--text-color); margin: 0; }
.reviewer .role { font-size: 0.85rem; color: #888; margin: 0; }
.options { position: absolute; right: 0; color: #ccc; cursor: pointer; }

.stars { color: var(--accent-color); margin-bottom: 1rem; font-size: 1.1rem; }
.review-text { font-size: 0.95rem; color: #555; line-height: 1.8; }

/* Footer */
.explore-footer {
    background: var(--dark-color);
    color: white;
    padding-top: 4rem;
}

.explore-header h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.red-bar {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4rem;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.gold-text {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #aaa;
    position: relative;
    padding-left: 15px;
    transition: var(--transition);
}
.footer-col li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.footer-col li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.footer-col li.footer-subheading {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    padding-left: 0;
    cursor: default;
}
.footer-col li.footer-subheading::before {
    display: none;
}
.footer-col li.footer-subheading:hover {
    color: var(--accent-color);
    transform: none;
}

.steps-list li { padding-left: 0; display: block; }
.steps-list li:hover { transform: none; color: #aaa; }
.steps-list li::before { display: none; }

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: #aaa;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 8% auto;
    padding: 2.5rem;
    border-radius: 15px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

#cart-items { margin: 2rem 0; min-height: 100px; max-height: 40vh; overflow-y: auto; }
.cart-total { 
    margin: 2rem 0; 
    font-size: 1.4rem; 
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    color: var(--dark-color);
}

/* Animations & Notifications */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    font-weight: 600;
    animation: slideInLeft 0.4s ease;
    transition: opacity 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { font-size: 1.1rem; }
    
    .categories-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.2rem; }
    .nav-container { padding: 0 1rem; }
    .category-card { height: 300px; }
}
/* CHECKOUT PAGE STYLES */
.checkout-container {
    margin-top: 100px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 100px);
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.checkout-forms {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.checkout-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-section h3 i {
    color: var(--primary-color);
}

.section-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Form Styles */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select,
.form-control {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    border: 2px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    background: white;
}

.payment-option input:checked + .payment-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 105, 180, 0.05));
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.payment-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-card small {
    color: #666;
    font-size: 0.85rem;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-logos i {
    font-size: 1.5rem;
}

.payment-details-form {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.crypto-instructions,
.bank-list,
.cash-instructions {
    text-align: center;
}

.crypto-instructions p,
.cash-instructions p {
    margin-bottom: 0.5rem;
    color: #666;
}

.crypto-instructions i,
.cash-instructions i,
.bank-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.bank-list h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.bank-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Order Summary Sticky */
.order-summary-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

#checkout-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.checkout-item:last-child {
    border-bottom: none;
}

.item-details h4 {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.item-details p {
    font-size: 0.85rem;
    color: #666;
}

.item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.summary-totals {
    border-top: 2px solid #eee;
    padding-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    padding-top: 0.8rem;
    border-top: 2px solid #eee;
}

.total-row span:last-child {
    color: var(--primary-color);
}

.back-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.back-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 1rem;
    }
    
    .checkout-section {
        padding: 1.5rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Mobile Money Payment Styles */
.mobile-money-form {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.mobile-money-form .form-group small {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.payment-instructions {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.instruction-step i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Enhanced Payment Cards for Mobile Money */
.payment-option input:checked + .payment-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 105, 180, 0.05));
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
    transform: translateY(-2px);
}

.payment-card .fas.fa-mobile-alt {
    color: #00a651; /* Ethiopian mobile money green */
}

/* Make payment grid more responsive */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-money-form {
        padding: 1rem;
    }
}
/* Payment Account Display Styles */
.payment-account-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.payment-account-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1rem;
}

.account-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-card {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.account-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

.account-card.selected-bank {
    border-color: #27ae60;
    background: #f0fdf4;
}

.account-icon {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.account-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.account-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

.account-holder {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.bank-name {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 600;
}

.network-tag {
    background: #3498db;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    width: fit-content;
    margin-top: 5px;
}

.crypto-address {
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

.copy-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #2980b9;
}

.deposit-amount {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 6px;
    text-align: center;
    font-size: 1.1rem;
    color: #856404;
}

.deposit-amount strong {
    color: #d32f2f;
    font-size: 1.3rem;
}

/* Screenshot Upload Styles */
.screenshot-upload {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.screenshot-upload label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    cursor: pointer;
}

.screenshot-upload input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f8f9fa;
}

.screenshot-upload small {
    display: block;
    margin-top: 8px;
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Payment Warning */
.payment-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-warning i {
    color: #d32f2f;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.payment-warning p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.5;
}

/* Cash on Delivery */
.cash-instructions {
    background: #d4edda;
    border: 1px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.cash-instructions p {
    margin: 10px 0;
    color: #155724;
}

.cash-instructions strong {
    color: #28a745;
}

/* PayPal Info */
.paypal-info {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.paypal-info p {
    margin: 8px 0;
    color: #1565c0;
}

/* Crypto Card */
.crypto-card {
    flex-wrap: wrap;
}

.crypto-card .account-details {
    width: calc(100% - 80px);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 1.2rem;
}

/* Bank Select */
.bank-list select.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.bank-list select.form-control:focus {
    border-color: #e74c3c;
    outline: none;
}

/* Form Control */
.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #e74c3c;
    outline: none;
}

/* Mobile Money Form */
.mobile-money-form .form-group {
    margin-bottom: 15px;
}

.payment-instructions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.instruction-step:last-child {
    border-bottom: none;
}

.instruction-step i {
    color: #27ae60;
    width: 20px;
}

.instruction-step span {
    color: #555;
    font-size: 0.9rem;
}
/* MOBILE NAV FIX */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }
}