/* === MODERN QUICK CHECKOUT THEME === */

body {
 
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

/* Başlıklar */
.quickcheckout-heading {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  background: #f0f2f5;
  padding: 12px 15px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #e0e4e8;
  margin-top: 15px;
  letter-spacing: 0.3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* İçerik kutuları */
.quickcheckout-content {
  border: 1px solid #e0e4e8;
  border-top: none;
  background: #fff;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease-in-out;
}

.quickcheckout-content:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* "OR" yazısı */
.or {
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #888;
  margin: 15px 0;
  position: relative;
}

.or::before,
.or::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 1px;
  background: #ddd;
  vertical-align: middle;
  margin: 0 10px;
}

/* Sepet tablosu */
table.quickcheckout-cart {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e4e8;
}

.quickcheckout-cart thead td {
  background-color: #f4f6f9;
  border-bottom: 1px solid #e0e4e8;
  color: #333;
  font-weight: 600;
  padding: 10px;
  text-transform: uppercase;
  font-size: 13px;
}

.quickcheckout-cart tbody td {
  border-bottom: 1px solid #f0f2f5;
  vertical-align: middle;
  padding: 10px;
  font-size: 14px;
  color: #444;
}

.quickcheckout-cart tbody tr:hover {
  background: #f9fafc;
}

.quickcheckout-cart td.image {
  width: 12%;
  text-align: center;
}

.quickcheckout-cart td.image img {
  border: 1px solid #ddd;
  border-radius: 6px;
  max-width: 60px;
  transition: transform 0.2s ease;
}

.quickcheckout-cart td.image img:hover {
  transform: scale(1.05);
}

.quickcheckout-cart td.name {
  width: 30%;
  font-weight: 500;
  color: #222;
}

.quickcheckout-cart td.quantity {
  width: 20%;
  min-width: 140px;
}

.quickcheckout-cart td.quantity > img,
.quickcheckout-cart td.quantity > a {
  position: relative;
  top: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.quickcheckout-cart td.quantity > a:hover {
  opacity: 0.7;
}

.quickcheckout-cart td.price1,
.quickcheckout-cart td.total {
  text-align: right;
  font-weight: 600;
  color: #222;
  padding-right: 10px;
}

/* Kampanya / kupon kutuları */
#voucher-heading,
#coupon-heading,
#reward-heading {
  background: #f0f2f5;
  cursor: pointer;
  width: 100%;
  padding: 12px 15px;
  font-weight: 600;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #333;
  transition: all 0.2s ease;
}

#voucher-heading:hover,
#coupon-heading:hover,
#reward-heading:hover {
  background: #e5ebf1;
}

/* İçerikler */
#voucher-content,
#coupon-content,
#reward-content {
  display: none;
  border: 1px solid #e0e4e8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
}

/* Butonlar */
.btn-primary,
.button {
  background: #4a90e2;
  border: none;
  border-radius: 6px;
  color: #fff !important;
  padding: 10px 18px;
  font-weight: 500;
  transition: background 0.25s ease;
}

.btn-primary:hover,
.button:hover {
  background: #357abd;
}

/* Input ve select alanları */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  border-radius: 6px;
  border: 1px solid #d9dee3;
  padding: 9px 12px;
  width: 100%;
  transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74,144,226,0.2);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  #quickcheckoutconfirm .col-sm-6 {
    width: 100% !important;
    display: block !important;
  }

  .quickcheckout-heading {
    font-size: 16px;
    text-align: center;
  }

  table.quickcheckout-cart td.image img {
    max-width: 50px;
  }

  .btn-primary {
    width: 100%;
  }
}

/* Küçük detaylar */
.hide { display: none !important; }

.fa-5x {
  font-size: 5em !important;
  color: #4a90e2;
}
