/* Reset some default styles */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: #f4f6f5;
}

/* HEADER */
.header {
  background: #215c3c;
  color: #f4f6f5;
  text-align: center;
  padding: 18px;
}

.header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
}

/* CARD */
.card {
  max-width: 1050px;
  background: #f4f6f5;
  margin: 20px auto;
  padding: 25px;
  border-radius: 10px;
}

/* TITLE */
.title {
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
}

/* PRODUCT LAYOUT */
.product-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
}

.details {
  flex: 1;
}

.details h3 {
  margin-top: 0;
}

.price {
  font-weight: bold;
  margin-bottom: 10px;
}

.desc {
  color: #555;
}

.includes {
  padding-left: 0;
  list-style: none;
}

.includes li {
  margin: 6px 0;
}

select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* BUTTONS */

.pay-btn {
  width: 100%;
  padding: 14px;
  background: #215c3c;
  color: #f4f6f5;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}


.order-btn{
  width: 100%;
  padding: 14px;
  background: none;
  color: #215c3c;
  border: 1px solid #215c3c;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

/* DELIVERY */
.delivery {
  margin-top: 30px;
  background: #fff;
  padding: 1rem;
   border-radius: 6px;
}

.delivery input,.delivery select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* INFO */
.info {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;

  padding: 1rem;
  background: #fff;
  border-radius: 6px;
}

.info-row {
  display: flex;
  align-items: center;
  flex: 1;
}

.info-icon {
  flex: 0 0 20%;   /* 2 columns */
  text-align: center;
}

.info-icon img {
  width: 40px;
}

.info-text {
  flex: 0 0 80%;   /* 10 columns */
}

.info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.info-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #555;
}

/* Mobile view */
@media (max-width: 768px) {
  .info {
    flex-direction: column;
  }

  .info-row {
    margin-bottom: 15px;
  }
}


/* FOOTER TEXT */
.secure,
.help {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
  color: #444;
}

.logoimage
{
    width: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-layout {
    flex-direction: column;
  }
}


.quantity-wrap {
  margin: 15px 0 20px;
}

.qty-label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.qty-box {
  display: flex;
  align-items: center;
  width: 140px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 42px;
  border: none;
  background: #f3f3f3;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.qty-input {
  width: 60px;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 15px;
  outline: none;
}

/* Remove default arrows (Chrome, Edge) */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.qty-input[type=number] {
  -moz-appearance: textfield;
}
.error {
  color: #d32f2f;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}

input.error-border,
select.error-border {
  border-color: #d32f2f;
}

.map-link-box {
  margin-top: 10px;
}

.map-link-box input {
  width: 100%;
  margin-top: 6px;
}

.map-open-btn {
  display: inline-block;
  margin-top: 6px;
  color: #1f6a44;
  font-weight: bold;
  text-decoration: none;
}

.linkstyle
{
  font-size: 0.8rem;
  color: #215c3c;
  text-align: center;
}