/* ============================================================
   Çalı Pide — Swigo şablonu üzerine marka özelleştirmesi
   Turuncu tema (#ff6b00) + site-özel küçük stiller
   style.css'ten SONRA yüklenmelidir.
   ============================================================ */

:root,
[data-color="color_1"],
[data-color="color_2"],
[data-color="color_3"],
[data-color="color_4"],
[data-color="color_5"],
body {
  --primary: #ff6b00;
  --primary-hover: #e05f00;
  --primary-dark: #c25200;
  --secondary: #ff8c42;
  --rgba-secondary-1: rgba(255, 140, 66, 0.1);
  --rgba-primary-05: rgba(255, 107, 0, 0.05);
  --rgba-primary-1: rgba(255, 107, 0, 0.1);
  --rgba-primary-2: rgba(255, 107, 0, 0.2);
  --rgba-primary-3: rgba(255, 107, 0, 0.3);
  --rgba-primary-4: rgba(255, 107, 0, 0.4);
  --rgba-primary-5: rgba(255, 107, 0, 0.5);
  --rgba-primary-6: rgba(255, 107, 0, 0.6);
  --rgba-primary-7: rgba(255, 107, 0, 0.7);
  --rgba-primary-8: rgba(255, 107, 0, 0.8);
  --rgba-primary-9: rgba(255, 107, 0, 0.9);
  --theme-text-color: #fff;
  --bg-light: #fff4ea;
  --title: #222222;
}

/* ---------- Üst bilgi çubuğu ---------- */
.cp-topbar {
  background: #222;
  color: #d9cdc2;
  font-size: 13px;
  padding: 6px 0;
  position: relative;
  z-index: 999;
}
.cp-topbar .inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.cp-topbar a { color: #ffb377; font-weight: 600; }
.cp-topbar a:hover { color: #fff; }
.cp-topbar .item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.cp-topbar .left, .cp-topbar .right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
@media (max-width: 767px) {
  .cp-topbar .right { display: none; }
  .cp-topbar .inner { justify-content: center; }
}

/* Header solid (transparan değil) */
.site-header.style-1 .main-bar { box-shadow: 0 2px 14px rgba(0, 0, 0, .06); }
.logo-header img { max-height: 62px; width: auto; }

/* ============================================================
   HERO SLIDER v3 — kutulu, yuvarlatılmış, şablondan tamamen bağımsız
   ============================================================ */
.cp-hero { padding: 22px 0 10px; background: #fff; }
.cp-hero .cp-hero-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 54px -22px rgba(60, 32, 8, .35);
}
.cp-main-slider { border-radius: 22px; overflow: hidden; }

/* Tam banner slide */
.cp-slide-full img {
  width: 100%;
  height: auto;
  max-height: 74vh;
  object-fit: cover;
  display: block;
}

/* İçerikli slide: solda yazı, sağda görsel */
.cp-slide-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 30px;
  min-height: 440px;
  padding: 44px 56px;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(255, 154, 61, .35), transparent 55%),
    linear-gradient(115deg, #fff7ef 0%, #ffe9d4 60%, #ffd9b5 100%);
}
.cp-slide-split .txt .kicker {
  display: inline-block;
  font-family: 'Lobster', cursive;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 8px;
  transform: rotate(-2deg);
}
.cp-slide-split .txt h2 {
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: #24180d;
  margin: 0 0 14px;
}
.cp-slide-split .txt p { color: #6d5b49; font-size: clamp(14px, 1.4vw, 17px); margin-bottom: 22px; max-width: 480px; }
.cp-slide-split .media { text-align: center; }
.cp-slide-split .media img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 34px 60px -22px rgba(214, 92, 0, .55);
  animation: cpFloat 5s ease-in-out infinite;
}
@media (max-width: 991px) {
  .cp-slide-split { grid-template-columns: 1fr; text-align: center; padding: 34px 24px; min-height: 0; }
  .cp-slide-split .txt p { margin-left: auto; margin-right: auto; }
  .cp-slide-split .media img { max-width: 260px; }
}

/* Oklar — sağ ve sol kenar ortası */
.cp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  transition: .25s;
}
.cp-nav:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.1); }
.cp-nav.cp-prev { left: 18px; }
.cp-nav.cp-next { right: 18px; }

/* Noktalar — alt orta, hap şerit içinde */
.cp-dots {
  position: absolute !important;
  width: auto !important;
  bottom: 14px !important;
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 12, 4, .35);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 30px;
}
.cp-dots .swiper-pagination-bullet {
  width: 9px; height: 9px;
  margin: 0 !important;
  border-radius: 50%;
  background: #fff;
  opacity: .55;
  transition: .3s;
}
.cp-dots .swiper-pagination-bullet-active { opacity: 1; background: var(--primary); width: 26px; border-radius: 6px; }
@media (max-width: 767px) {
  .cp-hero { padding: 12px 0 6px; }
  .cp-hero .cp-hero-frame, .cp-main-slider { border-radius: 14px; }
  .cp-nav { width: 36px; height: 36px; font-size: 14px; }
  .cp-nav.cp-prev { left: 8px; }
  .cp-nav.cp-next { right: 8px; }
}

/* ---------- Kampanya 5'li kompakt grid ---------- */
.cp-grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1199px) { .cp-grid5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px)  { .cp-grid5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px)  { .cp-grid5 { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.cp-product-card {
  background: #fff;
  border: 1px solid #f0e9e0;
  border-radius: 12px;
  padding: 10px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px -8px rgba(74, 46, 20, .12);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.cp-product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px -12px rgba(74, 46, 20, .22); border-color: #ffd2ad; }
.cp-product-card .pc-img { display: block; border-radius: 9px; overflow: hidden; aspect-ratio: 1/1; background: var(--bg-light); }
.cp-product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cp-product-card:hover .pc-img img { transform: scale(1.06); }
.cp-product-card h3 { font-size: 14px; font-weight: 600; margin: 10px 0 4px; line-height: 1.35; flex: 1; font-family: var(--font-family-base); }
.cp-product-card h3 a:hover { color: var(--primary); }
.cp-product-card .pc-old { text-decoration: line-through; color: #b5a89b; font-size: 11.5px; font-weight: 600; }
.cp-product-card .pc-price { color: var(--primary); font-weight: 800; font-size: 15.5px; margin-bottom: 9px; }
.cp-product-card .btn { padding: 7px 10px; font-size: 12.5px; border-radius: 8px; }
.cp-product-card .pc-sale-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #e02b2b;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: .04em;
}

/* ---------- Lezzetlerimiz: yuvarlak kategori kartları ---------- */
.cp-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 22px 14px;
}
.cp-cat-item { text-align: center; display: block; }
.cp-cat-item .cc-ring {
  display: block;
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  border: 2px dashed #e5d5c2;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.cp-cat-item:hover .cc-ring {
  border-color: var(--primary);
  border-style: solid;
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 18px 34px -14px rgba(255, 107, 0, .45);
}
.cp-cat-item .cc-ring img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform .4s;
}
.cp-cat-item h3 { font-size: 15.5px; font-weight: 700; margin: 12px 0 2px; font-family: var(--font-family-base); }
.cp-cat-item:hover h3 { color: var(--primary); }
.cp-cat-item .cc-count { font-size: 12px; color: #a3968a; }

/* ---------- Blog kartı (calipide.com birebir + hover koyu tema) ---------- */
.cp-blog-card {
  position: relative;
  background: #f5f2e9;
  border: 1px solid #e2ddd2;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.cp-blog-card:hover { box-shadow: 0 22px 46px -18px rgba(0, 0, 0, .3); transform: translateY(-4px); }
.cp-blog-card .bc-thumb { overflow: hidden; display: block; }
.cp-blog-card .bc-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .45s; }
.cp-blog-card:hover .bc-thumb img { transform: scale(1.07); }

.cp-blog-card .bc-content {
  padding: 0 22px 22px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: background .35s;
}
/* Hover: içerik alanı koyu laciverte döner (ekran görüntüsündeki gibi) */
.cp-blog-card:hover .bc-content { background: #0f1b2d; }
.cp-blog-card:hover h3, .cp-blog-card:hover h3 a { color: #fff; }
.cp-blog-card:hover p { color: #cdd5e0; }
.cp-blog-card:hover .bc-link { color: #7fd6ff; }

.cp-blog-card .bc-meta { position: relative; height: 34px; margin-bottom: 14px; }
.cp-blog-card .bc-date {
  position: absolute;
  top: -34px;
  left: 0;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: 12px;
  padding: 9px 15px;
  text-align: center;
  z-index: 5;
  line-height: 1.1;
  transition: border-style .25s;
}
.cp-blog-card:hover .bc-date { border-style: dashed; }
.cp-blog-card .bc-date strong { display: block; font-size: 24px; font-weight: 800; color: #1c2433; }
.cp-blog-card .bc-date span { font-size: 12.5px; color: #333; }
/* Rozetin sağından geçen ince çizgi */
.cp-blog-card .bc-meta::after {
  content: '';
  position: absolute;
  left: 96px; right: 0;
  top: 12px;
  height: 1px;
  background: #d8d2c4;
}
.cp-blog-card:hover .bc-meta::after { background: rgba(255, 255, 255, .18); }

.cp-blog-card h3 { font-size: 19px; line-height: 1.38; margin: 4px 0 10px; font-family: var(--font-family-base); font-weight: 700; color: #1c2433; transition: color .3s; }
.cp-blog-card p { color: #6e6259; font-size: 14px; margin-bottom: 16px; flex: 1; transition: color .3s; }
.cp-blog-card .bc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  color: #333;
  transition: color .3s;
}
.cp-blog-card .bc-link i { transform: rotate(-45deg); transition: transform .3s; }
.cp-blog-card .bc-link:hover i { transform: rotate(0); }

/* ---------- Kompakt sayfa başlığı ---------- */
.cp-page-head {
  background:
    linear-gradient(90deg, rgba(255, 107, 0, .08), rgba(255, 154, 61, .04)),
    #fdf8f2;
  border-bottom: 3px solid var(--primary);
  padding: 26px 0;
}
.cp-page-head .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.cp-page-head h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-family: 'Lobster', cursive;
  font-weight: 400;
  color: #222;
}
.cp-page-head .cp-crumbs { font-size: 13px; color: #97897c; }
.cp-page-head .cp-crumbs a { color: #6e6259; font-weight: 600; }
.cp-page-head .cp-crumbs a:hover { color: var(--primary); }
.cp-page-head .cp-crumbs .sep { margin: 0 7px; color: var(--primary); }

/* ---------- Ürün popup modalı ---------- */
.modal-detail .modal-dialog { max-width: 760px; }
#cpProductModal .detail-media img { width: 100%; border-radius: 10px; aspect-ratio: 1/1; object-fit: cover; }
#cpProductModal .modal-body { display: flex; gap: 24px; padding: 24px; }
#cpProductModal .detail-media { flex: 0 0 42%; }
#cpProductModal .detail-info { flex: 1; }
#cpProductModal .btn-close { position: absolute; top: 14px; right: 14px; z-index: 5; background-color: #fff; border-radius: 50%; padding: 9px; opacity: 1; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
@media (max-width: 767px) {
  #cpProductModal .modal-body { flex-direction: column; padding: 16px; }
  #cpProductModal .detail-media { flex: none; }
  #cpProductModal .detail-media img { max-height: 240px; }
}

/* ---------- Footer (özel tasarım) ---------- */
.cp-footer {
  background: #1d1a17 url() no-repeat;
  background-image: radial-gradient(ellipse at 15% -20%, rgba(255, 107, 0, .14), transparent 55%);
  color: #cfc4b9;
  margin-top: 60px;
  position: relative;
  font-size: 14.5px;
}
.cp-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffa245);
}
.cp-footer .f-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 34px;
  padding: 52px 0 34px;
}
.cp-footer h5 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
  font-family: var(--font-family-base);
  font-weight: 700;
}
.cp-footer h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 3px;
  background: var(--primary);
}
.cp-footer .f-brand img { max-height: 110px; max-width: 100%; }
.cp-footer .f-brand p { margin: 14px 0 0; color: #a99c8f; }
.cp-footer .f-social { display: flex; gap: 10px; margin-top: 16px; }
.cp-footer .f-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .25s;
}
.cp-footer .f-social a:hover { background: var(--primary); transform: translateY(-3px); }
.cp-footer ul { list-style: none; padding: 0; margin: 0; }
.cp-footer .f-links li { padding: 5px 0; }
.cp-footer .f-links a { color: #cfc4b9; transition: .2s; }
.cp-footer .f-links a::before { content: '›'; color: var(--primary); margin-right: 8px; font-weight: 700; }
.cp-footer .f-links a:hover { color: var(--primary); padding-left: 5px; }
.cp-footer .f-contact li { display: flex; gap: 11px; padding: 6px 0; align-items: baseline; }
.cp-footer .f-contact i { color: var(--primary); min-width: 16px; }
.cp-footer .f-contact a:hover { color: var(--primary); }
.cp-footer .f-hanimaga { text-align: center; }
.cp-footer .f-hanimaga img { max-width: 170px; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35)); }
.cp-footer .f-script {
  font-family: 'Lobster Two', cursive;
  font-size: 21px;
  color: #f5c99b;
  line-height: 1.45;
  margin-top: 10px;
  transform: rotate(-1.5deg);
}
.cp-footer .f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #97897c;
}
.cp-footer .f-bottom a { color: var(--primary); font-weight: 700; }
@media (max-width: 991px) { .cp-footer .f-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) {
  .cp-footer .f-grid { grid-template-columns: 1fr; text-align: center; }
  .cp-footer h5::after { left: 50%; transform: translateX(-50%); }
  .cp-footer .f-social { justify-content: center; }
  .cp-footer .f-contact li { justify-content: center; }
  .cp-footer .f-bottom { justify-content: center; text-align: center; }
}

/* ---------- Header: Lezzet Hattı kutu-butonu ---------- */
.cp-header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #fff4ea, #ffe9d4);
  border: 1.5px solid #ffd9b8;
  border-radius: 999px;
  padding: 6px 18px 6px 7px;
  margin-left: 18px;
  transition: .25s;
}
.cp-header-phone:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 22px -10px rgba(255, 107, 0, .5);
  transform: translateY(-1px);
}
.cp-header-phone .icon {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), #ff9a3d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 5px 12px -4px rgba(255, 107, 0, .55);
}
.cp-header-phone .txt { display: flex; flex-direction: column; line-height: 1.25; }
.cp-header-phone .txt small { font-size: 10px; color: #b06a1e; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.cp-header-phone .txt strong { font-weight: 800; font-size: 14px; color: #222; white-space: nowrap; }
.cp-header-phone:hover .txt strong { color: var(--primary); }

/* ---------- Adet kutusu ---------- */
.cp-qty-box { background: #fff; }
.cp-qty-box button {
  color: var(--primary) !important;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  background: transparent !important;
  padding: 8px 13px;
}
.cp-qty-box button:hover { background: var(--bg-light) !important; }
.cp-qty-box input { -moz-appearance: textfield; appearance: textfield; }
.cp-qty-box input::-webkit-inner-spin-button, .cp-qty-box input::-webkit-outer-spin-button { display: none; }

/* ---------- İletişim kartları ---------- */
.cp-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.cp-contact-card {
  background: #fff;
  border: 1px solid #f0e9e0;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 8px 24px -10px rgba(74, 46, 20, .12);
  transition: transform .25s, box-shadow .25s;
}
.cp-contact-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px -14px rgba(74, 46, 20, .22); }
.cp-contact-card .icon {
  width: 62px; height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--rgba-primary-1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cp-contact-card h4 { font-size: 17px; margin-bottom: 8px; font-family: var(--font-family-base); font-weight: 700; }
.cp-contact-card p { margin: 0; color: #6e6259; font-size: 14px; }
.cp-contact-card a { color: var(--primary); font-weight: 700; }
@media (max-width: 767px) { .cp-contact-cards { grid-template-columns: 1fr; } }

/* ---------- Tam banner slide ---------- */
/* Şablonun 930px sabit hero yüksekliğini tam-banner slide'larda sıfırla */
.main-bnr-one .swiper-slide.slide-full .banner-inner {
  height: auto !important;
  min-height: 0;
  padding: 0;
  background: transparent;
  display: block;
}
.main-bnr-one .swiper-slide.slide-full .banner-inner::after { display: none !important; }
.slide-full .full-media { display: block; width: 100%; line-height: 0; }
.slide-full .full-media img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: cover;
  display: block;
}

/* İçerikli slide'da sağdaki görsel */
.banner-media .main-food-img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 70px -20px rgba(255, 107, 0, .45);
  border: 8px solid #fff;
  animation: cpFloat 5s ease-in-out infinite;
}
@keyframes cpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Kategori kartları ---------- */
.cp-category-card {
  position: relative;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: #222;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cp-category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .3); }
.cp-category-card img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .5s, opacity .3s; }
.cp-category-card:hover img { transform: scale(1.08); opacity: .72; }
.cp-category-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 12px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8));
  font-family: var(--font-family-title);
}

/* ---------- Ürün kartı (dz-img-box style-2) fiyat/indirim ---------- */
.dz-img-box.style-2 .old-price { text-decoration: line-through; color: #aaa; font-size: 14px; margin-right: 8px; }
.dz-img-box.style-2 .dz-media img { aspect-ratio: 1/1; object-fit: cover; }
.dz-img-box.style-2 .dz-content p { min-height: auto; }

/* Shop list kartı görseli */
.dz-shop-card.style-1 .dz-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- WhatsApp sohbet widget'ı (sol alt, yatay buton + panel) ---------- */
/* z-index: bootstrap sticky-top (1020) üzerinde, modallar (1055) altında */
.cp-wa { position: fixed; left: 20px; bottom: 20px; z-index: 1040; }
.cp-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #25D366, #1a9e4d);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  font-family: var(--font-family-base);
  padding: 12px 22px 12px 14px;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .25s, box-shadow .25s;
}
.cp-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(37, 211, 102, .55); }
.cp-wa-btn svg { flex: none; }
.cp-fab-caret { font-size: 13px; opacity: .8; transition: transform .25s; }
.cp-wa-btn.open .cp-fab-caret { transform: rotate(180deg); }

/* Açılır iletişim ikonları (üst üste) */
.cp-fab-items {
  position: absolute;
  bottom: 62px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: cpWaIn .25s cubic-bezier(.2, 1.2, .4, 1);
}
.fab-item {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0;
  cursor: pointer;
  color: #fff !important;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  padding: 0;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  transition: width .25s ease, gap .25s, padding .25s, transform .2s;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-family-base);
}
.fab-item span { font-size: 13.5px; font-weight: 700; max-width: 0; opacity: 0; transition: max-width .25s, opacity .2s; }
.fab-item:hover { width: auto; padding: 0 18px; gap: 10px; transform: translateX(4px); }
.fab-item:hover span { max-width: 200px; opacity: 1; }
.cp-wa-panel {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 330px;
  max-width: calc(100vw - 40px);
  background: #e7dfd5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .3);
  animation: cpWaIn .28s cubic-bezier(.2, 1.2, .4, 1);
}
@keyframes cpWaIn { from { transform: translateY(14px) scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }
.cp-wa-head {
  background: #075E54;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cp-wa-head img {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 3px;
}
.cp-wa-head .t strong { display: block; font-size: 15px; }
.cp-wa-head .t small { font-size: 11.5px; opacity: .8; }
.cp-wa-head .cp-wa-close {
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: .8;
}
.cp-wa-head .cp-wa-close:hover { opacity: 1; }
.cp-wa-body {
  padding: 18px 16px 14px;
  background: #e7dfd5 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d9cfc1' fill-opacity='.35'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='40' cy='30' r='2'/%3E%3Ccircle cx='20' cy='48' r='2'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 120px;
}
.cp-wa-msg {
  background: #fff;
  border-radius: 4px 14px 14px 14px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: #333;
  max-width: 85%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  position: relative;
}
.cp-wa-msg small { display: block; color: #9aa0a6; font-size: 10.5px; text-align: right; margin-top: 4px; }
.cp-wa-foot { padding: 12px 16px 16px; background: #e7dfd5; }
.cp-wa-start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px;
  border-radius: 30px;
  transition: .25s;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
}
.cp-wa-start:hover { background: #1fb457; transform: translateY(-2px); }
@media (max-width: 575px) {
  .cp-wa { left: 12px; bottom: 12px; }
  .cp-wa-btn span { display: none; }           /* mobilde sadece ikon */
  .cp-wa-btn { padding: 13px; border-radius: 50%; }
}

/* ---------- Header arama çubuğu ---------- */
.cp-nav-search {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1.5px solid #f3e3d1;
  border-radius: 30px;
  overflow: hidden;
  margin-left: 14px;
  transition: border-color .25s, box-shadow .25s;
}
.cp-nav-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 107, 0, .1); }
.cp-nav-search input {
  border: 0;
  background: transparent;
  padding: 9px 4px 9px 16px;
  width: 170px;
  font-size: 13.5px;
  font-family: var(--font-family-base);
  outline: 0;
}
.cp-nav-search button {
  border: 0;
  background: transparent;
  color: var(--primary);
  padding: 9px 14px;
  cursor: pointer;
  font-size: 15px;
}
@media (max-width: 991px) {
  .cp-nav-search { margin: 10px 18px; }
  .cp-nav-search input { width: 100%; flex: 1; }
}

/* Mobilde yatay taşma/sağ boşluk engeli */
html, body { overflow-x: hidden; max-width: 100%; }
.page-wraper { overflow-x: clip; }
.cp-megamenu { max-width: calc(100vw - 16px); }
@media (max-width: 767px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .cp-slide-split { padding: 26px 16px; }
  .cp-h-actions { gap: 8px; }
}

/* Tencere kapağı animasyonunu kaldır */
.anim-logo::after, .anim-logo-white::after { display: none !important; content: none !important; }

/* ---------- Logo boyutu (admin > Ayarlar > Logo Genişliği) ---------- */
.logo-header { width: auto !important; max-width: 240px; height: auto !important; display: flex; align-items: center; }
.logo-header img {
  width: var(--logo-w, 150px) !important;
  max-width: 100%;
  max-height: 76px !important;
  object-fit: contain;
}
@media (max-width: 767px) { .logo-header img { width: min(var(--logo-w, 150px), 130px) !important; max-height: 60px !important; } }

/* Sağdaki aksiyonlar (telefon, arama, sipariş) dikey ortalı dursun — sadece dış liste! */
.site-header.style-1 .extra-nav .extra-cell > ul { display: flex; align-items: center; gap: 10px; }
.site-header.style-1 .extra-nav .extra-cell > ul > li { display: flex; align-items: center; position: relative; }

/* Masaüstünde header'ı flex'e al: menü ile sağ blok asla çakışamaz */
@media (min-width: 992px) {
  .site-header.style-1 .main-bar > .container {
    display: flex;
    align-items: center;
    min-height: 90px;
  }
  .site-header.style-1 .main-bar > .container > .logo-header { order: 1; flex: none; position: static; }
  .site-header.style-1 .main-bar > .container > .header-nav {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
  }
  .site-header.style-1 .main-bar > .container > .extra-nav {
    order: 3;
    flex: none;
    float: none;
    margin-left: 16px;
    padding-left: 0;
    height: auto;
  }
  .site-header.style-1 .header-nav .nav > li > a { white-space: nowrap; }
}
/* Menü linkleri kompakt, taşma yok */
@media (min-width: 1200px) {
  .site-header.style-1 .header-nav .nav > li > a { padding-left: 12px; padding-right: 12px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-header.style-1 .header-nav .nav > li > a { padding-left: 8px; padding-right: 8px; font-size: 13px; }
}
/* Dar masaüstünde arama kutusu küçülsün ki sağ blok menüye girmesin */
@media (max-width: 1549px) { .cp-nav-search input { width: 120px; } }
@media (max-width: 1299px) { .cp-header-phone { display: none; } }

/* ---------- Masaüstünde daha büyük slider ---------- */
@media (min-width: 1200px) {
  .cp-hero .container { max-width: 1400px; }
  .cp-slide-full img { max-height: 82vh; }
  .cp-slide-split { min-height: 520px; }
}

/* ---------- Header düzeni: menü tek satır, sağa yaslı aksiyonlar ---------- */
@media (min-width: 992px) {
  .header-nav .nav.navbar-nav { flex-wrap: nowrap; }
  .header-nav .nav > li > a { white-space: nowrap; padding-left: 12px; padding-right: 12px; }
}

/* ============================================================
   CP-HEADER — sıfırdan, şablondan tamamen bağımsız
   ============================================================ */
.cp-header {
  position: sticky;
  top: 0;
  z-index: 600;
  background: #fff;
  box-shadow: 0 2px 16px rgba(74, 46, 20, .08);
}
.cp-h-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
}
.cp-h-logo { flex: none; display: flex; align-items: center; }
.cp-h-logo img { width: var(--logo-w, 150px); max-height: 66px; object-fit: contain; }
.cp-h-logo span { font-size: 24px; font-weight: 800; color: var(--primary); }

/* Menü — içerik genişliğinde; aksiyonlar sağa yaslanır, üst üste binme imkânsız */
.cp-h-nav { flex: 0 0 auto; }
.cp-h-actions { margin-left: auto; }
.cp-h-nav > ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.cp-h-nav > ul > li { position: relative; }
.cp-h-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 30px 13px;
  font-weight: 600;
  font-size: 14.5px;
  color: #2b2b2b;
  white-space: nowrap;
  position: relative;
  transition: color .2s;
}
.cp-h-nav > ul > li > a::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.cp-h-nav > ul > li:hover > a { color: var(--primary); }
.cp-h-nav > ul > li:hover > a::after { transform: scaleX(1); }
.cp-caret { font-size: 10px; opacity: .5; }

/* Alt menü (Kurumsal) */
.cp-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 22px 40px -16px rgba(0, 0, 0, .25);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease .12s, visibility .18s ease .12s, transform .18s ease .12s;
  z-index: 620;
}
.cp-has-sub:hover .cp-sub, .cp-sub:hover {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.cp-sub a { display: block; padding: 10px 22px; font-weight: 600; font-size: 13.5px; color: #444; transition: .2s; }
.cp-sub a:hover { background: var(--bg-light); color: var(--primary); padding-left: 28px; }

/* Sağ aksiyonlar */
.cp-h-actions { flex: none; display: flex; align-items: center; gap: 12px; }

/* Sepet popover */
.cp-cart-wrap { position: relative; }
.cp-cart-pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0e5d6;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .3);
  padding: 16px;
  z-index: 650;
}
.cp-cart-pop .empty { text-align: center; color: #8a7d6e; margin: 8px 0 14px; }
.cp-cart-pop ul { list-style: none; margin: 0 0 10px; padding: 0; }
.cp-cart-pop li { display: flex; gap: 10px; align-items: center; padding: 7px 0; border-bottom: 1px dashed #f0e5d6; }
.cp-cart-pop li img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex: none; }
.cp-cart-pop .ci a { font-weight: 700; font-size: 13px; color: #222; display: block; line-height: 1.3; }
.cp-cart-pop .ci a:hover { color: var(--primary); }
.cp-cart-pop .ci span { font-size: 12px; color: var(--primary); font-weight: 700; }
.cp-cart-total { display: flex; justify-content: space-between; align-items: center; padding: 8px 0 12px; font-size: 14px; }
.cp-cart-total strong { color: var(--primary); font-size: 17px; }
.cp-cart-btns { display: flex; gap: 8px; }

/* Hamburger (mobil) */
.cp-h-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  cursor: pointer;
  padding: 12px 11px;
}
.cp-h-burger span { display: block; height: 2.5px; border-radius: 3px; background: #fff; transition: .3s; }
.cp-h-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.cp-h-burger.open span:nth-child(2) { opacity: 0; }
.cp-h-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobil panel */
.cp-mobile-panel {
  background: #fff;
  border-top: 1px solid #f0e5d6;
  box-shadow: 0 24px 40px -18px rgba(0, 0, 0, .2);
  padding: 16px 18px 20px;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
}
.cp-m-search { display: flex; border: 2px solid #f1e6d8; border-radius: 30px; overflow: hidden; margin-bottom: 12px; }
.cp-m-search input { flex: 1; border: 0; outline: 0; padding: 10px 16px; font-size: 14px; font-family: var(--font-family-base); }
.cp-m-search button { border: 0; background: var(--primary); color: #fff; padding: 0 18px; }
.cp-m-nav { list-style: none; margin: 0; padding: 0; }
.cp-m-nav li { border-bottom: 1px solid #f6efe6; }
.cp-m-nav a, .cp-m-subtoggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 4px;
  font-weight: 600;
  font-size: 15px;
  color: #2b2b2b;
  background: none;
  border: 0;
  text-align: left;
}
.cp-m-nav a:hover, .cp-m-subtoggle:hover { color: var(--primary); }
.cp-m-nav ul { list-style: none; padding: 0 0 8px 16px; }
.cp-m-nav ul li { border: 0; }
.cp-m-nav ul a { padding: 8px 4px; font-size: 14px; color: #6d5b49; }
.cp-m-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(120deg, #fff4ea, #ffe9d4);
  border: 1.5px solid #ffd9b8;
  font-size: 14px;
  color: #55483d;
}
.cp-m-phone i { color: var(--primary); }
.cp-m-phone strong { color: var(--primary); }

/* Kırılımlar (dosya sırasından bağımsız kesin kurallar) */
.cp-nav-search input { width: 120px !important; }    /* kompakt arama: her genişlikte sığar */
.cp-header-phone { display: none !important; }       /* Lezzet Hattı kutusu yalnız geniş ekranda */
@media (min-width: 1500px) { .cp-header-phone { display: flex !important; } }
@media (max-width: 1199px) {
  .cp-nav-search { display: none !important; }
  .cp-h-nav > ul > li > a { padding-left: 10px; padding-right: 10px; font-size: 13.5px; }
}
@media (max-width: 991px) {
  .cp-h-nav { display: none; }
  .cp-h-burger { display: flex; }
  .cp-h-row { min-height: 72px; }
  .cp-account-btn { display: none; }
}
@media (min-width: 992px) {
  .cp-mobile-panel { display: none !important; }
}

/* ---------- Header arama çubuğu (görünür pill) ---------- */
.cp-nav-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #f1e6d8;
  border-radius: 30px;
  overflow: hidden;
  padding: 3px 3px 3px 18px;
  margin: 0 10px 0 26px;   /* menü ile arasında nefes payı */
  box-shadow: 0 4px 14px -6px rgba(74, 46, 20, .12);
  transition: border-color .25s, box-shadow .25s;
}
.cp-nav-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 107, 0, .1); }
.cp-nav-search input {
  border: 0;
  background: transparent;
  width: 165px;
  font-size: 13.5px;
  font-family: var(--font-family-base);
  outline: 0;
  padding: 7px 6px 7px 0;
}
.cp-nav-search button {
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  flex: none;
}
.cp-nav-search button:hover { background: var(--primary-hover); transform: rotate(8deg); }

/* ---------- Hesap butonu ---------- */
.cp-account-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid #f1e6d8;
  color: #55483d;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}
.cp-account-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.cp-acc-dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #28a745;
  border: 2px solid #fff;
}

/* ---------- Sipariş butonu (çanta yerine servis tepsisi) ---------- */
.cp-order-btn {
  position: relative;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--ember, linear-gradient(120deg, #ff6b00, #ff9a3d));
  background: linear-gradient(120deg, var(--primary), #ff9a3d);
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(255, 107, 0, .55);
  transition: .25s;
}
.cp-order-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 26px -8px rgba(255, 107, 0, .65); }
.cp-order-btn .badge {
  position: absolute;
  top: -7px; right: -7px;
  background: #1c2433;
  color: #ffb377;
  min-width: 21px; height: 21px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
}

/* ---------- Mega menü (Ürünlerimiz) — kompakt, solda reklam sağda 3 ürün ---------- */
.cp-has-mega { position: static !important; }
.cp-megamenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: 100%;
  width: min(880px, 94vw);
  background: #fff;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 26px 46px -18px rgba(0, 0, 0, .28);
  padding: 18px 20px 14px;
  z-index: 350;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease .14s, visibility .18s ease .14s, transform .18s ease .14s;
}
/* Link ile panel arasındaki boşlukta hover kopmasın diye görünmez köprü */
.cp-megamenu::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 0; right: 0;
  height: 26px;
}
@media (min-width: 992px) {
  .cp-has-mega:hover .cp-megamenu,
  .cp-megamenu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
}
.cp-megamenu .mm-grid { display: flex; gap: 18px; align-items: stretch; }
.cp-megamenu .mm-ad { flex: 0 0 240px; order: 1; }
.cp-megamenu .mm-ad img {
  width: 240px; height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, .22);
}
.cp-megamenu .mm-products { flex: 1; order: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cp-mm-product {
  border: 1px solid #f0e9e0;
  border-radius: 10px;
  padding: 9px;
  text-align: center;
  transition: .25s;
  display: block;
}
.cp-mm-product:hover { border-color: #ffd2ad; box-shadow: 0 10px 20px -8px rgba(74, 46, 20, .18); transform: translateY(-3px); }
.cp-mm-product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; max-height: 150px; }
.cp-mm-product .t { font-weight: 700; font-size: 12.5px; margin: 8px 0 2px; color: #222; line-height: 1.3; }
.cp-mm-product .p { color: var(--primary); font-weight: 800; font-size: 13.5px; }
.cp-megamenu .mm-foot { text-align: center; margin-top: 12px; padding-top: 10px; border-top: 1px dashed #eee; }
@media (max-width: 991px) { .cp-megamenu { display: none !important; } }

/* ---------- Kurumsal sayfa kartı + içindekiler ---------- */
.cp-page-card {
  background: #fff;
  border: 1px solid #f0e9e0;
  border-radius: 16px;
  padding: 34px 38px;
  box-shadow: 0 14px 34px -18px rgba(74, 46, 20, .18);
}
@media (max-width: 767px) { .cp-page-card { padding: 22px 18px; } }
.cp-toc {
  background: var(--bg-light);
  border: 1px dashed #eeD8bf;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.cp-toc-title { font-weight: 800; margin-bottom: 10px; color: #222; }
.cp-toc-title i { color: var(--primary); margin-right: 7px; }
.cp-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
@media (max-width: 767px) { .cp-toc ol { columns: 1; } }
.cp-toc li { padding: 3px 0; font-size: 13.5px; break-inside: avoid; }
.cp-toc li.lv3 { padding-left: 12px; list-style: circle; }
.cp-toc a { color: #6d5b49; }
.cp-toc a:hover { color: var(--primary); }

.cp-page-body h1 { font-size: 28px; }
.cp-page-body h2 {
  font-size: 22px;
  margin: 34px 0 14px;
  padding: 12px 16px;
  background: linear-gradient(90deg, var(--rgba-primary-1), transparent);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  scroll-margin-top: 110px;
  font-weight: 700;
  font-family: var(--font-family-base);
}
.cp-page-body h3 { font-size: 18px; margin: 24px 0 10px; color: #222; scroll-margin-top: 110px; font-weight: 700; font-family: var(--font-family-base); }
.cp-page-body p { margin-bottom: 14px; color: #4a4038; line-height: 1.75; }
.cp-page-body ul, .cp-page-body ol { padding-left: 24px; margin-bottom: 16px; }
.cp-page-body li { margin-bottom: 6px; color: #4a4038; }
.cp-page-body img { border-radius: 12px; margin: 10px 0 18px; box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .22); }
.cp-page-body table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.cp-page-body td, .cp-page-body th { border: 1px solid #eee5d9; padding: 9px 13px; }
.cp-page-body blockquote { border-left: 4px solid var(--primary); background: var(--bg-light); padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 16px 0; }

.cp-side-links { list-style: none; padding: 0; margin: 0; }
.cp-side-links li { border-bottom: 1px dashed #f0e5d6; }
.cp-side-links li:last-child { border-bottom: 0; }
.cp-side-links a { display: block; padding: 10px 2px; font-weight: 600; font-size: 14px; color: #55483d; transition: .2s; }
.cp-side-links a::before { content: '›'; color: var(--primary); margin-right: 8px; font-weight: 800; }
.cp-side-links a:hover { color: var(--primary); padding-left: 7px; }

/* ============================================================
   ÜRÜN DETAY v3 — sipariş odaklı
   ============================================================ */
.cp-pd-media {
  position: sticky;
  top: 110px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -22px rgba(74, 46, 20, .35);
  border: 8px solid #fff;
  outline: 1px solid #f0e9e0;
  background: var(--bg-light);
}
.cp-pd-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.cp-pd-sale {
  position: absolute;
  top: 16px; left: 16px;
  background: #e02b2b;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(224, 43, 43, .4);
}
.cp-pd-info { max-width: 560px; }
.cp-pd-cat {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.cp-pd-cat::before { content: '● '; font-size: 9px; vertical-align: 2px; }
.cp-pd-cat:hover { text-decoration: underline; }
.cp-pd-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  font-family: var(--font-family-base);
  line-height: 1.25;
  margin-bottom: 12px;
  color: #21252b;
}
.cp-pd-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1ebe2;
}
.cp-pd-price del { color: #b9aea1; font-size: 17px; }
.cp-pd-price strong { color: var(--primary); font-size: 30px; font-weight: 800; letter-spacing: -.01em; }
.cp-pd-desc {
  color: #4c4c4c;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.cp-pd-desc p { margin-bottom: 10px; }
.cp-pd-desc strong { color: #222; }

/* Sipariş kutusu — sade ve net */
.cp-order-box {
  background: #fffdf9;
  border: 1px solid #eee3d4;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px -16px rgba(74, 46, 20, .18);
}
.cp-order-box .ob-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.cp-order-box .lbl { display: block; font-size: 12px; color: #9a8d7e; font-weight: 600; margin-bottom: 6px; }
.cp-order-box .cp-qty-box { border: 2px solid #f0e5d6; border-radius: 999px; overflow: hidden; }
.cp-order-box .cp-qty-box input { width: 54px; text-align: center; border: 0; font-weight: 800; font-size: 16px; }
.cp-order-box .ob-total { text-align: right; }
.cp-order-box .ob-total strong { font-size: 27px; color: var(--primary); font-weight: 800; }
.cp-big-add {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--primary), #ff9a3d);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  font-family: var(--font-family-base);
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 26px -8px rgba(255, 107, 0, .55);
  transition: .25s;
}
.cp-big-add:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(255, 107, 0, .65); filter: saturate(1.1); }
.cp-big-add:active { transform: scale(.98); }
.cp-big-add i { font-size: 21px; }
.cp-order-box .ob-alt { display: flex; gap: 10px; margin-top: 12px; }
.cp-order-box .ob-wa, .cp-order-box .ob-tel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  transition: .25s;
  white-space: nowrap;
}
.cp-order-box .ob-wa { background: #e9f9ef; color: #1a9e4d; }
.cp-order-box .ob-wa:hover { background: #25D366; color: #fff; }
.cp-order-box .ob-tel { background: var(--bg-light); color: #55483d; }
.cp-order-box .ob-tel:hover { background: var(--primary); color: #fff; }

/* Güven satırı */
.cp-pd-trust {
  list-style: none;
  padding: 14px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #f1ebe2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.cp-pd-trust li { font-size: 13px; color: #8a7d6e; display: flex; align-items: center; gap: 7px; }
.cp-pd-trust i { color: var(--primary); font-size: 16px; }

/* Paylaş */
.cp-pd-share { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed #eee1d2; }
.cp-pd-share span { font-weight: 700; font-size: 13.5px; margin-right: 4px; }
.cp-pd-share a, .cp-pd-share button {
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: .25s;
}
.cp-pd-share a:hover, .cp-pd-share button:hover { transform: translateY(-3px) scale(1.08); }

/* Mobil sabit çubuk */
.cp-pd-stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1035;
  background: #fff;
  border-top: 1px solid #f0e5d6;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 14px;
}
.cp-pd-stickybar .sb-price { line-height: 1.2; }
.cp-pd-stickybar .sb-price small { display: block; color: #a3968a; font-size: 11.5px; }
.cp-pd-stickybar .sb-price strong { color: var(--primary); font-size: 20px; font-weight: 800; }
.cp-pd-stickybar .cp-big-add { flex: 1; padding: 13px; font-size: 15.5px; }
/* Mobilde ürün sayfasındayken WhatsApp widget'ı çubuğun üstüne çık */
@media (max-width: 991px) {
  body:has(.cp-pd-stickybar) .cp-wa { bottom: 84px; }
}

/* ---------- Form kartı + onay listesi (İK, kurumsal yan kutular) ---------- */
.cp-form-card {
  background: #fff;
  border: 1px solid #f0e9e0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 34px -18px rgba(74, 46, 20, .16);
}
.cp-check-list { list-style: none; padding: 0; margin: 0; }
.cp-check-list li { padding: 7px 0 7px 30px; position: relative; color: #55483d; font-size: 14.5px; }
.cp-check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 6px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Popup ---------- */
.cp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cp-popup-box {
  position: relative;
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.cp-popup-box img { display: block; width: 100%; }
.cp-popup-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}
.cp-popup-close:hover { background: var(--primary); }

/* ---------- Toast ---------- */
.cp-toast {
  position: fixed;
  bottom: 92px;
  right: 20px;
  background: #222;
  color: #ffb377;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  z-index: 1650;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: .3s;
  pointer-events: none;
}
.cp-toast.show { opacity: 1; transform: translateY(0); }

/* ---------- Reklam alanları ---------- */
.ad-slot { text-align: center; margin: 14px auto; max-width: 1280px; padding: 0 15px; }
.ad-slot img { border-radius: 10px; max-width: 100%; }

/* ---------- Footer ince ayar ---------- */
.site-footer.style-3 .footer-script {
  font-family: 'Lobster Two', cursive;
  font-size: 22px;
  color: #f5c99b;
  line-height: 1.5;
}
.site-footer.style-3 .footer-info li { display: flex; gap: 10px; padding: 6px 0; font-size: 14.5px; align-items: baseline; }
.site-footer.style-3 .footer-info i { color: var(--primary); }
.site-footer.style-3 .footer-info a:hover { color: var(--primary); }

/* İçerik alanı tipografisi */
.cp-content h2 { margin-top: 28px; }
.cp-content img { border-radius: 10px; }
.cp-content blockquote { border-left: 4px solid var(--primary); padding: 12px 18px; background: var(--bg-light); }

/* GTranslate hizalama */
.cp-topbar .gtranslate_wrapper { display: inline-flex; align-items: center; }

/* Ödeme yöntemleri */
.pay-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  transition: .2s;
}
.pay-methods label:has(input:checked) { border-color: var(--primary); background: var(--bg-light); }
.pay-methods input { accent-color: var(--primary); }

/* ============================================================
   CİHAZA GÖRE SLIDER — masaüstü ve mobil slaytlar ayrı yönetilir
   (admin > Slider: "Masaüstü" / "Mobil" sekmeleri)
   ============================================================ */
.cp-hero-mobile { display: none; }
@media (max-width: 767px) {
  .cp-hero-desktop { display: none; }
  .cp-hero-mobile { display: block; }
  /* Mobil slaytlar genelde dikey → yükseklik sınırını kaldır */
  .cp-hero-mobile .cp-slide-full img { max-height: none; }
}

/* ============================================================
   ANA SAYFA — bölümler arası boşluğu sıkılaştır
   ============================================================ */
.cp-home .content-inner { padding-top: 54px; padding-bottom: 44px; }
.cp-home .content-inner-1 { padding-top: 54px; padding-bottom: 54px; }
.cp-home .section-head { margin-bottom: 26px; }
.cp-home .section-head .title { margin-bottom: 8px; }
.cp-home .cp-hero { padding: 16px 0 6px; }
.cp-home .m-b30 { margin-bottom: 22px; }
.cp-home .content-inner .m-t20 { margin-top: 6px !important; }
@media (max-width: 991px) {
  .cp-home .content-inner { padding-top: 38px; padding-bottom: 30px; }
  .cp-home .content-inner-1 { padding-top: 38px; padding-bottom: 38px; }
  .cp-home .section-head { margin-bottom: 20px; }
}
@media (max-width: 575px) {
  .cp-home .content-inner { padding-top: 30px; padding-bottom: 24px; }
  .cp-home .content-inner-1 { padding-top: 30px; padding-bottom: 30px; }
  .cp-home .section-head { margin-bottom: 16px; }
}

/* ============================================================
   GİRİŞ / ÜYE OL SAYFASI (/hesap/)
   ============================================================ */
.cp-auth { padding: 46px 0 64px; background:
  radial-gradient(ellipse at 12% 0%, rgba(255, 154, 61, .16), transparent 55%),
  linear-gradient(180deg, #fffaf5 0%, #fff 60%); }
.cp-auth-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  max-width: 1020px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(74, 46, 20, .38);
  border: 1px solid #f2ebe3;
}

/* Sol tanıtım paneli */
.cp-auth-aside {
  position: relative;
  padding: 44px 40px;
  color: #fff;
  background:
    radial-gradient(ellipse at 85% 12%, rgba(255, 190, 130, .38), transparent 58%),
    linear-gradient(150deg, #ff8c42 0%, #ff6b00 45%, #c25200 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cp-auth-aside .kicker {
  font-family: 'Lobster', cursive;
  font-size: 26px;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 6px;
  color: #fff3e6;
}
.cp-auth-aside h2 { color: #fff; font-size: 32px; font-weight: 800; line-height: 1.2; margin: 0 0 12px; }
.cp-auth-aside p { color: rgba(255, 255, 255, .9); font-size: 15px; margin-bottom: 22px; }
.cp-auth-perks { list-style: none; padding: 0; margin: 0 0 26px; }
.cp-auth-perks li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14.5px; font-weight: 500; padding: 7px 0; color: #fff;
}
.cp-auth-perks li span.ico {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, .22); display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.cp-auth-aside .guest-note {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.cp-auth-aside .guest-note a { color: #fff; font-weight: 700; text-decoration: underline; }

/* Sağ form paneli */
.cp-auth-main { padding: 40px 42px; }
.cp-auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #f6f1ec;
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 26px;
}
.cp-auth-switch button {
  border: 0; background: transparent; border-radius: 10px;
  padding: 11px 8px; font-weight: 700; font-size: 15px; color: #8a7d6e; cursor: pointer; transition: .22s;
}
.cp-auth-switch button.on { background: #fff; color: var(--primary); box-shadow: 0 6px 16px -8px rgba(74, 46, 20, .5); }
.cp-auth-main h3 { font-size: 23px; font-weight: 800; margin-bottom: 4px; }
.cp-auth-main .sub { color: #8a7d6e; font-size: 14px; margin-bottom: 22px; }

.cp-field { margin-bottom: 15px; }
.cp-field label { display: block; font-size: 13px; font-weight: 700; color: #55483d; margin-bottom: 6px; }
.cp-field .box { position: relative; }
.cp-field .box > .ico {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #c4b6a8; font-size: 15px; pointer-events: none;
}
.cp-field input {
  width: 100%;
  height: 50px;
  border: 1.5px solid #ece4da;
  border-radius: 12px;
  padding: 0 44px 0 42px;
  font-size: 15px;
  background: #fdfbf9;
  transition: .2s;
}
.cp-field input:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--rgba-primary-1);
}
.cp-field .toggle-pass {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: #a3968a; font-size: 15px; cursor: pointer; padding: 6px 8px;
}
.cp-field .hint { font-size: 12px; color: #a3968a; margin-top: 5px; }
.cp-auth-submit {
  width: 100%; height: 52px; border: 0; border-radius: 12px;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 16px; cursor: pointer;
  box-shadow: 0 14px 28px -14px rgba(255, 107, 0, .95); transition: .22s;
}
.cp-auth-submit:hover { background: var(--primary-hover); transform: translateY(-1px); }
.cp-auth-alt { text-align: center; font-size: 14px; color: #8a7d6e; margin: 18px 0 0; }
.cp-auth-alt button { border: 0; background: transparent; color: var(--primary); font-weight: 800; cursor: pointer; padding: 0; }
.cp-auth-err {
  background: #fff1f0; border: 1px solid #ffd3ce; color: #b02a20;
  border-radius: 12px; padding: 12px 14px; font-size: 14px; font-weight: 600; margin-bottom: 18px;
}
.cp-auth-ok {
  background: #eefaf0; border: 1px solid #c7ecd0; color: #1d7a37;
  border-radius: 12px; padding: 12px 14px; font-size: 14px; font-weight: 600; margin-bottom: 18px;
}
@media (max-width: 900px) {
  .cp-auth-wrap { grid-template-columns: 1fr; max-width: 520px; }
  .cp-auth-aside { padding: 30px 26px; }
  .cp-auth-aside h2 { font-size: 26px; }
  .cp-auth-aside .cp-auth-perks { margin-bottom: 18px; }
  .cp-auth-main { padding: 28px 24px 32px; }
}
@media (max-width: 575px) {
  .cp-auth { padding: 18px 0 34px; }
  .cp-auth-wrap { border-radius: 18px; }
  /* Telefonda form hemen görünsün: tanıtım paneli kısaltılır */
  .cp-auth-aside { padding: 22px 20px; }
  .cp-auth-aside h2 { font-size: 22px; }
  .cp-auth-aside > p { margin-bottom: 14px; font-size: 14px; }
  .cp-auth-perks { display: none; }
  .cp-auth-aside .guest-note { padding: 11px 13px; font-size: 13px; }
  .cp-auth-main { padding: 22px 18px 26px; }
  .cp-auth-main h3 { font-size: 20px; }
  .cp-auth-main .sub { margin-bottom: 16px; }
  .cp-auth-switch { margin-bottom: 18px; }
}

/* ---------- Hesabım (girişli) ---------- */
.cp-acc-head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(120deg, #fff6ee, #ffe9d6);
  border: 1px solid #f6e3d1; border-radius: 18px; padding: 20px 22px; margin-bottom: 24px;
}
.cp-acc-head .av {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
}
.cp-acc-head h2 { font-size: 22px; margin: 0 0 2px; font-weight: 800; }
.cp-acc-head p { margin: 0; color: #8a7d6e; font-size: 14px; }
.cp-acc-stats { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.cp-acc-stats .st { background: #fff; border-radius: 12px; padding: 10px 16px; text-align: center; border: 1px solid #f2e5d8; }
.cp-acc-stats .st strong { display: block; font-size: 19px; color: var(--primary); line-height: 1.2; }
.cp-acc-stats .st span { font-size: 12px; color: #8a7d6e; }
