


/* BIG WHITE USER WELCOME */
.user-box {
    padding:10px 10px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #4B2E2B, #C06014);
    border-radius: 12px;
}

.user-box i {
    font-size: 28px;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.welcome-text {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 1px;
}
/* ================================


   ADMIN TABLE STYLING
================================ */

.section-title {
    margin: 30px 0 15px;
    color: var(--primary);
}

.btn-delete {
    background: #B22222;
    color: white;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-delete:hover {
    background: #8B0000;
}

/* ================================
   ADMIN PRODUCT IMAGE STYLING
================================ */

.image-cell {
    width: 90px;
}

.image-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

/* Floating Back Button */

.floating-back-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6B705C;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    z-index: 999;
}

.floating-back-btn:hover {
    background: #4B2E2B;
    transform: translateY(-3px);
}
/* PROFILE PAGE */

.profile-card,
.orders-card{
background:#fff;
padding:25px;
margin-top:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.logout-btn{
display:inline-block;
margin-top:15px;
background:#4B2E2B;
color:#fff;
padding:8px 15px;
text-decoration:none;
border-radius:5px;
}

/* ORDERS TABLE */

.orders-table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.orders-table th,
.orders-table td{
padding:12px;
border-bottom:1px solid #eee;
text-align:left;
}

/* BUTTONS */

.view-btn{
background:#C06014;
color:#fff;
padding:6px 12px;
text-decoration:none;
border-radius:5px;
font-size:14px;
}

.checkout-btn{
background:#28a745;
color:#fff;
padding:6px 12px;
text-decoration:none;
border-radius:5px;
font-size:14px;
margin-left:5px;
}

.shop-btn{
background:#C06014;
color:#fff;
padding:10px 20px;
text-decoration:none;
border-radius:6px;
}

/* STATUS COLORS */

.status{
padding:4px 10px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

.status.pending{
background:#fff3cd;
color:#856404;
}

.status.paid{
background:#d4edda;
color:#155724;
}

.status.cancelled{
background:#f8d7da;
color:#721c24;
}

.empty-orders{
text-align:center;
padding:30px;
}