.delivery-area-section-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}
.division_district {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.delivery-area-section-form select {
  cursor: pointer;
}
/* shopping cart start  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.delivary_area_shopping-cart {
    background: #fff8f5;
    border: 1px dashed #c05000;
    border-radius: 7px;
    padding: 11px;
}
.shopping-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 105px;
}

.cart-container,
.order-summary {
  background: white !important ;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.order-summary {
  height: fit-content;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

div#cartItemsList .cart-item {
  background: white;
  padding: 0;
  padding-right: 13px;
  border: none;
}
.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.item-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.platform {
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.remove-btn {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
}

.remove-btn:hover {
  color: #ef4444;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: none;
  border: 1px solid #e5e7eb;
  width: 29px;
  height: 33px;
  border-radius: 4px;
  cursor: pointer;
}
button.quantity-btn:hover {
  background: #6366f1;
  color: white;
}

.quantity-btn:hover {
  background-color: #f9fafb;
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0.25rem;
}

.price,
.total {
  font-weight: 600;
}

.continue-shopping {
  color: #6366f1;
  text-decoration: none;
}

.continue-shopping:hover {
  text-decoration: underline;
}

.order-summary h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.shipping-section h3,
.promo-section h3,
.total-section h3 {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.shipping-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
}
.form-group.checkbox {
  display: flex;
  align-content: center;
  align-items: center;
}
span.error-message {
  color: red;
  font-size: 12px;
  margin: 0 4px;
  text-transform: capitalize;
}
.form-group.checkbox input#saveInfo {
  width: 14px;
  margin-right: 4px;
  cursor: pointer;
}
.promo-input {
  display: flex;
  gap: 0.5rem;
}

.promo-input input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
}

.apply-btn {
  background-color: var(--button-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

.apply-btn:hover {
  background-color: #dc2626;
}

.total-amount {
  font-size: 1.25rem;
  font-weight: 600;
}
.total-section {
  display: flex;
  justify-content: space-between;
}

.total-section span {
  font-weight: bold;
}

.checkout-btn {
  width: 100%;
  background-color: #6366f1;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}

.checkout-btn:hover {
  background-color: #fa832e;
}
.cart-footer.flex {
  flex-wrap: nowrap;
  justify-content: space-between;
}

button.next-show-product {
  display: flex;
  gap: 6px;
}

button.next-show-product .next_view_p {
  border: 1px solid #0000002e;
  width: 20px;
  height: 25px;
  cursor: pointer;
  transition: 0.3s;
}
button.next-show-product .next_view_p:hover {
  color: white;
  background-color: #dc2626;
}

table.table-shoping-card {
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  table-layout: fixed;
}

table.table-shoping-card tbody {
  padding: 10% 0;
}

table.table-shoping-card tbody tr {
  height: 38px;
}
table.table-shoping-card .shopping-value {
  text-align: right;
}

/* shopping cart end */

/* shippng cart start */

/* Product Grid Styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.price {
  color:#067f98;
  font-weight: bold;
  margin: 0.5rem 0;
}

.quick-add {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Cart Sidebar Styles */
input#cartTotal {
  background: transparent;
  text-align: right;
  display: inline-block;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.cart-overlay.show {
  display: block;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 5px;

  background: #f1f1f1 !important;
}
div#cartItems {
  margin-top: 0;
  padding-top: 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.cart-items.listItems {
  padding: 0;
  margin: 0px;
  /* height: 388px; */
  background: white !important;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-product-image {
  position: relative;
}
.item-details {
  flex: 1;
}

.item-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.item-title.name_count {
  display: flex;
  justify-content: space-between;
}
.COUNT_quantity {
  color: rgb(255 255 255);
  background: #4c4c4c;
  width: 20px;
  height: 24px;
  border-radius: 100px;
  text-align: center;
  position: absolute;
  top: -5px;
  right: -8px;
}
.item-price {
  color: #6366f1;
  font-weight: bold;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #e5e7eb;
  background: none;
  cursor: pointer;
  border-radius: 4px;
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0.25rem;
}

.remove-btn {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}

.cart-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.action-btn {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin: 1rem 0;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background-color: #067f98;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.cod-btn {
  width: 100%;
  padding: 1rem;
  background-color: #fa832e;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
}
.cod-btn:hover {
  background-color: #fa7617;
}

.view-cart {
  display: block;
  text-align: center;
  color: #6366f1;
  text-decoration: none;
  margin-top: 1rem;
  background-color: #c05000 !important;
  transition: all 0.1s;
  color: white;
  padding: 13px 0;
  width: 100%;
  border-radius: 3px;
}
.view-cart:hover {
  background-color: #fa832e;
}

/* ================ */
.billing-form input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  padding: 0px 4px;
  border: 1px solid #fa832e;
}

.billing-form .form-group {
  margin: 20px 0;
  width: 100%;
}
.address_area_custom_value {
  border: 1px solid #fa832e;
  padding: 6px;
}

/* shippng cart end */
