* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', sans-serif;
}

:root {
    --primary-color: #2E7D32;
    --secondary-color: #4CAF50;
    --accent-color: #FF9800;
    --danger-color: #F44336;
    --light-color: #f5f5f5;
    --dark-color: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --container-padding: 16px;
    --mobile-padding: 12px;
}

body {
    background-color: #f8f9fa;
    color: var(--dark-color);
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    position: relative;
    padding: 0;
    width: 100%;
}

/* স্ক্রলবার স্টাইল */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* হেডার স্টাইল */
.header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    width: 100%;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent-color);
    font-size: 24px;
}

.header-actions {
    display: flex;
    gap: 15px;
    position: relative;
}

.header-actions i {
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.header-actions i:hover {
    transform: scale(1.1);
}

#notificationBadge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* নোটিফিকেশন ড্রপডাউন */
.notification-dropdown {
    position: absolute;
    top: 60px;
    right: var(--container-padding);
    width: 300px;
    max-width: 90%;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow: hidden;
}

.notification-header {
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h4 {
    margin: 0;
    font-size: 16px;
}

.notification-header button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.notification-header button:hover {
    background: rgba(255,255,255,0.3);
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.notification-item:hover {
    background-color: #f9f9f9;
}

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

.notification-item.unread {
    background-color: #E8F5E9;
    border-left: 4px solid var(--primary-color);
}

.notification-item h5 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.notification-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.notification-item small {
    font-size: 11px;
    color: #999;
}

/* মূল কন্টেন্ট এরিয়া */
.main-content {
    padding: var(--container-padding);
    min-height: calc(100vh - 140px);
    padding-bottom: 80px;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* বটম নেভিগেশন */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
    flex: 1;
    position: relative;
    padding: 5px 0;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 12px;
    font-weight: 500;
}

.nav-item.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item.active i {
    transform: scale(1.1);
}

#cartCount {
    position: absolute;
    top: -5px;
    right: 15px;
    background-color: var(--danger-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* ব্যানার স্লাইডার */
.banner-slider {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.banner-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    position: relative;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.dot:hover {
    background-color: white;
}

/* সেকশন হেডার */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 0 5px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.view-all {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ক্যাটেগরি গ্রিড */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 0 5px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 15px 8px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark-color);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.category-item:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.category-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.category-item:hover .category-icon i {
    color: white;
}

.category-name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: var(--dark-color);
}

/* প্রোডাক্ট গ্রিড */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 5px;
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-badge.discount {
    background-color: var(--danger-color);
}

.product-badge.new {
    background-color: var(--primary-color);
}

.product-badge.bestseller {
    background-color: #9C27B0;
}

.product-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.product-image.load-error {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image.load-error::after {
    content: "ছবি লোড হয়নি";
    font-size: 12px;
    color: #999;
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    height: 40px;
    overflow: hidden;
    line-height: 1.3;
    color: var(--dark-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    font-size: 12px;
    background-color: #FFEBEE;
    color: var(--danger-color);
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* পণ্য একশনস - সম্পূর্ণ নতুন এবং উন্নত স্টাইল */
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.product-actions .btn {
    flex: 1;
    min-width: 0; /* Prevent buttons from overflowing */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px !important;
    font-size: 12px !important;
    height: 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Hind Siliguri', sans-serif;
}

.product-actions .btn i {
    margin-right: 5px;
    font-size: 14px;
}

.product-actions .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.product-actions .btn-secondary {
    background-color: #E8F5E9;
    color: var(--primary-color);
}

.product-actions .btn-primary:hover, 
.product-actions .btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* কার্ট স্টাইল */
.cart-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #E8F5E9;
    border: none;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background-color: #C8E6C9;
}

.quantity {
    font-size: 16px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.remove-btn {
    background-color: #FFEBEE;
    color: var(--danger-color);
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
}

.remove-btn:hover {
    background-color: #FFCDD2;
}

.cart-summary {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.checkout-btn:active {
    transform: translateY(0);
}

/* ফর্ম স্টাইল */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Hind Siliguri', sans-serif;
    transition: border 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-input:read-only {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    font-family: 'Hind Siliguri', sans-serif;
    transition: border 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-text {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* প্রোফাইল স্টাইল */
.profile-header {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.profile-avatar i {
    font-size: 40px;
    color: var(--primary-color);
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.profile-info p {
    color: #666;
    margin-bottom: 5px;
}

#editProfileBtn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.profile-menu {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: var(--dark-color);
    cursor: pointer;
    transition: background 0.3s;
}

.profile-menu-item:hover {
    background-color: #f9f9f9;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item i {
    width: 30px;
    font-size: 20px;
    color: var(--primary-color);
}

.profile-menu-item span {
    flex: 1;
}

.profile-menu-item .arrow {
    color: #999;
}

/* ড্যাশবোর্ড স্টাইল */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* অ্যাডমিন প্যানেল */
.admin-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.admin-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.admin-list {
    list-style-type: none;
}

.admin-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-list li:last-child {
    border-bottom: none;
}

.admin-actions {
    display: flex;
    gap: 10px;
}

/* অ্যাকশন বাটন - ফিক্সড */
.action-btn {
    padding: 6px 10px !important;
    border-radius: 5px !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    height: auto !important;
    min-height: 30px !important;
    font-family: 'Hind Siliguri', sans-serif !important;
    transition: all 0.3s !important;
}

.edit-btn {
    background-color: #E3F2FD !important;
    color: #1976D2 !important;
}

.delete-btn {
    background-color: #FFEBEE !important;
    color: var(--danger-color) !important;
}

.edit-btn:hover, .delete-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.edit-btn:active, .delete-btn:active {
    transform: translateY(0);
}

/* অর্ডার ট্র্যাকিং */
.tracking-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.tracking-step {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.tracking-step:last-child:before {
    display: none;
}

.tracking-step:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    height: 100%;
    width: 2px;
    background-color: #ddd;
}

.tracking-step.completed:before {
    background-color: var(--primary-color);
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    z-index: 1;
}

.tracking-step.completed .step-icon {
    background-color: var(--primary-color);
    color: white;
}

.step-details h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.step-details p {
    color: #666;
    font-size: 14px;
}

/* পণ্য বিবরণ মডেল */
.product-details-content {
    padding: 20px 0;
}

.product-details-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.product-details-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-details-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-details-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.product-details-price .current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-details-price .old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.product-details-discount {
    font-size: 16px;
    background-color: #FFEBEE;
    color: var(--danger-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.product-details-category {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-details-category i {
    margin-right: 8px;
    color: var(--primary-color);
}

.product-details-description h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-details-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* লুকানো সেকশন */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* মডেল স্টাইল */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 450px;
    padding: 25px;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

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

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--danger-color);
}

/* অ্যালার্ট স্টাইল */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-info {
    background-color: #E3F2FD;
    color: #1976D2;
    border-left: 4px solid #1976D2;
}

.alert-warning {
    background-color: #FFF3E0;
    color: #F57C00;
    border-left: 4px solid #F57C00;
}

.alert i {
    font-size: 18px;
}

/* অ্যাডমিন অর্ডার আইটেম */
.admin-order-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.admin-order-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.admin-order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.admin-order-details div {
    font-size: 14px;
}

.admin-order-details strong {
    color: var(--dark-color);
}

/* আপলোড সেকশন */
.upload-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.upload-options .btn {
    flex: 1;
    padding: 10px !important;
}

.banner-preview-img, .product-preview-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-top: 10px;
}

/* সেটিংস গ্রুপ */
.settings-group {
    margin-bottom: 20px;
}

.settings-group h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* ঠিকানা তালিকা */
.address-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-color);
}

.address-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.address-item p {
    color: #666;
    margin-bottom: 5px;
}

/* ব্যানার তালিকা */
.banner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.banner-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.banner-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.banner-actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}

/* ইউটিলিটি ক্লাস */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 15px;
}

.mt-3 {
    margin-top: 15px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-state i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ddd;
}

.hidden {
    display: none !important;
}

/* স্ট্যাটাস স্টাইল */
.status-processing {
    color: #FF9800;
    font-weight: 600;
}

.status-shipping {
    color: #2196F3;
    font-weight: 600;
}

.status-delivered {
    color: #4CAF50;
    font-weight: 600;
}

.status-cancelled {
    color: #F44336;
    font-weight: 600;
}

/* রেসপন্সিভ স্টাইল */
@media (max-width: 500px) {
    .main-content {
        padding: var(--mobile-padding);
        padding-bottom: 80px;
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        min-height: 300px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-actions .btn {
        font-size: 11px !important;
        padding: 6px 4px !important;
    }
    
    .product-actions .btn i {
        font-size: 12px;
        margin-right: 3px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-card h3 {
        font-size: 12px;
    }
    
    .stat-card p {
        font-size: 20px;
    }
    
    .notification-dropdown {
        width: 280px;
        right: var(--mobile-padding);
    }
}

@media (max-width: 400px) {
    .main-content {
        padding: var(--mobile-padding);
        padding-bottom: 80px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        min-height: 280px;
    }
    
    .product-image {
        height: 130px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-actions .btn {
        font-size: 10px !important;
        padding: 5px 3px !important;
    }
    
    .product-actions .btn i {
        font-size: 11px;
        margin-right: 2px;
    }
    
    .banner-slider {
        height: 150px;
    }
    
    .banner-list {
        grid-template-columns: 1fr;
    }
    
    .notification-dropdown {
        width: 250px;
    }
}

@media (max-width: 350px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        min-height: 320px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-actions .btn {
        font-size: 12px !important;
        padding: 8px 5px !important;
    }
    
    .product-actions .btn i {
        font-size: 14px;
        margin-right: 5px;
    }
}