/* DEFAULT */
.delivery-type input[type="radio"] {
  margin: 0;
  transform: scale(1.1);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */
}

/* --- Items Table --- */
.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 0.95em;
}
.items-table th, .items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
}
.remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover { color: #a94442; }


/* --- Form Inputs --- */
input, textarea {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95em;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
    border-color: #d84602;
    box-shadow: 0 0 6px rgba(216,70,2,0.25);
    outline: none;
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;          /* put both labels side by side */
  gap: 30px;              /* space between Domestic and International */
  margin: 12px 0;
}

.delivery-type label {
  display: inline-flex;   /* radio + text in one line */
  align-items: center;    /* vertical center */
  gap: 8px;               /* space between circle and text */
  font-size: 0.95em;
  cursor: pointer;
  white-space: nowrap;    /* keep text on one line */
}

.delivery-type input[type="radio"] {
  margin: 0;
  transform: scale(1.1);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */
}


/* --- Payment & Delivery Options (stacked) --- */
.payment-methods-group,
.delivery-service-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
    max-width: 100%;
}
.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.payment-methods-group label:hover,
.delivery-service-group label:hover {
    background-color: #f9f9f9;
}
.payment-methods-group input[type="radio"],
.delivery-service-group input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
    transform: scale(1.1);
    accent-color: #d84602;
    position: relative; /* ✅ new */
    top: 1px;           /* ✅ new */
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95em;
}

.radio-option input[type="radio"] {
  flex: 0 0 auto;   /* ✅ do not grow or shrink */
  width: auto;      /* ✅ only as wide as the radio circle */
  margin: 0;
  transform: scale(1.1);
  accent-color: #d84602;
}

.radio-option label {
  flex: 1;          /* ✅ take the remaining space */
  margin: 0;
}


/* --- Autocomplete Dropdown --- */
.search-wrapper { position: relative; width: 100%; }
#country-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* border: 1px solid #ccc; */
    border-radius: 8px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    margin-top: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.search-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background 0.2s;
}
.search-item:hover, .search-item.highlighted {
    background-color: #f0f8ff;
    color: #333;
}
.no-results {
    padding: 10px 14px;
    color: #888;
    font-style: italic;
}

/* --- Summary Box --- */
.summary-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}
.summary-box p { margin: 12px 0; font-size: 1em; }
.summary-box strong { font-size: 1.2em; color: #d84602; }

/* --- Checkout Button --- */
.complete-order {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 24px;
    background: linear-gradient(135deg, #c54f00, #d84602);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.complete-order:hover {
    background: linear-gradient(135deg, #d60000, #f00000);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 45%; }
.items-table .col-qty { width: 100px; }
.items-table .col-price { width: 140px; }
.items-table .col-subtotal { width: 150px; }

.qty-input {
    margin-bottom: 0;       /* remove extra spacing */
    text-align: center;     /* optional: center the number inside */
    height: 32px;           /* optional: consistent height */
    vertical-align: middle; /* align nicely in the cell */
}


.unit-price span,
.sub-total span {
  display: flex;
  justify-content: flex-end;  /* push content to the right */
  padding-right: 5px;
}

.unit-price del {
    color: #888;
    font-size: 0.9em;
    margin-left: 5px;
}
input::placeholder {
  font-size: 1rem;   /* adjust size */
  color: #888;         /* optional: change color */
  font-style: italic;  /* optional: style */
}



@media (max-width: 370px) {
/* --- Layout --- */
.checkout-page {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #333;
    align-items: center;
}
.checkout-left, .checkout-right {
    background: #fff;
    width: 98%;
    padding: 24px;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: center;

}

.delivery-type label {

}


/* --- Items Table --- */
.items-table th, .items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
}
.remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover { color: #a94442; }


  .items-table,
  .items-table thead,
  .items-table tbody,
  .items-table th,
  .items-table td,
  .items-table tr {
    display: block;
  }

  .items-table thead {
    display: none; /* hide header row */
  }

  .items-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 0.5rem;
    background: #fff;
  }

  .items-table td {
    border: none;
    padding: 4px 0;
    text-align: left;
  }

  .items-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 30%;
  }

.items-table td span {
  display: inline-block;   /* keep span inline */
  width: 50%;             
  vertical-align: middle;
}

.items-table td span input {
  display: inline-block;   /* keep input inline */
  width: auto;              /* optional: control input width */
  vertical-align: middle;
}


/* .unit-price, .sub-total {
    width:100%;
    display: flex;
    flex-direction: row;
}


.unit-price span, .sub-total span{
    text-align: left;
    padding-right: 50px;
} */



}

@media (min-width: 371px) and (max-width: 490px) {
/* --- Layout --- */
.checkout-page {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #333;
    align-items: center;
}
.checkout-left, .checkout-right {
    background: #fff;
    width: 98%;
    padding: 24px;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: center;

}

.delivery-type label {

}


/* --- Items Table --- */
.items-table th, .items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
}
.remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover { color: #a94442; }


  .items-table,
  .items-table thead,
  .items-table tbody,
  .items-table th,
  .items-table td,
  .items-table tr {
    display: block;
  }

  .items-table thead {
    display: none; /* hide header row */
  }

  .items-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 0.5rem;
    background: #fff;
  }

  .items-table td {
    border: none;
    padding: 4px 0;
    text-align: left;
  }

  .items-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 30%;
  }

.items-table td span {
  display: inline-block;   /* keep span inline */
  width: 60%;             
  vertical-align: middle;
}

.items-table td span input {
  display: inline-block;   /* keep input inline */
  width: 50%;              /* optional: control input width */
  vertical-align: middle;
}


/* .unit-price, .sub-total {
    width:100%;
    display: flex;
    flex-direction: row;
}
.unit-price span, .sub-total span{
    text-align: right;
    padding-right: 50px;
} */


}

@media (min-width: 491px) and (max-width: 800px) {
/* --- Layout --- */
.checkout-page {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #333;
    align-items: center;
}
.checkout-left, .checkout-right {
    background: #fff;
    width: 98%;
    padding: 24px;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.2rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.3);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */
  
  
}

/* --- Items Table --- */
.items-table th, .items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
}
.remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover { color: #a94442; }


  .items-table,
  .items-table thead,
  .items-table tbody,
  .items-table th,
  .items-table td,
  .items-table tr {
    display: block;
  }

  .items-table thead {
    display: none; /* hide header row */
  }

  .items-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 0.5rem;
    background: #fff;
  }

  .items-table td {
    border: none;
    padding: 4px 0;
    text-align: left;
    font-size: 1.1rem;
  }

  .items-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 40%;
  }

.items-table td span {
  display: inline-block;   /* keep span inline */
  width: 50%;             
  vertical-align: middle;
}

.items-table td span input {
  display: inline-block;   /* keep input inline */
  width: 100%;              /* optional: control input width */
  vertical-align: middle;
}


.unit-price, .sub-total {
    width:100%;
    display: flex;
    flex-direction: row;
}
.unit-price span, .sub-total span{
    text-align: left;
    padding-right: 50px;
}


}

@media (min-width: 801px) and (max-width: 1045px)  {

/* --- Layout --- */
.checkout-page {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 20px auto;
    gap: 24px;
    color: #333;
    align-items: center;
}
.checkout-page h1 {
    font-size: 3rem;
}
.checkout-left, .checkout-right {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
}


/* --- Items Table --- */
.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 1rem;

}
.items-table th, .items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
    text-align: center;
}
.remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover { color: #a94442; }

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 30%; }
.items-table .col-qty { width: 130px; }
.items-table .col-price { width: 140px; }
.items-table .col-subtotal { width: 140px; }
.items-table .col-remove { width: 30px; }
/* --- Form Inputs --- */
input, textarea {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95em;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
    border-color: #d84602;
    box-shadow: 0 0 6px rgba(216,70,2,0.25);
    outline: none;
}

.unit-price span,
.sub-total span {
  display: flex;
  justify-content: flex-end;  /* push content to the right */
  flex-wrap: wrap;
  padding-right: 5px;
}

input::placeholder {
  font-size: 1rem;   /* adjust size */
  color: #888;         /* optional: change color */
  font-style: italic;  /* optional: style */
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.1rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.1);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */

}



.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem; 
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.payment-methods-group label:hover,
.delivery-service-group label:hover {
    background-color: #f9f9f9;
}
.payment-methods-group input[type="radio"],
.delivery-service-group input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
    transform: scale(1.1);
    accent-color: #d84602;
    position: relative; /* ✅ new */
    top: 1px;           /* ✅ new */
}

/* --- Summary Box --- */
.summary-box {
    background: #fff;
    width:100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}
.summary-box p { margin: 12px 0; font-size: 1.1rem; }
.summary-box strong { font-size: 1.2em; color: #d84602; }




}

@media (min-width: 1046px) and (max-width: 1124px)   {

/* --- Layout --- */
.checkout-page {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 20px auto;
    gap: 24px;
    color: #333;
    align-items: center;
}
.checkout-page h1 {
    font-size: 3rem;
}
.checkout-left, .checkout-right {
    width: 100%;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- Items Table --- */
.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 1rem;

}
.items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
    text-align: center;
}
.remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover { color: #a94442; }

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 30%; }
.items-table .col-qty { width: 130px; }
.items-table .col-price { width: 150px; }
.items-table .col-subtotal { width: 150px; }
.items-table .col-remove { width: 30px; }
/* --- Form Inputs --- */
input, textarea {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95em;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
    border-color: #d84602;
    box-shadow: 0 0 6px rgba(216,70,2,0.25);
    outline: none;
}

.unit-price span,
.sub-total span {
  display: flex;
  justify-content: flex-end;  /* push content to the right */
  flex-wrap: wrap;
  padding-right: 5px;
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.2rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */

}



.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem; 
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.payment-methods-group label:hover,
.delivery-service-group label:hover {
    background-color: #f9f9f9;
}
.payment-methods-group input[type="radio"],
.delivery-service-group input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
    transform: scale(1.1);
    accent-color: #d84602;
    position: relative; /* ✅ new */
    top: 1px;           /* ✅ new */
}

/* --- Summary Box --- */
.summary-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}
.summary-box p { margin: 12px 0; font-size: 1.1rem; }
.summary-box strong { font-size: 1.2em; color: #d84602; }




}

@media (min-width: 1125px) and (max-width: 1205px)  {

/* --- Layout --- */
.checkout-page {
    display: flex;
    flex-wrap: wrap;      /* responsive */
    width: 90%;
    margin: 20px auto;
    gap: 24px;
    color: #333;
}
.checkout-left, .checkout-right {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.checkout-left { flex: 3; }
.checkout-right {
    flex: 1;
    background: #fafafa;
}

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 30%; }
.items-table .col-qty { width: 12%; }
.items-table .col-price { width: 100px; }
.items-table .col-subtotal { width: 100px; }
.items-table .col-remove { width: 30px; }

.items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
    text-align: center;
}


/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.2rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */

}


.unit-price span,
.sub-total span {
  display: flex;
  justify-content: flex-end;  /* push content to the right */
  flex-wrap: wrap;
  padding-right: 5px;
}
.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem; 
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.summary-box p { margin: 12px 0; font-size: 0.9rem; }
.summary-box strong { font-size: 1rem; color: #d84602; }

}

@media (min-width: 1206px) and (max-width: 1367px) {

/* --- Layout --- */
.checkout-page {
    display: flex;
    flex-wrap: wrap;      /* responsive */
    width: 90%;
    margin: 20px auto;
    gap: 24px;
    color: #333;
}
.checkout-left, .checkout-right {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.checkout-left { flex: 3; }
.checkout-right {
    flex: 1;
    background: #fafafa;
}

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 30%; }
.items-table .col-qty { width: 130px; }
.items-table .col-price { width: 150px; }
.items-table .col-subtotal { width: 150px; }
.items-table .col-remove { width: 30px; }

.items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
    text-align: center;
}

.unit-price span,
.sub-total span {
  display: flex;
  justify-content: flex-end;  /* push content to the right */
  flex-wrap: wrap;
  padding-right: 5px;
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.2rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */

}

input::placeholder {
  font-size: 1rem;   /* adjust size */
  color: #888;         /* optional: change color */
  font-style: italic;  /* optional: style */
}

.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem; 
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.summary-box p { margin: 12px 0; font-size: 0.95rem; }
.summary-box strong { font-size: 1.1rem; color: #d84602; }

}

@media (min-width: 1368px) and (max-width: 1703px) {

/* --- Layout --- */
.checkout-page {
    display: flex;
    flex-wrap: wrap;      /* responsive */
    width: 90%;
    margin: 20px auto;
    gap: 24px;
    color: #333;
}
.checkout-left, .checkout-right {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.checkout-left { flex: 3; }
.checkout-right {
    flex: 1;
    background: #fafafa;
}

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 30%; }
.items-table .col-qty { width: 12%; }
.items-table .col-price { width: 100px; }
.items-table .col-subtotal { width: 100px; }
.items-table .col-remove { width: 30px; }

.items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
    text-align: center;
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.2rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */

}

input::placeholder {
  font-size: 1rem;   /* adjust size */
  color: #888;         /* optional: change color */
  font-style: italic;  /* optional: style */
}

.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem; 
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.summary-box p { margin: 12px 0; font-size: 0.95rem; }
.summary-box strong { font-size: 1.1rem; color: #d84602; }

}

@media (min-width: 1704px){

/* --- Layout --- */
.checkout-page {
    display: flex;
    flex-wrap: wrap;      /* responsive */
    width: 75%;
    margin: 20px auto;
    gap: 24px;
    color: #333;
}
.checkout-left, .checkout-right {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.checkout-left { flex: 3; }
.checkout-right {
    flex: 1;
    background: #fafafa;
}

.items-table .col-no { width: 35px; }
.items-table .col-sku { width: 20px; }
.items-table .col-name { width: 30%; }
.items-table .col-qty { width: 12%; }
.items-table .col-price { width: 100px; }
.items-table .col-subtotal { width: 100px; }
.items-table .col-remove { width: 30px; }

.items-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.items-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444;
    text-align: center;
}

/* --- Delivery Type Radios (inline side by side) --- */
.delivery-type {
  display: flex;  
  width: 100%;
  height: 40px;
  flex-direction: row;
  justify-content: left;

}

.delivery-type label {
    font-size: 1.2rem;
}
.delivery-type input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);  /* slightly larger circle */
  accent-color: #d84602;  /* theme color */

}

input::placeholder {
  font-size: 1rem;   /* adjust size */
  color: #888;         /* optional: change color */
  font-style: italic;  /* optional: style */
}

.payment-methods-group label,
.delivery-service-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem; 
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;   /* ✅ new line */
}
.summary-box p { margin: 12px 0; font-size: 1rem; }
.summary-box strong { font-size: 1.2rem; color: #d84602; }

}