:root {
  --navy: #07152f;
  --navy-2: #0d2349;
  --navy-3: #163465;
  --orange: #ff6b00;
  --orange-dark: #e85f00;
  --orange-soft: #fff1e7;
  --ink: #14213d;
  --muted: #69758c;
  --muted-2: #8d97aa;
  --background: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f8faff;
  --border: #e1e6ef;
  --border-strong: #d2d9e5;
  --success: #0b9a68;
  --success-soft: #e9f8f2;
  --danger: #e94646;
  --shadow-sm: 0 5px 18px rgba(9, 26, 58, 0.07);
  --shadow-md: 0 16px 44px rgba(9, 26, 58, 0.11);
  --shadow-lg: 0 28px 74px rgba(2, 13, 35, 0.22);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1220px;
}

:root[data-theme="dark"] {
  --ink: #f3f6fc;
  --muted: #a9b4c8;
  --muted-2: #8591a8;
  --background: #07101f;
  --surface: #0c192d;
  --surface-2: #101f36;
  --border: #21314b;
  --border-strong: #2d405e;
  --orange-soft: #312014;
  --success-soft: #0d2e28;
  --shadow-sm: 0 5px 18px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  overflow: visible;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.42);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  background: var(--orange-dark);
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.2);
  transform: translateY(-1px);
}

.topbar {
  position: relative;
  z-index: 50;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar__links {
  display: flex;
  gap: 22px;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(7, 21, 47, 0.02);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 244px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.custom-logo-link img {
  width: auto;
  max-width: 210px;
  max-height: 58px;
  object-fit: contain;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(7, 21, 47, 0.18);
  color: #fff;
}

.brand__mark span {
  font-size: 35px;
  font-weight: 950;
  line-height: 1;
}

.brand__mark i {
  position: absolute;
  right: 2px;
  bottom: 1px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 3px solid var(--navy);
  border-radius: 8px 4px 8px 4px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__copy strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

:root[data-theme="dark"] .brand__copy strong {
  color: #fff;
}

.brand__copy strong span {
  color: var(--orange);
}

.brand__copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-search,
.hero-search {
  position: relative;
}

.header-search form,
.hero-search form {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface-2);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.header-search form:focus-within,
.hero-search form:focus-within {
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.header-search form > span,
.hero-search form > span {
  margin-left: 17px;
  color: var(--muted);
  font-size: 25px;
  line-height: 1;
  transform: rotate(-20deg);
}

.header-search input,
.hero-search input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.header-search input::placeholder,
.hero-search input::placeholder {
  color: var(--muted-2);
}

.header-search button,
.hero-search button {
  height: 40px;
  margin-right: 5px;
  padding: 0 19px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.live-search__results {
  position: absolute;
  z-index: 60;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  max-height: 440px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.live-result {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 9px;
  border-radius: 11px;
}

.live-result:hover {
  background: var(--surface-2);
}

.live-result__image {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--background);
}

.live-result__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-result__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.live-result__body strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-result__body small {
  color: var(--muted);
}

.live-result > b {
  color: var(--orange);
  font-size: 13px;
  white-space: nowrap;
}

.live-search__empty {
  margin: 0;
  padding: 20px;
  color: var(--muted);
  text-align: center;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
}

.icon-button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.theme-toggle span {
  font-size: 20px;
}

.menu-toggle {
  display: none;
  gap: 4px;
  align-content: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  border-top: 1px solid var(--border);
}

.site-nav__inner {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.primary-menu a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  color: var(--ink);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 75px;
  background: var(--navy);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.075) 1px, transparent 0);
  background-size: 24px 24px;
  content: "";
  opacity: 0.34;
}

.hero__glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.18;
}

.hero__glow--one {
  top: -230px;
  right: 8%;
  background: var(--orange);
}

.hero__glow--two {
  bottom: -330px;
  left: -120px;
  background: #2e66d1;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #ffb27e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.15);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero__content > p {
  max-width: 630px;
  margin-bottom: 30px;
  color: #c9d4e7;
  font-size: 18px;
  line-height: 1.75;
}

.hero-search {
  max-width: 650px;
}

.hero-search form {
  min-height: 64px;
  border-color: rgba(255, 255, 255, 0.18);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-search input {
  height: 62px;
  color: #14213d;
  font-size: 16px;
}

.hero-search button {
  height: 52px;
  padding-inline: 25px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  color: #aebdd3;
  font-size: 12px;
  font-weight: 700;
}

.hero__trust span::first-letter {
  color: #5ed0a1;
}

.hero-visual {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transform: rotate(1deg);
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 28px;
  content: "";
}

.hero-visual__top,
.hero-visual__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-visual__top span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8edf7;
  font-size: 12px;
  font-weight: 800;
}

.hero-visual__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ee0a2;
  box-shadow: 0 0 0 5px rgba(78, 224, 162, 0.11);
}

.hero-visual__top b {
  color: #73829d;
  letter-spacing: 3px;
}

.hero-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin: 20px 0 14px;
  border-radius: 18px;
  background: #fff;
  color: #14213d;
}

.hero-product__image {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 14px;
  background: #f2f5fa;
  font-size: 37px;
}

.hero-product > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.hero-product small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-product span {
  color: #778198;
  font-size: 11px;
}

.hero-product em {
  padding: 7px 9px;
  border-radius: 9px;
  background: #ffe6e3;
  color: #e13c34;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.price-drop {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.price-drop > div {
  display: flex;
  flex-direction: column;
}

.price-drop > div:last-child {
  align-items: flex-end;
}

.price-drop span {
  color: #92a3bf;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.price-drop del {
  color: #9eabc0;
  font-size: 17px;
}

.price-drop strong {
  color: #fff;
  font-size: 23px;
}

.price-drop .price-drop__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
}

.mini-chart {
  display: flex;
  height: 78px;
  align-items: flex-end;
  gap: 10px;
  padding: 14px 16px 0;
}

.mini-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.34), var(--orange));
}

.hero-visual__footer {
  gap: 8px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8696b0;
  font-size: 9px;
  font-weight: 700;
}

.hero-visual__footer span:first-child {
  color: #ffb36f;
}

.stats-bar {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar__grid > div {
  display: flex;
  min-height: 95px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stats-bar__grid > div:last-child {
  border-right: 0;
}

.stats-bar b {
  color: var(--orange);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.stats-bar span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 900;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading > a,
.result-summary a {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.section-kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker--hot {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 7px;
  background: #ffe7e4;
  color: #d83f38;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 13px;
}

.category-card {
  display: flex;
  min-width: 0;
  min-height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 17px 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 11px;
  border-radius: 16px;
  background: var(--orange-soft);
  font-size: 29px;
}

.category-card strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.deals-section--tinted {
  border-block: 1px solid var(--border);
  background: var(--surface-2);
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.deal-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.deal-card:hover {
  border-color: rgba(255, 107, 0, 0.34);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.deal-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  background: #fff;
}

.deal-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.3s ease;
}

.deal-card:hover .deal-card__media > img {
  transform: scale(1.035);
}

.product-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #f8f9fc, #edf1f7);
  color: #9aa5b8;
}

.product-placeholder i {
  font-size: 45px;
  font-style: normal;
  filter: grayscale(0.15);
}

.product-placeholder small {
  font-size: 11px;
  font-weight: 700;
}

.discount-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 7px 10px;
  border-radius: 9px;
  background: #e9423b;
  box-shadow: 0 7px 18px rgba(233, 66, 59, 0.23);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.discount-badge--large {
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  font-size: 18px;
}

.featured-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deal-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 18px;
  border-top: 1px solid var(--border);
}

.deal-card__meta,
.deal-detail__labels {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.deal-card__meta > a,
.deal-detail__labels > a {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-pill {
  display: inline-flex;
  max-width: 150px;
  align-items: center;
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 7px;
  background: #edf1f6;
  color: #42506a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-pill--amazon { background: #fff2dc; color: #9a5b00; }
.store-pill--trendyol { background: #fff0e7; color: #d2570a; }
.store-pill--hepsiburada { background: #fff0e3; color: #e65300; }
.store-pill--n11 { background: #f1eaff; color: #6937a9; }
.store-pill--migros { background: #fff1d6; color: #c66d00; }
.store-pill--carrefoursa { background: #eaf1ff; color: #215cb6; }
.store-pill--a101 { background: #e7f7fc; color: #047ba0; }
.store-pill--sok { background: #fff8d3; color: #a87b00; }

.deal-card__title {
  display: -webkit-box;
  min-height: 43px;
  overflow: hidden;
  margin: 12px 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.deal-card__title a:hover {
  color: var(--orange);
}

.deal-card__price {
  display: flex;
  min-height: 45px;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.deal-card__price strong {
  color: var(--orange);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.deal-card__price del {
  color: var(--muted-2);
  font-size: 12px;
}

.deal-card__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 11px;
  margin-top: 2px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 9px;
}

.deal-card__status span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.deal-card__status i,
.deal-detail__updated i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(11, 154, 104, 0.1);
}

.coupon {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  margin-top: 11px;
  border: 1px dashed rgba(255, 107, 0, 0.55);
  border-radius: 9px;
  background: var(--orange-soft);
  color: var(--ink);
}

.coupon span {
  overflow: hidden;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon b {
  color: var(--orange);
  font-size: 9px;
}

.deal-card__button {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  margin-top: 13px;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.deal-card__button:hover {
  background: var(--orange);
}

.deal-card__button span {
  font-size: 17px;
}

.empty-deals {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  border: 1px dashed var(--border-strong);
  border-radius: 22px;
  background: var(--surface);
  text-align: center;
}

.empty-deals > span {
  font-size: 48px;
}

.empty-deals h2,
.empty-deals h3 {
  margin: 14px 0 7px;
}

.empty-deals p {
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps-grid article {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.steps-grid article > span {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
}

.steps-grid article > b {
  position: absolute;
  top: 23px;
  right: 25px;
  color: var(--border-strong);
  font-size: 43px;
  font-weight: 950;
}

.steps-grid h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding-top: 0;
  background: var(--navy);
  color: #fff;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 29px 34px;
  border-radius: 22px;
  background: var(--orange);
  box-shadow: 0 18px 48px rgba(255, 107, 0, 0.24);
  transform: translateY(-25px);
}

.footer-cta__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 27px;
}

.footer-cta span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 4px 0 0;
  font-size: 23px;
}

.button--light {
  background: #fff;
  color: var(--navy);
}

.button--light:hover {
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 55px;
  padding: 55px 0 42px;
}

.site-footer .brand__copy strong {
  color: #fff;
}

.site-footer .brand__copy small,
.footer-brand p,
.site-footer li a,
.affiliate-note,
.footer-bottom {
  color: #93a2b9;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 13px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 14px;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li a {
  font-size: 12px;
}

.site-footer li a:hover {
  color: #fff;
}

.affiliate-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
}

.affiliate-note p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.archive-hero {
  padding: 58px 0;
  background: var(--navy);
  color: #fff;
}

.archive-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.archive-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 900;
}

.archive-hero p,
.term-description {
  max-width: 680px;
  margin: 0;
  color: #b9c6da;
}

.archive-hero__badge {
  display: flex;
  min-width: 130px;
  min-height: 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.07);
}

.archive-hero__badge strong {
  color: var(--orange);
  font-size: 34px;
}

.archive-hero__badge span {
  color: #aebcd0;
  font-size: 11px;
  font-weight: 800;
}

.deal-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) auto auto;
  align-items: end;
  gap: 13px;
  padding: 18px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.deal-filters > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deal-filters label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.deal-filters select {
  width: 100%;
  height: 45px;
  padding: 0 35px 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink);
}

.deal-filters button {
  height: 45px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 850;
}

.filter-reset {
  display: grid;
  height: 45px;
  place-items: center;
  padding: 0 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.result-summary span {
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 40px;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.nav-links .current,
.nav-links a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.single-deal-main {
  padding: 28px 0 80px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 7px 0 22px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.deal-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 50px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.deal-detail__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.deal-detail__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
}

.detail-assurance {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.deal-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-detail__labels {
  margin-bottom: 14px;
}

.deal-detail h1 {
  margin-bottom: 14px;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 900;
}

.deal-detail__excerpt {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.deal-detail__price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 26px;
  padding: 20px 0;
  border-block: 1px solid var(--border);
}

.deal-detail__price > div {
  display: flex;
  flex-direction: column;
}

.deal-detail__price span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-detail__price strong {
  color: var(--orange);
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.deal-detail__price del {
  color: var(--muted-2);
  font-size: 17px;
}

.deal-detail__price em {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.deal-detail__updated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 0;
  color: var(--muted);
  font-size: 10px;
}

.deal-detail__updated > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.coupon--large {
  display: grid;
  min-height: 58px;
  grid-template-columns: auto 1fr auto;
  padding: 8px 14px;
  margin: 0 0 12px;
  text-align: left;
}

.coupon--large small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.coupon--large span {
  font-size: 15px;
}

.deal-detail__button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 13px;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.2);
  color: #fff;
  font-weight: 900;
}

.deal-detail__button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.affiliate-inline {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.comparison-card,
.deal-description {
  padding: 34px;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.comparison-card .section-heading {
  margin-bottom: 20px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.offer-row {
  display: grid;
  min-height: 68px;
  grid-template-columns: minmax(180px, 1fr) 160px 150px;
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-2);
}

.offer-row.is-cheapest {
  border-color: rgba(11, 154, 104, 0.35);
  background: var(--success-soft);
}

.offer-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-row > div > b {
  color: var(--success);
  font-size: 9px;
  text-transform: uppercase;
}

.offer-row > strong {
  font-size: 18px;
}

.offer-row > a {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.offer-row > a:hover {
  background: var(--orange);
}

.deal-description {
  max-width: none;
}

.deal-description h2 {
  font-size: 26px;
}

.related-deals {
  padding-bottom: 0;
}

.content-main {
  padding: 65px 0 100px;
}

.content-layout {
  max-width: 900px;
}

.page-heading,
.entry-header {
  margin-bottom: 34px;
}

.page-heading h1,
.entry-header h1 {
  margin: 7px 0 0;
  font-size: clamp(36px, 5vw, 56px);
}

.entry-article {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.entry-hero {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 18px;
}

.entry-content {
  color: var(--ink);
}

.entry-content > * {
  max-width: 100%;
}

.entry-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
}

.entry-content blockquote {
  padding: 15px 20px;
  border-left: 4px solid var(--orange);
  margin-inline: 0;
  background: var(--surface-2);
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 25px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--surface);
}

.post-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card > div {
  padding: 25px 25px 25px 0;
}

.post-card time {
  color: var(--muted);
  font-size: 10px;
}

.post-card h2 {
  margin: 7px 0 10px;
}

.post-card p {
  color: var(--muted);
  font-size: 13px;
}

.post-card div > a {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.not-found {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 60px 0;
}

.not-found__card {
  max-width: 600px;
  padding: 55px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.not-found__card > span {
  color: var(--orange);
  font-size: 80px;
  font-weight: 950;
  line-height: 1;
}

.not-found__card h1 {
  margin: 18px 0 10px;
}

.not-found__card p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns: 220px minmax(280px, 1fr) auto; gap: 18px; }
  .primary-menu { gap: 18px; }
  .primary-menu li:nth-last-child(-n+2) { display: none; }
  .hero__grid { grid-template-columns: 1fr 420px; gap: 45px; }
  .category-grid { grid-template-columns: repeat(5, 1fr); }
  .deal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 0.75fr); gap: 35px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar__links { display: none; }
  .topbar__inner { justify-content: center; text-align: center; }
  .site-header__inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .site-header__brand { min-width: 0; }
  .header-search { display: none; }
  .menu-toggle { display: grid; }
  .site-nav { position: fixed; top: 110px; right: 0; bottom: 0; left: 0; overflow-y: auto; border-top: 1px solid var(--border); background: var(--surface); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav__inner { min-height: 100%; flex-direction: column; align-items: stretch; justify-content: flex-start; padding-block: 22px; }
  .primary-menu { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-menu li:nth-last-child(-n+2) { display: block; }
  .primary-menu a { min-height: 52px; border-bottom: 1px solid var(--border); font-size: 15px; }
  .primary-menu a::after { display: none; }
  .nav-cta { display: flex; min-height: 52px; align-items: center; justify-content: center; border-radius: 12px; background: var(--orange); color: #fff; }
  .hero { padding: 62px 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__content > p, .hero-search { margin-inline: auto; }
  .hero__trust { justify-content: center; }
  .hero-visual { width: min(100%, 570px); margin-inline: auto; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid > div:nth-child(2) { border-right: 0; }
  .stats-bar__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .section { padding: 62px 0; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .deal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-filters { grid-template-columns: repeat(2, 1fr); }
  .deal-detail { grid-template-columns: 1fr; gap: 30px; }
  .deal-detail__gallery { max-width: 620px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topbar { font-size: 11px; }
  .brand__mark { width: 44px; height: 44px; border-radius: 13px; }
  .brand__mark span { font-size: 29px; }
  .brand__copy strong { font-size: 18px; }
  .brand__copy small { font-size: 7px; }
  .custom-logo-link img { max-width: 175px; max-height: 48px; }
  .site-nav { top: 100px; }
  .hero { padding: 50px 0 54px; }
  .hero h1 { font-size: 39px; }
  .hero__content > p { font-size: 15px; }
  .hero-search form { min-height: 58px; }
  .hero-search input { height: 56px; font-size: 13px; }
  .hero-search button { height: 46px; padding-inline: 15px; font-size: 12px; }
  .hero-search form > span { margin-left: 12px; }
  .hero__trust { gap: 10px; font-size: 10px; }
  .hero-visual { padding: 16px; border-radius: 22px; transform: none; }
  .hero-visual::before { display: none; }
  .hero-product { grid-template-columns: 60px minmax(0, 1fr) auto; padding: 11px; }
  .hero-product__image { width: 60px; height: 60px; font-size: 29px; }
  .hero-product strong { font-size: 12px; }
  .price-drop { padding: 14px; }
  .price-drop strong { font-size: 19px; }
  .price-drop del { font-size: 14px; }
  .hero-visual__footer { display: grid; grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-heading--center { align-items: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 132px; }
  .deal-grid { grid-template-columns: 1fr; }
  .deal-card { max-width: 520px; margin-inline: auto; }
  .deal-card__media { aspect-ratio: 1 / .75; }
  .footer-cta { grid-template-columns: auto 1fr; padding: 22px; }
  .footer-cta .button { grid-column: 1 / -1; }
  .footer-cta h2 { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .archive-hero { padding: 44px 0; }
  .archive-hero__inner { align-items: flex-start; }
  .archive-hero__badge { min-width: 92px; min-height: 88px; }
  .archive-hero__badge strong { font-size: 25px; }
  .deal-filters { grid-template-columns: 1fr; }
  .result-summary { align-items: flex-start; flex-direction: column; }
  .single-deal-main { padding-top: 12px; }
  .deal-detail { padding: 17px; border-radius: 19px; }
  .detail-assurance { flex-direction: column; gap: 4px; align-items: center; }
  .deal-detail__price { gap: 16px; }
  .deal-detail__price strong { font-size: 31px; }
  .deal-detail__updated { align-items: flex-start; flex-direction: column; }
  .coupon--large { grid-template-columns: 1fr auto; }
  .coupon--large small { grid-column: 1 / -1; }
  .comparison-card, .deal-description { padding: 20px; }
  .offer-row { grid-template-columns: 1fr auto; gap: 10px; }
  .offer-row > a { grid-column: 1 / -1; }
  .entry-article { padding: 24px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card > div { padding: 0 20px 22px; }
  .not-found__card { padding: 35px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* --------------------------------------------------------------------------
   Kıyaslıyor Pro v2.0
   -------------------------------------------------------------------------- */

body.modal-open { overflow: hidden; }

.topbar--pro { background: var(--navy); font-size: 12px; }
.topbar--pro .topbar__inner { min-height: 34px; }
.topbar--pro p { display: flex; align-items: center; gap: 8px; color: #dbe5f4; }
.topbar--pro p i { width: 7px; height: 7px; border-radius: 50%; background: #38d49c; box-shadow: 0 0 0 5px rgba(56,212,156,.1); }
.topbar--pro .topbar__links { align-items: center; color: #aab8cd; }
.topbar--pro .topbar__links a { color: #fff; font-weight: 850; }

.site-header--pro { background: var(--surface); }
.site-header__inner--pro { grid-template-columns: 245px minmax(360px, 1fr) auto; min-height: 82px; gap: 28px; }
.site-nav--pro { border: 0; }
.primary-menu--pro { justify-content: center; gap: 30px; }
.primary-menu--pro a { min-height: 81px; font-size: 13px; }
.site-header__actions--pro { gap: 9px; }
.header-alert { display: inline-flex; min-height: 43px; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; border: 0; border-radius: 11px; background: var(--orange); box-shadow: 0 8px 22px rgba(255,107,0,.22); color: #fff; font-size: 12px; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.header-alert:hover { box-shadow: 0 12px 28px rgba(255,107,0,.29); transform: translateY(-1px); }
.header-alert span { font-size: 16px; }

.hero--pro { padding: 57px 0 53px; background: linear-gradient(130deg, #06162e 0%, #0a2347 59%, #0e315d 100%); }
.hero--pro::before { background-size: 27px 27px; opacity: .22; }
.hero__grid--pro { grid-template-columns: minmax(0, 1fr) 515px; gap: 72px; }
.eyebrow--pro { display: inline-flex; padding: 7px 11px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.06); color: #dce7f7; font-size: 10px; }
.eyebrow--pro i { display: grid; width: 17px; height: 17px; place-items: center; box-shadow: none; background: #1eb57e; color: #fff; font-size: 9px; font-style: normal; }
.hero--pro h1 { max-width: 620px; margin-bottom: 19px; font-size: clamp(43px, 4.7vw, 62px); line-height: 1.03; }
.hero--pro h1 em { color: #ff7b1a; font-style: normal; font-weight: inherit; }
.hero__content--pro > p { max-width: 620px; margin-bottom: 0; color: #afbed3; font-size: 16px; line-height: 1.7; }
.hero-search--pro { max-width: 655px; margin-top: 26px; }
.hero-search--pro form { min-height: 62px; padding-left: 3px; border: 4px solid #fff; border-radius: 17px; background: #fff; }
.hero-search--pro form > span { color: #77849a; }
.hero-search--pro input { height: 54px; font-size: 13px; }
.hero-search--pro button { height: 50px; min-width: 154px; margin-right: 0; border-radius: 11px; font-size: 12px; }
.hero-search--pro button b { margin-left: 10px; }
.hero-quick { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.hero-quick small { color: #7f91aa; font-size: 10px; }
.hero-quick a { padding: 5px 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.05); color: #c0cbdd; font-size: 9px; }
.hero__trust--pro { gap: 22px; margin-top: 25px; color: #b9c6d9; font-size: 10px; }
.hero__trust--pro i { display: inline-grid; width: 15px; height: 15px; margin-right: 5px; place-items: center; border-radius: 50%; background: rgba(31,181,126,.15); color: #4be1aa; font-size: 8px; font-style: normal; }

.hero-live { padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 23px; background: linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.055)); box-shadow: 0 30px 70px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.hero-live__head { display: flex; align-items: center; justify-content: space-between; padding: 0 3px 13px; color: #d9e5f6; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.hero-live__head span { display: flex; align-items: center; gap: 8px; }
.hero-live__head i { width: 7px; height: 7px; border-radius: 50%; background: #34d49c; box-shadow: 0 0 0 5px rgba(52,212,156,.1); }
.hero-live__head small { color: #7f91aa; font-size: 8px; font-weight: 700; text-transform: none; }
.hero-live__product { display: grid; grid-template-columns: 76px minmax(0,1fr) auto; gap: 14px; align-items: center; padding: 14px; border-radius: 15px 15px 0 0; background: #fff; color: #14213d; }
.hero-live__image { display: grid; width: 72px; height: 72px; place-items: center; overflow: hidden; border-radius: 14px; background: #f2f5f9; }
.hero-live__image img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.hero-live__image i { color: #98a5b8; font-size: 25px; font-style: normal; }
.hero-live__product > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; }
.hero-live__product small { color: #8a96a9; font-size: 8px; }
.hero-live__product strong { overflow: hidden; margin: 4px 0 6px; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.hero-live__product em { color: #0b9a68; font-size: 8px; font-style: normal; font-weight: 800; }
.hero-live__product > b { align-self: start; padding: 7px 8px; border-radius: 8px; background: #ffebe5; color: #e94736; font-size: 12px; }
.hero-live__offers { display: grid; gap: 1px; background: #e6ebf2; }
.hero-live__offers > p { padding: 16px; margin: 0; background: #fff; color: #718097; font-size: 11px; text-align: center; }
.hero-offer { position: relative; display: grid; grid-template-columns: 145px minmax(0,1fr) 36px; gap: 12px; align-items: center; min-height: 57px; padding: 8px 11px; background: #fff; color: #14213d; }
.hero-offer:last-child { border-radius: 0 0 15px 15px; }
.hero-offer.is-best { background: #fff8f2; }
.hero-offer > div { display: flex; align-items: flex-start; flex-direction: column; }
.hero-offer > div small { position: absolute; top: -6px; left: 16px; padding: 2px 6px; border-radius: 4px; background: var(--orange); color: #fff; font-size: 6px; font-weight: 900; text-transform: uppercase; }
.store-name { font-size: 11px; font-weight: 900; }
.store-name--amazon { color: #111; }
.store-name--trendyol, .store-name--hepsiburada { color: #f06412; }
.store-name--n11 { color: #d82439; }
.hero-offer > b { justify-self: end; font-size: 13px; }
.hero-offer > a { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid #e3e8f0; border-radius: 9px; background: #fff; color: var(--navy); font-size: 11px; font-weight: 900; }
.hero-offer.is-best > a { border-color: var(--orange); background: var(--orange); color: #fff; }
.hero-live__saving { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: end; padding: 13px 3px 0; color: #8495ad; font-size: 8px; }
.hero-live__saving > div { display: flex; height: 18px; align-items: flex-end; gap: 4px; }
.hero-live__saving i { width: 16%; border-radius: 3px 3px 0 0; background: #274b74; }
.hero-live__saving i:nth-child(1) { height: 75%; }.hero-live__saving i:nth-child(2) { height: 58%; }.hero-live__saving i:nth-child(3) { height: 68%; }.hero-live__saving i:nth-child(4) { height: 45%; }.hero-live__saving i:nth-child(5) { height: 32%; }.hero-live__saving i:nth-child(6) { height: 20%; background: var(--orange); }
.hero-live__saving strong { color: #50d9aa; font-size: 9px; }
.hero-live__empty { display: flex; min-height: 320px; flex-direction: column; align-items: center; justify-content: center; padding: 38px; border-radius: 16px; background: rgba(255,255,255,.08); text-align: center; }
.hero-live__empty > span { display: grid; width: 68px; height: 68px; place-items: center; border-radius: 20px; background: #fff; color: var(--orange); font-size: 25px; }
.hero-live__empty h2 { margin: 18px 0 7px; color: #fff; font-size: 20px; }
.hero-live__empty p { max-width: 330px; margin: 0; color: #9eb0ca; font-size: 12px; }

.merchant-strip { border-bottom: 1px solid var(--border); background: var(--surface); }
.merchant-strip__inner { display: grid; grid-template-columns: 225px 1fr auto; align-items: center; min-height: 72px; gap: 28px; }
.merchant-strip__inner > span { color: var(--muted); font-size: 10px; font-weight: 700; }
.merchant-strip__inner > div { display: flex; align-items: center; justify-content: space-around; gap: 30px; }
.merchant-strip b { font-size: 14px; font-weight: 900; letter-spacing: -.04em; }
.merchant-strip .is-amazon { color: #111; }.merchant-strip .is-trendyol, .merchant-strip .is-hepsiburada { color: #f26b21; }.merchant-strip .is-n11 { color: #d51937; }.merchant-strip .is-migros { color: #f49300; }
.merchant-strip small { padding: 6px 9px; border-radius: 7px; background: var(--surface-2); color: var(--muted); font-size: 8px; font-weight: 800; }

.categories-section--pro { padding: 65px 0 25px; background: var(--surface); }
.section-heading--pro { align-items: flex-end; }
.section-heading--pro h2 { margin-top: 7px; font-size: clamp(28px,3vw,38px); }
.section-heading--pro > a { color: var(--ink); font-size: 11px; }
.section-heading--pro > a b { margin-left: 8px; color: var(--orange); }
.category-grid--pro { grid-template-columns: repeat(6,minmax(0,1fr)); gap: 10px; }
.category-card--pro { display: grid; min-height: 74px; grid-template-columns: 42px minmax(0,1fr) auto; gap: 10px; align-items: center; padding: 13px; text-align: left; }
.category-card--pro > span { display: grid; width: 42px; height: 42px; place-items: center; margin: 0; border-radius: 12px; background: var(--orange-soft); color: var(--orange); font-size: 18px; }
.category-card--pro > div { display: flex; min-width: 0; flex-direction: column; }
.category-card--pro strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.category-card--pro > i { color: var(--muted-2); font-size: 11px; font-style: normal; }

.deals-section--pro { padding: 60px 0 75px; background: var(--surface); }
.deals-heading--pro { margin-bottom: 23px; }
.home-deal-layout { display: grid; grid-template-columns: 350px minmax(0,1fr); gap: 16px; }
.featured-deal-pro { overflow: hidden; border: 1px solid var(--border); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-md); }
.featured-deal-pro__media { position: relative; display: block; height: 275px; overflow: hidden; background: radial-gradient(circle at 50% 42%,#fff 0,#f0f3f8 67%); }
.featured-deal-pro__media > img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.featured-deal-pro__tag { position: absolute; top: 14px; left: 14px; padding: 7px 9px; border-radius: 7px; background: var(--navy); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.featured-deal-pro__media .discount-badge { top: auto; right: 14px; bottom: 14px; left: auto; }
.featured-deal-pro__body { padding: 20px; }
.featured-deal-pro__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.featured-deal-pro__meta span { color: var(--success); font-size: 8px; font-weight: 850; }
.featured-deal-pro__meta small { overflow: hidden; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.featured-deal-pro h3 { margin: 11px 0 14px; font-size: 18px; line-height: 1.38; }
.featured-deal-pro h3 a:hover { color: var(--orange); }
.featured-deal-pro__price { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.featured-deal-pro__price strong { color: var(--orange); font-size: 23px; }
.featured-deal-pro__price del { color: var(--muted-2); font-size: 11px; }
.featured-deal-pro__price span { margin-left: auto; padding: 5px 7px; border-radius: 6px; background: var(--success-soft); color: var(--success); font-size: 7px; font-weight: 800; }
.price-signal-pro { display: block; margin-top: 8px; color: var(--success); font-size: 8px; font-weight: 800; }
.featured-deal-pro__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.featured-deal-pro__actions > a { display: flex; min-height: 40px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid var(--border); border-radius: 10px; color: var(--muted); font-size: 8px; font-weight: 850; text-align: center; }
.featured-deal-pro__actions > .button { border: 0; color: #fff; }
.deal-grid--home { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.deal-grid--home .deal-card__media { aspect-ratio: 1/.82; }
.deal-grid--home .deal-card__body { padding: 15px; }
.deal-grid--home .deal-card__title { font-size: 13px; }
.deal-grid--home .deal-card__price strong { font-size: 19px; }
.latest-pro { padding-top: 70px; border-top: 1px solid var(--border); background: var(--surface-2); }

.deal-card--pro { position: relative; border-radius: 18px; box-shadow: none; }
.favorite-button { position: absolute; z-index: 3; top: 12px; right: 12px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); color: var(--muted); cursor: pointer; }
.favorite-button:hover, .favorite-button.is-active { border-color: #ffc1bd; background: #fff0ef; color: #e9423b; }
.favorite-button span { font-size: 18px; line-height: 1; }
.deal-card--pro .featured-badge { top: 52px; right: 12px; }
.deal-card__unavailable { position: absolute; z-index: 2; right: 12px; bottom: 12px; padding: 6px 9px; border-radius: 8px; background: rgba(7,21,47,.88); color: #fff; font-size: 9px; font-weight: 850; }
.deal-card__signal { display: block; margin: 1px 0 8px; color: var(--success); font-size: 8px; font-weight: 800; }

.trust-band-pro { padding: 75px 0; background: var(--surface); }
.trust-band-pro__inner { display: grid; grid-template-columns: minmax(260px,1fr) auto auto; gap: 45px; align-items: center; padding: 36px 40px; border-radius: 25px; background: linear-gradient(135deg,var(--navy),var(--navy-2)); color: #fff; box-shadow: var(--shadow-lg); }
.trust-band-pro h2 { margin: 8px 0; color: #fff; font-size: 30px; }
.trust-band-pro p { max-width: 580px; margin: 0; color: #b8c6da; font-size: 13px; }
.trust-band-pro__steps { display: flex; align-items: center; gap: 11px; }
.trust-band-pro__steps span { display: flex; align-items: center; gap: 7px; color: #d9e3f1; font-size: 9px; font-weight: 800; }
.trust-band-pro__steps b { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: #ff954d; }
.trust-band-pro__steps > i { color: #5c6e88; font-style: normal; }
.trust-band-pro > .button, .trust-band-pro__inner > .button { white-space: nowrap; }

.single-deal-main--pro { padding: 28px 0 85px; }
.deal-detail--pro { grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr); gap: 52px; padding: 30px; border-radius: 25px; }
.deal-detail--pro .deal-detail__image { border-radius: 20px; }
.favorite-button--detail { top: 18px; right: 18px; width: 42px; height: 42px; }
.deal-detail--pro .detail-assurance { justify-content: center; gap: 18px; }
.verified-pill { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 7px; background: var(--success-soft); color: var(--success); font-size: 9px; font-weight: 850; }
.detail-price-signal { margin: 7px 0 12px; color: var(--success); font-size: 11px; }
.deal-countdown { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 11px 14px; margin: 13px 0; border: 1px solid #ffd2b4; border-radius: 11px; background: var(--orange-soft); }
.deal-countdown span { color: var(--muted); font-size: 10px; }
.deal-countdown strong { color: var(--orange); font-size: 12px; }
.deal-detail__actions { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; margin-top: 17px; }
.deal-detail__actions .deal-detail__button { margin-top: 0; }
.price-alert-button { display: inline-flex; min-height: 55px; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border: 1px solid var(--border-strong); border-radius: 13px; background: var(--surface); color: var(--ink); font-size: 12px; font-weight: 850; cursor: pointer; }
.price-alert-button:hover { border-color: var(--orange); color: var(--orange); }
.price-alert-button span { font-size: 17px; }
.deal-unavailable-message { padding: 11px 14px; margin: 14px 0 0; border-radius: 10px; background: #fff0ef; color: #c53a36; font-size: 11px; font-weight: 800; }

.comparison-card--pro, .price-insight { padding: 30px; margin-top: 26px; border: 1px solid var(--border); border-radius: 23px; background: var(--surface); box-shadow: var(--shadow-sm); }
.comparison-count { padding: 7px 10px; border-radius: 8px; background: var(--surface-2); color: var(--muted); font-size: 10px; font-weight: 800; }
.offer-list--pro { gap: 8px; }
.offer-list--pro .offer-row { min-height: 72px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); }
.offer-list--pro .offer-row.is-cheapest { border-color: #ffc59e; background: var(--orange-soft); }
.offer-list--pro .offer-row > a { min-width: 135px; }

.price-insight .section-heading { margin-bottom: 22px; }
.history-low { display: flex; align-items: flex-end; flex-direction: column; color: var(--muted); font-size: 9px; }
.history-low b { margin-top: 3px; color: var(--success); font-size: 18px; }
.price-chart { padding: 20px 18px 10px; border: 1px solid var(--border); border-radius: 16px; background: linear-gradient(180deg,var(--surface-2),var(--surface)); }
.price-chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.price-chart__area { pointer-events: none; }
.price-chart__legend { display: flex; justify-content: space-between; padding: 4px 10px 0; color: var(--muted); font-size: 9px; }
.price-history-empty { display: flex; min-height: 150px; align-items: center; justify-content: center; gap: 18px; border: 1px dashed var(--border-strong); border-radius: 16px; background: var(--surface-2); }
.price-history-empty > span { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 15px; background: var(--orange-soft); color: var(--orange); font-size: 24px; }
.price-history-empty h3 { margin: 0 0 5px; }
.price-history-empty p { margin: 0; color: var(--muted); font-size: 12px; }

.price-alert-modal[hidden] { display: none; }
.price-alert-modal { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; padding: 20px; }
.price-alert-modal__backdrop { position: absolute; inset: 0; background: rgba(2,12,29,.72); backdrop-filter: blur(6px); }
.price-alert-modal__dialog { position: relative; z-index: 1; width: min(100%,500px); padding: 34px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.price-alert-modal__close { position: absolute; top: 14px; right: 14px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); color: var(--muted); font-size: 22px; cursor: pointer; }
.price-alert-modal__icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; background: var(--orange-soft); color: var(--orange); font-size: 25px; }
.price-alert-modal h2 { margin: 18px 0 7px; font-size: 26px; }
.price-alert-modal__dialog > p { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.price-alert-modal form { display: grid; gap: 14px; }
.price-alert-modal label > span { display: block; margin-bottom: 6px; color: var(--ink); font-size: 11px; font-weight: 800; }
.price-alert-modal input[type="email"], .price-alert-modal input[type="text"] { width: 100%; height: 48px; padding: 0 13px; border: 1px solid var(--border-strong); border-radius: 11px; background: var(--surface-2); color: var(--ink); outline: 0; }
.price-alert-modal input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,.1); }
.target-price-field { position: relative; }
.target-price-field input { padding-right: 45px !important; }
.target-price-field b { position: absolute; top: 50%; right: 14px; color: var(--muted); font-size: 11px; transform: translateY(-50%); }
.price-alert-modal .alert-consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; }
.price-alert-modal .alert-consent input { margin-top: 3px; accent-color: var(--orange); }
.price-alert-modal .alert-consent span { margin: 0; color: var(--muted); font-size: 9px; font-weight: 600; line-height: 1.55; }
.price-alert-modal .button { width: 100%; }
.price-alert-modal .button:disabled { opacity: .6; cursor: wait; }
.price-alert-modal__feedback { min-height: 18px; margin: 0; color: var(--muted); font-size: 10px; text-align: center; }
.price-alert-modal__feedback.is-success { color: var(--success); }
.price-alert-modal__feedback.is-error { color: var(--danger); }

.mobile-dock { display: none; }

:root[data-theme="dark"] .merchant-strip .is-amazon { color: #fff; }
:root[data-theme="dark"] .featured-deal-pro__media { background: radial-gradient(circle at 50% 42%,#17253b 0,#101c30 67%); }
:root[data-theme="dark"] .deal-unavailable-message { background: #311a1c; color: #ffaaa6; }

@media (max-width: 1120px) {
  .site-header__inner--pro { grid-template-columns: 218px minmax(300px,1fr) auto; gap: 17px; }
  .primary-menu--pro { gap: 18px; }
  .hero__grid--pro { grid-template-columns: minmax(0,1fr) 450px; gap: 43px; }
  .home-deal-layout { grid-template-columns: 320px minmax(0,1fr); }
  .category-grid--pro { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .trust-band-pro__inner { grid-template-columns: 1fr auto; }
  .trust-band-pro__steps { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 900px) {
  .site-header__inner--pro { grid-template-columns: 1fr auto; min-height: 72px; }
  .site-nav--pro { position: fixed; z-index: 70; top: 106px; right: 0; bottom: 0; left: 0; display: block; overflow-y: auto; padding: 22px 15px; border-top: 1px solid var(--border); background: var(--surface); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease,transform .2s ease; }
  .site-nav--pro.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-menu--pro { width: min(100%,600px); flex-direction: column; align-items: stretch; gap: 0; margin: 0 auto; }
  .primary-menu--pro a { min-height: 56px; border-bottom: 1px solid var(--border); font-size: 15px; }
  .primary-menu--pro a::after { display: none; }
  .menu-toggle { display: grid; }
  .hero__grid--pro { grid-template-columns: 1fr; }
  .hero__content--pro { text-align: left; }
  .hero__content--pro > p, .hero-search--pro { margin-inline: 0; }
  .hero__trust--pro { justify-content: flex-start; }
  .hero-live { width: min(100%,650px); }
  .merchant-strip__inner { grid-template-columns: 1fr; gap: 12px; padding: 16px 0; }
  .merchant-strip__inner > div { justify-content: flex-start; overflow-x: auto; padding-bottom: 3px; }
  .merchant-strip__inner > small { display: none; }
  .home-deal-layout { grid-template-columns: 1fr; }
  .featured-deal-pro { display: grid; grid-template-columns: 340px 1fr; }
  .featured-deal-pro__media { height: auto; min-height: 330px; }
  .deal-grid--home { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .trust-band-pro__inner { grid-template-columns: 1fr; }
  .trust-band-pro__steps { grid-column: auto; grid-row: auto; }
  .trust-band-pro__inner > .button { justify-self: start; }
  .deal-detail--pro { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 67px; }
  .topbar--pro .topbar__links > span { display: none; }
  .topbar--pro .topbar__inner { justify-content: space-between; text-align: left; }
  .site-nav--pro { top: 100px; }
  .site-header__actions--pro .theme-toggle { display: none; }
  .header-alert { width: 42px; min-height: 42px; padding: 0; font-size: 0; }
  .header-alert span { font-size: 17px; }
  .hero--pro { padding: 42px 0 45px; }
  .hero--pro h1 { font-size: 41px; }
  .hero__content--pro > p { font-size: 14px; }
  .hero-search--pro form { flex-wrap: wrap; padding: 6px; }
  .hero-search--pro form > span { margin-left: 9px; }
  .hero-search--pro input { height: 47px; }
  .hero-search--pro button { width: 100%; height: 47px; }
  .hero-quick, .hero__trust--pro { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .hero-quick::-webkit-scrollbar, .hero__trust--pro::-webkit-scrollbar { display: none; }
  .hero-quick > *, .hero__trust--pro > * { flex: 0 0 auto; }
  .hero-live { padding: 12px; border-radius: 18px; }
  .hero-live__product { grid-template-columns: 58px minmax(0,1fr) auto; padding: 10px; }
  .hero-live__image { width: 56px; height: 56px; }
  .hero-live__product strong { font-size: 11px; }
  .hero-offer { grid-template-columns: 90px minmax(0,1fr) 34px; }
  .hero-live__saving { grid-template-columns: 1fr auto; }
  .hero-live__saving > div { display: none; }
  .merchant-strip__inner > div { gap: 24px; }
  .categories-section--pro { padding-top: 45px; }
  .category-grid--pro { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-card--pro { min-height: 68px; grid-template-columns: 38px minmax(0,1fr); padding: 10px; }
  .category-card--pro > span { width: 38px; height: 38px; }
  .category-card--pro > i { display: none; }
  .deals-section--pro { padding-top: 48px; }
  .featured-deal-pro { display: block; }
  .featured-deal-pro__media { min-height: 270px; }
  .deal-grid--home { grid-template-columns: 1fr; }
  .trust-band-pro { padding: 55px 0; }
  .trust-band-pro__inner { padding: 27px 22px; }
  .trust-band-pro h2 { font-size: 24px; }
  .trust-band-pro__steps { flex-direction: column; align-items: flex-start; }
  .trust-band-pro__steps > i { display: none; }
  .deal-detail--pro { padding: 17px; }
  .deal-detail__actions { grid-template-columns: 1fr; }
  .price-alert-button { min-height: 51px; }
  .comparison-card--pro, .price-insight { padding: 20px; }
  .comparison-count, .history-low { align-items: flex-start; }
  .price-chart { padding: 10px 5px 6px; }
  .price-history-empty { padding: 22px; text-align: left; }
  .price-alert-modal__dialog { padding: 27px 20px 22px; border-radius: 20px; }
  .mobile-dock { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4,1fr); min-height: 67px; padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--border); background: var(--surface); background: color-mix(in srgb,var(--surface) 96%,transparent); box-shadow: 0 -9px 30px rgba(7,21,47,.1); backdrop-filter: blur(17px); }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; color: var(--muted); }
  .mobile-dock span { font-size: 19px; line-height: 1; }
  .mobile-dock b { font-size: 8px; }
  .mobile-dock a:hover { color: var(--orange); }
}
