/*
Theme Name:   	Pizzaro Child
Theme URI:    	https://themeforest.net/item/pizzaro-food-online-ordering-woocommerce-theme/19209143
Author:       	MadrasThemes
Author URI:	  	https://madrasthemes.com/
Description:  	This is the child theme of Pizzaro WooCommerce Theme
Template:     	pizzaro
Version:      	1.3.24
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	pizzaro-child
Tags:         	two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support
*/
margin: 5px 20px 0 20px;
font-size: 14.5px;
text-align: left;
}
}


/* Ana Kapsayıcı */
.baktas-values-section {
  width: 100%;
  padding: 10px 20px;
  background-color: transparent;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.baktas-values-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Başlık Alanı */
.baktas-values-title-wrapper {
  text-align: center;
  margin-bottom: 10px;
}

.baktas-subtitle {
  display: block;
  color: #ffae0d;
  /* Sarı */
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.baktas-title {
  color: #00514f;
  /* Ana Renk */
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

/* Grid Yapısı (CSS Grid) */
.baktas-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  width: 100%;
}

/* Kart Tasarımı */
.baktas-value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  /* Şık, ince accent çerçeve eklendi */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hover Efekti */
.baktas-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 81, 79, 0.08);
  border-color: #00514f;
  /* Üzerine gelince çerçevenin tamamı ana renge döner */
}

/* İkon Kutusu */
.baktas-value-icon {
  background-color: rgba(145, 228, 229, 0.15);
  color: #00514f;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.baktas-value-card:hover .baktas-value-icon {
  background-color: #00514f;
  color: #ffffff;
}

.baktas-value-icon svg {
  width: 28px;
  height: 28px;
}

/* Kart İçi Başlık */
.baktas-value-title {
  color: #1a202c;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

/* Başlık ile Metin Arasındaki Küçük Çizgi */
.baktas-value-divider {
  width: 35px;
  height: 3px;
  background-color: #ffae0d;
  margin-bottom: 15px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.baktas-value-card:hover .baktas-value-divider {
  width: 50px;
}

/* Metin */
.baktas-value-text {
  color: #484848;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
  .baktas-values-section {
    padding: 50px 15px;
  }

  .baktas-title {
    font-size: 32px;
  }

  .baktas-value-card {
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .baktas-value-text {
    text-align: center;
  }

  .baktas-value-divider {
    margin-left: auto;
    margin-right: auto;
  }
}