/*
 * Ready template styles for qr/index.php.
 * This file owns header, category-card and product-card visual variants.
 */

/* Shared layout */
header.header {
  align-content: center;
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-min-h);
  background-color: var(--body-bg);
  background-size: cover;
  background-position: center;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}
.header.is-sticky { box-shadow: 0 22px 20px -20px rgba(0,0,0,.55); }
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 8px 10px;
  cursor: pointer;
  user-select: none;
}
.brand img {
  display: block;
  max-height: 110px;
  max-width: 210px;
  object-fit: contain;
  border-radius: 8px;
}
.brand .title {
  font-size: 20px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.section { margin: 0 auto; }
.cat-grid, .cat-row, .prod-grid { display: grid; gap: var(--gap); }
.row-slot { margin: 10px 0 10px; }
.prod-section { margin: 16px 0; }
h2#prodSectionTitle { text-align: center; }
.row-prod-title {
  margin: 10px 0;
  color: var(--urun-name);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

@media (max-width:767px) {
  .cat-grid, .cat-row { grid-template-columns: repeat(var(--kat-cols-m), 1fr); }
  .prod-grid { grid-template-columns: repeat(var(--urun-cols-m), 1fr); }
  .cat-img { height: var(--kat-img-h-m); }
  .prod-img { height: var(--urun-img-h-m); }
  .cat-title, .cat-title-over { font-size: var(--kat-font-m); }
  .prod-name { font-size: var(--urun-font-m); }
}
@media (min-width:768px) {
  .cat-grid, .cat-row { grid-template-columns: repeat(var(--kat-cols-t), 1fr); }
  .prod-grid { grid-template-columns: repeat(var(--urun-cols-t), 1fr); }
  .cat-img { height: var(--kat-img-h-t); }
  .prod-img { height: var(--urun-img-h-t); }
  .cat-title, .cat-title-over { font-size: var(--kat-font-t); }
  .prod-name { font-size: var(--urun-font-t); }
}

/* Header styles */
#appHeader.header {
  isolation: isolate;
  position: relative;
  min-height: var(--header-min-h);
  overflow: hidden;
  background-color: var(--body-bg);
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 0 0;
}
#appHeader.header.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0,0,0,.33);
  border-radius: inherit;
}
#appHeader.header.bg > * {
  position: relative;
  z-index: 1;
}
#appHeader.header-stil1 {
  padding: 4px 0;
  background: var(--body-bg);
}
#appHeader.header-stil2 {
  height: 175px;
}
#appHeader.header-stil2 .brand {
  min-height: 175px;
}
#appHeader.header-stil3 {
  width: min(94%, 760px);
  height: 104px;
  min-height: 104px;
  margin: 8px auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 24px 50px -38px rgba(0,0,0,.86);
}
#appHeader.header-stil3::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.66), rgba(0,0,0,.22)),
    linear-gradient(135deg, color-mix(in srgb, var(--btn-primary) 48%, transparent), transparent 58%);
}
#appHeader.header-stil3 .brand {
  min-height: 104px;
  padding: 16px 24px;
}
#appHeader.header-stil3 .brand img {
  max-height: 72px;
  border-radius: 999px;
}
#appHeader.header-stil3 .brand .title {
  color: #fff;
  font-size: 22px;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
#appHeader.header-stil4 {
  height: 148px;
  min-height: 148px;
  margin: 0 auto 10px;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--btn-primary) 30%, transparent);
  box-shadow: 0 26px 48px -38px rgba(0,0,0,.78);
}
#appHeader.header-stil4::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.38), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.70));
}
#appHeader.header-stil4::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 20px;
  pointer-events: none;
}
#appHeader.header-stil4 .brand {
  min-height: 148px;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
}
#appHeader.header-stil4 .brand img {
  max-height: 78px;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.42));
}
#appHeader.header-stil4 .brand .title {
  color: #fff;
  font-size: 23px;
  text-shadow: 0 2px 18px rgba(0,0,0,.72);
}
#appHeader.header-stil5 {
  height: 206px;
  min-height: 206px;
  border-radius: 0 0 44px 44px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.18), 0 34px 56px -42px rgba(0,0,0,.82);
}
#appHeader.header-stil5::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.28), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.76));
}
#appHeader.header-stil5 .brand {
  min-height: 206px;
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px 34px;
}
#appHeader.header-stil5 .brand img {
  max-height: 88px;
  border-radius: 18px;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.45));
}
#appHeader.header-stil5 .brand .title,
#appHeader.header-stil6 .brand .title,
#appHeader.header-stil7 .brand .title,
#appHeader.header-stil8 .brand .title,
#appHeader.header-stil9 .brand .title,
#appHeader.header-stil10 .brand .title,
#appHeader.header-stil11 .brand .title,
#appHeader.header-stil12 .brand .title,
#appHeader.header-stil13 .brand .title,
#appHeader.header-stil14 .brand .title,
#appHeader.header-stil15 .brand .title,
#appHeader.header-stil16 .brand .title,
#appHeader.header-stil17 .brand .title,
#appHeader.header-stil18 .brand .title,
#appHeader.header-stil19 .brand .title,
#appHeader.header-stil20 .brand .title {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.66);
}
#appHeader.header-stil6 { height: 118px; min-height: 118px; border-radius: 18px; }
#appHeader.header-stil6::after { background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.08)); }
#appHeader.header-stil6 .brand { min-height: 118px; justify-content: flex-start; padding: 18px; }
#appHeader.header-stil7 { height: 132px; min-height: 132px; border-radius: 0 0 34px 34px; }
#appHeader.header-stil7::after { background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.76)); }
#appHeader.header-stil7 .brand { min-height: 132px; align-items: flex-end; justify-content: flex-start; padding: 20px; }
#appHeader.header-stil8 { height: 96px; min-height: 96px; margin: 10px auto; border-radius: 16px; }
#appHeader.header-stil8::after { background: linear-gradient(135deg, rgba(0,0,0,.68), color-mix(in srgb, var(--btn-primary) 42%, rgba(0,0,0,.45))); }
#appHeader.header-stil8 .brand { min-height: 96px; }
#appHeader.header-stil9 { height: 160px; min-height: 160px; border-radius: 34px 34px 12px 12px; }
#appHeader.header-stil9::after { background: radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--btn-primary) 55%, transparent), transparent 34%), linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.75)); }
#appHeader.header-stil9 .brand { min-height: 160px; flex-direction: column; }
#appHeader.header-stil10 { height: 124px; min-height: 124px; border-radius: 24px; border: 2px solid var(--btn-primary); }
#appHeader.header-stil10::after { background: linear-gradient(90deg, rgba(0,0,0,.60), rgba(0,0,0,.38)); }
#appHeader.header-stil10 .brand { min-height: 124px; }
#appHeader.header-stil11 { height: 112px; min-height: 112px; margin-top: 6px; border-radius: 52px 14px 52px 14px; }
#appHeader.header-stil11::after { background: linear-gradient(90deg, rgba(0,0,0,.72), transparent), radial-gradient(circle at 88% 18%, rgba(255,255,255,.32), transparent 24%); }
#appHeader.header-stil11 .brand { min-height: 112px; justify-content: flex-start; padding-left: 22px; }
#appHeader.header-stil12 { height: 190px; min-height: 190px; border-radius: 0 0 12px 12px; }
#appHeader.header-stil12::after { background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.20), rgba(0,0,0,.78)); }
#appHeader.header-stil12 .brand { min-height: 190px; align-items: flex-end; padding-bottom: 28px; }
#appHeader.header-stil13 { height: 116px; min-height: 116px; border-radius: 16px; box-shadow: inset 0 0 0 999px rgba(255,255,255,.06); }
#appHeader.header-stil13::after { background: linear-gradient(120deg, rgba(0,0,0,.70), rgba(0,0,0,.16)); }
#appHeader.header-stil13 .brand { min-height: 116px; justify-content: space-between; }
#appHeader.header-stil14 { height: 142px; min-height: 142px; border-radius: 26px; }
#appHeader.header-stil14::after { background: linear-gradient(90deg, color-mix(in srgb, var(--btn-primary) 65%, rgba(0,0,0,.68)), rgba(0,0,0,.48)); }
#appHeader.header-stil14 .brand { min-height: 142px; }
#appHeader.header-stil15 { height: 120px; min-height: 120px; margin: 8px auto; border-radius: 12px 40px 12px 40px; }
#appHeader.header-stil15::after { background: linear-gradient(135deg, rgba(0,0,0,.74), rgba(0,0,0,.20)); }
#appHeader.header-stil15 .brand { min-height: 120px; justify-content: flex-start; }
#appHeader.header-stil16 { height: 154px; min-height: 154px; border-radius: 40px; }
#appHeader.header-stil16::after { background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 32%), linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.72)); }
#appHeader.header-stil16 .brand { min-height: 154px; flex-direction: column; }
#appHeader.header-stil17 { height: 112px; min-height: 112px; border-radius: 999px 999px 22px 22px; }
#appHeader.header-stil17::after { background: linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.74)); }
#appHeader.header-stil17 .brand { min-height: 112px; }
#appHeader.header-stil18 { height: 172px; min-height: 172px; border-radius: 20px; }
#appHeader.header-stil18::after { background: linear-gradient(90deg, rgba(0,0,0,.30), rgba(0,0,0,.78)); }
#appHeader.header-stil18 .brand { min-height: 172px; justify-content: flex-end; padding-right: 24px; }
#appHeader.header-stil19 { height: 126px; min-height: 126px; border-radius: 24px 24px 4px 4px; }
#appHeader.header-stil19::after { background: linear-gradient(135deg, rgba(0,0,0,.66), color-mix(in srgb, var(--btn-primary) 35%, rgba(0,0,0,.44))); }
#appHeader.header-stil19 .brand { min-height: 126px; }
#appHeader.header-stil20 { height: 210px; min-height: 210px; border-radius: 48px 48px 0 0; }
#appHeader.header-stil20::after { background: radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--btn-primary) 42%, transparent), transparent 34%), linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.82)); }
#appHeader.header-stil20 .brand { min-height: 210px; flex-direction: column; padding-bottom: 32px; }

/* Category cards */
.cat-card {
  min-height: 100%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--kat-bg);
  border-radius: var(--radius);
  box-shadow: 0 25px 12px -26px rgba(0,0,0,.55);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}
body.intro .cat-card { opacity: 0; transform: translateY(10px); filter: blur(2px); pointer-events: none; }
body.intro .cat-card.is-in { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.cat-img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.cat-title {
  margin: 0;
  padding: 8px;
  color: var(--kat-title);
  font-weight: 500;
  text-align: center;
  overflow-wrap: anywhere;
}
.cat-row:is(.kat-stil3,.kat-stil7,.kat-stil10,.kat-stil12,.kat-stil15,.kat-stil17,.kat-stil20) .card-media {
  position: relative;
}
.cat-title-over {
  position: absolute;    text-align: center;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: var(--overlay-align);
  padding: 10px;
  color: var(--kat-title);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.68);
  overflow-wrap: anywhere;
}
.kat-stil1 .card-inner,
.kat-stil2 .card-inner { display: flex; flex-direction: column; }
.kat-stil2 .cat-title { order: -1; }
.kat-stil3 .card-media::after,
.kat-stil7 .card-media::after,
.kat-stil10 .card-media::after,
.kat-stil12 .card-media::after,
.kat-stil15 .card-media::after,
.kat-stil17 .card-media::after,
.kat-stil20 .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kat-stil3 .card-media::after { background: rgba(0,0,0,.24); }
.kat-stil4 .cat-card { border-radius: 100px 100px 25px 25px; }
.kat-stil4 .cat-img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 5px 5px 0;
  border-radius: 999px;
}
.kat-stil5 .cat-card { border: 1px solid color-mix(in srgb, var(--kat-title) 14%, transparent); border-radius: 22px; background: linear-gradient(180deg, color-mix(in srgb, var(--kat-bg) 86%, #fff 14%), var(--kat-bg)); }
.kat-stil5 .card-media { padding:5px 5px 0; }
.kat-stil5 .cat-img { border-radius: 17px; }
.kat-stil5 .cat-title { padding: 5px; font-weight: 600; }
.kat-stil6 .cat-card { border-radius: 12px; border-left: 6px solid var(--btn-primary); background: color-mix(in srgb, var(--kat-bg) 88%, #fff 12%); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--kat-title) 10%, transparent); }
.kat-stil6 .cat-img { border-radius: 0 12px 0 0; }
.kat-stil6 .cat-title { text-align: left; padding: 10px 12px 12px; }
.kat-stil7 .cat-card { border-radius: 22px; background: #111827; box-shadow: 0 26px 42px -34px rgba(0,0,0,.82); }
.kat-stil7 .card-media::after { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.68)); }
.kat-stil7 .cat-img { height: 100%; min-height: var(--kat-img-h-m); }
.kat-stil7 .cat-title-over { inset: auto 0 0 0; align-items: flex-end; justify-content: flex-start; color: #fff; }
.kat-stil8 .cat-card {
  padding: 7px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--kat-title) 12%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--kat-bg) 76%, #fff 24%), var(--kat-bg));
  box-shadow: 0 22px 38px -32px rgba(0,0,0,.74);
}
.kat-stil8 .cat-img { border-radius: 14px 14px 6px 6px; }
.kat-stil8 .cat-title {
  margin: 7px 2px 0;
  padding: 9px 10px;
  border-radius: 12px;
  background: var(--btn-primary);
  color: var(--btn-primary-text);
  font-weight: 600;
  box-shadow: 0 14px 24px -22px rgba(0,0,0,.78);
}
.kat-stil9 .cat-card { padding: 7px; border-radius: 24px 8px 24px 8px; background: color-mix(in srgb, var(--kat-bg) 82%, #fff 18%); }
.kat-stil9 .cat-img { border-radius: 18px 6px 18px 6px; }
.kat-stil9 .cat-title { position: relative; margin: -14px 8px 0; border-radius: 999px; background: color-mix(in srgb, var(--kat-bg) 88%, #fff 12%); box-shadow: 0 14px 24px -20px rgba(0,0,0,.7); }
.kat-stil10 .cat-card { padding: 3px; border-radius: 26px; background: linear-gradient(135deg, var(--btn-primary), color-mix(in srgb, var(--kat-title) 60%, #fff 40%)); }
.kat-stil10 .card-inner, .kat-stil10 .card-media { height: 100%; }
.kat-stil10 .cat-img { height: 100%; min-height: var(--kat-img-h-m); border-radius: 23px; }
.kat-stil10 .card-media::after { inset: 3px; border-radius: 21px; background: radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(0,0,0,.48) 100%); }
.kat-stil10 .cat-title-over { inset: 3px; justify-content: center; color: #fff; font-weight: 600; text-align: center; }
.kat-stil11 .card-inner { display: grid; grid-template-columns: 86px 1fr; align-items: stretch; min-height: 94px; }
.kat-stil11 .cat-img { height: 100%; border-radius: 0; }
.kat-stil11 .cat-title { display: flex; align-items: center; justify-content: flex-start; text-align: left; padding: 12px; }
.kat-stil12 .cat-card { border-radius: 8px; }
.kat-stil12 .card-media::after { background: linear-gradient(90deg, rgba(0,0,0,.72), transparent); }
.kat-stil12 .cat-title-over { justify-content: flex-start; color: #fff; }
.kat-stil13 .cat-card { border-radius: 18px; border: 2px solid color-mix(in srgb, var(--btn-primary) 46%, transparent); box-shadow: none; }
.kat-stil13 .cat-img { padding: 8px; border-radius: 18px; }
.kat-stil14 .cat-card { border-radius: 999px; flex-direction: row; align-items: center; min-height: 82px; }
.kat-stil14 .card-inner { display: grid; grid-template-columns: 72px 1fr; align-items: center; width: 100%; }
.kat-stil14 .cat-img { width: 72px; height: 72px; margin: 5px; border-radius: 50%; }
.kat-stil14 .cat-title { text-align: left; }
.kat-stil15 .cat-card { border-radius: 18px 18px 4px 18px; }
.kat-stil15 .card-media::after { background: linear-gradient(135deg, color-mix(in srgb, var(--btn-primary) 48%, rgba(0,0,0,.50)), rgba(0,0,0,.18)); }
.kat-stil15 .cat-title-over { align-items: flex-end; color: #fff; }
.kat-stil16 .cat-card { border-radius: 6px; padding: 5px; transform: rotate(-.4deg); }
.kat-stil16 .cat-img { border-radius: 4px; }
.kat-stil16 .cat-title { padding-bottom: 11px; }
.kat-stil17 .cat-card { border-radius: 999px 999px 24px 24px; }
.kat-stil17 .cat-img { height: auto; aspect-ratio: 1 / 1; border-radius: 999px; padding: 6px; }
.kat-stil17 .card-media::after { inset: 6px; border-radius: 999px; background: radial-gradient(circle, transparent 42%, rgba(0,0,0,.52)); }
.kat-stil17 .cat-title-over { justify-content: center; color: #fff; text-align: center; }
.kat-stil18 .cat-card { border-radius: 14px; border-top: 5px solid var(--btn-primary); }
.kat-stil18 .cat-title { text-align: left; padding-left: 12px; }
.kat-stil19 .cat-card { border-radius: 22px; background: color-mix(in srgb, var(--kat-bg) 80%, var(--btn-primary) 20%); }
.kat-stil19 .cat-img { border-radius: 22px 22px 0 0; }
.kat-stil19 .cat-title { border-top: 1px solid color-mix(in srgb, var(--kat-title) 16%, transparent); }
.kat-stil20 .cat-card { padding: 2px; border-radius: 28px; background: linear-gradient(135deg, var(--btn-primary), #fff, var(--kat-title)); }
.kat-stil20 .cat-img { height: 100%; min-height: var(--kat-img-h-m); border-radius: 26px; }
.kat-stil20 .card-media::after { inset: 2px; border-radius: 24px; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.70)); }
.kat-stil20 .cat-title-over { color: #fff; justify-content: center; text-align: center; }

/* Product cards */
.prod-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--urun-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 25px 12px -26px rgba(0,0,0,.55);
}
.prod-img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}
.prod-body { padding: 6px; color: var(--urun-desc); }
.prod-name { margin: 0 0 6px; color: var(--urun-name); font-weight: 600; overflow-wrap: anywhere; }
.prod-desc { margin: 0 0 8px; color: var(--urun-desc); font-size: .95rem; overflow-wrap: anywhere; }
.prod-price { color: var(--urun-price); font-weight: 600; }
.prod-extra { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; opacity: 1; margin-bottom: 8px; font-size: .65rem; line-height: 1.15; }
.price-badge { position: absolute; top: 8px; right: 8px; z-index: 2; padding: 6px 8px; border-radius: 999px; background: var(--btn-primary); color: var(--btn-primary-text); font-size: .9rem; font-weight: 600; box-shadow: 0 14px 24px -18px rgba(0,0,0,.7); }
.urun-stil2 .prod-price,
.urun-stil7 .prod-price,
.urun-stil9 .prod-price,
.urun-stil12 .prod-price,
.urun-stil16 .prod-price,
.urun-stil19 .prod-price { display: none; }
body.hide-prod-price .price-badge { display: none; }
.urun-stil3 .prod-card { display: grid; grid-template-columns: 7fr 10fr; }
.urun-stil3 .prod-img { height: 100%; }
.urun-stil4 { text-align: center; }
.urun-stil4 .prod-card { border-radius: 200px 200px 25px 25px; }
.urun-stil4 .prod-img { width: 100%; height: auto; aspect-ratio: 1 / 1; margin: 0 auto; padding: 10px; border-radius: 999px; }
.urun-stil5 .prod-card { display: grid; grid-template-columns: minmax(82px, 36%) 1fr; min-height: 118px; border-radius: 18px; border: 1px solid color-mix(in srgb, var(--urun-name) 10%, transparent); }
.urun-stil5 .prod-img { height: 100%; min-height: 118px; }
.urun-stil5 .prod-body { padding: 10px 10px 10px 12px; }
.urun-stil5 .prod-desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.urun-stil6 .prod-card { display: grid; grid-template-columns: 72px 1fr; gap: 10px; padding: 8px 0; border-radius: 10px; border-bottom: 1px dashed color-mix(in srgb, var(--urun-name) 24%, transparent); background: transparent; box-shadow: none; }
.urun-stil6 .prod-img { width: 72px; height: 72px; margin-left: 2px; border-radius: 50%; }
.urun-stil6 .prod-body { padding: 0 4px 0 0; }
.urun-stil6 .addlist-btn { height: 34px; margin-top: 8px; }
.urun-stil7 .prod-card { min-height: 228px; border-radius: 24px; background: #111827; }
.urun-stil7 .prod-img { height: 100%; min-height: 228px; filter: saturate(1.04); }
.urun-stil7 .prod-card::after,
.urun-stil19 .prod-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.76)); }
.urun-stil7 .prod-body,
.urun-stil19 .prod-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 14px; color: #fff; }
.urun-stil7 .prod-name, .urun-stil7 .prod-desc,
.urun-stil19 .prod-name, .urun-stil19 .prod-desc { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.68); }
.urun-stil8 .prod-card { padding: 9px; border-radius: 20px; border: 1px solid color-mix(in srgb, var(--urun-name) 10%, transparent); background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--urun-card-bg) 88%, #fff 12%)); }
.urun-stil8 .prod-img { border-radius: 16px; }
.urun-stil8 .prod-body { padding: 11px 4px 3px; text-align: center; }
.urun-stil9 .prod-card { border-radius: 18px; border: 1px solid color-mix(in srgb, var(--btn-primary) 24%, transparent); background: linear-gradient(90deg, color-mix(in srgb, var(--btn-primary) 10%, transparent) 0 14px, transparent 14px), var(--urun-card-bg); }
.urun-stil9 .prod-img { border-radius: 18px 18px 0 0; border-bottom: 1px dashed color-mix(in srgb, var(--urun-name) 18%, transparent); }
.urun-stil9 .prod-body { padding-left: 18px; }
.urun-stil10 .prod-card { padding: 3px; border-radius: 26px; background: linear-gradient(135deg, color-mix(in srgb, var(--btn-primary) 86%, #fff 14%), color-mix(in srgb, var(--urun-name) 72%, #000 28%)); }
.urun-stil10 .prod-img { border-radius: 23px 23px 10px 10px; }
.urun-stil10 .prod-body { margin: 3px; border-radius: 10px 10px 22px 22px; background: color-mix(in srgb, var(--urun-card-bg) 88%, transparent); backdrop-filter: blur(12px); }
.urun-stil11 .prod-card { box-shadow: none; border-radius: 0; border-bottom: 1px solid color-mix(in srgb, var(--urun-name) 16%, transparent); background: transparent; }
.urun-stil11 .prod-img { display: none; }
.urun-stil11 .prod-body { padding: 12px 2px; }
.urun-stil12 .prod-card { border-radius: 22px; }
.urun-stil12 .prod-img { border-radius: 0 0 22px 22px; order: 2; }
.urun-stil12 .prod-body { order: 1; padding: 12px; }
.urun-stil13 .prod-card { border-radius: 16px; border: 1px solid rgba(255,255,255,.55); background: color-mix(in srgb, var(--urun-card-bg) 76%, transparent); backdrop-filter: blur(12px); }
.urun-stil13 .prod-img { padding: 8px; border-radius: 16px; }
.urun-stil14 .prod-card { display: grid; grid-template-columns: 1fr 42%; border-radius: 18px; }
.urun-stil14 .prod-img { order: 2; height: 100%; }
.urun-stil14 .prod-body { order: 1; padding: 12px; }
.urun-stil15 .prod-card { border-radius: 12px 28px 12px 28px; border: 1px solid color-mix(in srgb, var(--btn-primary) 24%, transparent); }
.urun-stil15 .prod-img { border-radius: 12px 28px 0 0; }
.urun-stil16 .prod-card { border-radius: 4px; box-shadow: none; border: 1px dashed color-mix(in srgb, var(--urun-name) 26%, transparent); }
.urun-stil16 .prod-body { padding: 10px 12px 12px; }
.urun-stil17 .prod-card { border-radius: 28px; box-shadow: 0 30px 45px -38px rgba(0,0,0,.82); }
.urun-stil17 .prod-img { border-radius: 28px 28px 0 0; }
.urun-stil18 .prod-card { border-radius: 0; background: transparent; box-shadow: none; }
.urun-stil18 .prod-img { border-radius: 18px; box-shadow: 0 18px 30px -28px rgba(0,0,0,.72); }
.urun-stil18 .prod-body { padding: 10px 0 0; }
.urun-stil19 .prod-card { min-height: 196px; border-radius: 18px; background: #111827; }
.urun-stil19 .prod-img { height: 100%; min-height: 196px; }
.urun-stil20 .prod-card { border-radius: 26px; border: 2px solid var(--btn-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--btn-primary) 12%, transparent); }
.urun-stil20 .prod-img { border-radius: 22px 22px 0 0; }

@media (min-width:768px) {
  .kat-stil7 .cat-img,
  .kat-stil10 .cat-img,
  .kat-stil20 .cat-img { min-height: var(--kat-img-h-t); }
  .urun-stil3 .prod-img,
  .urun-stil14 .prod-img { height: 100%; }
}
@media (max-width:430px) {
  #appHeader.header-stil5,
  #appHeader.header-stil20 { height: 178px; min-height: 178px; }
  #appHeader.header-stil5 .brand,
  #appHeader.header-stil20 .brand { min-height: 178px; padding-bottom: 28px; }
  .urun-stil5 .prod-card,
  .urun-stil6 .prod-card,
  .urun-stil14 .prod-card { grid-template-columns: 1fr; }
  .urun-stil6 .prod-img { width: 100%; height: var(--urun-img-h-m); margin-left: 0; border-radius: 14px; }
}
