/* TecnoTablo — Voovart-style overrides on Blocksy + Elementor */

body {
  background: #fff !important;
}

.site-branding .site-title {
  display: none !important;
}

/* Logo — masaüstü tam görünür */
@media (min-width: 768px) {
  [data-device="desktop"] [data-id="logo"],
  [data-device="desktop"] [data-id="logo"] .site-logo-container,
  [data-device="desktop"] .site-logo-container,
  [data-device="desktop"] header [data-column="start"] {
    overflow: visible !important;
    max-width: none !important;
  }

  [data-device="desktop"] [data-id="logo"] img,
  [data-device="desktop"] [data-id="logo"] .site-logo-container img,
  [data-device="desktop"] .site-logo-container img,
  [data-device="desktop"] .site-logo-container .default-logo,
  [data-device="desktop"] .default-logo {
    display: block !important;
    visibility: visible !important;
    height: 56px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}

@media (min-width: 992px) {
  [data-device="desktop"] [data-column="start"] {
    flex: 0 0 auto !important;
    min-width: 260px !important;
  }

  [data-device="desktop"] .site-logo-container img,
  [data-device="desktop"] .default-logo {
    height: 60px !important;
  }
}

@media (max-width: 767px) {
  [data-device="mobile"] [data-row="middle"] .ct-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 4px !important;
  }

  [data-device="mobile"] [data-column="start"] {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
  }

  [data-device="mobile"] [data-column="end"] {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
  }

  [data-device="mobile"] [data-id="logo"],
  [data-device="mobile"] .site-branding,
  [data-device="mobile"] .site-logo-container {
    overflow: visible !important;
    max-width: 100% !important;
  }

  /* Sabit yükseklik yerine genişliğe göre küçült — tam logo görünsün */
  [data-device="mobile"] .site-logo-container img,
  [data-device="mobile"] .default-logo {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 36px !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
}

/* ── Hero banner: Voovart tarzı 3 sütun + orta mini slider ── */
.tec-hero-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.tec-hero-banner {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tec-hero-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tec-hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.tec-hero-middle {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tec-hero-mini-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.tec-hero-mini-slider:active {
  cursor: grabbing;
}

.tec-hero-mini-slider__viewport {
  overflow: hidden;
  border-radius: 18px;
}

.tec-hero-mini-slider__track {
  display: flex;
  will-change: transform;
}

.tec-hero-mini-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  line-height: 0;
}

.tec-hero-mini-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 742 / 241;
  object-fit: cover;
  border-radius: 18px;
  pointer-events: none;
}

@media (min-width: 992px) {
  .e-con-boxed:has(.tec-hero-layout) > .e-con-inner,
  .e-con-boxed.tec-hero-section > .e-con-inner {
    max-width: min(1440px, 94vw) !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .tec-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: stretch;
  }

  .tec-hero-banner--left {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 100%;
  }

  .tec-hero-middle {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
    gap: 20px;
  }

  .tec-hero-banner--mid-top {
    flex: 1 1 auto;
    min-height: 0;
  }

  .tec-hero-banner--mid-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
  }

  .tec-hero-banner--right {
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 100%;
  }

  .tec-hero-banner--left img,
  .tec-hero-banner--right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
  }

  .tec-hero-mini-slider {
    flex: 0 0 auto;
  }
}

/* Eski grid (geriye dönük) */
.tec-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.tec-hero-grid__item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tec-hero-grid__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tec-hero-grid__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (min-width: 992px) {
  .tec-hero-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.tec-voovart-banner img,
.elementor-widget-image img {
  border-radius: 18px;
}

.elementor-page .elementor-heading-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
}

.tec-section-title .elementor-heading-title {
  text-align: center;
  text-transform: none;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0;
}

.tec-section-title .elementor-heading-title::before,
.tec-section-title .elementor-heading-title::after {
  content: none;
}

.tec-section-title .elementor-heading-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, #caa24d, transparent);
}

.tec-section-subtitle .elementor-heading-title {
  text-align: center;
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #666;
  margin: 0 0 8px;
}

.tec-section-subtitle .elementor-heading-title::before,
.tec-section-subtitle .elementor-heading-title::after {
  content: none;
}

.tec-hero-section {
  padding-top: 8px !important;
}

.tec-collections-section,
.tec-featured-section {
  padding-top: 28px !important;
  padding-bottom: 12px !important;
}

.tec-craft-section {
  padding-top: 36px !important;
  padding-bottom: 40px !important;
  border-top: 1px solid #f0f0f0;
  margin-top: 12px;
}

.tec-craft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 0 auto;
  background: #ececec;
  border: 1px solid #ececec;
  border-radius: 2px;
  overflow: hidden;
}

.tec-craft-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: #fff;
  text-align: center;
}

.tec-craft-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.tec-craft-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #666;
}

@media (min-width: 768px) {
  .tec-craft-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ═══ Voovart tarzı ürün kartları ═══ */
.woocommerce ul.products,
.tec-featured-section ul.products {
  gap: 22px !important;
}

.woocommerce ul.products li.product,
.related.products ul.products li.product,
.upsells.products ul.products li.product {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
}

.woocommerce ul.products li.product > figure,
.woocommerce ul.products li.product figure {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
}

.woocommerce ul.products li.product .ct-media-container {
  position: relative;
  display: block !important;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  min-height: 0;
  height: auto;
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  background: #f2f2f2;
}

.woocommerce ul.products li.product .ct-media-container img,
.woocommerce ul.products li.product figure img.wp-post-image {
  position: absolute !important;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  aspect-ratio: auto !important;
  transition: transform 0.45s ease;
}

.woocommerce ul.products li.product:hover .ct-media-container img,
.woocommerce ul.products li.product:hover figure img.wp-post-image {
  transform: scale(1.04);
}

.woocommerce ul.products li.product .ct-media-container.has-hover-effect::before,
.woocommerce ul.products li.product .ct-media-container.has-hover-effect::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product .onsale,
.woocommerce ul.products li.product .tec-handmade-badge,
.ct-woo-card .onsale,
.tec-handmade-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3;
  margin: 0 !important;
  padding: 4px 9px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #a88635 !important;
  border: 1px solid #d4af37 !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  order: 1;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 14px 2px 6px;
  letter-spacing: 0;
  line-height: 1.35;
  color: #222;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
}

.woocommerce ul.products li.product .price {
  order: 2;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #c6596d;
  padding: 0 2px 8px;
  margin: 0;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: #c6596d;
  font-weight: 700;
}

.woocommerce ul.products li.product .price del {
  color: #9a9a9a;
  opacity: 1;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 8px;
}

.woocommerce ul.products li.product .price > .amount {
  color: #c6596d;
}

.woocommerce ul.products li.product .star-rating {
  order: 3;
  margin: 0 2px 10px !important;
  font-size: 0.82rem;
  color: #f0a43a;
}

.woocommerce ul.products li.product .tec-loop-chips {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 2px 4px;
  margin-top: auto;
}

.woocommerce ul.products li.product .tec-loop-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #555;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.woocommerce ul.products li.product .tec-loop-chip.is-active {
  background: #c6596d;
  border-color: #c6596d;
  color: #fff;
}

.woocommerce ul.products li.product .entry-meta,
.woocommerce ul.products li.product .meta-categories,
.woocommerce ul.products li.product .tinv-wraper,
.woocommerce ul.products li.product .tinv-wishlist,
.woocommerce ul.products li.product .ct-woo-card-actions {
  display: none !important;
}

@media (min-width: 992px) {
  .woocommerce ul.products,
  .woocommerce.columns-2 ul.products,
  .woocommerce.columns-3 ul.products,
  .woocommerce.columns-4 ul.products,
  ul.products.columns-2,
  ul.products.columns-3,
  ul.products.columns-4,
  ul.products[data-products="type-1"],
  .tec-featured-section ul.products,
  .tec-featured-section ul.products.columns-2,
  .tec-featured-section ul.products.columns-3,
  .tec-featured-section ul.products[data-products="type-1"] {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    --shop-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .e-con-boxed.tec-featured-section > .e-con-inner {
    max-width: min(1440px, 94vw) !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 991px) {
  .woocommerce ul.products,
  .woocommerce.columns-2 ul.products,
  .woocommerce.columns-3 ul.products,
  .woocommerce.columns-4 ul.products,
  ul.products.columns-2,
  ul.products.columns-3,
  ul.products.columns-4,
  ul.products[data-products="type-1"],
  .tec-featured-section ul.products,
  .tec-featured-section .tec-featured-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    --shop-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce ul.products li.product.type-product,
  ul.products[data-products="type-1"] > li.product {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    float: none !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.82rem;
    padding: 10px 2px 4px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 0.92rem;
    padding: 0 2px 6px;
  }

  .woocommerce ul.products li.product .tec-loop-chip {
    min-height: 26px;
    padding: 3px 8px;
    font-size: 0.68rem;
  }

  .woocommerce ul.products li.product .onsale,
  .woocommerce ul.products li.product .tec-handmade-badge {
    top: 8px !important;
    left: 8px !important;
    font-size: 8px !important;
    padding: 3px 7px !important;
  }
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.product-categories li {
  min-width: 0;
  text-align: left;
}

.product-categories li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.35;
  color: #222;
  text-decoration: none;
}

.product-categories li img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #d4af37;
  padding: 2px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Masaüstü: Voovart tarzı geniş kartlar */
@media (min-width: 992px) {
  .e-con-boxed:has(.product-categories) > .e-con-inner,
  .e-con-boxed:has(.tec-hero-layout) > .e-con-inner,
  .e-con-boxed.tec-hero-section > .e-con-inner {
    max-width: min(1440px, 94vw) !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .elementor-widget-html:has(.product-categories),
  .elementor-widget-html:has(.tec-hero-layout) {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tec-hero-layout {
    max-width: 100%;
    width: 100%;
  }

  .product-categories {
    gap: 18px;
    max-width: 100%;
  }

  .product-categories li img {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .product-categories li a {
    font-size: 13px;
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .e-con-boxed:has(.product-categories) > .e-con-inner,
  .e-con-boxed:has(.tec-hero-layout) > .e-con-inner,
  .e-con-boxed.tec-hero-section > .e-con-inner {
    max-width: min(1440px, 94vw) !important;
  }

  .product-categories {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .product-categories li {
    flex: 0 0 calc((100% - 12px) / 2);
    text-align: center;
  }

  .product-categories li a {
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #333;
  }
}

.product-categories li a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }
}

/* Floating Instagram — WhatsApp butonunun hemen üstünde */
.tec-float-instagram {
  position: fixed;
  bottom: 78px;
  right: 15px;
  z-index: 99999998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.tec-float-instagram:hover {
  transform: scale(1.08);
}

.tec-float-instagram svg {
  width: 26px;
  height: 26px;
}

@media (min-width: 768px) {
  .tec-float-instagram {
    bottom: 82px;
    right: 18px;
  }
}

/* Voovart-style header: favori + sepet + giriş ikonları */
[data-column="end"] [data-items="primary"] {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tec-header-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  padding: 4px;
  line-height: 0;
}

.tec-header-wishlist:hover {
  color: #caa24d;
}

.ct-header-cart,
.ct-header-account {
  display: inline-flex;
  align-items: center;
}

.ct-header-account .ct-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  [data-device="desktop"] .ct-header-account .ct-label {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin-left: 6px;
  }
}

@media (max-width: 767px) {
  [data-device="mobile"] [data-column="end"] [data-items="primary"] {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }

  [data-device="mobile"] .ct-header-search,
  [data-device="mobile"] .tec-header-wishlist,
  [data-device="mobile"] .ct-header-cart,
  [data-device="mobile"] .ct-header-account,
  [data-device="mobile"] [data-id="trigger"] {
    flex: 0 0 auto !important;
    padding: 2px !important;
  }

  [data-device="mobile"] .ct-header-search .ct-icon,
  [data-device="mobile"] .ct-header-cart svg,
  [data-device="mobile"] .ct-header-account .ct-icon,
  [data-device="mobile"] .ct-header-account svg,
  [data-device="mobile"] [data-id="trigger"] svg,
  [data-device="mobile"] .tec-header-wishlist svg {
    width: 18px !important;
    height: 18px !important;
  }

  [data-device="mobile"] .ct-header-cart .ct-label,
  [data-device="mobile"] .ct-header-cart .amount {
    display: none !important;
  }

  [data-device="mobile"] .ct-header-account .ct-label {
    display: none !important;
  }
}

/* Mobil arama çubuğu — header altında, Voovart tarzı net alan */
.tec-mobile-search-bar {
  display: none;
}

@media (max-width: 767px) {
  .tec-mobile-search-bar {
    display: block;
    padding: 10px 12px 12px;
    background: #fff;
    border-bottom: 1px solid #ececec;
  }

  .tec-mobile-search-bar__form {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #111;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }

  .tec-mobile-search-bar__form input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 0;
    padding: 0 14px;
    font-size: 15px;
    background: transparent;
    color: #111;
  }

  .tec-mobile-search-bar__form input[type="search"]::placeholder {
    color: #888;
  }

  .tec-mobile-search-bar__form button {
    flex: 0 0 48px;
    height: 44px;
    border: 0;
    border-left: 1px solid #ddd;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

[data-device="desktop"] [data-row="bottom"] {
  border-top: 1px solid #ececec;
}

[data-device="desktop"] [data-row="bottom"] [data-column="middle"] nav {
  justify-content: center;
}

/* Hakkımızda & üretim süreci sayfaları */
.tec-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 1.5rem;
}

.tec-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 1.5rem 0 2rem;
}

.tec-about-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.tec-about-card h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: #111;
}

.tec-about-card p {
  margin: 0;
  color: #444;
  line-height: 1.55;
}

.tec-process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.tec-process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}

.tec-process-step__media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tec-process-step__body {
  padding: 0 1.25rem 1.25rem;
  position: relative;
}

.tec-process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #caa24d;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.tec-process-step__body h2 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.tec-process-step__body p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}

.tec-process-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: #fff9ee;
  border-left: 4px solid #caa24d;
  border-radius: 0 8px 8px 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .tec-about-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tec-process-step {
    grid-template-columns: 280px 1fr;
  }

  .tec-process-step__media img {
    height: 100%;
    min-height: 180px;
  }

  .tec-process-step__body {
    padding: 1.5rem 1.5rem 1.5rem 0;
  }
}

/* ——— Site footer ——— */
.tec-footer-main {
  background: #0a0a0a;
  color: #e8e8e8;
  border-top: 1px solid rgba(202, 162, 77, 0.35);
}

.tec-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 22px 24px;
}

.tec-footer-payments {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tec-footer-payments--mobile {
  display: none;
}

.tec-footer-payments-box {
  display: block;
}

.tec-footer-site-name {
  display: none;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #4a5d73;
}

.tec-footer-brand-links {
  display: none;
}

.tec-footer-brand-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tec-footer-brand-links li + li {
  margin-top: 2px;
}

.tec-footer-brand-links a {
  display: inline-block;
  padding: 4px 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.tec-footer-payments-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tec-footer-payments-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 36px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.tec-footer-payments-list img {
  display: block;
  width: auto;
  max-width: 76px;
  height: 22px;
  object-fit: contain;
}

.tec-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
}

.tec-footer-brand {
  max-width: 320px;
}

.tec-footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  line-height: 0;
}

.tec-footer-logo img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.tec-footer-tagline {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.tec-footer-col h3,
.tec-footer-contact h3 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #caa24d;
}

.tec-footer-col ul,
.tec-footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tec-footer-col li + li,
.tec-footer-contact li + li {
  margin-top: 10px;
}

.tec-footer-col a,
.tec-footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.tec-footer-col a:hover,
.tec-footer-contact a:hover,
.tec-footer-social-link:hover {
  color: #f1d37a;
}

.tec-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tec-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.tec-footer-social-link svg {
  width: 18px;
  height: 18px;
}

.tec-footer-social-wa {
  background: rgba(37, 169, 90, 0.18);
  border-color: rgba(37, 169, 90, 0.45);
}

.tec-footer-social-ig {
  background: rgba(220, 39, 67, 0.14);
  border-color: rgba(220, 39, 67, 0.35);
}

.tec-footer-social-pin {
  background: rgba(189, 8, 28, 0.14);
  border-color: rgba(189, 8, 28, 0.35);
}

.tec-footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: #25a95a;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
}

.tec-footer-wa-btn:hover {
  background: #1f944d;
  color: #fff !important;
}

.tec-footer-company h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.tec-footer-company-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.tec-footer-company-list li + li {
  margin-top: 6px;
}

.tec-footer-company-note {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.65);
}

.tec-company-legal {
  margin: 0 0 28px;
  padding: 20px 22px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.65;
}

.tec-company-legal h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.tec-company-legal p {
  margin: 0 0 10px;
}

.tec-company-legal p:last-child {
  margin-bottom: 0;
}

.tec-company-legal__note {
  color: #444;
}

.tec-contact-page .tec-company-legal {
  margin-bottom: 32px;
}

.tec-footer-copy {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.ct-footer[data-id="type-1"] > [data-row="bottom"] {
  display: none !important;
}

@media (max-width: 992px) {
  .tec-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tec-footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .tec-footer-main {
    background: #f3f4f6;
    color: #3d4a5c;
    border-top: 1px solid #e5e7eb;
  }

  .tec-footer-desktop-only {
    display: none !important;
  }

  .tec-footer-payments--desktop {
    display: none;
  }

  .tec-footer-payments--mobile {
    display: block;
    margin-bottom: 18px;
    padding: 0;
    border: none;
  }

  .tec-footer-payments--mobile .tec-footer-payments-box {
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  }

  .tec-footer-payments--mobile .tec-footer-payments-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .tec-footer-payments--mobile .tec-footer-payments-list li {
    flex: 1 1 0;
    min-width: 0;
    height: 34px;
    padding: 4px 6px;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .tec-footer-payments--mobile .tec-footer-payments-list img {
    width: 100%;
    max-width: 72px;
    height: 20px;
    margin: 0 auto;
  }

  .tec-footer-inner {
    padding: 20px 16px 24px;
  }

  .tec-footer-site-name {
    display: block;
  }

  .tec-footer-brand-links {
    display: block;
    margin-bottom: 22px;
  }

  .tec-footer-brand {
    max-width: none;
  }

  .tec-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tec-footer-col h3,
  .tec-footer-contact h3,
  .tec-footer-company h3 {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #4a5d73;
  }

  .tec-footer-col a,
  .tec-footer-contact a {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
  }

  .tec-footer-col a:hover,
  .tec-footer-contact a:hover {
    color: #2d3748;
  }

  .tec-footer-col li + li,
  .tec-footer-contact li + li {
    margin-top: 4px;
  }

  .tec-footer-company {
    margin-top: 4px;
  }

  .tec-footer-company-list {
    font-size: 12px;
    line-height: 1.5;
    color: #9ca3af;
  }

  .tec-footer-company-note {
    color: #9ca3af !important;
  }

  .tec-footer-copy {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    text-align: left;
    font-size: 11px;
    line-height: 1.5;
    color: #9ca3af;
  }
}

/* ═══ Tek ürün — galeri (zoom/slider uyumlu, tek parça görsel) ═══ */
.single-product .woocommerce-product-gallery {
  background: #f8f8f8;
}

.single-product .woocommerce-product-gallery .ct-product-gallery-container {
  width: 100%;
  background: #f8f8f8;
}

/* Blocksy tek görsel kutusu — flex kullanma (zoomImg klonu yan yana düşmesin) */
.single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container {
  display: block !important;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 16px;
  box-sizing: border-box;
  background: #f8f8f8 !important;
  aspect-ratio: unset !important;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  line-height: 0;
  text-align: center;
}

.single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container::before,
.single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Ana görsel — tek parça, contain, bozulma yok */
.single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container > img.wp-post-image,
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a > img,
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: min(72vh, 620px) !important;
  margin: 0 auto;
  object-fit: contain !important;
  object-position: center center !important;
  aspect-ratio: auto !important;
}

/* FlexSlider — yapıyı bozma; sadece görsel boyutu */
.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  background: #f8f8f8;
}

.single-product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* WooCommerce zoom klonu — idle durumda gizli, JS hover'da opacity yönetir */
.single-product .woocommerce-product-gallery img.zoomImg {
  opacity: 0;
  object-fit: contain;
  pointer-events: none;
}

.single-product .woocommerce-product-gallery ol.flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.single-product .woocommerce-product-gallery ol.flex-control-thumbs li {
  width: 72px !important;
  height: 72px !important;
  float: none !important;
  margin: 0 !important;
  background: #fff;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}

.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img.flex-active,
.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: #c8a24d;
}

.single-product .woocommerce-product-gallery .onsale,
.single-product .woocommerce-product-gallery .tec-handmade-badge {
  top: 16px !important;
  left: 16px !important;
}

@media (min-width: 992px) {
  .single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container {
    padding: 20px;
  }

  .single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container > img.wp-post-image,
  .single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    max-height: min(75vh, 680px) !important;
    max-width: 96% !important;
  }
}

@media (max-width: 767px) {
  .single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container {
    padding: 10px 8px;
  }

  .single-product .woocommerce-product-gallery .ct-product-gallery-container > figure.ct-media-container > img.wp-post-image,
  .single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    max-height: min(56vh, 420px) !important;
    max-width: 100% !important;
  }
}

/* Tekil ürün sayfası — sepet butonları (kartlar CSS'te) */
.single-product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.single-product form.cart .single_add_to_cart_button {
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  font-weight: 600;
  border-radius: 0 !important;
}

.single-product form.cart .single_add_to_cart_button:hover {
  background: #222 !important;
  border-color: #222 !important;
}

.single-product form.cart .single_add_to_cart_button,
.single-product form.cart .tec-buy-now-btn {
  flex: 1 1 auto;
  min-height: 46px;
}

.single-product form.cart .tec-buy-now-btn {
  background: transparent !important;
  color: #111 !important;
  border: 1px solid #111 !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  line-height: 1.2;
  padding: 12px 18px;
  border-radius: 0 !important;
}

.single-product form.cart .tec-buy-now-btn:hover {
  background: #111 !important;
  color: #fff !important;
}

/* ── Kategori arşivi: banner görsel + metin ayrı blok (premium) ── */
body.tax-product_cat .hero-section[data-type="type-2"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 0 !important;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fafafa;
  overflow: visible;
}

body.tax-product_cat .hero-section[data-type="type-2"] figure {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: 100%;
  margin: 0;
  padding: 28px 24px 0;
  box-sizing: border-box;
  flex: 0 0 auto;
  min-height: 0 !important;
  max-height: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.tax-product_cat .hero-section[data-type="type-2"] figure::before,
body.tax-product_cat .hero-section[data-type="type-2"] figure::after,
body.tax-product_cat .hero-section[data-type="type-2"] .ct-media-container::before,
body.tax-product_cat .hero-section[data-type="type-2"] .ct-media-container::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

body.tax-product_cat .hero-section[data-type="type-2"] .ct-media-container {
  position: relative;
  width: min(100%, 1080px);
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
}

body.tax-product_cat .hero-section[data-type="type-2"] .ct-media-container img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.tax-product_cat .hero-section[data-type="type-2"] .entry-header {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 24px 28px;
  text-align: center;
  background: #fafafa;
  color: #111;
}

body.tax-product_cat .hero-section[data-type="type-2"] .page-title {
  color: #111 !important;
  text-shadow: none !important;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0 0 16px;
  text-transform: none;
}

body.tax-product_cat .hero-section[data-type="type-2"] .page-description,
body.tax-product_cat .hero-section[data-type="type-2"] .page-description.ct-hidden-sm {
  display: block !important;
  color: #555 !important;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
}

body.tax-product_cat .hero-section[data-type="type-2"] .page-description p {
  margin: 0;
  text-shadow: none !important;
  color: inherit;
}

body.tax-product_cat .hero-section[data-type="type-2"] + .ct-container {
  padding-top: 0;
}

@media (max-width: 689px) {
  body.tax-product_cat .hero-section[data-type="type-2"] {
    background: #fff;
  }

  body.tax-product_cat .hero-section[data-type="type-2"] figure {
    padding: 0;
    display: block;
  }

  body.tax-product_cat .hero-section[data-type="type-2"] .ct-media-container {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    max-height: 240px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }

  body.tax-product_cat .hero-section[data-type="type-2"] .ct-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.tax-product_cat .hero-section[data-type="type-2"] .entry-header {
    padding: 24px 16px 20px;
    background: #fff;
  }

  body.tax-product_cat .hero-section[data-type="type-2"] .page-title {
    font-size: 1.375rem;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
  }

  body.tax-product_cat .hero-section[data-type="type-2"] .page-description {
    font-size: 0.9375rem;
    line-height: 1.65;
  }
}

/* Legal pages */
.tec-legal-content {
  max-width: 780px;
  line-height: 1.75;
  color: #333;
}

.tec-legal-content .tec-legal-lead {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.tec-legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}

.tec-legal-content h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.tec-legal-content ul,
.tec-legal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.tec-legal-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}

/* Contact page */
.tec-contact-page {
  max-width: 960px;
}

.tec-contact-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #444;
}

.tec-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.tec-contact-info h2,
.tec-contact-form-wrap h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.tec-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.tec-contact-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}

.tec-contact-wa {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.tec-contact-wa:hover {
  background: #1ebe57;
  color: #fff !important;
}

.tec-contact-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.tec-contact-form-wrap .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tec-contact-form-wrap .wpcf7 label {
  font-weight: 500;
  color: #222;
}

.tec-contact-form-wrap .wpcf7 input[type="text"],
.tec-contact-form-wrap .wpcf7 input[type="email"],
.tec-contact-form-wrap .wpcf7 input[type="tel"],
.tec-contact-form-wrap .wpcf7 select,
.tec-contact-form-wrap .wpcf7 textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 1rem;
  background: #fff;
}

.tec-contact-form-wrap .wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.tec-contact-form-wrap .wpcf7 input[type="submit"] {
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
}

.tec-contact-form-wrap .wpcf7 input[type="submit"]:hover {
  background: #333;
}

.tec-cf7-kvkk {
  font-size: 0.9rem;
  line-height: 1.5;
}

.tec-contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #c00;
}

.tec-contact-form-wrap .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0;
}

@media (max-width: 767px) {
  .tec-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Blog — pillar & cluster iç link kutuları */
.tec-seo-pillar-box,
.tec-seo-cluster-links {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--theme-palette-color-1, #2271b1);
  background: rgba(0, 0, 0, 0.03);
}

.tec-seo-pillar-box p,
.tec-seo-cluster-links p {
  margin: 0;
}

.tec-seo-cluster-links h2 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.tec-seo-cluster-links ul {
  margin: 0;
  padding-left: 1.25rem;
}

.tec-seo-cluster-links li {
  margin-bottom: 0.35rem;
}

/* ---- Checkout: İlçe (district) açılır listesi ---- */
.tec-ilce-field {
  margin: 0 0 1em;
  display: block;
}

.tec-ilce-field .tec-ilce-label {
  display: block;
  font-size: 0.8rem;
  color: #5a5a5a;
  margin-bottom: 6px;
}

.tec-ilce-field select.tec-ilce-select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.4;
  color: #1c1c1c;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath fill='%23555' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.tec-ilce-field select.tec-ilce-select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.tec-ilce-field select.tec-ilce-select:disabled {
  background-color: #f4f4f4;
  color: #999;
  cursor: not-allowed;
}

.tec-ilce-field select.tec-ilce-select.tec-ilce-empty {
  color: #767676;
}

/* ---- Blog: iPhone fiyat hub grid ---- */
.tec-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.tec-price-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tec-price-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.tec-price-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tec-price-card__title {
  font-size: 1.05rem;
  margin: 0.75rem 0 0.25rem;
  line-height: 1.3;
}

.tec-price-card__title a {
  text-decoration: none;
  color: inherit;
}

.tec-price-card__price {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.tec-price-card__cta .button {
  display: inline-block;
}

.tec-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
}

.tec-price-table th,
.tec-price-table td {
  border-bottom: 1px solid #ddd;
  padding: 0.65rem 0.4rem;
  text-align: left;
}

.tec-price-table th {
  font-weight: 600;
}

@media (max-width: 600px) {
  .tec-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

