/* Eylem Yazılım — Premium Tema Katmanı */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --ey-navy: #0a1628;
  --ey-navy-mid: #122240;
  --ey-navy-soft: #1a3058;
  --ey-surface: #f4f8fc;
  --ey-surface-2: #e8f1fa;
  --ey-accent: var(--renk, #0090f0);
  --ey-accent-glow: rgba(0, 144, 240, 0.25);
  --ey-teal: #00c9a7;
  --ey-gold: #f0b429;
  --ey-radius: 16px;
  --ey-radius-lg: 24px;
  --ey-shadow: 0 10px 40px rgba(10, 22, 40, 0.08);
  --ey-shadow-hover: 0 20px 50px rgba(10, 22, 40, 0.14);
  --ey-border: rgba(0, 144, 240, 0.12);
  --ey-map-grid: radial-gradient(circle, rgba(0, 144, 240, 0.15) 1px, transparent 1px);
}

body {
  font-family: "Plus Jakarta Sans", "Open Sans", sans-serif !important;
  background: var(--ey-surface);
  color: #3d4f63;
}

h1, h2, h3, h4, h5, h6,
.section-title .title {
  font-family: "Plus Jakarta Sans", "Open Sans", sans-serif !important;
  color: var(--ey-navy);
  font-weight: 700;
}

/* ── Harita desenli arka plan ── */
.ey-map-bg {
  background-color: var(--ey-navy);
  background-image:
    linear-gradient(135deg, rgba(0, 144, 240, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 201, 167, 0.06) 0%, transparent 40%),
    var(--ey-map-grid);
  background-size: 100% 100%, 100% 100%, 28px 28px;
}

.ey-map-bg-light {
  background-color: var(--ey-surface);
  background-image:
    linear-gradient(180deg, #fff 0%, var(--ey-surface) 100%),
    var(--ey-map-grid);
  background-size: 100% 100%, 32px 32px;
}

/* ── Dalga ayırıcı ── */
.ey-wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  margin: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23f4f8fc' d='M0,32 C360,0 720,48 1080,24 C1260,12 1380,8 1440,16 L1440,48 L0,48 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.ey-wave-divider--dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%230a1628' d='M0,16 C360,48 720,0 1080,24 C1260,36 1380,40 1440,32 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
}

/* ── Bant / şerit bölümler ── */
.ey-band {
  position: relative;
  overflow: hidden;
}

.ey-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ey-accent), var(--ey-teal), var(--ey-gold), var(--ey-accent));
  background-size: 300% 100%;
  animation: eyGradientShift 8s ease infinite;
}

@keyframes eyGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ey-band-accent {
  background: linear-gradient(135deg, var(--ey-navy) 0%, var(--ey-navy-soft) 100%);
  background-image:
    linear-gradient(135deg, var(--ey-navy) 0%, var(--ey-navy-soft) 100%),
    var(--ey-map-grid);
  background-size: 100% 100%, 24px 24px;
  color: #fff;
}

.ey-band-accent .title,
.ey-band-accent h4 {
  color: #fff !important;
}

/* ── Çerçeveli kutu ── */
.ey-frame {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius);
  box-shadow: var(--ey-shadow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.ey-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ey-accent), var(--ey-teal));
}

.ey-frame-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--ey-radius-lg);
  box-shadow: var(--ey-shadow);
}

/* ── Header ── */
.header-top {
  background: var(--ey-navy) !important;
}

.header-top .static-info p,
.header-top .static-info .text-dark {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}

.header-top .header-top-nav .separator {
  color: rgba(255, 255, 255, 0.25);
}

.header-middle {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.06);
}

.header-bottom.bg-primary,
#sticky.header-bottom {
  background: linear-gradient(135deg, var(--ey-navy-mid) 0%, var(--ey-navy-soft) 100%) !important;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.2);
}

.main-menu .menu-item > a {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.search-form .form-control {
  border-radius: 50px !important;
  border: 2px solid var(--ey-border) !important;
  padding-left: 1.6rem;
}

.search-form .search-btn {
  border-radius: 50% !important;
  width: 42px;
  height: 42px;
  box-shadow: 0 4px 15px var(--ey-accent-glow);
}

/* ── Slider ── */
.ey-slider-section {
  margin-bottom: 0 !important;
  background: var(--ey-navy);
}

.ey-slider-section .main-slider {
  border-radius: 0 0 var(--ey-radius-lg) var(--ey-radius-lg);
  overflow: hidden;
  box-shadow: var(--ey-shadow-hover);
}

.ey-slider-section .slider-item.bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.35) 45%, transparent 70%),
    var(--ey-map-grid);
  background-size: 100% 100%, 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.ey-slider-section .slider-item.bg-img .container {
  position: relative;
  z-index: 2;
}

.ey-slider-section .slider-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--ey-radius-lg);
  padding: 2.5rem 3rem;
  max-width: 640px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ey-slider-section .slider-content .sub-title {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ey-slider-section .slider-content .btn-primary {
  border-radius: 50px !important;
  padding: 0.9rem 2.4rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 25px var(--ey-accent-glow);
  border: none;
}

@media (max-width: 767px) {
  .ey-slider-section .slider-item.bg-img .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .ey-slider-section .slider-item.bg-img .row.align-items-center {
    justify-content: center !important;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ey-slider-section .slider-item.bg-img .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ey-slider-section .main-slider .slider-item.bg-img .slider-content {
    padding: 1.5rem 1.4rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
    width: auto !important;
    max-width: 90%;
    transform: translateX(10px);
  }

  .ey-slider-section .slider-content .sub-title,
  .ey-slider-section .slider-content p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .ey-slider-section .slider-content a.btn-primary {
    display: inline-block !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* ── Bölüm başlıkları ── */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-title::after {
  display: none !important;
}

.section-title::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--ey-accent), var(--ey-teal));
  border-radius: 4px;
  margin: 0 auto 1.2rem;
}

.section-title .title {
  font-size: 2.6rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.section-title .title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--ey-accent-glow), transparent);
  border-radius: 4px;
  opacity: 0.5;
}

.product-tab-nav.border-bottom,
.border-bottom.cbb1 {
  border-bottom: none !important;
}

/* ── Özellik kutuları (Kolay Sipariş vb.) ── */
.static-media-section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.static-media-wrap {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.static-media2 {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius);
  padding: 1.8rem 1.5rem !important;
  box-shadow: var(--ey-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.static-media2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ey-accent), var(--ey-teal));
}

.static-media2:hover {
  transform: translateY(-6px);
  box-shadow: var(--ey-shadow-hover);
}

.static-media2 img {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain;
  padding: 8px;
  background: var(--ey-surface-2);
  border-radius: 12px;
  border: 1px solid var(--ey-border);
}

.static-media2 .title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--ey-navy) !important;
}

/* ── Ürün kartları ── */
.single-product {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--ey-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.single-product:hover {
  transform: translateY(-8px);
  box-shadow: var(--ey-shadow-hover);
  border-color: rgba(0, 144, 240, 0.3);
}

.single-product .product-thumbnail {
  overflow: hidden;
  border-bottom: 1px solid var(--ey-border);
}

.single-product .product-thumbnail img {
  transition: transform 0.5s ease;
}

.single-product:hover .product-thumbnail img {
  transform: scale(1.06);
}

.single-product .badge-primary.cb3 {
  background: linear-gradient(135deg, var(--ey-accent), #0070c0) !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--ey-accent-glow);
  border: none;
  z-index: 5;
}

.single-product .product-desc {
  background: linear-gradient(180deg, var(--ey-navy-mid) 0%, var(--ey-navy) 100%) !important;
  padding: 1.8rem 1.5rem 2rem !important;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--ey-accent), var(--ey-teal)) 1;
}

.single-product .product-desc .title a {
  color: #fff !important;
  font-weight: 600;
  font-size: 1.5rem;
}

.single-product .product-desc .btn-light {
  border-radius: 50px !important;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.5rem 1.4rem;
  margin: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  backdrop-filter: blur(4px);
}

.single-product .product-desc .btn-light:hover {
  background: var(--ey-accent) !important;
  border-color: var(--ey-accent);
  transform: scale(1.03);
}

/* ── Paket / fiyat kartları ── */
.pricing .card {
  border: 1px solid var(--ey-border) !important;
  border-radius: var(--ey-radius-lg) !important;
  box-shadow: var(--ey-shadow) !important;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.pricing .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--ey-radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--ey-accent), var(--ey-teal), var(--ey-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pricing .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ey-shadow-hover) !important;
}

.pricing .card:hover::before {
  opacity: 1;
}

.pricing .card-price {
  color: var(--ey-accent) !important;
  font-weight: 800 !important;
  font-size: 2.8rem !important;
}

.pricing .btn-primary {
  border-radius: 50px !important;
  font-weight: 700;
  padding: 0.9rem !important;
  box-shadow: 0 6px 20px var(--ey-accent-glow);
}

/* ── Blog kartları ── */
.single-blog {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  overflow: hidden;
  box-shadow: var(--ey-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-blog:hover {
  transform: translateY(-6px);
  box-shadow: var(--ey-shadow-hover);
}

.single-blog .blog-thumb {
  border-radius: 0 !important;
}

.single-blog .blog-post-content {
  padding: 1.8rem !important;
}

.single-blog .read-more {
  color: var(--ey-accent) !important;
  font-weight: 700;
}

/* ── Referans bandı ── */
.brand-slider-section {
  background-color: var(--ey-surface) !important;
  background-image:
    linear-gradient(180deg, #fff 0%, var(--ey-surface) 100%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 32px 32px !important;
  padding-top: 4rem !important;
}

.brand-slider-section .brand-init .single-brand {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius);
  padding: 1rem !important;
  height: 100px;
  box-shadow: var(--ey-shadow);
  transition: transform 0.3s ease;
}

.brand-slider-section .brand-init .single-brand:hover {
  transform: scale(1.03);
}

.brand-slider-section .brand-init .single-brand img {
  max-height: 65px !important;
  max-width: 130px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Kayar referans slider */
.ey-brand-marquee.brand-init {
  border: none !important;
  padding: 0.5rem 0 !important;
  background: transparent;
  overflow: hidden !important;
}

.ey-brand-marquee .ey-brand-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

/* ── İletişim bandı (footer üstü) ── */
.news-letter-section.bg-primary {
  background: linear-gradient(135deg, var(--ey-navy) 0%, var(--ey-navy-soft) 50%, var(--ey-navy-mid) 100%) !important;
  background-image:
    linear-gradient(135deg, var(--ey-navy) 0%, var(--ey-navy-soft) 50%, var(--ey-navy-mid) 100%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 30px 30px !important;
  position: relative;
  padding: 3.5rem 0 !important;
}

.news-letter-section .address-widget {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ey-radius);
  padding: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-letter-section .address-widget:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.news-letter-section .address-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ey-accent), var(--ey-teal));
  border-radius: 14px;
  font-size: 2rem;
  margin-right: 1rem;
}

/* ── Footer ── */
footer .footer-bottom {
  background-color: var(--ey-navy) !important;
  background-image:
    linear-gradient(135deg, rgba(0, 144, 240, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 201, 167, 0.06) 0%, transparent 40%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 100% 100%, 28px 28px !important;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem !important;
}

footer .footer-bottom .section-title .title,
footer .footer-widget .title {
  color: #fff !important;
}

footer .footer-bottom .section-title::before {
  background: linear-gradient(90deg, var(--ey-teal), var(--ey-accent));
}

footer .footer-menu a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

footer .footer-menu a:hover {
  color: var(--ey-teal) !important;
  padding-left: 6px;
}

footer .coppy-right {
  background: var(--ey-navy) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5) !important;
}

footer .coppy-right p {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ── Butonlar genel ── */
.btn-primary {
  background: linear-gradient(135deg, var(--ey-accent) 0%, #0070c0 100%) !important;
  border: none !important;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--ey-accent-glow) !important;
}

/* ── Bölüm arka planları ── */
.ey-section-alt {
  background-color: var(--ey-surface) !important;
  background-image:
    linear-gradient(180deg, #fff 0%, var(--ey-surface) 100%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 32px 32px !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.ey-section-white {
  background: #fff !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.product-tab.bg-white {
  background: transparent !important;
}

.blog-section {
  padding-top: 3rem !important;
  padding-bottom: 4rem !important;
}

.breadcrumb-section + .blog-section,
.breadcrumb-section + .whish-list-section,
.breadcrumb-section + .pricing,
.breadcrumb-section + .contact-section,
.ey-inner-page {
  background-color: var(--ey-surface) !important;
  background-image:
    linear-gradient(180deg, #fff 0%, var(--ey-surface) 100%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 32px 32px !important;
}

.breadcrumb-section {
  padding-top: 2.2rem !important;
  padding-bottom: 2.2rem !important;
  background: var(--ey-surface) !important;
  background-image:
    linear-gradient(180deg, #fff 0%, var(--ey-surface) 100%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 32px 32px !important;
  border-bottom: 1px solid var(--ey-border);
}

.breadcrumb-section .breadcrumb {
  background: #fff !important;
  border: 1px solid var(--ey-border);
  border-radius: 50px;
  padding: 0.85rem 1.6rem !important;
  box-shadow: var(--ey-shadow);
  display: inline-flex;
  flex-wrap: wrap;
}

.breadcrumb-section .breadcrumb-item a {
  color: var(--ey-accent);
  font-weight: 600;
}

.breadcrumb-section .breadcrumb-item.active {
  color: var(--ey-navy);
  font-weight: 700;
}

.breadcrumb-area,
.page-header-area {
  background-color: var(--ey-navy) !important;
  background-image:
    linear-gradient(135deg, rgba(0, 144, 240, 0.08) 0%, transparent 50%),
    var(--ey-map-grid) !important;
  background-size: 100% 100%, 28px 28px !important;
  color: #fff;
}

/* ══ ÜRÜN DETAY ══ */
.product-single.style1 .product-sync-init {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  box-shadow: var(--ey-shadow);
  padding: 1rem;
  overflow: hidden;
}

.product-single.style1 .product-sync-init .product-thumb img {
  border-radius: var(--ey-radius);
  width: 100%;
}

.product-sync-nav {
  margin-top: 1rem;
}

.product-sync-nav .product-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--ey-border);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-sync-nav .slick-slide.slick-current .product-thumb,
.product-sync-nav .slick-slide:hover .product-thumb {
  border-color: var(--ey-accent);
  transform: scale(1.03);
}

.product-single.style1 .modal-product-info {
  background: #fff !important;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  box-shadow: var(--ey-shadow);
  padding: 2rem 2.2rem !important;
  position: relative;
  overflow: hidden;
}

.product-single.style1 .modal-product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ey-accent), var(--ey-teal));
}

.product-single.style1 .product-head .title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--ey-navy) !important;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.product-single.style1 .product-discount .regular-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--ey-navy-mid), var(--ey-navy));
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  font-size: 1.5rem;
  box-shadow: var(--ey-shadow);
}

.product-single.style1 .product-discount del {
  opacity: 0.65;
  margin-right: 0.5rem;
}

.product-single.style1 .form-control,
.product-single.style1 select.form-control {
  border: 2px solid var(--ey-border) !important;
  border-radius: 12px !important;
  min-height: 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-single.style1 .form-control:focus,
.product-single.style1 select.form-control:focus {
  border-color: var(--ey-accent) !important;
  box-shadow: 0 0 0 3px var(--ey-accent-glow) !important;
}

.product-single.style1 label {
  font-weight: 600;
  color: var(--ey-navy);
  font-size: 1.3rem;
}

.product-single.style1 .filter-check-box label {
  background: var(--ey-surface);
  border: 1px solid var(--ey-border);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  margin-bottom: 0.4rem;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-single.style1 .filter-check-box label:hover {
  border-color: var(--ey-accent);
  background: #fff;
}

.product-single.style1 .btn-light {
  border-radius: 50px !important;
  border: 1px solid var(--ey-border) !important;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
}

.product-single.style1 .btn-primary {
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
  font-weight: 700;
}

/* Ürün detay sekmeler */
.ey-product-tabs .card,
.product-single + .product-tab .card,
.blog-section .product-tab .card {
  background: #fff;
  border: 1px solid var(--ey-border) !important;
  border-radius: var(--ey-radius-lg) !important;
  box-shadow: var(--ey-shadow);
  padding: 1.5rem;
}

.product-tab-menu.style1 .nav-pills .nav-link {
  border-radius: 50px !important;
  font-weight: 700;
  color: var(--ey-navy);
  padding: 0.7rem 1.8rem;
  margin: 0 0.3rem;
  border: 1px solid var(--ey-border);
  transition: all 0.25s ease;
}

.product-tab-menu.style1 .nav-pills .nav-link.active,
.product-tab-menu.style1 .nav-pills .nav-link:hover {
  background: linear-gradient(135deg, var(--ey-accent), #0070c0) !important;
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 20px var(--ey-accent-glow);
}

.product-description {
  background: var(--ey-surface);
  border-radius: var(--ey-radius);
  padding: 2rem;
  border-left: 4px solid var(--ey-accent);
  line-height: 1.8;
}

/* Akordeon (SSS / ürün detay) */
.accordion .card {
  border: 1px solid var(--ey-border) !important;
  border-radius: var(--ey-radius) !important;
  overflow: hidden;
  margin-bottom: 0.8rem;
  box-shadow: var(--ey-shadow);
}

.accordion .card-header {
  background: linear-gradient(135deg, var(--ey-navy-mid), var(--ey-navy-soft)) !important;
  border: none !important;
  padding: 0 !important;
}

.accordion .card-header .btn-link {
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 1rem 1.4rem !important;
  font-size: 1.5rem !important;
}

.accordion .card-header .btn-link:hover {
  color: var(--ey-teal) !important;
}

.accordion .card-body {
  background: #fff;
  padding: 1.4rem 1.6rem;
  line-height: 1.75;
}

/* ══ SIDEBAR ══ */
.blog-left-sidebar .sidebar-widget,
.widget.widget_categories,
.widget.woocommerce.widget_shopping_cart {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  box-shadow: var(--ey-shadow);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.blog-left-sidebar .post-title,
.widget .widget-title,
.widget h5.widget-title {
  color: var(--ey-navy) !important;
  font-weight: 800 !important;
  font-size: 1.6rem !important;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--ey-accent), var(--ey-teal)) 1;
}

.blog-links li,
.widget_categories .cat-item {
  border-bottom: 1px solid var(--ey-border);
  padding: 0.35rem 0;
}

.blog-links li a,
.widget_categories .cat-item a {
  color: var(--ey-navy);
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.blog-links li a:hover,
.widget_categories .cat-item a:hover {
  color: var(--ey-accent);
  padding-left: 6px;
}

/* ══ BLOG / HİZMET DETAY ══ */
.breadcrumb-section + .blog-section .single-blog,
.ey-inner-page .single-blog {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  box-shadow: var(--ey-shadow);
  overflow: hidden;
}

.breadcrumb-section + .blog-section .blog-post-content,
.ey-inner-page .blog-post-content {
  padding: 2.5rem !important;
}

.breadcrumb-section + .blog-section .blog-post-content .title,
.ey-inner-page .blog-post-content .title {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: var(--ey-navy);
  margin-bottom: 1.5rem;
}

.breadcrumb-section + .blog-section .blog-post-content img,
.ey-inner-page .blog-post-content img {
  border-radius: var(--ey-radius);
  margin: 1rem 0;
  box-shadow: var(--ey-shadow);
}

.breadcrumb-section + .blog-section .share,
.ey-inner-page .share {
  font-weight: 700;
  color: var(--ey-navy);
}

.breadcrumb-section + .blog-section .blog-post-content ul li a,
.ey-inner-page .blog-post-content ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ey-surface);
  border: 1px solid var(--ey-border);
  color: var(--ey-accent);
  transition: all 0.2s ease;
}

.breadcrumb-section + .blog-section .blog-post-content ul li a:hover,
.ey-inner-page .blog-post-content ul li a:hover {
  background: var(--ey-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ══ SEPET ══ */
.whish-list-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.whish-list-section .table {
  background: #fff;
  border-radius: var(--ey-radius-lg);
  overflow: hidden;
  box-shadow: var(--ey-shadow);
  border: 1px solid var(--ey-border);
}

.whish-list-section .thead-light {
  background: linear-gradient(135deg, var(--ey-navy-mid), var(--ey-navy-soft)) !important;
}

.whish-list-section .thead-light th {
  color: #fff !important;
  font-weight: 700;
  border: none !important;
  padding: 1.2rem 1rem;
}

.whish-list-section tbody tr {
  transition: background 0.2s ease;
}

.whish-list-section tbody tr:hover {
  background: var(--ey-surface);
}

.whish-list-section tbody td,
.whish-list-section tbody th {
  vertical-align: middle !important;
  padding: 1.2rem 1rem;
  border-color: var(--ey-border) !important;
}

.whish-list-section tbody img {
  border-radius: var(--ey-radius);
  border: 1px solid var(--ey-border);
  box-shadow: var(--ey-shadow);
}

.whish-list-section .alert-info {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  box-shadow: var(--ey-shadow);
  padding: 1.5rem;
}

.ey-inner-page .alert-warning,
.ey-inner-page .alert-info {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-left: 4px solid var(--ey-gold);
  border-radius: var(--ey-radius);
  box-shadow: var(--ey-shadow);
  padding: 1.2rem 1.5rem;
}

/* ══ PAKETLER ══ */
.breadcrumb-section + .pricing {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.breadcrumb-section + .pricing .card-body {
  padding: 2.2rem !important;
}

.breadcrumb-section + .pricing .card h1 {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--ey-navy);
}

.breadcrumb-section + .pricing .card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ey-border);
  list-style: none;
}

.breadcrumb-section + .pricing .card ul li:last-child {
  border-bottom: none;
}

/* ══ SAYFALAMA ══ */
.pagination-section {
  background: transparent !important;
}

.pagination .page-link {
  border: 1px solid var(--ey-border) !important;
  border-radius: 10px !important;
  margin: 0 3px;
  color: var(--ey-navy);
  font-weight: 600;
  min-width: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
  background: linear-gradient(135deg, var(--ey-accent), #0070c0) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px var(--ey-accent-glow);
}

/* ══ FORM ELEMANLARI ══ */
.form-control {
  border-radius: 12px !important;
}

textarea.form-control {
  min-height: 120px;
}

/* ══ ARA SAYFASI ══ */
.ey-search-result .single-product,
.ey-search-result .single-blog {
  margin-bottom: 2rem;
}

/* ── İletişim / harita ── */
.map {
  position: relative;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--ey-accent), var(--ey-teal), var(--ey-gold)) 1;
}

.map iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  filter: grayscale(20%) contrast(1.05);
}

.contact-section {
  background: var(--ey-surface) !important;
}

.contact-page-side-content,
.contact-form-content {
  background: #fff;
  border: 1px solid var(--ey-border);
  border-radius: var(--ey-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--ey-shadow);
  height: 100%;
}

.contact-page-title {
  color: var(--ey-navy) !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 1rem;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--ey-accent), var(--ey-teal)) 1;
}

.single-contact-block {
  background: var(--ey-surface);
  border-radius: var(--ey-radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--ey-accent);
}

.single-contact-block h4 {
  color: var(--ey-navy);
  font-weight: 700;
}

.single-contact-block h4 i {
  color: var(--ey-accent);
  margin-right: 0.5rem;
}

/* ── Scroll yukarı ── */
#scrollUp {
  background: linear-gradient(135deg, var(--ey-accent), var(--ey-teal)) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 20px var(--ey-accent-glow);
}

/* ── Harita koordinat dekorasyonu ── */
.ey-coords-strip {
  background: var(--ey-navy);
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.8rem 1rem;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0, 144, 240, 0.2);
  border-bottom: 1px solid rgba(0, 144, 240, 0.2);
}

.ey-coords-strip span {
  display: inline-block;
  animation: eyMarquee 25s linear infinite;
}

@keyframes eyMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Animasyonlu giriş ── */
.ey-fade-in {
  animation: eyFadeIn 0.6s ease forwards;
}

@keyframes eyFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
