/**
 * Kart Baskı kurumsal renkler (yeni tema)
 * #2C2C2C koyu gri | #004AAB mavi | #007AFF açık mavi
 */

/* Yatay scroll önleme: sayfalar sağa sola taşmasın */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ana tema renkleri */
.theme-color { color: #2C2C2C !important; }
.theme-bg-color { background-color: #004AAB !important; }
.theme-color-secondary { color: #007AFF !important; }
.theme-bg-color-secondary { background-color: #007AFF !important; }
.theme-color-third { color: #2C2C2C !important; }
.theme-bg-color-third { background-color: #2C2C2C !important; }

/* Nav / link alt çizgi */
.nav-link_underscore.theme-color:after { background-color: #004AAB !important; }
.nav-link_underscore:hover:after,
.nav-link_underscore.active:after { background-color: #004AAB !important; }

/* Öne Çıkan Ürünler tabları – mobilde yan yana, ortada, tek satır */
@media (max-width: 767.98px) {
  #collections-tab {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
  }
  #collections-tab .nav-item {
    flex: 0 0 auto;
  }
  #collections-tab .nav-link {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.5rem !important;
    white-space: nowrap;
  }
}

/* Slider – arka plan karartma, metin ve buton okunaklı */
.slideshow.type4 .slideshow-bg { position: relative; }
.slideshow.type4 .slideshow-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.45);
  pointer-events: none;
}
.slideshow.type4 .slideshow-text .text_dash,
.slideshow.type4 .slideshow-text h2,
.slideshow.type4 .slideshow-text p { color: #fff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.slideshow.type4 .slideshow-text { position: relative; z-index: 2; }

/* Slider buton – kurumsal mavi, beyaz yazı */
.slideshow.type4 .btn-slider-kartbaski,
.slideshow.type4 .btn-outline-primary.theme-bg-color-secondary {
  background-color: #004AAB !important;
  border-color: #004AAB !important;
  color: #fff !important;
}
.slideshow.type4 .btn-slider-kartbaski:hover,
.slideshow.type4 .btn-outline-primary.theme-bg-color-secondary:hover {
  background-color: #003d8f !important;
  border-color: #003d8f !important;
  color: #fff !important;
}

/* ========== Hero Modern – dinamik, etkileşimli slider ========== */
.hero-modern {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.hero-modern .slideshow-bg::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%);
}
.hero-modern__img {
  transition: transform 0.8s ease-out;
}
.hero-modern .swiper-slide-active .hero-modern__img {
  animation: heroKenBurns 14s ease-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, -1%); }
}
.hero-modern__text {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .hero-modern__text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero-modern__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid #004AAB;
}
.hero-modern__title {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero-modern__desc {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .hero-modern__desc { font-size: 1.1rem; }
}
.hero-modern__btn {
  background-color: #004AAB !important;
  border-color: #004AAB !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
}
.hero-modern__btn-arrow {
  transition: transform 0.25s ease;
}
.hero-modern__btn:hover .hero-modern__btn-arrow {
  transform: translateX(4px);
}
/* Pagination: minimal çizgi + aktif slide’da dolum animasyonu */
.hero-modern__pagination {
  gap: 8px;
  z-index: 3;
}
.hero-modern__pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 !important;
  opacity: 1;
  transition: background 0.3s ease, width 0.3s ease;
}
.hero-modern__pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 48px;
  position: relative;
}
.hero-modern__pagination.hero-modern__pagination--run .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  animation: heroProgressFill 5s linear forwards;
}
.hero-modern__pagination.hero-modern__pagination--run[data-tick="1"] .swiper-pagination-bullet-active::after {
  animation: heroProgressFill 5s linear forwards;
}
.hero-modern__pagination.hero-modern__pagination--run[data-tick="2"] .swiper-pagination-bullet-active::after {
  animation: heroProgressFill 5s linear forwards;
}
@keyframes heroProgressFill {
  from { width: 0; }
  to { width: 100%; }
}
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__label,
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__title,
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__desc,
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__btn {
  animation: heroFadeUp 0.6s ease forwards;
}
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__title { animation-delay: 0.1s; animation-fill-mode: both; }
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__desc { animation-delay: 0.2s; animation-fill-mode: both; }
.hero-modern .swiper-slide-active .hero-modern__text .hero-modern__btn { animation-delay: 0.3s; animation-fill-mode: both; }
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bölüm başlıkları */
.section-title.theme-color { color: #2C2C2C !important; }

/* Kategori / menü linkleri */
.category-carousel .menu-link.theme-color,
.categories-nav a { color: #2C2C2C !important; }
.category-carousel .menu-link.theme-color:hover,
.categories-nav a:hover { color: #004AAB !important; }

/* Ürün kartı fiyat ve başlık */
.pc__title a.theme-color { color: #2C2C2C !important; }
.pc__title a.theme-color:hover { color: #004AAB !important; }
.product-card__price .theme-color { color: #004AAB !important; }

/* Günün fırsatları rozet */
.text-white.theme-bg-color-secondary { background-color: #004AAB !important; }

/* Pagination bullet */
.swiper-pagination-bullets.theme-color .swiper-pagination-bullet-active { background-color: #004AAB !important; }

/* Progress bar */
.progress-bar.theme-bg-color-secondary { background-color: #007AFF !important; }

/* Grid banner: sadece arka plan görseli üzerinde overlay, layout ve yazıya dokunulmaz */
.grid-banner__img-wrap { position: relative; display: block; overflow: hidden; }
.grid-banner__img-wrap img {
  transition: transform 0.4s ease;
}
.grid-banner__item:hover .grid-banner__img-wrap img {
  transform: scale(1.05);
}
.grid-banner__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* CTA butonları – kurumsal, kullanıcı ile etkileşim (hover/active) */
.btn-cta-kartbaski {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-cta-kartbaski:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 74, 171, 0.35);
}
.btn-cta-kartbaski:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 74, 171, 0.25);
}

/* Grid banner butonları */
.grid-banner .btn-outline-primary.theme-bg-color { background-color: #004AAB !important; border-color: #004AAB !important; color: #fff !important; }
.grid-banner .btn-cta-kartbaski:hover { background-color: #003d8f !important; border-color: #003d8f !important; color: #fff !important; }

/* Blog link */
.blog-grid__item-title a.theme-color { color: #2C2C2C !important; }
.blog-grid__item-title a.theme-color:hover { color: #004AAB !important; }

/* Body metin rengi (sayfa geneli) */
body { color: #2C2C2C; }

/* Hesap aside: açılışta doğrudan Kayıt Ol, Giriş’te “Hesap Oluştur” linki yok */
.customer-forms .customer-forms__wrapper { left: 0; }

/* Kırmızı sınıfları kurumsal mavi ile değiştir (header, footer, ürün detay) */
.text-red { color: #004AAB !important; }
.nav-link.text-red { color: #004AAB !important; }
.bg-red { background-color: #004AAB !important; }
.btn-red,
.btn-primary.theme-override,
.header .btn-primary,
.product-single .btn-primary { background-color: #004AAB !important; border-color: #004AAB !important; color: #fff !important; }
.btn-red:hover,
.btn-primary.theme-override:hover,
.header .btn-primary:hover,
.product-single .btn-primary:hover { background-color: #003d8f !important; border-color: #003d8f !important; color: #fff !important; }
.btn-outline-red { border-color: #004AAB !important; color: #004AAB !important; }
.btn-outline-red:hover { background-color: #004AAB !important; color: #fff !important; }
.btn-hover-red:hover { background-color: #004AAB !important; border-color: #004AAB !important; color: #fff !important; }
.link-red { color: #004AAB !important; }
.link-red:hover { color: #003d8f !important; }
/* Sepete ekle / wishlist vb. kırmızı vurgu */
.js-add-wishlist.active.theme-bg-color.text-white,
.js-add-wishlist.active.btn-hover-red { background-color: #004AAB !important; border-color: #004AAB !important; }
.product-card__price .price_current,
.pc__price .theme-color { color: #004AAB !important; }
.product-single__addtocart .btn-primary { background-color: #004AAB !important; border-color: #004AAB !important; }
.product-single__actions .btn-primary { background-color: #004AAB !important; border-color: #004AAB !important; }
/* Kendin Tasarla – outline, tema rengi, Sepete Ekle’den farklı */
.btn-kendin-tasarla {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #004AAB;
  background: transparent;
  border: 2px solid #004AAB;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.btn-kendin-tasarla:hover { color: #fff; background-color: #004AAB; border-color: #004AAB; }
/* Sepete Ekle + Kendin Tasarla yan yana tam eşit genişlik (ortak – ikisini bozma) */
.product-single__addtocart--equal .btn,
.product-single__addtocart--equal .btn-kendin-tasarla {
  flex: 1 1 0%;
  min-width: 0;
  min-height: 48px;
  padding: 0.6rem 0.5rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Sadece Kendin Tasarla görünümü – outline, diğer kuralları bozmaz */
.product-single__addtocart--equal .btn-kendin-tasarla {
  background-color: #fff !important;
  border: 2px solid #004AAB !important;
  color: #004AAB !important;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.product-single__addtocart--equal .btn-kendin-tasarla:hover {
  color: #fff !important;
  background-color: #004AAB !important;
  border-color: #004AAB !important;
}

/* Ürün detay – Fiyat hesapla form & sekmeler */
.product-config-card .product-config__header { background-color: #004AAB !important; }
/* Fiyatı Gönder butonu – mavi bar içinde modern outline */
.product-config__send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.product-config__send-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  transform: translateY(-1px);
}
.product-config__send-btn:active { transform: translateY(0); }
.product-config-select:focus { border-color: #004AAB; box-shadow: 0 0 0 0.2rem rgba(0,74,171,0.2); }
/* Miktar/Fiyat tablosu – hafif çizgiler */
.product-config-table--bordered table { border-collapse: collapse; }
.product-config-table--bordered th,
.product-config-table--bordered td { border: 1px solid rgba(0,0,0,0.08); }
.product-config-table--bordered thead th { border-bottom-width: 2px; border-bottom-color: #004AAB; }
.product-config-table__active { border-left: 3px solid #004AAB !important; }
/* Özet fiyat: mobilde indirim etiketi alt satırda, sağa hizalı */
.product-config-summary__total { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: baseline; gap: 0.25rem 0.5rem; }
.product-config-summary__discount { white-space: nowrap; }
@media (max-width: 767.98px) {
  .product-config-summary__discount { width: 100%; text-align: right; }
}
/* Ürün detay sekmeleri – 2 ayrı yapı (görseldeki gibi): her biri kendi container’ında */
.product-detail-tabs-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
.product-detail-tabs-block--first {
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
.product-detail-tabs-block--second {
  margin-bottom: 1rem;
}
.product-detail-tabs-block__inner {
  flex-wrap: nowrap;
  gap: 0.25rem;
}
.product-detail-tab {
  color: #5a6c7d;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.1rem;
  border: 0 !important;
  border-radius: 8px 8px 0 0;
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  margin-bottom: -1px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}
.product-detail-tab:hover { color: #004AAB; background: rgba(0, 74, 171, 0.06); }
.product-detail-tab.active {
  color: #004AAB !important;
  background: #fff !important;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}
.product-detail-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #004AAB;
  border-radius: 3px 3px 0 0;
}
.product-detail-tab:focus-visible { outline: 2px solid #004AAB; outline-offset: 2px; }
@media (max-width: 575.98px) {
  .product-detail-tabs-block__inner { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .product-detail-tabs-block__inner::-webkit-scrollbar { display: none; }
  .product-detail-tabs-block--first .product-detail-tab { font-size: 0.8rem; padding: 0.5rem 0.65rem; }
  .product-detail-tabs-block--second .product-detail-tab { font-size: 0.75rem; padding: 0.5rem 0.5rem; }
}
.product-order-option:hover { border-color: #004AAB !important; box-shadow: 0 0 0 1px #004AAB; }
.product-order-option__icon { color: #004AAB; }
#accordionSSS .accordion-button:not(.collapsed) { color: #004AAB !important; background: rgba(0,74,171,0.06) !important; }
#accordionSSS .accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(0,74,171,0.25); }

/* Sipariş süreci – 4 adımlı timeline (Baskılarım Ne Zaman Elimde Olur?) */
.siparis-timeline__title { font-size: 1.35rem; font-weight: 700; color: #2C2C2C; }
.siparis-timeline { border-color: rgba(0, 0, 0, 0.08) !important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }
.siparis-timeline__steps { row-gap: 1.5rem; }
@media (min-width: 992px) {
  .siparis-timeline__steps { row-gap: 0; }
}
.siparis-timeline__step-inner { padding: 0.5rem 0.75rem 0.5rem 0; }
@media (min-width: 992px) {
  .siparis-timeline__step-inner { padding: 0 0.5rem; border-right: 1px solid transparent; }
  .siparis-timeline__step:last-child .siparis-timeline__step-inner { border-right: 0; }
}
.siparis-timeline__icon { width: 48px; height: 48px; color: #004AAB; background: rgba(0, 74, 171, 0.08); border-radius: 10px; }
.siparis-timeline__icon svg { flex-shrink: 0; }
.siparis-timeline__step-title { font-size: 0.95rem; color: #2C2C2C; }
.siparis-timeline__step-desc { font-size: 0.8rem; line-height: 1.5; color: #5a6c7d !important; }
.siparis-timeline__arrow { position: absolute; right: -2px; top: 50%; transform: translateY(-50%); color: rgba(0, 0, 0, 0.2); z-index: 1; }
@media (min-width: 992px) {
  .siparis-timeline__step:last-child .siparis-timeline__arrow { display: none !important; }
}

/* Tasarım Yükle sayfası */
.design-upload-page__title { color: #2C2C2C; }
.design-upload-card { transition: box-shadow 0.2s ease; }
.design-upload-card:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important; }
/* Tasarım Yükle – modern sekmeler */
.design-upload-tabs-wrap { background: rgba(44, 44, 44, 0.04); border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.design-upload-tabs { border: 0; padding: 0; min-height: 48px; align-items: stretch; }
.design-upload-tab { color: #5a6c7d !important; font-weight: 600; font-size: 0.9rem; border: 0; border-radius: 10px 10px 0 0; padding: 12px 20px; margin-bottom: -1px; background: transparent; transition: color 0.2s ease, background 0.2s ease; position: relative; }
.design-upload-tab:hover { color: #004AAB !important; background: rgba(255, 255, 255, 0.8); }
.design-upload-tab.active { color: #004AAB !important; background: #fff; box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04); }
.design-upload-tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: #004AAB; border-radius: 2px 2px 0 0; }
.design-upload-tab__label { position: relative; z-index: 1; }
.design-upload-tabs .nav-link { border: 0; }
.design-upload-tabs .nav-link:focus-visible { outline: 2px solid #004AAB; outline-offset: 2px; border-radius: 10px; }
.design-upload-zone { border-color: rgba(0,74,171,0.3) !important; background: rgba(0,74,171,0.03) !important; transition: border-color 0.2s, background 0.2s; }
.design-upload-zone label { cursor: pointer; }
.design-upload-zone:hover { border-color: #004AAB !important; background: rgba(0,74,171,0.06) !important; }
.design-upload-template-preview .border-dashed { border-style: dashed !important; }
.design-upload-page .btn-primary { background: #004AAB !important; border-color: #004AAB !important; }
.design-upload-page .btn-primary:hover { background: #003d8f !important; border-color: #003d8f !important; }
.design-upload-page .btn-outline-primary:hover { background: rgba(0,74,171,0.08); color: #004AAB; }
.design-upload-alert { color: #004AAB; }
.design-upload-breadcrumb { font-size: 0.8rem; }
.design-upload-breadcrumb .menu-link:not(.text-secondary):hover { color: #004AAB !important; }
.design-upload-breadcrumb .breadcrumb-separator { color: #999; font-size: 0.75rem; }

/* Mobil alt tab bar (Anasayfa, Ürünler, Favoriler) – responsive */
.footer-mobile.container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: 100%;
  z-index: 1020;
}
.footer-mobile__link {
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.footer-mobile__label {
  font-size: 0.7rem;
  max-width: 100%;
  display: block;
  padding: 0 2px;
}
@media (min-width: 360px) {
  .footer-mobile.container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .footer-mobile__label { font-size: 0.75rem; }
}

/* ========== Sepet çekmecesi (cart drawer) – mobilde tam ekran, içerik görünsün ========== */
/* Sepet her zaman opak; arkadaki sayfa görünmesin */
/* Varsayılan kapalı: aside_visible yoksa ekran dışında (cache/JS hatasına karşı) */
#cartDrawer:not(.aside_visible) {
  right: -100% !important;
  left: auto !important;
}
.aside.cart-drawer {
  background-color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 1055;
}
.aside.cart-drawer .aside-header {
  background-color: #faf9f8 !important;
}
.aside.cart-drawer .aside-content {
  background-color: #ffffff !important;
}
@media (max-width: 767.98px) {
  .aside.cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    padding: 0;
    display: flex !important;
    flex-direction: column;
    box-sizing: border-box;
  }
  .aside.cart-drawer.aside_right {
    right: -100%;
  }
  .aside.cart-drawer.aside_right.aside_visible {
    right: 0;
  }
  .aside.cart-drawer .aside-header {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .aside.cart-drawer .aside-content.cart-drawer-items-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: none !important;
    margin: 0;
    padding: 1rem;
    padding-bottom: 6rem;
  }
  .aside.cart-drawer .cart-drawer-actions {
    flex-shrink: 0;
    padding: 1rem;
  }
  .aside.cart-drawer .cart-drawer-item__info {
    min-width: 0;
  }
  .aside.cart-drawer .cart-drawer-item__title,
  .aside.cart-drawer .cart-drawer-item__option {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Ürünler sayfası: grid responsive + pagination ortalı */
.shop-main .shop-list {
  min-width: 0;
}
.shop-main .products-grid.row {
  display: flex;
  flex-wrap: wrap;
}
.shop-main .products-grid .product-card-wrapper {
  min-width: 0;
}
.shop-main .shop-pages {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  width: 100%;
  text-align: center;
}
.shop-main .shop-pages .pagination {
  justify-content: center;
  flex-wrap: wrap;
}

/* Hesap sayfaları: main overflow kapatılsın ki sticky sidebar çalışsın (footer/header üstüne binmesin) */
main.account-page-main {
  overflow: visible !important;
}

/* Galeri fotoğrafları: tıklanabilir cursor + hover büyüme efekti */
.gallery-1 [data-bp],
.gallery-1 .gallery-media {
  cursor: pointer;
}
.gallery-1 .gallery-media {
  overflow: hidden;
}
.gallery-1 .gallery-media img {
  transition: transform 0.35s ease;
}
.gallery-1 .gallery-media:hover img {
  transform: scale(1.08);
}

/* Galeri: masaüstü sadece masaüstünde, mobil galeri sadece mobil/tablette */
@media (max-width: 991.98px) {
  section.gallery-section:not(.gallery-section-mobile) {
    display: none !important;
  }
}
@media (min-width: 992px) {
  section.gallery-section.gallery-section-mobile {
    display: none !important;
  }
}

/* Mobil/tablet galeri – Swiper slider */
.gallery-section-mobile {
  padding: 1rem 0 2rem;
  overflow: hidden;
}
.gallery-section-mobile .container.gallery-1-mobile {
  max-width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.gallery-section-mobile .js-gallery-mobile-slider {
  border-radius: 12px;
  overflow: hidden;
}
.gallery-section-mobile .js-gallery-mobile-slider .swiper-slide {
  height: auto;
}
.gallery-section-mobile .gallery-mobile-slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: block;
}
.gallery-section-mobile .gallery-mobile-slide .equal {
  display: block;
  width: 100%;
}
.gallery-section-mobile .gallery-mobile-slide.equal-16-10::before {
  content: "";
  display: block;
  padding-bottom: 62.5%;
}
.gallery-section-mobile .gallery-mobile-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-section-mobile .gallery-1-mobile [data-bp],
.gallery-section-mobile .gallery-mobile-slide {
  cursor: pointer;
}
.gallery-section-mobile .gallery-mobile-pagination {
  display: none !important;
  margin-top: 0.75rem;
  position: relative;
}
.gallery-section-mobile .gallery-mobile-pagination .swiper-pagination-bullet {
  background: #004AAB;
  opacity: 0.35;
}
.gallery-section-mobile .gallery-mobile-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}