@font-face {
  font-family: 'icomoon';
  src:
    url('fonts/icomoon.woff2?v1') format('woff2'),
    url('fonts/icomoon.woff?v1') format('woff'),
    url('fonts/icomoon.ttf?v1') format('truetype'),
    url('fonts/icomoon.svg?v1#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.available-on-stores{

margin-top:25px;
padding:20px;
border:1px solid #ececec;
border-radius:10px;
background:#fff;

}

.available-title{

font-size:18px;
font-weight:600;
margin-bottom:18px;

}

.available-list{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;

}

.store-item{

display:flex;
justify-content:space-between;
align-items:center;

padding:14px 16px;

border:1px solid #ddd;
border-radius:8px;

background:#fafafa;

text-decoration:none;

color:#222;

transition:.25s;

}

.store-item:hover{

background:#0d6efd;
color:#fff;
border-color:#0d6efd;

}

@media(max-width:992px){

.available-list{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.available-list{

grid-template-columns:1fr;

}

}
/* Discount Title */
.discounts-title {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  max-width: 780px;
  margin: 16px 0 10px;
  color: #0b2a5b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.discounts-title::before {
  content: "%";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  color: #ffffff;
  background: #2f80ed;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.discounts {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100%;
  max-width: 780px;
  margin: 0 0 18px !important;
  padding: 14px !important;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid #d9eaff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(11, 42, 91, 0.08);
  box-sizing: border-box;
}

.discounts .product-discount {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin: 0 !important;
  padding: 12px 10px !important;
  background: #ffffff;
  border: 1px solid #e2ecf8;
  border-radius: 11px;
  color: #0b2a5b;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 3px 10px rgba(11, 42, 91, 0.04);
  box-sizing: border-box;
}

.discounts .product-discount:hover {
  border-color: #2f80ed;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(47, 128, 237, 0.16);
}

.discounts .product-discount > div:first-child {
  display: block;
  width: 100%;
  color: #0b2a5b !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  white-space: normal;
}

.discounts .product-discount > div:last-child {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #63758c !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  white-space: normal;
}

.discounts .product-discount.tb-active-discount {
  border-color: #1d4f91 !important;
  background: linear-gradient(135deg, #ffffff 0%, #edf6ff 100%) !important;
  box-shadow: 0 8px 20px rgba(29, 79, 145, 0.18) !important;
}

.discounts .product-discount.tb-active-discount::after {
  content: "Secildi";
  position: absolute;
  top: -8px;
  right: 8px;
  padding: 3px 8px;
  color: #ffffff;
  background: #1d4f91;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  z-index: 2;
}

.discounts .product-discount.tb-best-discount {
  border-color: #10b981 !important;
}

.discounts .product-discount.tb-best-discount::before {
  content: "En Avantajli";
  position: absolute;
  top: -8px;
  left: 8px;
  padding: 3px 8px;
  color: #ffffff;
  background: #10b981;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  z-index: 2;
}

.discounts + .button-group-page {
  margin-top: 8px;
}

/* Tablet */
@media (max-width: 991px) {
  .discounts-title,
  .discounts {
    max-width: 100%;
  }

  .discounts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobil */
@media (max-width: 575px) {
  .discounts-title {
    margin-top: 14px;
    font-size: 15px;
  }

  .discounts {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
  }

  .discounts .product-discount {
    min-height: 58px;
    padding: 11px 12px !important;
  }
}
