:root {
    --coffee-dark: #4A3520;
    --coffee-medium: #8B6B4D;
    --coffee-light: #B89B7C;
    --coffee-cream: #F5E9DA;
    --coffee-accent: #D4A76A;
    --coffee-red: #C44536;
    --coffee-green: #7A9E7E;
    --card-shadow: 0 8px 32px rgba(74, 53, 32, 0.1);
    --card-shadow-hover: 0 12px 40px rgba(74, 53, 32, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* پس زمینه اصلی با تصویر کافه */
/*
body {
    background: 
        linear-gradient(rgba(74, 53, 32, 0.85), rgba(74, 53, 32, 0.9)),
        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
    min-height: 100vh;
    color: #333;
    padding-bottom: 100px;
}
*/
body {
    background: 
        linear-gradient(rgba(74, 53, 32, 0.85), rgba(74, 53, 32, 0.9)),
        var(--store-bg, none) center/cover fixed;
    background-color: #ffffff;
    min-height: 100vh;
    color: #333;
    padding-bottom: 100px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-attachment: fixed;
    filter: blur(var(--store-bg-blur, 0));
    z-index: -1;
}

/* هدر فروشگاه */
.store-header {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-medium) 100%);
    color: var(--coffee-cream);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--coffee-accent);
}

/*
.store-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}
*/

.store-header > .container,
.store-header .row,
.store-header .col {
    position: relative;
    z-index: 1;
}

.store-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--coffee-cream);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--coffee-cream);
    padding: 3px;
    transition: var(--transition);
}

.store-logo:hover {
    transform: rotate(10deg) scale(1.05);
    border-color: var(--coffee-accent);
}

#storeName {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--coffee-cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.store-description {
    font-size: 0.9rem;
    color: var(--coffee-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 600px;
}

/* بدج‌های نوع سفارش */
.order-type-badges .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(245, 233, 218, 0.3);
    backdrop-filter: blur(5px);
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--coffee-green), #5a7c5e) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--coffee-accent), #b8925a) !important;
}

.pw-btn-circle{
	display:flex !important;
	align-items:center;
	justify-content:center;
	width:50px;
	height:50px;
	font-size:1.5rem !important;
    border-radius: 100% !important;
}

/* دکمه‌های هدر */
.store-header .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.store-header .btn-light {
    background: rgba(212, 167, 106, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--coffee-accent);
    color: var(--coffee-cream);
}

.store-header .btn-light:hover {
    background: var(--coffee-accent);
    color: var(--coffee-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 167, 106, 0.4);
}

.store-header .btn-outline-light {
    border: 2px solid var(--coffee-cream);
    background: transparent;
    color: var(--coffee-cream);
}

.store-header .btn-outline-light:hover {
    background: var(--coffee-cream);
    color: var(--coffee-dark);
    transform: translateY(-3px);
}

.store-header .pw-btn-row-1 {
    position: absolute;
    left: 10px;
    justify-content: center;
    top: 0;
    bottom: 0;
    z-index: 99;
}

/* محتوای اصلی */
main.container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin-top: 1rem;
}

section {
    background: rgba(245, 233, 218, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--coffee-light);
    box-shadow: var(--card-shadow);
}

section h5 {
    color: var(--coffee-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--coffee-accent);
}

/* دسته‌بندی‌ها */
.category-slider {
    position: relative;
    padding: 0.5rem;
}

.category-card {
    background: linear-gradient(135deg, var(--coffee-cream) 0%, #fff 100%);
    border: 2px solid var(--coffee-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--coffee-accent);
    box-shadow: var(--card-shadow-hover);
}

.category-card.category-active {
    border-color: var(--coffee-accent);
    background: linear-gradient(135deg, var(--coffee-accent), #e6b577);
}

.category-card.category-active .category-name {
    color: var(--coffee-cream);
}

.category-image-container {
    height: 100px;
    overflow: hidden;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 0.5rem;
    color: var(--coffee-dark);
    background: transparent;
}

.subcategory-item {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: 25px;
    border: 2px solid var(--coffee-light);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 0.25rem;
    color: var(--coffee-medium);
}

.subcategory-item:hover {
    background: var(--coffee-accent);
    color: var(--coffee-cream);
    border-color: var(--coffee-accent);
    transform: translateY(-3px);
}

.subcategory-item.active {
    background: var(--coffee-dark);
    color: var(--coffee-cream);
    border-color: var(--coffee-dark);
    box-shadow: 0 4px 12px rgba(74, 53, 32, 0.3);
}

/* محصولات */
.products-container {
    position: relative;
    min-height: 300px;
}

.product-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-item.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.product-card {
    background: linear-gradient(135deg, var(--coffee-cream) 0%, #fff 100%);
    border: 2px solid var(--coffee-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 1rem;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--coffee-accent);
    box-shadow: var(--card-shadow-hover);
}

.product-card .pw-product-footer{
	height: 45px;
	line-height: 18px;
}

.product-image {
    height: 160px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0 !important;
    color: var(--coffee-dark);
    line-height: 1.4;
    height: 1.5em;
    overflow: hidden;
}

.product-ingredients {
    font-size: 0.8rem;
    color: var(--coffee-medium);
    line-height: 1.6;
    margin-bottom: 0;
    height: 1.2em;
    overflow: hidden;
    font-style: italic;
}

.product-price {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--coffee-red);
}

.product-old-price {
    font-size: 0.8rem;
    color: var(--coffee-medium);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* کنترل‌های تعداد */
.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coffee-cream);
    border-radius: 25px;
    padding: 0.25rem;
    width: fit-content;
    margin: 0.5rem auto 0;
    border: 2px solid var(--coffee-light);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--coffee-accent);
    color: var(--coffee-cream);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--coffee-dark);
    transform: scale(1.1);
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--coffee-dark);
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--coffee-red);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 1rem;
}

.remove-item-btn:hover {
    background: var(--coffee-red);
    color: white;
    transform: scale(1.1);
}

/* Floating Tools */
.pw-floating-tools {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
    background: rgba(74, 53, 32, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--coffee-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cart-toggle {
    background: linear-gradient(135deg, var(--coffee-accent), var(--coffee-dark));
    color: var(--coffee-cream);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(212, 167, 106, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    min-width: 160px;
    justify-content: center;
}

.cart-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 167, 106, 0.6);
}

.cart-badge {
    background: var(--coffee-red);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.pw-circle-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--coffee-accent);
    border: 2px solid var(--coffee-cream);
    color: var(--coffee-cream);
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(212, 167, 106, 0.4);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pw-circle-btn:hover {
    transform: translateY(-5px) rotate(15deg);
    background: var(--coffee-dark);
    box-shadow: 0 10px 25px rgba(74, 53, 32, 0.4);
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--coffee-cream) 0%, #fff 100%);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -20px 50px rgba(74, 53, 32, 0.3);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 85vh;
    overflow-y: auto;
    border: 3px solid var(--coffee-accent);
    border-bottom: none;
}

.floating-cart.active {
    transform: translateY(0);
}

.floating-cart::-webkit-scrollbar {
    width: 8px;
}

.floating-cart::-webkit-scrollbar-track {
    background: var(--coffee-cream);
    border-radius: 10px;
}

.floating-cart::-webkit-scrollbar-thumb {
    background: var(--coffee-accent);
    border-radius: 10px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--coffee-light);
}

.cart-header h5 {
    font-weight: 800;
    color: var(--coffee-dark);
    margin: 0;
    font-size: 1.3rem;
}

/* بخش‌های مختلف سبد خرید */
.order-type-section,
.delivery-cost-section,
.delivery-address-section,
.table-selection-section {
    background: white;
    border: 3px solid var(--coffee-light);
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.order-type-section {
    background: linear-gradient(135deg, var(--coffee-cream), white);
}

.order-type-section:hover,
.delivery-cost-section:hover,
.delivery-address-section:hover,
.table-selection-section:hover {
    border-color: var(--coffee-accent);
    transform: translateY(-3px);
}

.order-type-section h6,
.delivery-cost-section h6,
.delivery-address-section h6,
.table-selection-section h6 {
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.order-type-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.form-check {
    margin: 0;
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
    margin-left: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--coffee-accent);
    border-color: var(--coffee-accent);
}

.form-check-label {
    font-weight: 600;
    color: var(--coffee-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* آیتم‌های سبد خرید */
.cart-items {
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    border: 2px solid var(--coffee-light);
}

.cart-item:hover {
    border-color: var(--coffee-accent);
    box-shadow: 0 4px 12px rgba(139, 107, 77, 0.2);
}

.cart-item-image {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 1rem;
    border: 3px solid var(--coffee-cream);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--coffee-dark);
}

.cart-item-price {
    font-weight: 800;
    color: var(--coffee-red);
    font-size: 0.95rem;
}

/* جمع‌بندی سبد خرید */
.cart-summary {
    background: linear-gradient(135deg, var(--coffee-cream), white);
    border-radius: 15px;
    padding: 1.5rem;
    border: 3px solid var(--coffee-light);
    margin-top: 1rem;
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--coffee-dark);
}

.cart-summary .border-top {
    border-top: 3px solid var(--coffee-light) !important;
    padding-top: 1rem;
    margin-top: 1rem;
}

.cart-summary strong {
    font-size: 1.2rem;
    color: var(--coffee-dark);
}

#cartTotal {
    font-size: 1.3rem;
    color: var(--coffee-red);
    font-weight: 800;
}

#checkoutBtn {
    background: linear-gradient(135deg, var(--coffee-green), var(--coffee-dark));
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(122, 158, 126, 0.4);
    transition: var(--transition);
    margin-top: 1rem;
    color: var(--coffee-cream);
}

#checkoutBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(122, 158, 126, 0.6);
}

#checkoutBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Modal‌ها */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--coffee-accent);
    box-shadow: 0 25px 50px rgba(74, 53, 32, 0.3);
    background: linear-gradient(135deg, var(--coffee-cream) 0%, #fff 100%);
}

.modal-header {
    background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-medium));
    color: var(--coffee-cream);
    border: none;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 800;
    font-size: 1.3rem;
}

.modal-body {
    padding: 1.5rem;
    color: var(--coffee-dark);
}

.btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
    transition: var(--transition);
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* User Nav Modal */
.pw-user-nav-modal .modal-content {
    max-width: 500px;
}

.pw-user-nav-modal .pw-usernav-btn {
    background: linear-gradient(135deg, white, var(--coffee-cream));
    border: 3px solid var(--coffee-light);
    border-radius: 15px;
    padding: 1.5rem 0.5rem;
    transition: var(--transition);
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
}

.pw-user-nav-modal .pw-usernav-btn:hover {
    transform: translateY(-8px);
    border-color: var(--coffee-accent);
    background: linear-gradient(135deg, var(--coffee-cream), white);
    box-shadow: 0 12px 25px rgba(212, 167, 106, 0.3);
}

.pw-user-nav-modal .pw-usernav-btn .pw-icon i {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--coffee-light);
    color: var(--coffee-cream);
    transition: var(--transition);
}

.pw-user-nav-modal .pw-usernav-btn:hover .pw-icon i {
    background: var(--coffee-accent);
    transform: scale(1.1) rotate(15deg);
}

.pw-user-nav-modal .pw-usernav-btn .pw-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--coffee-dark);
}

/* Loading States */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    border-color: var(--coffee-accent) transparent var(--coffee-accent) transparent;
}

/* استایل Modal سفارشات */
#ordersModal .modal-content {
    border-radius: 0;
    height: 100vh;
}

#ordersModal .modal-body {
    padding: 0;
    overflow-y: auto;
}

#ordersListContainer {
    min-height: 300px;
}

.order-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-id {
    font-weight: bold;
    color: #333;
}

.order-date {
    font-size: 12px;
    color: #666;
}

.order-status {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

.status-pending { background: #ffecb5; color: #ff9800; }
.status-processing { background: #bbdefb; color: #2196f3; }
.status-completed { background: #c8e6c9; color: #4caf50; }
.status-cancelled { background: #ffcdd2; color: #f44336; }

.order-summary {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
}

.order-total {
    font-weight: bold;
    color: #2c5aa0;
}

.order-type {
    color: #666;
    font-size: 13px;
}

.no-orders {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.orders-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.order-details-container .card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-details-container .card-header {
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.order-details-container table {
    margin-bottom: 0;
}

.order-details-container table tr td {
    vertical-align: middle;
}

.order-details-container .badge {
    font-size: 12px;
    padding: 4px 8px;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/*
@keyframes coffeePulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 167, 106, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 167, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 167, 106, 0); }
}
*/

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.fade-out {
    animation: fadeOut 0.4s ease-out forwards;
}

.product-card {
    /* animation: coffeePulse 2s infinite; */
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    .store-logo {
        width: 75px;
        height: 75px;
    }
    
    #storeName {
        font-size: 1.3rem;
    }
    
    .store-description {
        font-size: 0.8rem;
    }
    
    .category-image-container {
        height: 85px;
    }
    
    .product-image {
        height: 130px;
    }
    
    .pw-floating-tools {
        bottom: 20px;
        padding: 0.5rem 1rem;
        width: 95%;
    }
    
    .cart-toggle {
        min-width: 140px;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pw-circle-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-cart {
        padding: 1rem;
        max-height: 80vh;
    }
    
    .order-type-options {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    main.container {
        padding: 0 1rem;
    }
    
    section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-item {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .floating-cart {
        border-radius: 20px 20px 0 0;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* استایل برای محتوای سفارشات */
.orders-stats {
    background: linear-gradient(135deg, var(--coffee-cream), white);
    border-radius: 15px;
    padding: 1.5rem;
    border: 3px solid var(--coffee-light);
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coffee-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--coffee-medium);
    font-weight: 600;
}

.order-card {
    background: linear-gradient(135deg, white, var(--coffee-cream));
    border: 3px solid var(--coffee-light);
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.order-card:hover {
    border-color: var(--coffee-accent);
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--coffee-light);
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-pending { 
    background: rgba(255, 236, 181, 0.3); 
    color: #ff9800; 
    border: 2px solid #ff9800;
}

.status-processing { 
    background: rgba(187, 222, 251, 0.3); 
    color: #2196f3; 
    border: 2px solid #2196f3;
}

.status-completed { 
    background: rgba(200, 230, 201, 0.3); 
    color: #4caf50; 
    border: 2px solid #4caf50;
}

.status-cancelled { 
    background: rgba(255, 205, 210, 0.3); 
    color: #f44336; 
    border: 2px solid #f44336;
}