:root {
  --oz-ink: #1a1a1a;
  --oz-muted: #6b6b6b;
  --oz-line: #e6e6e6;
  --oz-bg: #f5f5f5;
  --oz-white: #ffffff;
  --oz-orange: #ff6a00;
  --oz-orange-deep: #e55e00;
  --oz-grad-warm: linear-gradient(120deg, #e85d04 0%, #d9480f 45%, #c2255c 100%);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #bbb #f5f5f5;
}

*::-webkit-scrollbar { width: 8px; }
*::-webkit-scrollbar-track { background: #f5f5f5; }
*::-webkit-scrollbar-thumb { background: #bbb; border-radius: 4px; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--oz-bg);
  color: var(--oz-ink);
  overflow-x: hidden;
  min-height: 100vh;
}

.font-display { font-family: var(--font-display); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: grid;
  place-items: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader.yuklendi {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.loader_logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.loader_logo-wrap img {
  width: min(200px, 52vw);
  height: auto;
  animation: logoBreath 1.6s ease-in-out infinite;
}
.loader_ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #eee;
  border-top-color: var(--oz-orange);
  animation: spinLoader .85s linear infinite;
}
.loader_text {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oz-muted);
}
.loader_bar {
  width: min(160px, 46vw);
  height: 3px;
  background: #eee;
  overflow: hidden;
  border-radius: 2px;
}
.loader_bar > span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--oz-orange);
  animation: loadBar 1.1s ease-in-out infinite;
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: .92; }
}
@keyframes loadBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.whatsAppFloat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 800;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .95rem .7rem .7rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .42);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsAppFloat::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, .45);
  animation: waPulse 1.8s ease-out infinite;
  pointer-events: none;
}
.whatsAppFloat__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}
.whatsAppFloat__text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
  padding-right: .2rem;
}
.whatsAppFloat__text strong {
  font-size: .82rem;
  font-weight: 800;
}
.whatsAppFloat__text span {
  font-size: .68rem;
  opacity: .9;
  font-weight: 600;
}
@media (min-width: 640px) {
  .whatsAppFloat__text { display: flex; }
}
.whatsAppFloat:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(37, 211, 102, .5);
  color: #fff !important;
}
@keyframes waPulse {
  0% { transform: scale(.92); opacity: .9; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}
.my-float { line-height: 1; }

.typeahead.dropdown-menu,
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 100%;
  max-width: min(520px, 92vw);
  max-height: 320px;
  overflow-y: auto;
  padding: .4rem;
  margin: .4rem 0 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: .85rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.typeahead.dropdown-menu > li > a,
.dropdown-menu > li > a {
  display: block;
  padding: .35rem;
  color: #111;
  text-decoration: none;
  white-space: normal;
  border-radius: .55rem;
}
.typeahead.dropdown-menu > .active > a,
.typeahead.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a,
.dropdown-menu > li > a:hover {
  background: #f6f6f6;
  color: #111;
}
.tt-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tt-row img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: .45rem;
  background: #f0f0f0;
  flex-shrink: 0;
}
.tt-row__text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.tt-row__text strong {
  font-size: .78rem;
  color: var(--oz-orange);
  letter-spacing: .02em;
}
.tt-row__text span {
  font-size: .9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: transparent;
}
.site-header__main {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 230, 230, .9);
  transition: box-shadow .28s ease, background .28s ease;
}
.site-header.is-scrolled .site-header__main {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 30px rgba(26, 26, 26, .07);
}
.site-header__bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: .95rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo search burger";
  align-items: center;
  column-gap: .85rem;
  row-gap: .75rem;
}
@media (min-width: 640px) {
  .site-header__bar { padding: 1rem 1.5rem; }
}
@media (min-width: 768px) {
  .site-header__bar {
    grid-template-columns: auto minmax(0, 1fr) minmax(200px, 300px);
    grid-template-areas: "logo nav search";
    padding: 1.05rem 1.5rem;
    column-gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .site-header__bar {
    grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px) auto;
    grid-template-areas: "logo nav search cta";
    padding: 1.1rem 2.5rem;
    column-gap: 1.25rem;
  }
}

.site-logo-link {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  height: 64px;
}
@media (min-width: 640px) {
  .site-logo-link { height: 78px; }
}
@media (min-width: 1024px) {
  .site-logo-link { height: 86px; }
}
.site-logo {
  height: 64px;
  width: auto;
  display: block;
  transform: scale(1);
  transform-origin: left center;
  transition: transform .28s ease;
  will-change: transform;
}
@media (min-width: 640px) {
  .site-logo { height: 78px; }
}
@media (min-width: 1024px) {
  .site-logo { height: 86px; }
}
.site-header.is-scrolled .site-logo {
  transform: scale(.68);
}
@media (min-width: 640px) {
  .site-header.is-scrolled .site-logo { transform: scale(.64); }
}

.site-header__nav {
  grid-area: nav;
  min-width: 0;
}
.site-header__search {
  grid-area: search;
  min-width: 0;
  width: 100%;
}
.mm-burger { grid-area: burger; justify-self: end; }
.site-header__cta { grid-area: cta; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .8rem;
  border: 0;
  background: transparent;
  color: var(--oz-ink);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  border-radius: .7rem;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--oz-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--oz-orange);
  background: rgba(255, 106, 0, .06);
  outline: none;
}
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.nav-dropdown:hover > .site-nav__link::after,
.nav-dropdown:focus-within > .site-nav__link::after {
  transform: scaleX(1);
}
.site-nav__link--static { cursor: default; }
.site-nav__link--static:hover { background: transparent; color: var(--oz-ink); }
.site-nav__link--static::after { display: none; }
.site-nav__chev {
  width: .7rem;
  height: .7rem;
  opacity: .45;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-dropdown:hover .site-nav__chev,
.nav-dropdown:focus-within .site-nav__chev {
  transform: rotate(180deg);
  opacity: .8;
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  max-height: 340px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1rem;
  padding: .45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 70;
  box-shadow: 0 18px 40px rgba(26, 26, 26, .12);
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .6rem .8rem;
  color: #333;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: .7rem;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.nav-dropdown-menu a:hover {
  background: #fff5ee;
  color: var(--oz-orange);
  padding-left: 1rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-box__icon {
  position: absolute;
  left: .95rem;
  color: #9a9a9a;
  pointer-events: none;
  transition: color .2s ease;
}
.search-box__input {
  width: 100%;
  border: 1px solid #ebebeb;
  background: #f6f6f6;
  border-radius: 999px;
  padding: .78rem 5.6rem .78rem 2.7rem;
  font-size: .9rem;
  color: var(--oz-ink);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.search-box__input::placeholder { color: #9a9a9a; }
.search-box__input:focus {
  border-color: rgba(255, 106, 0, .45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .12);
}
.search-box:focus-within .search-box__icon { color: var(--oz-orange); }
.search-box__hint {
  position: absolute;
  right: .65rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #aaa;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: .28rem .55rem;
  pointer-events: none;
}
@media (max-width: 640px) {
  .search-box__hint { display: none; }
  .search-box__input { padding-right: 1rem; }
}

.site-header__cta {
  align-items: center;
  gap: .65rem;
  padding: .45rem .9rem .45rem .45rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #ff7a1a 0%, #e85d04 55%, #d9480f 100%);
  box-shadow: 0 8px 18px rgba(232, 93, 4, .28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.site-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(232, 93, 4, .34);
  filter: brightness(1.03);
}
.site-header__cta-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .2);
}
.site-header__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding-right: .2rem;
}
.site-header__cta-text strong {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
}
.site-header__cta-text small {
  font-size: .72rem;
  opacity: .92;
  font-weight: 600;
}

.topbar {
  position: relative;
  background: var(--oz-grad-warm);
  color: #fff;
  overflow: hidden;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,.18), transparent 28%),
    radial-gradient(circle at 88% 40%, rgba(255,255,255,.12), transparent 26%);
  pointer-events: none;
}
.topbar__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
@media (min-width: 640px) {
  .topbar__inner { padding: .58rem 1.5rem; }
}
@media (min-width: 1024px) {
  .topbar__inner { padding: .62rem 2.5rem; }
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.topbar__place,
.topbar__note {
  display: none;
  align-items: center;
  gap: .4rem;
  margin: 0;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.topbar__sep {
  display: none;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.35);
}
@media (min-width: 640px) {
  .topbar__place { display: inline-flex; }
}
@media (min-width: 900px) {
  .topbar__note,
  .topbar__sep { display: inline-flex; }
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}
.topbar__chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.topbar__chip:hover {
  background: #fff;
  border-color: #fff;
  color: #e85d04;
  transform: translateY(-1px);
}
.topbar__chip--ig span { display: none; }
@media (min-width: 480px) {
  .topbar__chip--ig span { display: inline; }
}

.hero-section {
  background: #fff;
  border-bottom: 1px solid var(--oz-line);
}
.hero-wrap {
  position: relative;
  padding: 1rem 1rem 1.5rem;
}
@media (min-width: 640px) {
  .hero-wrap { padding: 1.25rem 1.5rem 2rem; }
}
@media (min-width: 1024px) {
  .hero-wrap { padding: 1.5rem 2.5rem 2.5rem; }
}
.hero-stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  background: #eee;
  overflow: hidden;
  border-radius: 1.15rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.25) 100%);
}
.hero-stage #big-slider .owl-lazy,
.hero-stage #big-slider img {
  width: 100%;
  height: clamp(280px, 46vw, 560px);
  object-fit: cover;
  cursor: pointer;
  display: block;
}
.hero-catalog {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  bottom: auto;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--oz-orange);
  color: #fff;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .7rem 1rem;
  border-radius: .65rem;
  box-shadow: 0 10px 28px rgba(255,106,0,.35);
  transition: background .2s ease, transform .2s ease;
}
.hero-catalog:hover {
  background: var(--oz-orange-deep);
  transform: translateY(-2px);
  color: #fff;
}
@media (min-width: 640px) {
  .hero-catalog {
    top: 1.25rem;
    right: 1.25rem;
    font-size: .85rem;
    padding: .85rem 1.15rem;
  }
}
.hero-stage .owl-nav { margin: 0; }
.hero-stage .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  margin: 0 !important;
  background: rgba(255,255,255,.95) !important;
  color: #1a1a1a !important;
  font-size: 1.5rem !important;
  line-height: 48px !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index: 6;
}
.hero-stage .owl-nav button:hover {
  background: var(--oz-orange) !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.05);
}
.hero-stage .owl-nav .owl-prev { left: 1rem; }
.hero-stage .owl-nav .owl-next { right: 1rem; }
.hero-stage .owl-dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.35rem;
  left: auto;
  text-align: right;
  z-index: 8;
  width: auto;
}
@media (max-width: 639px) {
  .hero-stage .owl-dots {
    right: auto;
    left: 0;
    right: 0;
    bottom: 4.4rem;
    text-align: center;
  }
}
.hero-stage .owl-dot span {
  background: rgba(255,255,255,.45) !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 4px !important;
  transition: width .25s ease, background .25s ease !important;
}
.hero-stage .owl-dot.active span {
  background: var(--oz-orange) !important;
  width: 28px !important;
  border-radius: 999px !important;
  box-shadow: none;
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.2);
  z-index: 7;
  overflow: hidden;
}
.hero-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--oz-orange);
}

.hero-thumbs {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  z-index: 9;
  max-width: calc(100% - 2rem);
  margin: 0;
  display: flex;
  justify-content: center;
  gap: .5rem;
  overflow-x: auto;
  padding: .35rem;
  border-radius: .85rem;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  scrollbar-width: none;
}
.hero-thumbs::-webkit-scrollbar { display: none; height: 0; }
.hero-thumbs button {
  flex: 0 0 auto;
  width: 72px;
  height: 48px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: .5rem;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  opacity: .85;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hero-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-thumbs button:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.hero-thumbs button.is-active {
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--oz-orange);
}
@media (min-width: 640px) {
  .hero-thumbs {
    bottom: 1.35rem;
    gap: .6rem;
    padding: .4rem;
  }
  .hero-thumbs button {
    width: 96px;
    height: 60px;
  }
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1rem;
  }
  .cat-tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .cat-tile:nth-child(1) img { aspect-ratio: auto; height: 100%; min-height: 380px; }
  .cat-tile:nth-child(1) .cat-meta { padding: 1.5rem; }
  .cat-tile:nth-child(1) .cat-name { font-size: 1.5rem; }
}
@media (min-width: 1100px) {
  .cat-grid { gap: 1.15rem; }
}

.cat-tile {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  text-decoration: none;
  color: #fff;
  border-radius: .85rem;
  isolation: isolate;
}
.cat-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1), filter .35s ease;
  filter: brightness(.92);
}
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72) 100%);
  z-index: 1;
  transition: background .35s ease;
}
.cat-tile:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}
.cat-tile:hover::after {
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.78) 100%);
}
.cat-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem;
}
.cat-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(.85rem, 1.3vw, 1.05rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.25;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--oz-orange);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.cat-tile:hover .cat-cta {
  opacity: 1;
  transform: translateY(0);
}
.cat-accent {
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--oz-orange);
  margin-bottom: .55rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.cat-tile:hover .cat-accent { transform: scaleX(1); }

.svc-section {
  background: #fafafa;
  border-top: 1px solid var(--oz-line);
  border-bottom: 1px solid var(--oz-line);
}
.svc-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 320px;
  background: #ddd;
  isolation: isolate;
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  filter: brightness(.88);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 25%, rgba(26,26,26,.78) 100%);
}
.svc-card:hover img {
  transform: scale(1.06);
  filter: brightness(.95);
}
.svc-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem 1.25rem 1.4rem;
  color: #fff;
}
.svc-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--oz-orange);
  margin-bottom: .45rem;
}
.svc-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
.svc-card p {
  margin: .45rem 0 0;
  font-size: .875rem;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
  max-width: 28ch;
}

.site-footer {
  margin-top: 4rem;
  position: relative;
  background: linear-gradient(165deg, #fff7f2 0%, #ffffff 35%, #fff1e8 100%);
  color: var(--oz-ink);
  overflow: hidden;
  border-top: none;
}
.site-footer__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 70px;
  line-height: 0;
  transform: translateY(-99%);
}
.site-footer__wave svg {
  width: 100%;
  height: 70px;
  display: block;
}
.site-footer__wave path {
  fill: #fff7f2;
}
.site-footer__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1rem 2.5rem;
}
@media (min-width: 640px) {
  .site-footer__inner { padding: 1.25rem 1.5rem 3rem; }
}
@media (min-width: 1024px) {
  .site-footer__inner { padding: 1.5rem 2.5rem 3.25rem; }
}
.site-footer__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.site-footer__eyebrow {
  margin: 0;
  display: inline-flex;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #ffe8d6;
  color: var(--oz-orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer__headline {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--oz-ink);
}
.site-footer__logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 1.35rem auto 0;
}
.site-footer__cards {
  display: grid;
  gap: .85rem;
}
@media (min-width: 768px) {
  .site-footer__cards { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.site-footer__card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid #ffd9c2;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(255, 106, 0, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.site-footer__card:hover {
  transform: translateY(-3px);
  border-color: var(--oz-orange);
  box-shadow: 0 16px 34px rgba(255, 106, 0, .12);
}
.site-footer__card-ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff9a3c, #ff4d6d);
  color: #fff;
  font-size: 1rem;
  margin-bottom: .25rem;
}
.site-footer__card-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oz-muted);
}
.site-footer__card strong {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--oz-ink);
}
.site-footer__card--ig .site-footer__card-ico {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}
.site-footer__bottom {
  border-top: 1px solid #ffd9c2;
  padding: 1rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, .55);
}
.site-footer__bottom p {
  margin: 0;
  font-size: .8rem;
  color: var(--oz-muted);
}

.scrollTopBtn {
  position: fixed;
  right: 1.25rem;
  bottom: 6.2rem;
  z-index: 790;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--oz-ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.scrollTopBtn.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scrollTopBtn:hover { background: var(--oz-orange); }
@media (min-width: 640px) {
  .scrollTopBtn { bottom: 6.8rem; }
}

.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.pagination > li > a,
.pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.45rem;
  height: 2.45rem;
  padding: 0 .7rem;
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: .7rem;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: .875rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.pagination > .active > a,
.pagination > .active > span {
  background: var(--oz-orange);
  border-color: var(--oz-orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 106, 0, .28);
}
.pagination > li > a:hover {
  background: #fff5ee;
  border-color: #ffd0b0;
  color: var(--oz-orange);
  transform: translateY(-1px);
}
.pagination > .active > a:hover {
  background: var(--oz-orange-deep);
  border-color: var(--oz-orange-deep);
  color: #fff;
}
.pagination > .disabled > a,
.pagination > .disabled > span,
.pagination > li.disabled > span {
  opacity: .4;
  pointer-events: none;
  background: #f7f7f7;
}

.oz-pager {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
@media (min-width: 640px) {
  .oz-pager {
    flex-direction: row;
    justify-content: space-between;
  }
}
.oz-pager__info {
  margin: 0;
  font-size: .9rem;
  color: var(--oz-muted);
}
.oz-pager__info strong {
  color: var(--oz-orange);
  font-weight: 800;
}
.oz-pager__nav {
  display: flex;
  justify-content: center;
}
.oz-pagination > li:first-child > a,
.oz-pagination > li:first-child > span,
.oz-pagination > li:last-child > a,
.oz-pagination > li:last-child > span {
  min-width: 2.6rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.drawermenu { display: none !important; }
.drawermenu-overlay { display: none !important; }

body.mm-locked { overflow: hidden; }

.mm-burger {
  width: 46px;
  height: 46px;
  border: 1px solid #ffd0b0;
  background: #fff5ee;
  border-radius: .85rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, border-color .2s ease;
}
.mm-burger:hover {
  background: #ffe8d6;
  border-color: var(--oz-orange);
}
.mm-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ff6a00;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.mm-burger[aria-expanded="true"] {
  background: var(--oz-orange);
  border-color: var(--oz-orange);
}
.mm-burger[aria-expanded="true"] span { background: #fff; }
.mm-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mm-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mm-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mm-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26, 16, 10, .48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease;
}
.mm-overlay.is-open { opacity: 1; }

.mm-panel {
  position: fixed;
  top: .75rem;
  right: .75rem;
  bottom: .75rem;
  z-index: 100;
  width: min(360px, calc(100vw - 1.5rem));
  height: auto;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 24px 60px rgba(255, 106, 0, .18), 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(calc(100% + 1.5rem)) scale(.98);
  opacity: 0;
  transition: transform .34s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}
.mm-panel.is-open {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.mm-hero {
  padding: 1.1rem 1.15rem 1.2rem;
  background: linear-gradient(135deg, #ff9a3c 0%, #ff6a00 48%, #ff4d6d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mm-hero::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  pointer-events: none;
}
.mm-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.mm-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.15));
}
.mm-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  border-radius: .75rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background .2s ease;
}
.mm-close:hover { background: rgba(255,255,255,.3); }
.mm-hero__title {
  position: relative;
  z-index: 1;
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.mm-hero__sub {
  position: relative;
  z-index: 1;
  margin: .25rem 0 0;
  font-size: .85rem;
  opacity: .9;
  font-weight: 500;
}

.mm-nav {
  flex: 1;
  overflow-y: auto;
  padding: .85rem .85rem .4rem;
}
.mm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}
.mm-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem .9rem;
  border: 1px solid transparent;
  background: #fafafa;
  border-radius: .95rem;
  text-align: left;
  text-decoration: none;
  color: var(--oz-ink);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.mm-link:hover {
  background: #fff5ee;
  border-color: #ffd0b0;
  color: var(--oz-orange);
}
.mm-num {
  width: 2rem;
  height: 2rem;
  border-radius: .6rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #eee;
  color: var(--oz-orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.mm-label { flex: 1; line-height: 1.25; }
.mm-arrow {
  color: #ccc;
  font-size: 1rem;
  transition: transform .2s ease, color .2s ease;
}
.mm-link:hover .mm-arrow {
  color: var(--oz-orange);
  transform: translateX(2px);
}
.mm-chevron-wrap {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: .5rem;
  background: #fff;
  border: 1px solid #eee;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mm-chevron {
  transition: transform .2s ease;
  color: #999;
}
.mm-item.is-open > .mm-toggle {
  background: #fff5ee;
  border-color: #ffd0b0;
  color: var(--oz-orange);
}
.mm-item.is-open > .mm-toggle .mm-chevron {
  transform: rotate(180deg);
  color: var(--oz-orange);
}
.mm-item.is-open > .mm-toggle .mm-chevron-wrap {
  border-color: #ffd0b0;
  background: #ffe8d6;
}

.mm-sub {
  list-style: none;
  margin: .35rem 0 .15rem 0;
  padding: .25rem 0 .25rem .55rem;
  display: none;
  border-left: 2px solid #ffd0b0;
  margin-left: 1.85rem;
}
.mm-item.is-open > .mm-sub { display: grid; gap: .2rem; }
.mm-sub a {
  display: block;
  padding: .65rem .8rem;
  color: #555;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  border-radius: .65rem;
  transition: background .15s ease, color .15s ease;
}
.mm-sub a:hover {
  background: #fff5ee;
  color: var(--oz-orange);
}

.mm-foot {
  padding: .85rem;
  border-top: 1px solid #f0f0f0;
  background: linear-gradient(180deg, #fff, #fff8f3);
  display: grid;
  gap: .55rem;
}
.mm-cta {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem .9rem;
  border-radius: .9rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, filter .15s ease;
}
.mm-cta:hover { transform: translateY(-1px); filter: brightness(1.03); }
.mm-cta--phone {
  background: linear-gradient(135deg, #ff9a3c, #ff6a00);
  color: #fff;
}
.mm-cta--phone i {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: .6rem;
  background: rgba(255,255,255,.2);
  display: grid;
  place-items: center;
}
.mm-cta--phone span { display: flex; flex-direction: column; line-height: 1.2; }
.mm-cta--phone small {
  font-size: .68rem;
  opacity: .9;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mm-cta--phone strong { font-size: .95rem; }
.mm-foot__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.mm-cta--ig,
.mm-cta--wa {
  justify-content: center;
  color: #fff;
  font-size: .85rem;
}
.mm-cta--ig { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.mm-cta--wa { background: linear-gradient(135deg, #25d366, #128c7e); }

.navbar-toggler { display: none; }

.cms-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}
.cms-content img { max-width: 100%; height: auto; }
.cms-content h1, .cms-content h2, .cms-content h3 {
  font-family: var(--font-display);
  color: #1a1a1a;
}

.page-banner {
  background: #fff;
  border-bottom: 1px solid var(--oz-line);
}

.product-card {
  background: #fff;
  border: 1px solid var(--oz-line);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color .2s ease;
  border-radius: .85rem;
  overflow: hidden;
}
.product-card:hover { border-color: #ccc; box-shadow: none; transform: none; }

.filter-panel {
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1rem;
  overflow: hidden;
}
.filter-panel .filter-head {
  background: #fafafa;
  border-bottom: 1px solid var(--oz-line);
  padding: .85rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

/* —— Catalog listing —— */
.catalog-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem 5rem;
}
@media (min-width: 640px) {
  .catalog-page { padding: 1.75rem 1.5rem 5rem; }
}
@media (min-width: 1024px) {
  .catalog-page { padding: 2rem 2.5rem 3rem; }
}
.catalog-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 280px 1fr;
    gap: 1.75rem;
    align-items: start;
  }
  .sticky-filter {
    position: sticky;
    top: 7.5rem;
  }
}

.filter-panel.left-filters {
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.fp-block + .fp-block {
  border-top: 1px solid var(--oz-line);
}
.fp-title {
  padding: .9rem 1.1rem .35rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oz-muted);
}
.fp-cats {
  list-style: none;
  margin: 0;
  padding: .35rem .55rem 0.75rem;
}
.fp-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .65rem;
  border: 0;
  background: transparent;
  border-radius: .7rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--oz-ink);
  transition: background .2s ease;
}
.fp-cat-toggle:hover { background: #f7f7f7; }
.fp-cat-toggle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.fp-cat-toggle span { flex: 1; }
.fp-chevron {
  color: #aaa;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.fp-cat.is-open > .fp-cat-toggle { background: #fff5ee; color: var(--oz-orange); }
.fp-cat.is-open .fp-chevron { transform: rotate(180deg); color: var(--oz-orange); }
.fp-cat-children {
  margin: 0 .4rem .5rem 2.4rem;
  border-left: 2px solid #ffe0cc;
  padding-left: .55rem;
}
.fp-cat-children ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-cat-children a {
  display: block;
  padding: .5rem .45rem;
  color: #666;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 500;
  border-radius: .45rem;
}
.fp-cat-children a:hover {
  background: #fff5ee;
  color: var(--oz-orange);
}
.fp-body { padding: 0 1rem 1rem; }
.fp-search {
  position: relative;
  margin-bottom: .65rem;
}
.fp-search svg {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}
.fp-search input {
  width: 100%;
  border: 1px solid var(--oz-line);
  background: #f7f7f7;
  border-radius: .65rem;
  padding: .65rem .75rem .65rem 2.2rem;
  font-size: .85rem;
  outline: none;
  color: var(--oz-ink);
}
.fp-search input:focus {
  border-color: var(--oz-orange);
  background: #fff;
}
.fp-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 168px;
  overflow-y: auto;
  display: grid;
  gap: .25rem;
}
.fp-check {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .65rem;
  border-radius: .7rem;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: var(--oz-ink);
  transition: background .15s ease, color .15s ease;
  user-select: none;
}
.fp-check:hover {
  background: #fff5ee;
  color: var(--oz-orange);
}
.fp-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  flex-shrink: 0;
  border: 2px solid #d5d5d5;
  border-radius: .4rem;
  background: #fff;
  display: grid;
  place-items: center;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;
  cursor: pointer;
}
.fp-check input::after {
  content: "";
  width: .35rem;
  height: .6rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: scale(0) rotate(45deg);
  transition: transform .15s ease;
  margin-top: -1px;
}
.fp-check input:hover {
  border-color: #ffb07a;
}
.fp-check input:checked {
  background: var(--oz-orange);
  border-color: var(--oz-orange);
  box-shadow: 0 4px 12px rgba(255, 106, 0, .28);
}
.fp-check input:checked::after {
  transform: scale(1) rotate(45deg);
}
.fp-check input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .22);
}
.fp-check:has(input:checked) {
  background: #fff5ee;
  color: var(--oz-orange);
}
.fp-check span {
  line-height: 1.3;
}
.fp-apply {
  padding: 1rem;
  border-top: 1px solid var(--oz-line);
  background: #fcfcfc;
}
.fp-apply .btnSonuclariGoster,
.btnSonuclariGoster {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--oz-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 800;
  padding: .85rem 1rem;
  border-radius: .75rem;
  transition: background .2s ease;
}
.fp-apply .btnSonuclariGoster:hover { background: var(--oz-orange-deep); }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.catalog-toolbar p {
  margin: 0;
  font-size: .9rem;
  color: var(--oz-muted);
}
.catalog-toolbar strong { color: var(--oz-ink); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.p-card:hover {
  border-color: #ffd0b0;
  box-shadow: 0 16px 36px rgba(255, 106, 0, .1);
  transform: translateY(-3px);
}
.p-card__price {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  background: var(--oz-orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .35rem .6rem;
  border-radius: .5rem;
}
.p-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fafafa, #f3f3f3);
  padding: 1.5rem 1rem;
  min-height: 210px;
}
.p-card__media img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.p-card:hover .p-card__media img { transform: scale(1.04); }
.p-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid #f0f0f0;
}
.p-card__code {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oz-orange);
}
.p-card__title {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.p-card__title a {
  color: var(--oz-ink);
  text-decoration: none;
}
.p-card__title a:hover { color: var(--oz-orange); }
.p-card__meta {
  list-style: none;
  margin: .85rem 0 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}
.p-card__meta li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .82rem;
  padding: .35rem 0;
  border-bottom: 1px dashed #eee;
}
.p-card__meta li:last-child { border-bottom: 0; }
.p-card__meta span { color: var(--oz-muted); }
.p-card__meta b { font-weight: 700; color: var(--oz-ink); text-align: right; }
.p-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .7rem;
  background: #fff;
  border: 1.5px solid var(--oz-ink);
  color: var(--oz-ink);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.p-card__btn:hover {
  background: var(--oz-orange);
  border-color: var(--oz-orange);
  color: #fff;
}

.catalog-pager {
  margin-top: 1.75rem;
  display: flex;
  justify-content: stretch;
}
@media (min-width: 640px) {
  .catalog-pager { justify-content: stretch; }
}

.catalog-empty {
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1rem;
  padding: 4rem 1.5rem;
  text-align: center;
}
.catalog-empty p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--oz-muted);
}
.catalog-empty a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--oz-orange);
  font-weight: 800;
  text-decoration: none;
}

.catalog-filter-fab {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50000;
  border: 0;
  background: var(--oz-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 800;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 106, 0, .35);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .catalog-filter-fab { display: none; }
}

@media (max-width: 1023px) {
  .left-filters {
    display: none;
    position: fixed;
    inset: auto 0 4.5rem 0;
    z-index: 49000;
    max-height: min(70vh, 540px);
    overflow: auto;
    margin: 0 .75rem !important;
    border-radius: 1rem !important;
    box-shadow: 0 -12px 40px rgba(0,0,0,.16);
  }
  .left-filters.is-open { display: block; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise .65s cubic-bezier(.22,1,.36,1) both; }
.rise-1 { animation-delay: .08s; }
.rise-2 { animation-delay: .16s; }

/* —— Product detail —— */
.pd-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
@media (min-width: 640px) {
  .pd-page { padding: 1.75rem 1.5rem 3rem; }
}
@media (min-width: 1024px) {
  .pd-page { padding: 2rem 2.5rem 3.5rem; }
}
.pd-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .pd-layout {
    grid-template-columns: 280px 1fr;
    gap: 1.75rem;
    align-items: start;
  }
}
.pd-hero {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
@media (min-width: 768px) {
  .pd-hero { grid-template-columns: 1.05fr 1fr; }
}
.pd-gallery {
  background: linear-gradient(180deg, #fafafa, #f2f2f2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 320px;
}
.pd-gallery__frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #eee;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
}
.pd-gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pd-info {
  padding: 1.5rem 1.35rem 1.6rem;
}
@media (min-width: 768px) {
  .pd-info { padding: 1.75rem 1.75rem 1.85rem 0.5rem; }
}
.pd-code {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oz-orange);
}
.pd-title {
  margin: .4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--oz-ink);
}
.pd-price {
  margin-top: 1rem;
}
.pd-price__value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--oz-orange);
}
.pd-price__value small {
  font-size: .95rem;
  font-weight: 700;
}
.pd-price__ask {
  display: inline-flex;
  padding: .45rem .8rem;
  border-radius: .55rem;
  background: #fff5ee;
  color: var(--oz-orange);
  font-size: .9rem;
  font-weight: 800;
}
.pd-specs {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  border: 1px solid var(--oz-line);
  border-radius: .85rem;
  overflow: hidden;
}
.pd-specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  font-size: .92rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.pd-specs li:nth-child(even) { background: #fafafa; }
.pd-specs li:last-child { border-bottom: 0; }
.pd-specs span { color: var(--oz-muted); font-weight: 600; }
.pd-specs b { color: var(--oz-ink); font-weight: 700; text-align: right; }

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.15rem;
  border-radius: .75rem;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.pd-btn--wa {
  background: #25d366;
  color: #fff;
}
.pd-btn--wa:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}
.pd-btn--ghost {
  background: #fff;
  border: 1.5px solid var(--oz-ink);
  color: var(--oz-ink);
}
.pd-btn--ghost:hover {
  background: var(--oz-ink);
  color: #fff;
}

.pd-sections {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.pd-card {
  background: #fff;
  border: 1px solid var(--oz-line);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.03);
}
.pd-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--oz-ink);
}
.pd-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.pd-features li {
  position: relative;
  padding: .7rem .85rem .7rem 2.2rem;
  background: #fafafa;
  border-radius: .65rem;
  font-size: .92rem;
  color: #444;
  line-height: 1.45;
}
.pd-features li::before {
  content: "";
  position: absolute;
  left: .85rem;
  top: 1rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--oz-orange);
}

.pd-variants {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
@media (min-width: 640px) {
  .pd-variants { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pd-variants { grid-template-columns: repeat(3, 1fr); }
}
.pd-variant {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem;
  border: 1px solid var(--oz-line);
  border-radius: .8rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pd-variant:hover {
  border-color: #ffd0b0;
  box-shadow: 0 10px 24px rgba(255, 106, 0, .1);
  transform: translateY(-2px);
}
.pd-variant img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: .55rem;
  background: #f5f5f5;
  flex-shrink: 0;
}
.pd-variant strong {
  display: block;
  font-size: .9rem;
  color: var(--oz-ink);
}
.pd-variant span {
  display: block;
  margin-top: .15rem;
  font-size: .8rem;
  color: var(--oz-muted);
}
.pd-variant em {
  display: block;
  margin-top: .2rem;
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  color: var(--oz-orange);
}
