/* --- Section Cards --- */
.section-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.section-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 20px;
}

/* --- Order Cards --- */
.order-card {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.order-date {
    font-size: 13px;
    color: var(--text-dark);
}

.order-status {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.order-status.delivered {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.order-status.pending {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
}

.order-items-list {
    font-size: 14px;
    color: var(--text-black);
    margin-bottom: 12px;
    line-height: 1.6;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-grey);
}

.order-total-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.order-total-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-black);
}

.orders-empty {
    text-align: center;
    padding: 60px 20px;
}

.orders-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.orders-empty-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Contact Items --- */
.help-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-grey);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.help-contact-item:hover {
    color: var(--primary-green);
}

.help-contact-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.help-contact-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
}

/* --- Benefit Card --- */
.benefit-card {
    background: var(--bg-grey);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}

.benefit-card h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-black);
}

.benefit-list {
    list-style: none;
    margin-bottom: 24px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.benefit-list li i {
    color: var(--primary-green);
}

/* --- Sidebar Boxes --- */
.sidebar-box {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.sidebar-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-text {
    font-size: 14px;
    color: var(--text-dark);
}

/* --- Quantity Badge --- */
.item-qty-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}
