:root {
    --primary-color: #43a047;      /* 🌿 Main green */
    --primary-light: #e8f5e9;
    --primary-dark: #2e7d32;
    --accent-color: #66bb6a;
    --text-color: #2e2e2e;
    --text-light: #6b6b6b;
    --bg-color: #f3f6f3;
    --card-bg: #ffffff;
    --border-radius: 14px;
    --shadow: 0 2px 8px rgba(67,160,71,0.08);
}

/* Base Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    padding-bottom: 70px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Authentication Layout */
.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header h2 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.brand-header {
    text-align: center;
    margin-bottom: 30px;
}

.brand-header h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.brand-header .tagline {
    color: var(--text-light);
    font-size: 1rem;
}

/* Navigation */
.navbar {
    background-color: var(--card-bg) !important;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary-color);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Shopping Cart & Checkout */
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.quantity-input {
    width: 70px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--primary-light);
    padding: 6px 8px;
    font-size: 0.9rem;
}

.summary-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px;
    box-shadow: var(--shadow);
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9em;
}

.btn-checkout {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-checkout:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

/* Table Styles */
.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.table td {
    vertical-align: middle;
    border-color: rgba(0,0,0,0.05);
}

/* Checkout CTA Section */
.checkout-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.checkout-cta h3 {
    margin-bottom: 15px;
}

.checkout-cta .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.checkout-cta .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Order Confirmation & Tracking */
.confirmation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 40px 0;
    text-align: center;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.order-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.order-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    border: 1px solid var(--primary-light);
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.order-item-shop {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.order-item-price {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* Order Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-light);
}

.timeline-step {
    position: relative;
    margin-bottom: 25px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--card-bg);
}

.timeline-step.completed::before {
    background-color: var(--primary-dark);
}

.timeline-step.current::before {
    background-color: var(--primary-color);
    animation: pulse 2s infinite;
}

.timeline-step.pending::before {
    background-color: #6c757d;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Info Grid & Summary */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.summary-total {
    border-top: 2px solid var(--primary-light);
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* Profile Styles */
.profile-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    background-color: var(--primary-light);
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.profile-username {
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profile-type {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 0.8rem;
    display: inline-block;
    font-weight: 500;
}

.section {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
}

.section h5 {
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Address Management */
.address-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67,160,71,0.15);
}

.address-card.default {
    border: 2px solid var(--primary-color);
    background-color: var(--primary-light);
}

.default-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    position: absolute;
    top: 15px;
    right: 15px;
}

.address-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.address-details {
    color: var(--text-light);
    line-height: 1.5;
}

.address-type-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.address-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.add-address-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    margin-bottom: 20px;
    border: 2px dashed var(--primary-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.add-address-card:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Dashboard Styles */
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.welcome-header {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    background-color: var(--primary-light);
    object-fit: cover;
    margin-bottom: 12px;
}

/* Card Styles */
.account-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: var(--shadow);
}

.account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(67,160,71,0.18);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 1.5rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.account-card h6 {
    color: var(--primary-dark);
    font-weight: 600;
}

.account-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Shop Cards */
.shop-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow);
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(67,160,71,0.18);
    border-color: var(--primary-color);
}

.shop-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    background-color: var(--primary-light);
}

.shop-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.btn-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-remove:hover {
    transform: scale(1.2);
    color: #c82333;
}

.vendor-since {
    font-size: 0.8rem;
    color: var(--text-light);
}

.add-shop-card {
    cursor: pointer;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.add-shop-card:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.shop-option {
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.shop-option:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.shop-option-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary-light);
}

/* Order Management */
.filter-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
}

.order-product-name {
    color: var(--text-color);
    font-weight: 500;
}

.order-product-shop {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Statistics Cards */
.stats-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67,160,71,0.15);
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.stats-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.status-pending { background-color: #fff3cd; color: #856404; }
.status-processing { background-color: var(--primary-light); color: var(--primary-dark); }
.status-shipped { background-color: #cce7ff; color: #004085; }
.status-delivered { background-color: #d4edda; color: #155724; }
.status-cancelled { background-color: #f8d7da; color: #721c24; }
.status-completed { background-color: #d4edda; color: #155724; }

.filter-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.active-filter {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Button Styles */
.btn-primary, .btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 20px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover, .btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary, .btn-outline-success {
    color: var(--primary-dark);
    border-color: var(--primary-color);
    border-radius: 20px;
    transition: 0.3s;
}

.btn-outline-primary:hover, .btn-outline-success:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-outline-danger {
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 5px 12px;
    font-size: 0.8rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 160, 71, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    margin-top: 6px;
    font-size: 0.875rem;
}

/* Link Styles */
.signup-link,
.login-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
}

.signup-link p,
.login-link p {
    color: var(--text-light);
    margin-bottom: 0;
}

.signup-link a,
.login-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signup-link a:hover,
.login-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Password Toggle */
.password-toggle {
    position: relative;
}

.password-toggle .form-control {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.remember-me label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-light);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
    font-size: 0.875rem;
}

.strength-weak { color: #dc3545; }
.strength-medium { color: #ffc107; }
.strength-strong { color: var(--primary-color); }

/* Terms Agreement */
.terms-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
}

.terms-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
}

.terms-agreement label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.terms-agreement a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.terms-agreement a:hover {
    text-decoration: underline;
}

/* CAPTCHA Styles */
.captcha-container {
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--primary-color);
    margin-bottom: 25px;
}

.captcha-problem {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 15px;
    padding: 10px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
}

.captcha-input {
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
}

.captcha-input .form-control {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.captcha-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 10px;
}

.captcha-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.refresh-captcha {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.refresh-captcha:hover {
    color: var(--primary-dark);
}

/* Empty States */
.empty-state, .empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.empty-state i, .empty-cart i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 2px solid var(--primary-light);
    box-shadow: 0 -3px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.mobile-bottom-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    transition: all 0.25s ease;
    position: relative;
}

.mobile-bottom-nav a i {
    font-size: 1.25rem;
    margin-bottom: 3px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--primary-color);
}

.mobile-bottom-nav a.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .badge {
    position: absolute;
    top: 2px;
    left: 55%;
    font-size: 0.6rem;
    background: var(--primary-color);
    color: #fff;
    transform: translate(-50%, -40%);
}

/* Alert & Modal Styling */
.alert-success {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.alert-info {
    background-color: #e3f2fd;
    border-color: #2196f3;
    color: #1565c0;
}

.modal-header, .offcanvas-header {
    background-color: var(--primary-light);
    border-bottom: 2px solid var(--primary-color);
}

.offcanvas-title {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Utility Classes */
.text-success {
    color: var(--primary-dark) !important;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--primary-light) !important;
}

.badge.bg-success {
    background-color: var(--primary-color) !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
}

.sticky-top {
    position: sticky;
    top: 20px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .auth-body {
        padding: 15px;
    }
    
    .auth-container {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .auth-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .captcha-problem {
        font-size: 1.1rem;
    }
    
    .brand-header h1 {
        font-size: 2rem;
    }
    
    .container, .welcome-container {
        padding: 10px;
    }
    
    .welcome-header, .profile-card {
        padding: 20px 15px;
    }
    
    .user-avatar, .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 1.3rem;
    }
    
    .shop-card, .order-card, .section, .address-card {
        padding: 15px;
    }
    
    .shop-logo,
    .shop-logo-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .account-card {
        padding: 10px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .filter-card {
        padding: 15px;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
    
    .order-card {
        padding: 20px;
    }
    
    .btn-primary, .btn-success, .btn-outline-primary, .btn-outline-success {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .address-actions {
        position: static;
        margin-top: 15px;
        justify-content: flex-end;
    }
    
    .default-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .confirmation-header {
        padding: 30px 0;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-item-img {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item-img {
        width: 60px;
        height: 60px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .quantity-input {
        width: 60px;
    }
    
    .checkout-cta {
        padding: 20px;
    }
    
    .checkout-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .btn-group {
        width: 100%;
    }
    
    .btn-group .btn {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
    
    .btn-primary, .btn-success {
        width: auto;
    }
    
    .btn-checkout {
        width: 100%;
    }
}