* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #F8FFF2;
}

.container {
  width: 100%;
  max-width: 420px;
  margin: auto;
  padding: 20px;
}

/* Header */
.top-bar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.top-bar a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.back-btn {
  width: 36px;
  height: 36px;
  background: #4A8A4D;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.back-text {
  font-size: 16px;
  margin-left: 10px;
  color: #364A34;
}

/* Title */
.title-section {
  text-align: center;
  padding: 20px 0;
}

.title-section h2 {
  color: #4A8A4D;
  font-size: 28px;
  margin-bottom: 4px;
}

.title-section p {
  color: #8FAF90;
  font-size: 14px;
}

/* Form */
.checkout-form {
  margin-top: 10px;
}

.checkout-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #4A4A4A;
  text-align: left;  
}

.checkout-form input {
  width: 100%;
  height: 48px;
  background: #F2F6FB;
  border-radius: 10px;
  border: none;
  margin-bottom: 16px;
  padding: 12px;
  font-size: 14px;
}

/* Delivery Options */
.delivery-options {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin: 10px 0 20px;
}

.option {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C0C0C0;
}

.option.active {
  color: #FF733C;
}

.option input {
  width: 16px;
  height: 16px;
}

/* Order Card */
.order-card {
  background: #62A868;
  color: white;
  padding: 25px;
  border-radius: 20px;
  margin-top: 10px;
}

.order-title {
  text-align: center;
  margin-bottom: 20px;
}

.order-item,
.order-fees p,
.order-total {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.order-total .total-price {
  font-size: 22px;
  font-weight: 600;
}

/* Buttons */
.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/*
button {
  width: 48%;
  height: 48px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.btn-outline {
  width: 48%;
  height: 48px;
  border: 1.5px solid #4A8A4D;
  border-radius: 10px;
  display: inline-flex; /* use flex for perfect centering 
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  background: #fff;
  color: #4A8A4D;
  text-decoration: none; /* removes underline =
}

.btn-outline:hover {
  background: #E9F5E9;
}

.btn-primary {
  background: #4A8A4D;
  color: white;
  border: none;
}
*/

/* Button 
.btn-primary {
  height: 50px;
  background: #4A8A4D;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}
*/
.btn-primary {
	width: 100%;
	height: 50px;
	background: #4A8A4D;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.btn-primary:hover {
	background: #3b6f3f; /* slightly darker green on hover */
	transform: translateY(-2px); /* lift effect */
	box-shadow: 0 4px 10px rgba(74, 138, 77, 0.4); /* soft shadow */
}

.w-100 {
  width: 100%;
}
