*{
       margin:0; 
       padding:0;
       box-sizing: border-box;
}
.theme-primary{ color:#0d6efd; }
.bg-theme-primary{ background-color:#0d6efd !important; }
.bg-theme-light{ background-color:#f8f9fa !important; }
.text-muted-strong{ color:#6c757d !important; }
.rounded-12{ border-radius:12px; }
.shadow-soft{ box-shadow:0 4px 16px rgba(0,0,0,.06); }
.btn-theme{ background-color:#0d6efd; color:#fff; border:none; }
.btn-theme:hover{ background-color:#0b5ed7; color:#fff; }
.section{ padding:24px 0; }
.section-sm{ padding:16px 0; }
.logo{
       width:auto;
       height:40px;
}
.card-img-top{
       width:100%;
       height: 200px;
       object-fit: contain;
}
.admin_image{
       width:100px;
       object-fit: contain;
}
.footer{
       position:static;
}
.cart_img{
       width:50px;
       height:50px;
       object-fit: contain;
}
.profile_img{
    width:100%;
    height: 100%;  
}

.custom-input-style{
       background-color: lightblue !important;
}
.product_img{
       width: 100px;
       object-fit:contain;   
}

/* Contact page */
.contact-card .icon{
       width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center;
       border-radius:50%; background:#e9f2ff; color:#0d6efd;
}

/* Product cards */
.card { transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.btn-primary { background-color: #0d6efd; border-color: #0d6efd; }
.btn-primary:hover { background-color: #0b5ed7; border-color: #0b5ed7; }

/* Sidebar improvements */
.hover-bg-light:hover { background-color: #f8f9fa !important; }
.navbar-nav .nav-link { transition: all 0.2s; }
.navbar-nav .nav-link:hover { background-color: #e9ecef; }

/* Full screen layout */
body { min-height: 100vh; }
.container-fluid { max-width: 100%; }
.navbar { width: 100%; }

/* Fixed sidebar behavior */
.sidebar-sticky{
       position: sticky;
       top: 100px;
}