/* 

.checkout {
  padding: 40px 20px;
  margin-top:120px;
}

.checkout .container-inner {
  max-width: 1100px;
  margin: auto;

}

.checkout .container-inner h1 {
  margin-bottom: 25px;
  font-size:22px;
  font-family: 'roboto-medium';
}

.checkout .checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 25px;
}
.checkout-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.checkout-card h3{
  font-size:18px;
  margin-bottom: 20px;
  font-family: 'roboto-medium';
}
.checkout .input-group input {
  width:100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.checkout .input-group input:focus {
  border-color: #0F3B3E;
  outline: none;
}

.checkout .input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout .input-group {
  margin-bottom: 14px;
  flex: 1;
}

.checkout .payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.checkout .payment-option {
  border: 1px solid #e4e4e4;
  padding: 14px;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}

.checkout .payment-option input {
  accent-color: #0F3B3E;
}

.checkout .payment-option:hover {
  border-color: #0F3B3E;
  background: #f8fbfb;
}

.payment-option:has(input:checked) {
  border: 2px solid #0F3B3E;
  background: #eef6f6;
}

.checkout .payment-title {
 font-family: 'roboto-bold';
}

.checkout .payment-desc {
  font-size: 13px;
  color: #777;
}
.place-order {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px;
  background: #0F3B3E;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.place-order:hover {
  background: #1F5A60;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.summary-item img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.summary-item strong {
  margin-left: auto;
}

.checkout .divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total {
  font-size: 18px;
  font-weight: bold;
}
 */
