/** Shopify CDN: Minification failed

Line 211:1 Expected "}" to go with "{"

**/
/* =============================================
   VISOTALE - NASIL SİPARİŞ VEREBİLİRİM SECTION
   ============================================= */

.vt-order {
  background-color: #FFFFFF;
  padding: 60px 20px 80px;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vt-order__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Başlık */
.vt-order__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  text-align: center;
  color: #1B3E13;
  margin: 0 0 50px 0;
}

/* Grid - 2x2 Desktop */
.vt-order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Her bir kart */
/* Her bir kart */
.vt-order__card {
  position: relative;
  background-color: #D3FA99;
  border-radius: 20px;
  padding: 24px;
  min-height: 171px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vt-order__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(27, 62, 19, 0.2);
}

.vt-order__card:hover .vt-order__icon {
  transform: scale(1.05);
}

.vt-order__icon {
  width: 126px;
  height: 127px;
  background-color: #1B3E13;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Numara badge */
.vt-order__number {
  position: absolute;
  top: -18px;
  left: -10px;
  width: 42px;
  height: 42px;
  background-color: #1B3E13;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  color: #D3FA99;
}

/* Kart içerik */
.vt-order__content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* İkon kutusu */
.vt-order__icon {
  width: 126px;
  height: 127px;
  background-color: #1B3E13;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vt-order__icon img {
  width: 70px;
  height: 70px;
}

/* Metin alanı */
.vt-order__text {
  flex: 1;
  padding-top: 4px;
}

.vt-order__card-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 43px;
  color: #1B3E13;
  margin: 0 0 4px 0;
}

.vt-order__card-desc {
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
  color: #1B3E13;
  margin: 0;
}

/* =============================================
   MOBİL - Tek sütun
   ============================================= */

@media (max-width: 768px) {
  .vt-order {
    padding: 50px 16px 60px;
  }
  
 .vt-order__title {
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 40px;
}

.vt-order__title-break {
  display: inline;
}
  
 .vt-order__grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 390px;
  margin: 0 auto;
}
  .vt-order__card {
    padding: 20px;
    min-height: auto;
  }
  
  .vt-order__number {
    top: -14px;
    left: -6px;
    width: 34px;
    height: 34px;
    font-size: 22px;
    line-height: 28px;
  }
  
  .vt-order__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  
  .vt-order__icon {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    flex-shrink: 0;
  }
  
  .vt-order__icon img {
    width: 54px;
    height: 54px;
  }
  
 .vt-order__text {
  flex: 1;
  min-width: 0;
  margin-top: -4px;
}
  
.vt-order__card-title {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 2px;
}

.vt-order__card-desc {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
}