/* İlkay Kuyumculuk benzeri kuyumcu vitrin teması */

:root {
  --ky-black: #111111;
  --ky-text: #1a1a1a;
  --ky-muted: #555555;
  --ky-line: #e8e4dc;
  --ky-bg: #ffffff;
  --ky-cream: #f2f0eb;
  --ky-sale: #c45c26;
  --ky-gold: #c4a574;
  --ky-gold-dark: #9a7b4f;
  --ky-serif: "Bodoni Moda", "Times New Roman", serif;
  --ky-sans: "Quicksand", "Segoe UI", sans-serif;
}

html,
body {
  font-family: var(--ky-sans);
  color: var(--ky-text);
  background: var(--ky-bg);
}

body.preload-wrapper .preload-container {
  display: none !important;
}

a {
  color: inherit;
}

#wrapper {
  overflow-x: hidden;
}

/* ---------- Üst şerit ---------- */
.announcement-bar {
  display: none !important;
}

.ky-topbar {
  background: transparent;
  color: #333;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ky-topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 40px;
}

.ky-topbar a,
.ky-topbar span,
.ky-topbar button {
  color: var(--ky-text);
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.ky-topbar a:hover,
.ky-topbar button:hover,
.ky-action:hover,
.ky-nav .box-nav-ul > .menu-item > .item-link:hover,
.ky-nav .box-nav-ul > .menu-item:hover > .item-link {
  color: #000 !important;
  opacity: 0.65;
}

.ky-topbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  min-width: 0;
}

.ky-topbar-center {
  text-align: center;
  font-size: 11px;
  color: #666;
  text-transform: none;
  letter-spacing: 0;
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ky-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.ky-lang {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.ky-lang::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}

.ky-topbar-left .ky-phone {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
}

.ky-kur {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 5px 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ky-kur-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ky-kur-kay 42s linear infinite;
}

.ky-topbar .ky-kur-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 11px;
  color: var(--ky-text);
  cursor: default;
}

.ky-kur-item em {
  font-style: normal;
  font-weight: 600;
  color: var(--ky-gold-dark);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 10px;
}

.ky-kur-item b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ky-kur-item i {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
}

.ky-kur-item.ky-up i {
  color: #1a7f4b;
}

.ky-kur-item.ky-down i {
  color: #b42318;
}

.ky-kur:hover .ky-kur-track {
  animation-play-state: paused;
}

@keyframes ky-kur-kay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ky-kur-track {
    animation: none;
  }
}

body.ky-home .ky-kur {
  border-top-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 1149px) {
  .ky-topbar-center-text {
    display: none;
  }
  .ky-topbar-inner {
    grid-template-columns: 1fr auto;
    padding: 8px 16px;
  }
}

@media (max-width: 767px) {
  .ky-topbar-left a:not(.ky-phone),
  .ky-topbar-right > a,
  .ky-lang {
    display: none;
  }
  .ky-kur {
    padding: 6px 0;
  }
  .ky-kur-track {
    gap: 20px;
    animation-duration: 32s;
  }
}

/* ---------- Ana header ---------- */
#header.ky-header,
#header.header-default {
  background: var(--ky-cream);
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 120;
}

body.ky-home #header.ky-header,
body.ky-home #header.header-default {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent !important;
  box-shadow: none;
}

body.ky-home .ky-topbar,
body.ky-home .ky-header-main {
  background: transparent !important;
}

body.ky-scrolled .ky-topbar {
  display: none;
}

body.ky-scrolled #header.ky-header,
body.ky-scrolled #header.header-default {
  background: transparent !important;
  box-shadow: none;
}

body.ky-home.ky-scrolled #header.ky-header,
body.ky-home.ky-scrolled #header.header-default {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent !important;
  box-shadow: none;
}

body.ky-home #wrapper {
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

@media (max-width: 1149px) {
  body.ky-home #header.ky-header,
  body.ky-home #header.header-default,
  body.ky-home.ky-scrolled #header.ky-header,
  body.ky-home.ky-scrolled #header.header-default {
    position: sticky;
    background: var(--ky-cream) !important;
  }

  body.ky-home .ky-topbar,
  body.ky-home .ky-header-main {
    background: var(--ky-cream) !important;
  }
}

.ky-header-main {
  padding: 12px 0 16px;
}

.ky-header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.ky-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.ky-header-logo {
  display: flex;
  justify-content: center;
}

.ky-header-logo .logo-header img,
.ky-header-logo .logo,
#header .logo-header img.logo {
  max-width: 220px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ky-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-shrink: 0;
  min-width: 0;
  z-index: 2;
}

.ky-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ky-text);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.ky-action .icon,
.ky-action-ico {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 1;
  color: #111;
  flex: 0 0 20px;
}

.ky-action-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ky-action-top {
  font-size: 11px;
  letter-spacing: 0.6px;
  font-weight: 500;
}

.ky-account {
  position: relative;
}

.ky-account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--ky-line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  z-index: 200;
  padding: 8px 0;
}

.ky-account.open .ky-account-menu {
  display: block;
}

.ky-account-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  color: #111;
  text-decoration: none;
}

.ky-account-menu a:hover {
  background: #f6f6f6;
}

.ky-action:hover {
  opacity: 0.65;
}

.ky-action.ky-fav .icon-heart {
  color: #e03131;
}

.ky-action .count-box,
.ky-action .ky-count {
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 0 4px;
}

.ky-action-ico .ky-count {
  position: absolute;
  top: -7px;
  right: -8px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

.ky-burger {
  display: none;
  color: #000;
}

.ky-nav {
  background: transparent;
  border: 0;
  position: relative;
  z-index: 30;
}

.ky-nav .box-nav-ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

.ky-nav .box-nav-ul > .menu-item > .item-link {
  font-family: var(--ky-sans);
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #111 !important;
  padding: 8px 10px !important;
  white-space: nowrap;
}

.ky-nav .box-nav-ul > .menu-item {
  position: relative;
  padding: 8px 0 !important;
}

.ky-nav .box-nav-ul > .menu-item > .item-link.ky-sale {
  color: var(--ky-sale) !important;
}

.ky-nav .item-link .icon-arrow-down {
  display: none;
}

.ky-header,
.ky-header-main,
.ky-header-row,
.ky-header-left,
.ky-nav {
  overflow: visible;
}

.ky-header-main {
  position: relative;
  z-index: 130;
}

.ky-nav .sub-menu {
  min-width: 220px;
  padding: 12px 0 !important;
  border-top: 1px solid var(--ky-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 1200;
}

.ky-nav .sub-menu .menu-link-text {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.2px;
}

.ky-nav .sub-menu .menu-link-text:hover {
  color: #111;
}

.ky-nav {
  position: static;
}

.ky-nav .menu-item.has-mega {
  position: static;
}

.ky-nav .ky-mega {
  left: 40px;
  right: 40px;
  top: 100%;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 28px 36px 34px !important;
  transform: none !important;
}

.ky-nav .box-nav-ul > .menu-item.has-mega:hover > .ky-mega {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: none !important;
}

.ky-mega-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px 24px;
  align-items: start;
}

.ky-mega-col {
  min-width: 0;
}

.ky-mega-title {
  display: block;
  margin-bottom: 12px;
  font-family: var(--ky-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #111;
  text-decoration: none;
}

.ky-mega-title:hover {
  color: #000;
}

.ky-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ky-mega-col li a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}

.ky-mega-col li a:hover {
  color: #111;
}

@media (max-width: 1399px) {
  .ky-mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 22px;
  }
}

.ky-nav .menu-heading {
  font-family: var(--ky-serif);
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 1150px) {
  .ky-nav {
    display: block !important;
  }
}

@media (max-width: 1149px) {
  .ky-burger {
    display: inline-flex;
  }
  .ky-action-label {
    display: none;
  }
  .ky-header-actions {
    gap: 14px;
  }
  .ky-header-row {
    padding: 0 16px;
  }
  .ky-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .ky-header-logo .logo-header img,
  .ky-header-logo .logo {
    max-width: 140px;
    max-height: 48px;
  }
}

/* ---------- Hikaye koleksiyonları ---------- */
.ky-stories {
  --ky-story-w: clamp(92px, 28vw, 140px);
  --ky-story-h: clamp(112px, 34vw, 168px);
  position: relative;
  z-index: 8;
  margin-top: 0;
  padding: 16px 10px 20px;
  background: #fff;
  pointer-events: none;
}

.ky-stories-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  pointer-events: auto;
}

.ky-stories-swiper {
  overflow: hidden;
}

.ky-stories-swiper .swiper-slide,
.ky-story-card {
  width: var(--ky-story-w) !important;
  height: var(--ky-story-h);
}

.ky-story-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.ky-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ky-stories-title {
  font-family: var(--ky-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-align: center;
  color: #111;
  margin: 22px 0 0;
}

@media (min-width: 768px) {
  .ky-stories {
    --ky-story-w: clamp(140px, 18vw, 240px);
    --ky-story-h: clamp(168px, 22vw, 280px);
    margin-top: 16px;
    padding: 0 16px 28px;
  }
}

@media (min-width: 1150px) {
  .ky-stories {
    --ky-story-w: 300px;
    --ky-story-h: 350px;
    margin-top: calc(var(--ky-story-h) * -0.5);
    padding: 0 24px 40px;
    background: transparent;
  }
}

/* ---------- Anasayfa banner grupları ---------- */
.ky-banner {
  padding: 28px 24px 48px;
}

.ky-banner + .ky-banner {
  padding-top: 8px;
}

.ky-banner-title {
  font-family: var(--ky-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: #111;
  margin: 0 0 22px;
}

.ky-banner-grid {
  display: grid;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.ky-banner-grid.tip-1 {
  grid-template-columns: 1fr;
}

.ky-banner-grid.tip-1 .ky-banner-item,
.ky-banner-grid.tip-1 .ky-banner-single {
  overflow: visible;
  background: transparent;
  border-radius: 0;
  position: relative;
}

.ky-banner-grid.tip-1 .ky-banner-media {
  display: block;
  overflow: hidden;
}

.ky-banner-grid.tip-1 img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.ky-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ky-pin::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  animation: ky-pin-pulse 2s ease-out infinite;
  pointer-events: none;
}

.ky-pin-icon {
  display: flex;
  line-height: 0;
}

.ky-pin-box {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 280px;
  padding: 22px 20px 18px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ky-banner-single.is-open .ky-pin-box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ky-pin-title {
  display: block;
  font-family: var(--ky-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #111;
  margin-bottom: 8px;
}

.ky-pin-text {
  margin: 0 0 14px;
  font-family: var(--ky-sans);
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.ky-pin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 8px 18px;
  border: 1px solid #111;
  font-family: var(--ky-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}

.ky-pin-btn:hover {
  background: #111;
  color: #fff;
}

@keyframes ky-pin-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

.ky-banner-grid.tip-2 {
  grid-template-columns: 1fr 1fr;
}

.ky-banner-grid.tip-3,
.ky-banner-grid.tip-6 {
  grid-template-columns: 1fr 1fr 1fr;
}

.ky-banner-item,
.ky-banner-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
  text-decoration: none;
  color: inherit;
}

.ky-banner-media {
  display: block;
  position: relative;
  overflow: hidden;
}

.ky-banner-item img,
.ky-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ky-banner-grid.tip-6 .ky-banner-item {
  overflow: hidden;
  background: #eee;
  border-radius: 8px;
}

.ky-banner-grid.tip-6 .ky-banner-media {
  border-radius: 8px;
  background: #eee;
}

.ky-banner-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.32);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.ky-banner-grid.tip-6 .ky-banner-item:hover .ky-banner-hover,
.ky-banner-grid.tip-3 .ky-banner-item:hover .ky-banner-hover,
.ky-banner-grid.tip-2 .ky-banner-item:hover .ky-banner-hover {
  opacity: 1;
}

.ky-banner-kesfet {
  font-family: var(--ky-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
}

.ky-banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: block;
  padding: 0 16px;
  font-family: var(--ky-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
  color: #111;
  text-shadow: none;
  pointer-events: none;
}

.ky-banner-grid.tip-2 .ky-banner-item,
.ky-banner-grid.tip-2 .ky-banner-media {
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.ky-banner-grid.tip-2 .ky-banner-kesfet {
  font-size: 16px;
  letter-spacing: 2.5px;
}

.ky-banner-grid.tip-2 img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.ky-banner-grid.tip-3 img,
.ky-banner-grid.tip-6 img {
  aspect-ratio: 4 / 5;
  height: auto;
}

.ky-banner-grid.tip-3 .ky-banner-item {
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.ky-banner-grid.tip-3 .ky-banner-media {
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.ky-banner-copy {
  display: block;
  padding: 14px 6px 0;
  text-align: center;
}

.ky-banner-copy-title {
  display: block;
  font-family: var(--ky-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #111;
}

.ky-banner-copy-text {
  display: block;
  margin-top: 6px;
  font-family: var(--ky-sans);
  font-size: 13px;
  line-height: 1.45;
  color: #555;
}

.ky-marquee {
  overflow: hidden;
  margin: 36px -24px 0;
  padding: 20px 0;
  background: var(--ky-cream);
}

.ky-marquee-track {
  display: flex;
  width: max-content;
  gap: 4cm;
  animation: ky-marquee-slide 90s linear infinite;
}

.ky-marquee-track:hover {
  animation-play-state: paused;
}

.ky-marquee-item {
  font-family: var(--ky-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0;
  color: inherit;
}

@keyframes ky-marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1149px) {
  .ky-banner-grid.tip-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .ky-banner {
    padding: 18px 12px 32px;
  }
  .ky-banner-grid.tip-2,
  .ky-banner-grid.tip-3 {
    grid-template-columns: 1fr;
  }
  .ky-banner-grid.tip-6 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ky-banner-title {
    font-size: 16px;
  }
  .ky-banner-caption {
    font-size: 12px;
    bottom: 14px;
    padding: 0 8px;
  }
  .ky-banner-kesfet {
    font-size: 12px;
    letter-spacing: 2.5px;
  }
  .ky-marquee {
    margin-left: -12px;
    margin-right: -12px;
  }
  .ky-marquee-item {
    font-size: 14px;
  }
  .ky-pin {
    width: 40px;
    height: 40px;
  }
  .ky-pin-box {
    width: min(280px, calc(100% - 24px));
  }
}

/* ---------- Slider ---------- */
.tf-slideshow {
  margin: 0;
}

body.ky-home .tf-slideshow {
  overflow: hidden;
}

body.ky-home .tf-slideshow,
body.ky-home .tf-slideshow .swiper,
body.ky-home .tf-slideshow .swiper-wrapper,
body.ky-home .tf-slideshow .swiper-slide,
body.ky-home .tf-slideshow .wrap-slider {
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.ky-home .tf-slideshow .wrap-slider img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block;
}

.tf-slideshow .wrap-slider img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
}

body.ky-home .tf-slideshow .wrap-pagination,
body.ky-home .tf-slideshow .sw-dots,
body.ky-home .tf-slideshow .swiper-pagination,
body.ky-home .tf-slideshow .swiper-button-next,
body.ky-home .tf-slideshow .swiper-button-prev,
body.ky-home .tf-slideshow .navigation-next-slider,
body.ky-home .tf-slideshow .navigation-prev-slider {
  display: none !important;
}

.tf-slideshow .box-content {
  background: transparent;
}
.tf-slideshow .box-content h1,
.tf-slideshow .box-content .heading,
.tf-slideshow h1 {
  font-family: var(--ky-serif) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 42px !important;
  max-width: 520px;
}
.tf-slideshow .box-content p {
  font-family: var(--ky-sans);
  max-width: 420px;
}

.tf-slideshow .tf-btn,
.tf-btn.btn-fill {
  background: #000 !important;
  color: #fff !important;
  border-radius: 0 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #000 !important;
}

.tf-slideshow .tf-btn:hover,
.tf-btn.btn-fill:hover {
  background: #333 !important;
  border-color: #333 !important;
}

/* ---------- Bölüm başlıkları ---------- */
.flat-title,
.ky-section-title,
.collection-title {
  text-align: center;
  margin: 48px auto 28px;
  max-width: 820px;
  padding: 0 16px;
}

.flat-title .title,
.ky-section-title h2,
.flat-title-v2 .title {
  display: block;
  font-family: var(--ky-serif) !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  color: #000 !important;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-bottom: 8px;
}

.flat-title .sub-title,
.ky-section-title p {
  font-family: var(--ky-serif) !important;
  font-size: 16px !important;
  color: #000 !important;
  margin: 0;
}

@media (max-width: 768px) {
  .flat-title .title,
  .ky-section-title h2,
  .flat-title-v2 .title {
    font-size: 20px !important;
  }
  .flat-title .sub-title,
  .ky-section-title p {
    font-size: 13px !important;
  }
}

/* ---------- Kategori galerisi ---------- */
.ky-gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 88%;
  margin: 0 auto 24px;
}

.ky-gallery-item {
  flex: 1 1 33.333%;
  max-width: 33.333%;
  position: relative;
  overflow: hidden;
}

.ky-gallery-item a {
  display: block;
  position: relative;
  text-decoration: none;
}

.ky-gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.ky-gallery-caption {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #000;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.ky-gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ky-gallery-item a:hover .ky-gallery-hover {
  opacity: 1;
}

.ky-gallery-item a:hover .ky-gallery-caption {
  opacity: 0;
}

@media (max-width: 768px) {
  .ky-gallery {
    max-width: 100%;
  }
  .ky-gallery-item {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .ky-gallery-item img {
    height: 180px;
  }
  .ky-gallery-caption,
  .ky-gallery-hover {
    font-size: 12px;
  }
}

/* Daire kategori şeridini kuyumcu diline çek */
.collection-item-circle .title,
.collection-item.style-left .collection-title span {
  font-family: var(--ky-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.flat-categorie .flat-title-v2 {
  justify-content: center;
}

/* ---------- Ürün kartı ---------- */
.card-product {
  text-align: center;
  margin-bottom: 24px;
}

.card-product .card-product-wrapper {
  background: #fafafa;
  border-radius: 0;
}

.card-product .card-product-wrapper img {
  object-fit: contain;
  background: #fafafa;
}

.card-product .card-product-info {
  padding: 12px 8px 4px;
}

.card-product .card-product-info .title,
.card-product .card-product-info a.title {
  font-family: var(--ky-sans);
  font-size: 14px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.card-product .rating {
  display: none !important;
}

.card-product .price-out {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.card-product .price-out .price {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.card-product .price-out .old-price {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
}

.card-product .price-out .discount-pct {
  font-size: 13px;
  font-weight: 700;
  color: #c0392b;
}

.card-product .list-product-btn .box-icon {
  border-radius: 0;
  border: 1px solid #000;
}

.ky-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 7px;
  letter-spacing: 0.3px;
}

/* ---------- Footer ---------- */
#footer.footer,
.footer.md-pb-70 {
  background: #111;
  color: #d8d8d8;
  border-top: 0;
  margin-top: 40px;
}

#footer .footer-wrap .footer-body::before {
  background-color: #2a2a2a;
}

#footer .footer-heading h6,
#footer h6 {
  font-family: var(--ky-serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

#footer .footer-menu_item,
#footer .footer-infor li,
#footer .footer-infor li p,
#footer a {
  color: #cfcfcf;
  font-size: 14px;
}

#footer a:hover {
  color: #fff;
  opacity: 1;
}

#footer .footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
  font-size: 13px;
  color: #aaa;
}

.ky-credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #b8b8b8;
}

.ky-credit-site {
  text-align: left;
}

.ky-credit-design {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.ky-credit a {
  color: #c4c4c4;
  text-decoration: none;
}

.ky-credit a:hover {
  color: #eee;
}

.ky-credit-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .ky-credit {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .ky-credit-site,
  .ky-credit-design {
    margin-left: 0;
    justify-content: center;
  }
}

#footer .footer-wrap .footer-bottom .footer-bottom-wrap {
  border-top-color: #2a2a2a;
}

#footer .tf-btn.btn-line {
  border-radius: 0;
  color: #fff;
  border-color: #fff;
}

#footer .subscribe-button {
  border-radius: 0 !important;
}

#footer .subscribe-email {
  border-radius: 0;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #fff;
}

#footer .subscribe-email::placeholder {
  color: #888;
}

#footer .tf-social-icon .box-icon {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
}

#footer .tf-social-icon .box-icon:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

/* ---------- Alt araç çubuğu / butonlar ---------- */
.tf-toolbar-bottom {
  border-top: 1px solid var(--ky-line);
  background: #fff;
}

.progress-wrap {
  background: #111;
  border-color: #111;
  color: #fff;
}

.progress-wrap::after {
  content: none !important;
}

.progress-wrap .progress-arrow {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #fff;
}

.sw-dots.sw-pagination-slider span.swiper-pagination-bullet-active,
.sw-dots span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000 !important;
}

/* Hikaye şeridi */
.tf-sw-collection-1 {
  padding: 16px 0 8px;
}

/* İkon kutuları */
.tf-icon-box .title {
  font-family: var(--ky-serif);
  font-size: 16px;
}

.ky-trust {
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--ky-line);
  border-bottom: 1px solid var(--ky-line);
}

.ky-trust .container {
  max-width: 1440px;
}

.ky-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 32px 18px;
  height: 100%;
  background: transparent;
}

.ky-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #111;
}

.ky-trust-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.ky-trust-item .content .title {
  font-family: var(--ky-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #111;
  margin-bottom: 6px;
}

.ky-trust-item .content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ky-muted);
  font-weight: 500;
}

@media (min-width: 1200px) {
  .ky-trust .wrap-iconbox .swiper-slide:not(:last-child) .ky-trust-item {
    border-right: 1px solid var(--ky-line) !important;
  }
}

@media (max-width: 767px) {
  .ky-trust-item {
    padding: 22px 12px;
    gap: 10px;
  }
  .ky-trust-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* Container genişliği */
@media (min-width: 1200px) {
  .container,
  .container-full {
    max-width: 88%;
  }
}

/* Mobil menü */
.canvas-mb .mb-menu-link {
  font-family: var(--ky-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.ky-mb.canvas-mb {
  width: min(92vw, 380px) !important;
  max-width: min(92vw, 380px) !important;
  background: #fff;
}

.ky-mb .mb-canvas-content {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-width: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  grid-auto-rows: unset;
}

.ky-mb-head {
  flex: 0 0 auto;
  padding: 18px 18px 0;
  background: #fff;
  z-index: 3;
}

.ky-mb-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ky-mb-title {
  font-family: var(--ky-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #111;
}

.ky-mb-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.ky-mb-close::before,
.ky-mb-close::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1.5px;
  background: #111;
}

.ky-mb-close::before {
  transform: rotate(45deg);
}

.ky-mb-close::after {
  transform: rotate(-45deg);
}

.ky-mb-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #ececec;
}

.ky-mb-tab {
  border: 0;
  background: none;
  padding: 12px 8px 14px;
  font-family: var(--ky-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9a9a9a;
  position: relative;
  cursor: pointer;
}

.ky-mb-tab.is-active {
  color: #111;
}

.ky-mb-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #111;
}

.ky-mb-brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px 22px;
  border-top: 1px solid #ececec;
  background: #fafafa;
  text-align: center;
}

.ky-mb-brand-logo {
  display: block;
  margin: 0 0 10px;
}

.ky-mb-brand-logo img {
  display: block;
  margin: 0 auto;
  max-width: 160px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ky-mb-brand-phone {
  display: block;
  width: 100%;
  font-family: var(--ky-sans);
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
  text-align: center;
}

.ky-mb-brand-address {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  text-align: center;
}

.ky-mb-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ky-mb-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #fff;
  text-decoration: none;
}

.ky-mb-social a .icon {
  font-size: 12px;
}

.ky-mb-social a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.ky-mb-body {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.ky-mb-pane {
  display: none;
  height: 100%;
}

.ky-mb-pane.is-active {
  display: block;
}

.ky-mb-stack {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.ky-mb-level {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.28s ease, visibility 0.28s ease;
}

.ky-mb-level.is-active {
  transform: translateX(0);
  visibility: visible;
  z-index: 2;
}

.ky-mb-level.is-prev {
  transform: translateX(-28%);
  visibility: visible;
  z-index: 1;
}

.ky-mb-level-head {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 6px 6px;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.ky-mb-back {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}

.ky-mb-back::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 9px;
  height: 9px;
  border-left: 1.6px solid #111;
  border-bottom: 1.6px solid #111;
  transform: rotate(45deg);
}

.ky-mb-level-title {
  flex: 1;
  font-family: var(--ky-serif);
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  padding-right: 10px;
}

.ky-mb-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #f1f1f1;
}

.ky-mb-link {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  font-family: var(--ky-sans);
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

.ky-mb-link.is-sale {
  color: #b42318;
}

.ky-mb-go {
  width: 52px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  border-left: 1px solid #f1f1f1;
}

.ky-mb-go::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid #111;
  border-bottom: 1.6px solid #111;
  transform: rotate(-45deg);
}

.ky-mb-kur {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

.ky-mb-kur .ky-mb-link {
  border-bottom: 1px solid #f1f1f1;
}

.ky-mb-sep {
  padding: 18px 18px 8px;
  font-family: var(--ky-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9a9a9a;
}

.ky-mb-info {
  padding: 4px 18px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.ky-mb-info p {
  margin: 0 0 4px;
}

/* ---------- Kategori sayfası ---------- */
.tf-page-title {
  background: #fafafa;
  border-bottom: 1px solid var(--ky-line);
  padding: 48px 0 36px;
}

.tf-page-title .heading {
  font-family: var(--ky-serif) !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #000 !important;
  letter-spacing: 0.4px;
}

.tf-page-title p {
  font-family: var(--ky-sans);
  color: var(--ky-muted);
  max-width: 640px;
  margin: 8px auto 0;
}

.tf-shop-sidebar .facet-title {
  font-family: var(--ky-serif);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--ky-line);
  padding-bottom: 10px;
}

.tf-shop-sidebar .cate-item a {
  font-size: 14px;
  color: #333;
}

.tf-shop-sidebar .cate-item a:hover {
  color: #000;
}

/* İlkay tarzı ürünler sayfası: sol filtre, sağ ürün ızgarası */
.ky-shop-page .btn-sidebar-style2 {
  display: none !important;
}

.ky-shop {
  background: #fff;
}

.ky-shop-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 40px 80px;
}

.ky-shop-layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.ky-shop-aside {
  width: 240px;
  flex-shrink: 0;
  padding-top: 10px;
}

.ky-shop-main {
  flex: 1;
  min-width: 0;
}

.ky-facet {
  border-bottom: 1px solid #eceae4;
}

.ky-facet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
}

.ky-facet-head a {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.ky-facet.is-active > .ky-facet-head a {
  font-weight: 700;
}

.ky-facet-head a:hover {
  color: #000;
}

.ky-facet-plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.ky-facet-plus::before,
.ky-facet-plus::after {
  content: "";
  position: absolute;
  background: #111;
  left: 50%;
  top: 50%;
}

.ky-facet-plus::before {
  width: 11px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.ky-facet-plus::after {
  width: 1px;
  height: 11px;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.ky-facet.is-open > .ky-facet-head .ky-facet-plus::after {
  opacity: 0;
}

.ky-facet-body {
  display: none;
  padding: 0 0 14px;
}

.ky-facet.is-open > .ky-facet-body {
  display: block;
}

.ky-kat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ky-kat-list a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  line-height: 1.4;
}

.ky-kat-list a:hover {
  color: #111;
}

.ky-kat-list .is-active > a {
  color: #111;
  font-weight: 600;
}

.ky-kat-list ul {
  padding-left: 14px;
}

.ky-shop-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 28px;
}

.ky-shop-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: var(--ky-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #111;
  line-height: 1.15;
}

.ky-filtre-btn {
  display: none;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--ky-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.ky-shop-sira-wrap {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.ky-shop-sira {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23111' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding: 6px 22px 6px 0;
  font-family: var(--ky-sans);
  font-size: 13px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  max-width: 240px;
}

.ky-shop-sira:focus {
  outline: none;
}

.ky-shop-grid {
  margin-bottom: 24px;
}

.ky-shop-empty {
  grid-column: 1 / -1;
  padding: 40px 0;
  color: var(--ky-muted);
  font-size: 15px;
}

.ky-shop-pager {
  margin-top: 20px;
}

.ky-shop-seo {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--ky-line);
  color: #444;
  font-size: 14px;
  line-height: 1.8;
  max-width: 920px;
}

.ky-shop-seo h1,
.ky-shop-seo h2,
.ky-shop-seo h3 {
  font-family: var(--ky-serif);
  font-weight: 600;
  color: #111;
  margin: 28px 0 12px;
}

.ky-shop-canvas {
  width: min(360px, 92vw);
}

.ky-shop-canvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ky-line);
}

.ky-shop-canvas-title {
  font-family: var(--ky-serif);
  font-size: 22px;
  font-weight: 600;
}

.ky-shop-canvas-close {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ky-shop-canvas-close::before,
.ky-shop-canvas-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #111;
}

.ky-shop-canvas-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ky-shop-canvas-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ky-shop-canvas-body {
  padding: 8px 20px 32px;
}

@media (max-width: 991px) {
  .ky-shop-inner {
    padding: 18px 16px 64px;
  }

  .ky-shop-layout {
    gap: 0;
  }

  .ky-shop-aside {
    display: none;
  }

  .ky-filtre-btn {
    display: inline-flex;
  }

  .ky-shop-title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .ky-shop-title {
    font-size: 26px;
  }

  .ky-shop-sira {
    max-width: 170px;
    font-size: 12px;
  }
}

.tf-pagination-wrap .pagination-item,
.tf-pagination-list a,
.tf-pagination-list span {
  border-radius: 0 !important;
}

.tf-pagination-wrap a:hover,
.tf-pagination-wrap .active {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* ---------- Ürün detay ---------- */
.tf-breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--ky-line);
}

.tf-breadcrumb .text {
  font-size: 13px;
  color: #666;
}

.tf-product-info-title h5 {
  font-family: var(--ky-serif) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  color: #000 !important;
}

.tf-product-info-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.tf-product-info-price .price-on-sale {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.tf-product-info-price .compare-at-price {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
}

.tf-product-info-price .badges-on-sale {
  background: #000;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
}

.tf-product-info-list > .rating {
  display: none;
}

.tf-pr-attrs {
  width: 100%;
  border-top: 1px solid var(--ky-line);
}

.tf-pr-attrs th,
.tf-pr-attrs td {
  border-bottom: 1px solid var(--ky-line);
  padding: 8px 0;
  font-size: 14px;
}

.tf-pr-attrs th {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.wg-quantity {
  border: 1px solid #000;
  border-radius: 0;
}

.ky-pdp-buy {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.ky-pdp-buy .tf-product-info-quantity {
  margin: 0 !important;
  flex: 0 0 auto;
}

.ky-pdp-buy .quantity-title {
  display: none;
}

.ky-pdp-buy .wg-quantity {
  height: 52px;
  width: 132px;
}

.ky-pdp-buy .wg-quantity input,
.ky-pdp-buy .wg-quantity .btn-quantity {
  height: 52px;
}

.ky-pdp-buy #sepet-ekle,
.ky-pdp-buy .btn-add-to-cart {
  flex: 1 1 auto;
  min-height: 52px;
  margin: 0;
  gap: 10px;
}

.ky-pdp-cart-price {
  font-weight: 700;
  letter-spacing: 0.2px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.ky-pdp-extra {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 10px;
}

.ky-pdp-fav.tf-product-btn-wishlist {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 0 !important;
  border: 1px solid #000 !important;
}

.ky-pdp-wa {
  flex: 1 1 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ky-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid #1f8f46;
  background: #25d366;
  color: #fff;
}

.ky-pdp-wa:hover {
  background: #1ebe5d;
  color: #fff;
}

.tf-product-info-buy-button .tf-btn,
.btn-add-to-cart {
  border-radius: 0 !important;
  min-height: 48px;
}

.tf-product-btn-wishlist {
  border-radius: 0 !important;
  border: 1px solid #000 !important;
}

.tf-product-media-wrap img,
.tf-product-media-main img {
  background: #fafafa;
  object-fit: contain;
}

.variant-picker-values label.style-text {
  border-radius: 0;
  border: 1px solid #000;
}

/* ---------- Paneller ---------- */
.canvas-search,
.modal-shopping-cart .modal-content,
.canvas-mb {
  border-radius: 0;
}

.canvas-search .tf-search-head .title,
.modal-shopping-cart .header .title {
  font-family: var(--ky-serif);
  font-weight: 600;
}

.tf-mini-search-frm input,
.subscribe-email,
input.form-control {
  border-radius: 0;
}

/* ---------- Hikaye daireleri ---------- */
.collection-item-circle .collection-image {
  border: 1px solid var(--ky-line);
}

.collection-item-circle .title {
  font-size: 12px !important;
  letter-spacing: 0.3px;
}

/* ---------- Instagram vitrin ---------- */
.ky-ig {
  padding: 56px 0 12px;
  background: #fff;
}

.ky-ig-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.ky-ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.ky-ig-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ky-gold-dark);
  margin-bottom: 6px;
}

.ky-ig-title {
  font-family: var(--ky-serif);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  color: var(--ky-text);
}

.ky-ig-user {
  margin: 6px 0 0;
  color: var(--ky-muted);
  font-size: 14px;
}

.ky-ig-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 11px 22px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.ky-ig-follow:hover {
  background: #111;
  color: #fff !important;
  opacity: 1 !important;
}

.ky-ig-embed {
  max-width: 540px;
  margin: 0 auto;
}

.ky-ig-carousel {
  position: relative;
}

.ky-ig-swiper {
  overflow: hidden;
}

.ky-ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ky-cream);
}

.ky-ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ky-ig-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.38);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ky-ig-card:hover img {
  transform: scale(1.06);
}

.ky-ig-card:hover .ky-ig-hover {
  opacity: 1;
}

@media (max-width: 1149px) {
  .ky-ig-inner {
    padding: 0 16px;
  }
  .ky-ig-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .ky-ig {
    padding: 36px 0 8px;
  }
  .ky-ig-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial-item .name {
  font-family: var(--ky-serif);
  font-size: 16px;
}

.testimonial-item .text {
  font-size: 14px;
  color: #444;
  font-style: italic;
}

@media (max-width: 768px) {
  .tf-page-title .heading {
    font-size: 24px !important;
  }
  .tf-product-info-title h5 {
    font-size: 22px !important;
  }
  .tf-slideshow .box-content h1 {
    font-size: 26px !important;
  }
}

/* WhatsApp / telefon: küçük, durağan, kurumsal */
#hemen-ara,
#hemen-ara1,
.ky-fab {
  position: fixed;
  left: 16px !important;
  right: auto !important;
  top: auto !important;
  z-index: 2222;
  width: 42px !important;
  height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(17, 17, 17, 0.18);
  animation: none !important;
  transform: none !important;
  text-decoration: none;
}

#hemen-ara > div,
#hemen-ara1 > div {
  display: none !important;
  animation: none !important;
}

.ky-fab svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #fff;
}

#hemen-ara1,
.ky-fab-wa {
  bottom: 72px !important;
  background: #1f7a4d;
}

#hemen-ara,
.ky-fab-tel {
  bottom: 22px !important;
  background: #111;
}

#hemen-ara1:hover,
.ky-fab-wa:hover {
  background: #17633e;
  opacity: 1 !important;
}

#hemen-ara:hover,
.ky-fab-tel:hover {
  background: #000;
  opacity: 1 !important;
}

@media (max-width: 1149px) {
  #hemen-ara1,
  .ky-fab-wa {
    bottom: 128px !important;
  }
  #hemen-ara,
  .ky-fab-tel {
    bottom: 78px !important;
  }
}

/* ---------- Altınım Ne Eder ---------- */
.ky-hesap-hero {
  padding: 4px 0 0;
  background: #f7f5f1;
}
.ky-hesap-lead {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ky-muted);
}
.ky-hesap-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ky-hesap-badges span {
  border: 1px solid var(--ky-line);
  background: #fff;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ky-muted);
}
.ky-hesap-wrap {
  padding: 0 0 28px;
  background: #f7f5f1;
}
.ky-hesap-app {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ky-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: min(86vh, 920px);
}
.ky-hesap-ust {
  flex: 0 0 auto;
  background: #fff;
  border-bottom: 1px solid var(--ky-line);
  z-index: 2;
}
.ky-hesap-mod {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px 0;
}
.ky-hesap-mod button {
  border: 1px solid var(--ky-line);
  background: #fff;
  color: var(--ky-muted);
  font-family: var(--ky-sans);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.ky-hesap-mod button.is-on {
  background: #111;
  color: #fff;
  border-color: #111;
}
.ky-hesap-tabs {
  display: flex;
  margin-top: 8px;
}
.ky-hesap-tabs button {
  flex: 1;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: var(--ky-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a958c;
  padding: 12px 8px;
  cursor: pointer;
}
.ky-hesap-tabs button.is-on {
  color: #111;
  border-bottom-color: var(--ky-gold);
}
.ky-hesap-govde {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 10px 12px 12px;
  background: #faf8f4;
}
.ky-hesap-panel { display: none; }
.ky-hesap-panel.is-on { display: block; }
.ky-hesap-satir {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(92px, 0.7fr);
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #eee8dc;
  border-radius: 12px;
  padding: 13px 14px;
  margin-bottom: 9px;
}
.ky-hesap-satir.is-on {
  background: #f8f1e4;
  border-color: #e6d3b0;
  box-shadow: inset 3px 0 0 var(--ky-gold);
}
.ky-hesap-ad b {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.ky-hesap-ad small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--ky-gold-dark);
}
.ky-hesap-step {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e0d6;
  border-radius: 999px;
  overflow: hidden;
}
.ky-hesap-step button,
.ky-hesap-step input {
  border: 0;
  background: transparent;
  font-family: var(--ky-sans);
  color: var(--ky-text);
}
.ky-hesap-step button {
  width: 32px;
  height: 34px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #888;
}
.ky-hesap-step input {
  width: 52px;
  height: 34px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.ky-hesap-step input::-webkit-outer-spin-button,
.ky-hesap-step input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ky-hesap-satir-tutar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #e5e0d6;
  border-radius: 10px;
  font-weight: 700;
}
.ky-hesap-satir-tutar em {
  font-style: normal;
  color: #b0aaa0;
  font-weight: 600;
}
.ky-hesap-satir:not(.is-on) [data-tutar] { color: #c5c0b6; }
.ky-hesap-ac {
  width: 100%;
  margin: 4px 0 8px;
  padding: 10px 4px;
  border: 0;
  background: none;
  font-family: var(--ky-sans);
  font-weight: 600;
  color: var(--ky-gold-dark);
  cursor: pointer;
  text-align: left;
}
.ky-hesap-ac i {
  font-style: normal;
  font-weight: 500;
  color: var(--ky-muted);
  margin-left: 6px;
}
.ky-hesap-gizli { display: none; }
.ky-hesap-ozet {
  flex: 0 0 auto;
  background: #2b2b2b;
  color: #fff;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1.1fr auto 0.8fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 16px 16px 0 0;
}
.ky-hesap-ozet span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ky-gold);
}
.ky-hesap-ozet span i {
  font-style: normal;
  margin-left: 6px;
  letter-spacing: 0;
  text-transform: none;
  color: #9a9a9a;
}
.ky-hesap-ozet strong {
  display: block;
  font-family: var(--ky-serif);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}
.ky-hesap-ozet > em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--ky-gold);
}
.ky-hesap-ozet > em::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--ky-gold);
}
.ky-hesap-zekat {
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 12px;
}
.ky-hesap-zekat b {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}
.ky-hesap-aksiyon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ky-hesap-wa,
.ky-hesap-temizle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  font-family: var(--ky-sans);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.ky-hesap-wa { background: #1f7a4d; color: #fff; }
.ky-hesap-wa:hover { background: #17633e; color: #fff; }
.ky-hesap-temizle { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.ky-hesap-not {
  max-width: 720px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 12px;
  color: #8a857c;
}
.ky-hesap-bilgi {
  padding: 36px 0 72px;
}
.ky-hesap-iki {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.ky-hesap-kutu {
  background: #fff;
  border: 1px solid var(--ky-line);
  border-radius: 16px;
  padding: 26px 24px 20px;
}
.ky-hesap-bilgi h2 {
  font-family: var(--ky-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
}
.ky-hesap-bilgi p {
  color: var(--ky-muted);
  line-height: 1.7;
  margin: 0 0 12px;
}
.ky-hesap-bilgi details {
  border-top: 1px solid var(--ky-line);
  padding: 12px 0;
}
.ky-hesap-bilgi details:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.ky-hesap-bilgi summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.ky-hesap-bilgi summary::-webkit-details-marker { display: none; }
.ky-hesap-bilgi details p { margin: 8px 0 0; }
@media (max-width: 991px) {
  .ky-hesap-iki { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ky-hesap-app { height: min(88vh, 960px); border-radius: 14px; }
  .ky-hesap-satir { grid-template-columns: 1fr auto; }
  .ky-hesap-satir-tutar { grid-column: 2; }
  .ky-hesap-ozet { grid-template-columns: 1fr auto; }
  .ky-hesap-zekat { border-left: 0; padding-left: 0; }
  .ky-hesap-aksiyon { grid-column: 1 / -1; flex-direction: row; }
}

/* ---------- Kampanya popup ---------- */
body.ky-popup-lock {
  overflow: hidden;
}
.ky-popup[hidden] {
  display: none !important;
}
.ky-popup {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(17, 17, 17, 0.56);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ky-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ky-popup-card {
  position: relative;
  width: min(860px, 100%);
  max-height: min(88vh, 640px);
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid rgba(196, 165, 116, 0.35);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.28);
  overflow: hidden;
}
.ky-popup-card::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(196, 165, 116, 0.18) 46%,
    rgba(255, 244, 210, 0.72) 50%,
    rgba(196, 165, 116, 0.22) 54%,
    transparent 64%
  );
  transform: translateX(-130%) skewX(-12deg);
}
.ky-popup.is-foil .ky-popup-card::after {
  animation: ky-foil-sweep 1.35s cubic-bezier(0.22, 0.7, 0.3, 1) 0.08s both;
}
.ky-popup-card.has-media {
  grid-template-columns: 0.92fr 1.08fr;
}
.ky-popup-media {
  min-height: 100%;
  background: #f2f0eb;
}
.ky-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ky-popup-body {
  padding: 42px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ky-popup-rozet {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ky-gold-dark);
  font-weight: 600;
}
.ky-popup-title {
  margin: 0 0 14px;
  font-family: var(--ky-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ky-black);
  background-image: linear-gradient(
    100deg,
    #111 18%,
    #9a7b4f 42%,
    #fff6d8 50%,
    #c4a574 58%,
    #111 82%
  );
  background-size: 240% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ky-popup.is-foil .ky-popup-title {
  animation: ky-foil-title 1.55s ease-out 0.12s both;
}
@keyframes ky-foil-sweep {
  from { transform: translateX(-130%) skewX(-12deg); }
  to { transform: translateX(130%) skewX(-12deg); }
}
@keyframes ky-foil-title {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}
.ky-popup-text {
  margin: 0 0 26px;
  color: var(--ky-muted);
  font-size: 15px;
  line-height: 1.7;
}
.ky-popup-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ky-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--ky-black);
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.ky-popup-cta:hover {
  background: #000;
  color: #fff !important;
}
.ky-popup-skip {
  border: 0;
  background: none;
  padding: 0;
  color: var(--ky-muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: inherit;
}
.ky-popup-again {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a857c;
  font-size: 12px;
  cursor: pointer;
}
.ky-popup-again input {
  margin: 0;
  accent-color: var(--ky-gold-dark);
}
.ky-popup-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ky-line);
  background: #fff;
  color: var(--ky-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.ky-popup-x:hover {
  border-color: var(--ky-gold);
  color: #000;
}
@media (max-width: 767px) {
  .ky-popup-card.has-media {
    grid-template-columns: 1fr;
  }
  .ky-popup-media {
    height: 190px;
  }
  .ky-popup-body {
    padding: 26px 22px 22px;
  }
  .ky-popup-title {
    font-size: 28px;
  }
}
.kuyum-theme .product-img,
.kuyum-theme .ky-story-card,
.kuyum-theme .wrap-slider,
.kuyum-theme .ky-banner-media,
.kuyum-theme .ky-banner-single,
.kuyum-theme .ky-ig-card,
.kuyum-theme .ky-popup-media,
.kuyum-theme .tf-product-media-main .item,
.kuyum-theme .tf-product-media-thumbs .item,
.kuyum-theme figure.img-product,
.kuyum-theme .ky-foil {
  position: relative;
  overflow: hidden;
}
.kuyum-theme .product-img::after,
.kuyum-theme .ky-story-card::after,
.kuyum-theme .wrap-slider::after,
.kuyum-theme .ky-banner-media::after,
.kuyum-theme .ky-banner-single::after,
.kuyum-theme .ky-ig-card::after,
.kuyum-theme .ky-popup-media::after,
.kuyum-theme .tf-product-media-main .item::after,
.kuyum-theme .tf-product-media-thumbs .item::after,
.kuyum-theme figure.img-product::after,
.kuyum-theme .ky-foil::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(196, 165, 116, 0.2) 46%,
    rgba(255, 244, 210, 0.7) 50%,
    rgba(196, 165, 116, 0.22) 54%,
    transparent 64%
  );
  transform: translateX(-140%) skewX(-12deg);
}
.kuyum-theme .product-img:hover::after,
.kuyum-theme .ky-story-card:hover::after,
.kuyum-theme .wrap-slider:hover::after,
.kuyum-theme .ky-banner-media:hover::after,
.kuyum-theme .ky-banner-single:hover::after,
.kuyum-theme .ky-ig-card:hover::after,
.kuyum-theme .ky-popup-media:hover::after,
.kuyum-theme .tf-product-media-main .item:hover::after,
.kuyum-theme .tf-product-media-thumbs .item:hover::after,
.kuyum-theme figure.img-product:hover::after,
.kuyum-theme .ky-foil:hover::after {
  animation: ky-foil-sweep 0.9s cubic-bezier(0.22, 0.7, 0.3, 1) both;
}
.card-product-wrapper .list-product-btn,
.card-product-wrapper .etiket {
  z-index: 6;
}
@media (prefers-reduced-motion: reduce) {
  .ky-popup-card::after,
  .ky-popup-title,
  .kuyum-theme .product-img::after,
  .kuyum-theme .ky-story-card::after,
  .kuyum-theme .wrap-slider::after,
  .kuyum-theme .ky-banner-media::after,
  .kuyum-theme .ky-banner-single::after,
  .kuyum-theme .ky-ig-card::after,
  .kuyum-theme .ky-popup-media::after,
  .kuyum-theme .tf-product-media-main .item::after,
  .kuyum-theme .tf-product-media-thumbs .item::after,
  .kuyum-theme figure.img-product::after,
  .kuyum-theme .ky-foil::after {
    animation: none !important;
  }
  .ky-popup-title {
    background: none;
    -webkit-text-fill-color: var(--ky-black);
    color: var(--ky-black);
  }
}

