:root {
    --primary-color: #2E7D32;  /* Changed from Daraz orange to a unique green */
    --secondary-color: #1B5E20;
    --accent-color: #81C784;
    --text-primary: #212121;
    --text-secondary: #757575;
    --border-color: #E0E0E0;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
}

body {
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
}

.account-container {
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

/* Sidebar Styles */
.sidebar-container {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.user-welcome {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.verified-badge {
    color: #2E7D32;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge i {
    font-size: 14px;
}

.menu-section {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.menu-title {
    font-size: 14px;
    color: #757575;
    margin-bottom: 10px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin-bottom: 8px;
}

.menu-items li a {
    color: #212121;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 0;
}

.menu-items li.active a {
    color: #2E7D32;
    font-weight: 500;
}

/* Content Box Styles */
.content-box {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    height: 100%;
}

.box-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-header h5 {
    margin: 0;
    font-size: 16px;
}

.edit-link {
    color: #2E7D32;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.box-content {
    padding: 15px;
}

/* Address Info Styles */
.address-info h6 {
    color: #757575;
    font-size: 12px;
    margin-bottom: 12px;
}

.address-info p {
    margin-bottom: 6px;
    font-size: 14px;
}

.address-info .name {
    font-weight: 500;
}

/* Recent Orders Table */
.recent-orders {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

.table {
    margin: 0;
}

.table th {
    color: #757575;
    font-weight: 500;
    border-bottom: 2px solid #eee;
}

.order-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.manage-link {
    color: #2E7D32;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

/* Marketing Preferences */
.checkbox-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #424242;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sidebar-container {
        margin-bottom: 20px;
    }
    
    .content-box {
        margin-bottom: 20px;
    }
}

/* Page Header Styles */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.page-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #212121;
}

.user-welcome {
    text-align: right;
}

.user-welcome p {
    font-size: 14px;
    color: #212121;
    margin-bottom: 4px;
}

.verified-badge {
    color: #2E7D32;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.verified-badge i {
    font-size: 14px;
}

.page-header .mb-1 {
    font-weight: 500;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #757575;
    font-size: 12px;
}

.mobile-bottom-nav .nav-item.active {
    color: #2E7D32;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-bottom-nav .cart-count {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(8px);
    background: #2E7D32;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Mobile Category Menu */
.mobile-category-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1100;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-category-menu.active {
    transform: translateX(0);
}

.mobile-category-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #212121;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.category-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subcategory-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 20px;
}

.subcategory-item {
    padding: 10px 0;
    color: #757575;
}

/* Adjust main content padding for mobile */
@media (max-width: 768px) {
    .account-container {
        padding-bottom: 70px; /* Make room for bottom nav */
    }
} 