/* === BLOG CONTENT STYLES === */
.entry-content, .post-content {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #222;
  /* max-width ve margin kaldırıldı - Gutenberg inline stillerini override etmesin */
}

/* Varsayılan container - sadece inline stil yoksa uygula */
.entry-content:not([style*="max-width"]):not([style*="margin"]),
.post-content:not([style*="max-width"]):not([style*="margin"]) {
  max-width: 750px;
  margin: auto;
  padding: 0 1rem;
}

/* Paragraphs */
.entry-content p {
  margin-bottom: 1.5em;
}

/* Headings */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  margin: 1.5em 0 0.75em;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}
.entry-content h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 0.25em;
}
.entry-content h3 {
  font-size: 1.3rem;
}
.entry-content h4 {
  font-size: 1.1rem;
}

/* Lists */
.entry-content ul,
.entry-content ol {
  margin: 1em 0 1.5em 2em;
}
.entry-content li {
  margin-bottom: 0.5em;
}

/* Links */
.entry-content a {
  color: #0d6efd;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.entry-content a:hover {
  color: #084298;
}

/* Images & Figures */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}
.entry-content figure {
  margin: 1.5em 0;
  text-align: center;
}
.entry-content figcaption {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}

/* Blockquotes */
.entry-content blockquote {
  border-left: 4px solid #0d6efd;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}

/* Code & Pre */
.entry-content code {
  background: #f1f1f1;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: monospace;
}
.entry-content pre {
  background: #1e1e1e;
  color: #f8f8f2;
  padding: 1em;
  border-radius: 6px;
  overflow-x: auto;
  font-family: monospace;
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 0.75em 1em;
}
.entry-content th {
  background: #f5f5f5;
  text-align: left;
}

/* Gutenberg blocks */
.wp-block-image img {
  border-radius: 8px;
}
.wp-block-quote {
  border-left: 4px solid #0d6efd;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
}
.wp-block-button__link {
  background: #0d6efd;
  color: #fff !important;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.wp-block-button__link:hover {
  background: #084298;
}
.wp-block-separator {
  border: none;
  border-top: 2px solid #eee;
  margin: 2em 0;
}

/* Alignment helpers */
.alignleft { float: left; margin-right: 1em; }
.alignright { float: right; margin-left: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 600px) {
  .entry-content { font-size: 0.95rem; }
  .entry-content h1 { font-size: 1.6rem; }
  .entry-content h2 { font-size: 1.4rem; }
  .entry-content h3 { font-size: 1.2rem; }
}
/* End of BLOG CONTENT STYLES */

.single-post-content blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, .single-post-content p, pre, ul, ol, menu {
    margin:2rem 0;
}

/* -------------------------------------------------------------------------
 * WooCommerce ürün sekmesi (Açıklama): Tailwind Preflight ul/ol list-style
 * sıfırladığı için madde işaretleri kayboluyordu; editör / blog ile uyum.
 * ------------------------------------------------------------------------- */
.woocommerce div.product .woocommerce-tabs .panel.entry-content ul:not(.tabs):not(.wc-tabs),
.woocommerce div.product .woocommerce-tabs .panel.entry-content ol:not(.tabs):not(.wc-tabs) {
  margin: 1em 0 1.5em;
  padding-left: 1.5em;
}
.woocommerce div.product .woocommerce-tabs .panel.entry-content ul:not(.tabs):not(.wc-tabs) {
  list-style-type: disc;
}
.woocommerce div.product .woocommerce-tabs .panel.entry-content ol:not(.tabs):not(.wc-tabs) {
  list-style-type: decimal;
}
.woocommerce div.product .woocommerce-tabs .panel.entry-content li {
  margin-bottom: 0.5em;
  display: list-item;
}
/* Özet (kısa açıklama) alanı — aynı Tailwind liste sıfırlaması */
.woocommerce div.product .woocommerce-product-details__short-description ul,
.woocommerce div.product .woocommerce-product-details__short-description ol {
  margin: 0.75em 0 1em;
  padding-left: 1.5em;
}
.woocommerce div.product .woocommerce-product-details__short-description ul {
  list-style-type: disc;
}
.woocommerce div.product .woocommerce-product-details__short-description ol {
  list-style-type: decimal;
}
.woocommerce div.product .woocommerce-product-details__short-description li {
  margin-bottom: 0.35em;
  display: list-item;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  margin-bottom: 0.75em;
}
.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
/* Gutenberg liste blokları (ürün içeriğinde) */
.woocommerce div.product .woocommerce-tabs .panel.entry-content .wp-block-list {
  list-style-type: disc;
  margin-left: 1.5rem;
  padding-left: 0.25rem;
}
/* [enteg_button] shortcode — demo / indirme satır içi butonları */
.enteg-btn-wrap {
  display: inline-block;
  margin: 0.35rem 0.5rem 0.35rem 0;
  vertical-align: middle;
}
a.enteg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  padding: 0.55rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
/* Remix Icon (shortcode icon="...") — tema zaten remixicon.css yüklüyor */
a.enteg-btn .enteg-btn__icon {
  font-size: 1.125em;
  line-height: 1;
  flex-shrink: 0;
}
a.enteg-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.enteg-btn--primary {
  background: #1d4ed8;
  color: #fff !important;
  border-color: #1d4ed8;
}
.enteg-btn--primary:hover {
  background: #1e40af;
  border-color: #1e40af;
  color: #fff !important;
}
.enteg-btn--secondary {
  background: #0a2540;
  color: #fff !important;
  border-color: #0a2540;
}
.enteg-btn--secondary:hover {
  background: #061829;
  border-color: #061829;
  color: #fff !important;
}
.enteg-btn--green {
  background: #16a34a;
  color: #fff !important;
  border-color: #16a34a;
}
.enteg-btn--green:hover {
  background: #15803d;
  border-color: #15803d;
  color: #fff !important;
}
.enteg-btn--sky {
  background: #0284c7;
  color: #fff !important;
  border-color: #0284c7;
}
.enteg-btn--sky:hover {
  background: #0369a1;
  border-color: #0369a1;
  color: #fff !important;
}
.enteg-btn--dark {
  background: #111827;
  color: #fff !important;
  border-color: #111827;
}
.enteg-btn--dark:hover {
  background: #000;
  border-color: #000;
  color: #fff !important;
}
.enteg-btn--outline {
  background: #fff;
  color: #1d4ed8 !important;
  border-color: #1d4ed8;
}
.enteg-btn--outline:hover {
  background: #eff6ff;
  color: #1e40af !important;
}
.enteg-btn--ghost {
  background: transparent;
  color: #1d4ed8 !important;
  border-color: transparent;
  box-shadow: none;
}
.enteg-btn--ghost:hover {
  background: #f3f4f6;
  color: #1e40af !important;
}

/* Özel hex renkler (shortcode bg / text_color / border) — inline ile birleşir; hover hafif koyulaştırma */
a.enteg-btn--custom {
  border-style: solid;
  border-width: 2px;
}
a.enteg-btn--custom:hover {
  filter: brightness(0.94);
}


