header.main-header .main-menu .list .list-item:not(:last-child) {
    margin-right: 0;
}



/* changed the style of address choosing */
a.btn-modern {
  display: inline-block;
  font-weight: 600;
  font-size: 10px;
  border-radius: 12px;
  padding: 10px 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1.5;
}

a.btn-modern.btn-select {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #0b7b0d;
   border: 2px solid #15803d;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
a.btn-modern.btn-select:hover {
  background: linear-gradient(135deg, #15803d, #16a34a);
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.4);
  color: #fff;
}

a.btn-modern.btn-new-address {
  background: #fff;
  color: #0ea5e9;
  border: 2px solid #0ea5e9;
  box-shadow: 0 2px 6px rgba(14, 165, 233, 0.15);
}
a.btn-modern.btn-new-address:hover {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.3);
}

a.btn-modern.btn-select,
a.btn-modern.btn-new-address {
  background-image: none;
}



/* استایل کلی برای لیست جزئیات سفارش */
.order-details-list {
    list-style-type: none; /* حذف نقطه‌های کنار لیست */
    padding: 0;
    margin: 0;
}

/* استایل هر آیتم در لیست */
.order-details-list li {
    display: flex;
    justify-content: space-between; /* عنوان و تعداد را در دو طرف قرار می‌دهد */
    align-items: center;
    padding: 12px 10px;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #F0E68C, #FFD700, #D4AF37);
    border-radius: 8px; /* گوشه‌های گرد */
    margin-bottom: 8px; /* فاصله بین آیتم‌ها */
    border: 1px solid #D4AF37; /* یک حاشیه ظریف */
}

/* استایل عنوان محصول */
.order-details-list .product-title {
    font-weight: 500;
    color: #212529;
}

/* استایل تعداد محصول که شبیه یک برچسب (badge) می‌شود */
.order-details-list .product-quantity {
    font-size: 0.9rem;
    color: #495057;
    background-color: #e9ecef;
    padding: 4px 10px;
    border-radius: 12px;
}
