/* =========================================================
   iCode Ajans — Modern vitrin (Web Satış V3 esintili)
   Brand blue kept; clean cards, device mockups, soft slate UI
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --ic-navy: #0f172a;
  --ic-ink: #0b1f3a;
  --ic-brand: var(--renk, #002CAE);
  --ic-brand-2: var(--renk2, #0160e7);
  --ic-accent: #f59e0b;
  --ic-accent-soft: #fef3c7;
  --ic-muted: #64748b;
  --ic-line: #e2e8f0;
  --ic-surface: #f8fafc;
  --ic-white: #ffffff;
  --ic-success: #10b981;
  --ic-danger: #ef4444;
  --ic-radius: 18px;
  --ic-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --ic-shadow-lg: 0 22px 50px rgba(15, 23, 42, 0.12);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

body.ic-modern,
body.ic-modern .site {
  font-family: var(--font-body) !important;
  color: var(--ic-navy);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0, 44, 174, 0.08), transparent 55%),
    radial-gradient(900px 400px at 90% 0%, rgba(245, 158, 11, 0.08), transparent 50%),
    var(--ic-surface);
}

.ic-modern h1, .ic-modern h2, .ic-modern h3, .ic-modern h4,
.ic-modern .main-heading, .ic-modern .page-title {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
}

/* ---- Header polish ---- */
.ic-modern #site-header.site-header {
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}
.ic-modern .header-topbar {
  background: linear-gradient(90deg, var(--ic-ink), var(--ic-brand)) !important;
  color: #fff;
}
.ic-modern .header-topbar a { color: #fff !important; }
.ic-modern .main-navigation .menu > li > a {
  font-weight: 600 !important;
  color: var(--ic-navy) !important;
  font-size: 15px !important;
}
.ic-modern .octf-btn-primary,
.ic-modern .octf-btn {
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ic-modern .octf-btn-primary:hover,
.ic-modern .octf-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 44, 174, 0.22);
}

/* ---- Page header ---- */
.ic-modern .page-header {
  min-height: 220px !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.ic-modern .page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.88), rgba(0, 44, 174, 0.55));
}
.ic-modern .page-header .dcell { position: relative; z-index: 1; }
.ic-modern .page-title { color: #fff !important; font-weight: 800 !important; }
.ic-modern .breadcrumbs li,
.ic-modern .breadcrumbs a { color: rgba(255,255,255,.85) !important; }

/* =========================================================
   PRODUCT GRID — device mockup cards (reference look)
   ========================================================= */
.ic-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .ic-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 991px) {
  .ic-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .ic-product-grid { grid-template-columns: 1fr; }
}

.ic-card {
  background: var(--ic-white);
  border: 1px solid var(--ic-line);
  border-radius: var(--ic-radius);
  box-shadow: var(--ic-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.ic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ic-shadow-lg);
  border-color: rgba(0, 44, 174, 0.2);
}

.ic-card__media {
  position: relative;
  margin: 0;
  background: #0b1220;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
}
.ic-card__img-link {
  display: block;
  height: 100%;
}
.ic-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background:
    linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0b1220 100%);
}
.ic-card:hover .ic-card__media .ic-mock__overlay { opacity: 1; }

.ic-card__head {
  padding: 20px 22px 8px;
}
.ic-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ic-navy);
}
.ic-card__title a {
  color: inherit !important;
  text-decoration: none !important;
}
.ic-card__title a:hover { color: var(--ic-brand) !important; }
.ic-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ic-brand);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ic-card__meta i { font-size: 14px; }
.ic-card__stars {
  color: #f5b301;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* Device mockup stage (legacy / hero cards) */
.ic-mock {
  position: relative;
  margin: 8px 14px 0;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  background:
    linear-gradient(160deg, #eef2ff 0%, #f8fafc 45%, #fff7ed 100%);
  overflow: hidden;
  border: 1px solid #e8eef8;
}
.ic-mock__desk {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 68%;
  height: 72%;
  background: #0f172a;
  border-radius: 10px 10px 4px 4px;
  box-shadow: 0 18px 30px rgba(15,23,42,.25);
  overflow: hidden;
  z-index: 1;
}
.ic-mock__desk::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 48%;
  height: 8px;
  transform: translateX(-50%);
  background: #334155;
  border-radius: 0 0 6px 6px;
}
.ic-mock__desk img,
.ic-mock__tab img,
.ic-mock__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ic-mock__tab {
  position: absolute;
  right: 18%;
  bottom: 8%;
  width: 28%;
  height: 48%;
  background: #0f172a;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(15,23,42,.28);
  overflow: hidden;
  z-index: 2;
  border: 2px solid #1e293b;
}
.ic-mock__phone {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 16%;
  height: 52%;
  background: #0f172a;
  border-radius: 10px;
  box-shadow: 0 12px 20px rgba(15,23,42,.3);
  overflow: hidden;
  z-index: 3;
  border: 2px solid #1e293b;
}

/* Hover overlay */
.ic-mock__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 5;
  padding: 12px;
  flex-wrap: wrap;
}
.ic-card:hover .ic-mock__overlay { opacity: 1; }
.ic-mock__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ic-navy) !important;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  transition: transform .15s ease, background .15s ease;
}
.ic-mock__btn:hover {
  transform: translateY(-2px);
  background: #fff7ed;
  color: var(--ic-navy) !important;
}
.ic-mock__btn--buy {
  background: var(--ic-brand);
  color: #fff !important;
}
.ic-mock__btn--buy:hover {
  background: var(--ic-ink);
  color: #fff !important;
}

.ic-card__foot {
  margin-top: auto;
  padding: 16px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--ic-line);
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.ic-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  color: var(--ic-navy);
  white-space: nowrap;
}
.ic-card__price small {
  font-size: .7rem;
  color: var(--ic-muted);
  font-weight: 600;
  margin-left: 2px;
}
.ic-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ic-btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  background: #eef2ff;
  color: var(--ic-brand) !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  border: 1px solid #dbe3ff;
  transition: background .15s ease;
}
.ic-btn-soft:hover { background: #e0e7ff; color: var(--ic-ink) !important; }
.ic-btn-fav {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #fde68a;
  background: var(--ic-accent-soft);
  color: #b45309 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

/* Hide legacy woo product chrome when modern cards used */
.ic-modern .ic-product-grid .product,
.ic-modern .ic-product-grid > li {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  list-style: none;
}

/* Section headings */
.ic-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ic-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ic-brand);
  margin-bottom: 8px;
}
.ic-section-title {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 800;
  margin: 0;
  color: var(--ic-navy);
}

/* =========================================================
   DOMAIN / HOSTING
   ========================================================= */
.ic-domain-hero {
  padding: 70px 0 40px;
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(0,44,174,.12), transparent),
    linear-gradient(180deg, #fff, var(--ic-surface));
}
.ic-domain-box {
  background: #fff;
  border: 1px solid var(--ic-line);
  border-radius: 22px;
  box-shadow: var(--ic-shadow-lg);
  padding: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.ic-domain-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
@media (max-width: 640px) {
  .ic-domain-form { grid-template-columns: 1fr; }
}
.ic-domain-form input[type="text"] {
  height: 56px;
  border-radius: 14px;
  border: 1px solid var(--ic-line);
  padding: 0 18px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ic-domain-form input:focus {
  border-color: var(--ic-brand);
  box-shadow: 0 0 0 4px rgba(0,44,174,.12);
}
.ic-domain-form button {
  height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ic-brand), var(--ic-ink));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.ic-domain-result {
  margin-top: 18px;
  border-radius: 14px;
  padding: 16px 18px;
  display: none;
}
.ic-domain-result.is-ok {
  display: block;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.ic-domain-result.is-bad {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.ic-suggest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ic-suggest-item {
  background: #fff;
  border: 1px solid var(--ic-line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ic-suggest-item strong { font-size: 14px; }
.ic-suggest-item .meta { font-size: 12px; color: var(--ic-muted); }

.ic-host-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .ic-host-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.ic-host-card {
  background: #fff;
  border: 1px solid var(--ic-line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--ic-shadow);
  position: relative;
  overflow: hidden;
}
.ic-host-card.is-featured {
  border-color: rgba(0,44,174,.35);
  box-shadow: var(--ic-shadow-lg);
  transform: scale(1.02);
}
.ic-host-card.is-featured::before {
  content: "Önerilen";
  position: absolute;
  top: 16px; right: -28px;
  background: var(--ic-accent);
  color: #1c1917;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 36px;
  transform: rotate(35deg);
}
.ic-host-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 8px;
}
.ic-host-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ic-brand);
  margin: 12px 0 18px;
}
.ic-host-card .price small {
  font-size: .9rem;
  color: var(--ic-muted);
  font-weight: 600;
}
.ic-host-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.ic-host-card ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--ic-line);
  font-size: 14px;
  color: #334155;
}
.ic-host-card ul li::before {
  content: "✓ ";
  color: var(--ic-success);
  font-weight: 800;
}

/* Floating action stack */
.ic-fab-stack {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ic-fab {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(15,23,42,.2);
  text-decoration: none !important;
  transition: transform .15s ease;
}
.ic-fab:hover { transform: scale(1.06); }
.ic-fab--user { background: #0f172a; }
.ic-fab--mail { background: #2563eb; }
.ic-fab--wa { background: #22c55e; }

/* Cart polish */
.ic-modern .shop_table th {
  background: var(--ic-surface);
  font-family: var(--font-display);
}
.ic-modern .woocommerce-cart-form__cart-item {
  border-bottom: 1px solid var(--ic-line);
}

/* Product detail hero */
.ic-detail-mock {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, #eef2ff, #fff7ed);
  padding: 28px;
  border: 1px solid var(--ic-line);
  min-height: 360px;
}
.ic-detail-mock img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--ic-shadow-lg);
}

/* Reduce particles noise slightly */
.ic-modern .particles-js canvas {
  opacity: .35 !important;
}

/* Footer */
.ic-modern #site-footer {
  background-color: var(--ic-ink) !important;
}

/* =========================================================
   HERO — V3 layout (WebSatış style)
   ========================================================= */
.ic-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1f3a;
}
.ic-hero--v3 {
  min-height: min(90vh, 820px);
}
.ic-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ic-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.ic-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.ic-hero__media {
  position: absolute;
  inset: 0;
  background-color: #0b1f3a;
  background-image:
    linear-gradient(115deg, rgba(8,18,36,.72) 0%, rgba(0,44,174,.35) 55%, rgba(8,18,36,.55) 100%),
    var(--hero-bg, linear-gradient(135deg, #0b1f3a 0%, #002CAE 55%, #0f172a 100%));
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: icHeroKen 14s ease-in-out infinite alternate;
}
.ic-hero__slide--fallback .ic-hero__media {
  background-image:
    radial-gradient(900px 500px at 15% 20%, rgba(0,99,255,.35), transparent 55%),
    radial-gradient(700px 400px at 90% 80%, rgba(245,158,11,.2), transparent 50%),
    linear-gradient(135deg, #0b1f3a, #002CAE 50%, #06131c);
  animation: none;
  transform: none;
}
@keyframes icHeroKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.ic-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,18,36,.88) 0%, rgba(8,18,36,.55) 48%, rgba(8,18,36,.35) 100%),
    linear-gradient(180deg, rgba(8,18,36,.25) 0%, rgba(8,18,36,.55) 100%);
  pointer-events: none;
}
.ic-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 110px 0 72px;
  color: #fff;
}
.ic-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
}
.ic-hero__eyebrow {
  display: inline-block;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin: 0 0 12px;
}
.ic-hero__headline {
  margin: 0 0 16px;
  max-width: 720px;
}
.ic-hero__brand,
.ic-hero__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.28);
  margin: 0;
}
.ic-hero__brand {
  margin-bottom: 6px;
}
.ic-hero__sub {
  max-width: 560px;
  color: rgba(248,250,252,.94);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.6;
  margin: 0 0 28px;
  font-weight: 500;
}

/* ---- hh-modern search (ref WebSatış) ---- */
.hh-modern__search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 640px;
  margin: 0 0 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.4);
  position: relative;
  z-index: 20;
  overflow: visible;
}
.hh-modern__search-form--page {
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--ic-shadow-lg);
  border: 1px solid var(--ic-line);
}
.hh-modern__select-wrap {
  flex: 0 0 auto;
  min-width: 168px;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 16px 0 0 16px;
  position: relative;
}
.smart-select {
  position: relative;
  height: 100%;
}
.smart-select__trigger {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 14px 0 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
}
.smart-select__chevron {
  flex-shrink: 0;
  color: #64748b;
  transition: transform .2s ease;
}
.smart-select.is-open .smart-select__chevron {
  transform: rotate(180deg);
}
.smart-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15,23,42,.14);
  z-index: 50;
}
.smart-select__option {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
}
.smart-select__option:hover,
.smart-select__option.is-selected {
  background: #f1f5f9;
  color: var(--ic-brand, #002CAE);
}
.hh-modern__field {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
.hh-modern__input {
  flex: 1;
  height: 56px !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 12px 0 16px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  outline: none !important;
  width: 100%;
  border-radius: 0 !important;
}
.hh-modern__input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.hh-modern__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 22px;
  border: none;
  background: var(--ic-brand, #002CAE);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0 16px 16px 0;
  white-space: nowrap;
  transition: background .15s ease;
}
.hh-modern__submit:hover {
  background: var(--ic-brand-2, #0160e7);
}
.hh-modern__search-form .ic-search-suggest {
  left: 0;
  right: 0;
  top: calc(100% + 8px);
}
.ic-site-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.ic-site-search__tags a {
  color: rgba(255,255,255,.9) !important;
  font-size: 0.95rem;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 600;
}
.ic-site-search__tags a:hover {
  background: rgba(255,255,255,.14);
}

@media (max-width: 767px) {
  /* web-ofisi tarzı: tek satır arama (input + buton), kategori gizli */
  .ic-hero .hh-modern__search-form {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
  }
  .ic-hero .hh-modern__select-wrap {
    display: none;
  }
  .ic-hero .hh-modern__field {
    flex: 1;
    min-width: 0;
  }
  .ic-hero .hh-modern__input {
    height: 50px !important;
    min-height: 50px !important;
    font-size: 15px !important;
    padding: 0 14px !important;
  }
  .ic-hero .hh-modern__submit {
    height: 50px;
    min-height: 50px;
    border-radius: 0;
    padding: 0 16px;
    flex-shrink: 0;
    width: auto;
  }
  .ic-hero .hh-modern__submit span {
    display: inline;
  }
  .ic-hero .ic-site-search__tags,
  .ic-hero .ic-hero__actions {
    display: none; /* ilk ekranda sade hero */
  }
}

/* Hosting page hero */
.ic-host-page__hero {
  background: linear-gradient(120deg, #0b1f3a 0%, #002CAE 55%, #0e7490 100%);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}
.ic-host-page__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 10px;
}
.ic-host-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ic-host-page__sub {
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
}
.ic-host-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: #fff !important;
  color: #0b1f3a !important;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  border: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ic-host-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  color: #002CAE !important;
  background: #fff !important;
}
.ic-host-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.6rem) !important;
  font-weight: 800 !important;
}
.ic-host-card .price {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem) !important;
}
.ic-host-card ul li {
  font-size: 1.12rem !important;
  line-height: 1.55 !important;
}
.ic-host-card__domain {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--ic-line);
  padding: 0 14px;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Site search (hero + arama page) */
.ic-site-search {
  max-width: 640px;
  margin: 0 0 20px;
  position: relative;
  z-index: 5;
}
.ic-site-search__inner {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr auto;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.35);
}
.ic-site-search__cat select,
.ic-site-search__inner input[type="search"] {
  border: none;
  background: transparent;
  height: 52px;
  padding: 0 14px;
  font-size: 0.95rem;
  color: #0f172a;
  width: 100%;
  outline: none;
}
.ic-site-search__cat {
  border-right: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  background: #f8fafc;
}
.ic-site-search__inner button {
  border: none;
  background: var(--ic-brand, #002CAE);
  color: #fff;
  font-weight: 600;
  padding: 0 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease;
}
.ic-site-search__inner button:hover {
  background: var(--ic-brand-2, #0160e7);
}
.ic-site-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.ic-site-search__tags a {
  color: rgba(255,255,255,.88) !important;
  font-size: 0.8rem;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  text-decoration: none !important;
  transition: background .2s ease;
}
.ic-site-search__tags a:hover {
  background: rgba(255,255,255,.12);
}
.ic-site-search--page .ic-site-search__inner {
  box-shadow: var(--ic-shadow);
  border: 1px solid var(--ic-line);
}
.ic-site-search--page .ic-site-search__tags a {
  color: var(--ic-navy) !important;
  border-color: var(--ic-line);
}
.ic-site-search__filters {
  margin-top: 12px;
  color: var(--ic-muted);
  font-size: 0.9rem;
}
.ic-site-search__filters select {
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--ic-line);
}
.ic-search-meta {
  color: var(--ic-muted);
  margin: 18px 0 0;
}
.ic-search-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--ic-muted);
}

/* Floating product cards */
.ic-hero__right {
  position: relative;
  min-height: 420px;
  perspective: 900px;
}
.ic-hero-cards {
  position: relative;
  height: 440px;
  max-width: 420px;
  margin-left: auto;
}
.ic-hero-card {
  position: absolute;
  width: min(240px, 72%);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  color: #0f172a !important;
  text-decoration: none !important;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.ic-hero-card.is-left {
  left: 0;
  top: 48px;
  transform: rotate(-6deg) scale(.92);
  z-index: 1;
  opacity: .95;
}
.ic-hero-card.is-right {
  right: 0;
  top: 64px;
  transform: rotate(6deg) scale(.92);
  z-index: 1;
  opacity: .95;
}
.ic-hero-card.is-center {
  left: 50%;
  top: 12px;
  width: min(270px, 82%);
  transform: translateX(-50%) scale(1.05);
  z-index: 3;
  box-shadow: 0 26px 55px rgba(0,0,0,.35);
}
.ic-hero-card:hover {
  z-index: 5;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.ic-hero-card.is-center:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.07);
}
.ic-hero-card.is-left:hover {
  transform: rotate(-3deg) translateY(-8px) scale(.96);
}
.ic-hero-card.is-right:hover {
  transform: rotate(3deg) translateY(-8px) scale(.96);
}
.ic-hero-card__img {
  aspect-ratio: 4/3;
  background: #e2e8f0;
  overflow: hidden;
}
.ic-hero-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ic-hero-card__body {
  padding: 12px 14px 14px;
}
.ic-hero-card__body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
  color: #0f172a !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ic-hero-card__price {
  font-weight: 800;
  color: var(--ic-brand, #002CAE);
  font-size: 1.2rem;
}
.ic-hero-card__price small {
  font-size: 0.75rem;
  font-weight: 600;
}
.ic-hero-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ic-brand, #002CAE);
}
.ic-hero-card--empty {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 24px;
}

.ic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}
.ic-hero__actions .ic-btn-soft {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #fff !important;
  backdrop-filter: blur(6px);
}
.ic-hero__actions .ic-btn-soft:hover {
  background: rgba(255,255,255,.22);
  color: #fff !important;
}
.ic-hero__dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.ic-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: width .2s ease, background .2s ease;
}
.ic-hero__dot.is-active {
  width: 28px;
  background: #fff;
}

/* Domain band under hero */
.ic-domain-band {
  background: linear-gradient(110deg, #0d9488 0%, #0e7490 40%, #1d4ed8 100%);
  color: #fff;
  padding: 42px 0 48px;
  position: relative;
  z-index: 4;
}
.ic-domain-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 24px;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.ic-domain-band__form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.ic-domain-band__form input {
  border: none;
  height: 62px;
  padding: 0 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  outline: none;
}
.ic-domain-band__form button {
  border: none;
  background: #334155;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0 32px;
  cursor: pointer;
  transition: background .2s ease;
}
.ic-domain-band__form button:hover {
  background: #0f172a;
}
.ic-domain-band .ic-domain-result,
.ic-domain-band .ic-suggest-grid {
  max-width: 720px;
  margin: 14px auto 0;
  color: #fff;
}
.ic-domain-band .ic-domain-result.is-ok,
.ic-domain-band .ic-domain-result.is-bad {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.ic-domain-band .ic-suggest-item {
  color: #0f172a;
  background: #fff;
}
.ic-domain-band__tlds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: .95;
}
.ic-domain-band__tlds a {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 991px) {
  .ic-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ic-hero__right {
    display: none; /* mobilde kartlar kaymasın — web-ofisi gibi temiz hero */
  }
  .ic-hero__content {
    padding: 88px 0 36px;
  }
}
@media (max-width: 767px) {
  .ic-hero,
  .ic-hero--v3 {
    min-height: 0 !important;
    height: auto !important;
    background: linear-gradient(160deg, #0b1f3a 0%, #002CAE 55%, #0a1628 100%);
  }
  .ic-hero__slides,
  .ic-hero__media {
    position: absolute !important;
    inset: 0 !important;
  }
  .ic-hero__media {
    opacity: .35;
  }
  .ic-hero__content {
    position: relative;
    z-index: 2;
    padding: 72px 0 36px !important;
  }
  .ic-hero__left {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .ic-hero__eyebrow {
    display: inline-block;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .02em;
    color: #fbbf24 !important;
    margin: 0 auto 12px !important;
    padding: 0;
    background: none;
    border: 0;
  }
  .ic-hero__brand {
    display: block;
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
    font-weight: 800 !important;
  }
  .ic-hero__title {
    display: block;
    font-size: clamp(1.35rem, 6.2vw, 1.85rem) !important;
    line-height: 1.3 !important;
    margin: 0 0 12px !important;
    font-weight: 700 !important;
  }
  .ic-hero__sub {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 auto 18px !important;
    max-width: 36ch;
    opacity: .92;
  }
  .ic-hero__dots {
    justify-content: center;
    margin-top: 18px;
  }
  .ic-hero-cards,
  .ic-hero-card.is-left,
  .ic-hero-card.is-right,
  .ic-hero-card.is-center,
  .ic-hero__right {
    display: none !important;
  }
  .ic-domain-band {
    padding: 28px 0 !important;
  }
  .ic-domain-band__title {
    font-size: 1.25rem !important;
  }
  .ic-domain-band__form {
    grid-template-columns: 1fr auto;
    border-radius: 12px;
    overflow: hidden;
  }
  .ic-domain-band__form input {
    min-height: 48px;
    font-size: 15px;
    border-radius: 0 !important;
  }
  .ic-domain-band__form button {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 0 !important;
    white-space: nowrap;
  }
}

/* Pricing cards polish — Sepete Ekle must not clip */
.ic-modern .ot-pricing-table {
  border-radius: 18px !important;
  border: 1px solid var(--ic-line) !important;
  box-shadow: var(--ic-shadow) !important;
  overflow: visible !important;
  padding: 30px 36px 40px !important;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ic-modern .ot-pricing-table:hover {
  transform: translateY(-6px);
  box-shadow: var(--ic-shadow-lg) !important;
}
.ic-modern .ot-pricing-table .inner-table h2 {
  font-size: clamp(2rem, 3vw, 2.55rem) !important;
  font-weight: 800 !important;
}
.ic-modern .ot-pricing-table .inner-table > p,
.ic-modern .ot-pricing-table .card-title {
  font-size: 1.05rem !important;
}
.ic-modern .ot-pricing-table .card-title a {
  color: var(--ic-brand) !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.08rem !important;
}
.ic-modern .ot-pricing-table .card-title a:hover {
  text-decoration: underline;
}
.ic-modern .ot-pricing-table .title-table {
  font-size: 13px !important;
  padding: 7px 16px !important;
}
.ic-modern .ot-pricing-table .inner-table .details {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  padding-bottom: 20px !important;
}
.ic-modern .ot-pricing-table .inner-table .details li {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: #334155 !important;
}
.ic-modern .ot-pricing-table .octf-btn,
.ic-modern .ot-pricing-table .plan-button .octf-btn {
  margin-bottom: 0 !important;
  margin-top: 4px !important;
  position: relative;
  z-index: 3;
  font-size: 1rem !important;
  padding: 14px 28px !important;
  min-height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ic-modern .ot-pricing-table .plan-button {
  position: relative;
  z-index: 3;
  padding-bottom: 4px;
  overflow: visible !important;
}
.ic-modern .col-md-4:has(.ot-pricing-table),
.ic-modern .m-b50:has(.ot-pricing-table) {
  overflow: visible !important;
  padding-bottom: 12px;
}

/* Live search dropdown */
.ic-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  z-index: 40;
  max-height: 360px;
  overflow-y: auto;
}
.ic-search-suggest__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  color: #0f172a !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}
.ic-search-suggest__item:hover {
  background: #f8fafc;
}
.ic-search-suggest__item .tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}
.ic-search-suggest__item .title {
  font-weight: 600;
  color: #0f172a;
}
.ic-search-suggest__item .price {
  font-weight: 700;
  color: var(--ic-brand, #002CAE);
  white-space: nowrap;
}
.ic-search-suggest__more,
.ic-search-suggest__empty {
  display: block;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--ic-brand, #002CAE) !important;
  font-weight: 600;
  text-decoration: none !important;
}
.ic-search-suggest__empty {
  color: #64748b !important;
}

/* ========== PRODUCT DETAIL (WebSatış-like) ========== */
.ic-pd {
  padding: 32px 0 72px;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(0,44,174,.06), transparent 60%),
    #f8fafc;
}
.ic-pd__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 28px;
}
.ic-pd__crumb a {
  color: #334155 !important;
  text-decoration: none !important;
  font-weight: 500;
}
.ic-pd__crumb a:hover { color: var(--ic-brand) !important; }
.ic-pd__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}
.ic-pd__stage {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
  padding: 24px;
  min-height: 320px;
}
.ic-pd__zoom {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15,23,42,.1);
  text-decoration: none !important;
}
.ic-pd__zoom img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: linear-gradient(160deg, #0f172a, #1e293b);
}
.ic-pd__zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(15,23,42,.78);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.ic-pd__mock {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  min-height: 280px;
}
.ic-pd__desk {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
  background: #0f172a;
}
.ic-pd__desk img,
.ic-pd__tab img,
.ic-pd__phone img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.ic-pd__tab {
  position: absolute;
  width: 38%;
  right: -4%;
  bottom: -8%;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.18);
}
.ic-pd__phone {
  position: absolute;
  width: 18%;
  left: 6%;
  bottom: -12%;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.2);
}
.ic-pd__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ic-pd__thumb {
  width: 88px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
  display: block;
}
.ic-pd__thumb.is-active {
  border-color: var(--ic-brand, #002CAE);
}
.ic-pd__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ic-pd__demo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.ic-pd__demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ic-brand, #002CAE);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 0.92rem;
}
.ic-pd__demo--alt {
  background: #0f172a;
}
.ic-pd__creds {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #475569;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
}

.ic-pd__buy {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
  padding: 28px 26px;
  position: sticky;
  top: 88px;
}
.ic-pd__badge {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ic-brand, #002CAE) !important;
  background: rgba(0,44,174,.08);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none !important;
  margin-bottom: 14px;
}
.ic-pd__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a !important;
  margin: 0 0 16px;
}
.ic-pd__lead {
  color: #334155;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.65;
  margin: 0 0 16px;
  font-weight: 500;
}
.ic-pd__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 18px;
}
.ic-pd__stars span {
  color: #64748b;
  margin-left: 8px;
  font-size: 0.95rem;
}
.ic-pd__price-box {
  padding: 16px 0 18px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 18px;
}
.ic-pd__old {
  display: block;
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.ic-pd__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.6vw, 3.1rem);
  font-weight: 800;
  color: var(--ic-brand, #002CAE);
  line-height: 1;
}
.ic-pd__price small {
  font-size: 1.05rem;
  font-weight: 600;
  color: #64748b;
}
.ic-pd__price em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
}
.ic-pd__field {
  display: block;
  margin-bottom: 14px;
}
.ic-pd__field span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.ic-pd__field input,
.ic-pd__field select {
  width: 100%;
  height: 54px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 1.05rem;
  background: #f8fafc;
}
.ic-pd__addons {
  margin: 8px 0 16px;
}
.ic-pd__addons-title {
  display: block;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 12px;
  color: #0f172a;
}
.ic-pd__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: #1e293b;
  margin-bottom: 12px;
  cursor: pointer;
  line-height: 1.45;
}
.ic-pd__cta {
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #002CAE, #0160e7);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 20px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0,44,174,.28);
  transition: transform .15s ease;
}
.ic-pd__cta:hover { transform: translateY(-2px); }
.ic-pd__secondary {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #64748b !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
}
.ic-pd__perks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ic-pd__perks li {
  font-size: 1.05rem;
  color: #1e293b;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ic-pd__perks i { color: #10b981; }

.ic-pd__tabs {
  margin-top: 48px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  overflow: hidden;
}
.ic-pd__tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}
.ic-pd__tabbar button {
  border: none;
  background: transparent;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #64748b;
  cursor: pointer;
}
.ic-pd__tabbar button.is-active {
  background: var(--ic-brand, #002CAE);
  color: #fff;
}
.ic-pd__panel {
  padding: 28px 32px 36px;
}
.ic-pd__rich {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.85;
  color: #1e293b;
}
.ic-pd__rich h2, .ic-pd__rich h3 {
  color: #0f172a !important;
  margin-top: 1.2em;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}
.ic-pd__rich p,
.ic-pd__rich li {
  font-size: inherit;
  line-height: inherit;
}
.ic-pd__faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 0;
}
.ic-pd__faq-item summary {
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  color: #0f172a;
  cursor: pointer;
}
.ic-pd__faq-item div {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 1.12rem;
}
.ic-pd__related {
  margin-top: 48px;
}

@media (max-width: 991px) {
  .ic-pd__grid { grid-template-columns: 1fr; }
  .ic-pd__buy { position: static; }
  .ic-pd__tab { display: none; }
  .ic-pd__phone { display: none; }
}
@media (max-width: 576px) {
  .ic-pd { padding: 20px 0 48px; }
  .ic-pd__panel { padding: 20px 16px 28px; }
  .ic-pd__title { font-size: 1.7rem; }
}

/* ========== DOMAIN PAGE (WebSatış style) ========== */
.ic-dom-page__hero {
  background: linear-gradient(115deg, #0d9488 0%, #0e7490 35%, #1d4ed8 100%);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}
.ic-dom-page__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 12px;
}
.ic-dom-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ic-dom-page__sub {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
}
.ic-dom-page__search {
  max-width: 820px;
  margin: 0 auto;
}
.ic-dom-page__form {
  display: grid;
  grid-template-columns: 1fr auto;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.ic-dom-page__form input {
  border: none;
  height: 64px;
  padding: 0 26px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  width: 100%;
}
.ic-dom-page__form button {
  border: none;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0 32px;
  cursor: pointer;
  white-space: nowrap;
}
.ic-dom-page__form button:hover {
  background: #1e293b;
}
.ic-dom-page__tlds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.ic-dom-page__pill {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .15s ease;
}
.ic-dom-page__pill:hover {
  background: rgba(255,255,255,.25);
}
.ic-dom-page__hero .ic-domain-result {
  text-align: left;
  background: rgba(255,255,255,.95);
}
.ic-dom-page__hero .ic-domain-result.is-ok {
  color: #065f46;
  border-color: #a7f3d0;
}
.ic-dom-page__hero .ic-domain-result.is-bad {
  color: #991b1b;
  border-color: #fecaca;
}
.ic-dom-page__body {
  padding: 48px 0 72px;
}
.ic-dom-page__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.ic-dom-card {
  position: relative;
  text-align: left;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  color: #0f172a;
}
.ic-dom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.ic-dom-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #ecfdf5;
  color: #047857;
  padding: 4px 8px;
  border-radius: 999px;
}
.ic-dom-card__ext {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--ic-brand, #002CAE);
  margin-bottom: 6px;
}
.ic-dom-card__label {
  display: block;
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 12px;
}
.ic-dom-card__price {
  display: block;
  font-size: clamp(1.45rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #0f172a;
}
.ic-dom-card__price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
}
.ic-dom-card__cta {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ic-brand, #002CAE);
}
.ic-dom-page__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.ic-dom-info {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 22px;
  text-align: center;
}
.ic-dom-info i {
  font-size: 1.5rem;
  color: var(--ic-brand, #002CAE);
  margin-bottom: 10px;
}
.ic-dom-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a !important;
  margin: 0 0 8px;
}
.ic-dom-info p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.55;
}
@media (max-width: 991px) {
  .ic-dom-page__cards { grid-template-columns: repeat(2, 1fr); }
  .ic-dom-page__info { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ic-dom-page__form { grid-template-columns: 1fr; border-radius: 16px; }
  .ic-dom-page__form button { height: 52px; }
  .ic-dom-page__cards { grid-template-columns: 1fr; }
  .ic-dom-page__hero { padding: 48px 0 40px; }
}

/* ========== SCALE + LIGHTBOX + RESPONSIVE POLISH ========== */
.ic-lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(2, 6, 23, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ic-lb img {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.ic-lb__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.smart-select__trigger {
  font-size: 1.02rem !important;
  height: 60px !important;
}
.hh-modern__input {
  font-size: 1.08rem !important;
  min-height: 60px !important;
}
.hh-modern__btn,
.hh-modern__search-form .hh-modern__submit,
.hh-modern__search-form button[type="submit"] {
  font-size: 1.05rem !important;
  min-height: 60px;
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.ic-dom-info h3 {
  font-size: 1.3rem !important;
}
.ic-dom-info p {
  font-size: 1.08rem !important;
}

@media (max-width: 1199px) {
  .ic-hero__brand,
  .ic-hero__title {
    font-size: clamp(2rem, 4.2vw, 2.85rem);
  }
  .ic-modern .ot-pricing-table {
    padding: 28px 24px 36px !important;
  }
}
@media (max-width: 991px) {
  .ic-card__media { aspect-ratio: 16 / 11; }
  .ic-pd__title { font-size: clamp(1.85rem, 4vw, 2.35rem) !important; }
  .ic-pd__lead { font-size: 1.12rem !important; }
  .ic-pd__check { font-size: 1.02rem !important; }
  .ic-modern .ot-pricing-table .inner-table .details li {
    font-size: 1rem !important;
  }
  /* Arama sayfası formu dikey; hero’da tek satır kalsın */
  .hh-modern__search-form--page {
    flex-wrap: wrap;
    border-radius: 16px;
  }
  .hh-modern__search-form--page .hh-modern__select-wrap {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 767px) {
  .ic-hero__sub { font-size: 1.1rem; }
  .ic-card__title { font-size: 1.12rem; }
  .ic-pd__zoom img { max-height: 360px; }
  .ic-modern .ot-pricing-table .octf-btn {
    width: 100%;
  }
}

/* Domain yapılandırma (Güzel Hosting tarzı) */
.ic-cfg {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 40%);
}
.ic-cfg__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-bottom: 28px;
}
.ic-cfg__step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}
.ic-cfg__step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}
.ic-cfg__step.is-on { color: #1d4ed8; }
.ic-cfg__step.is-on span { background: #2563eb; color: #fff; }
.ic-cfg__step.is-done { color: #059669; }
.ic-cfg__step.is-done span { background: #10b981; color: #fff; }
.ic-cfg__step.is-done span::before { content: "✓"; }
.ic-cfg__step.is-done span { font-size: 0; }
.ic-cfg__step.is-done span::before { font-size: 14px; }
.ic-cfg__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}
.ic-cfg__lead {
  text-align: center;
  color: #64748b;
  margin: 0 0 28px;
  font-size: 15px;
}
.ic-cfg__box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 26px 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}
.ic-cfg__domain {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, #eff6ff, #f0fdf4);
  margin-bottom: 20px;
}
.ic-cfg__domain i { font-size: 28px; color: #2563eb; }
.ic-cfg__domain strong { display: block; font-size: 1.15rem; color: #0f172a; word-break: break-all; }
.ic-cfg__domain span { color: #64748b; font-size: 13px; }
.ic-cfg__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #64748b;
  margin-bottom: 6px;
}
.ic-cfg__select {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  background: #fff;
}
.ic-cfg__section {
  font-size: 1rem;
  font-weight: 800;
  margin: 8px 0 12px;
  color: #0f172a;
}
.ic-cfg__extra {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #f8fafc;
}
.ic-cfg__extra.is-free { border-color: #bbf7d0; background: #f0fdf4; }
.ic-cfg__extra input { margin-top: 4px; width: 18px; height: 18px; accent-color: #16a34a; }
.ic-cfg__extra-body strong { display: block; font-size: 14px; color: #0f172a; margin-bottom: 4px; }
.ic-cfg__extra-body em {
  font-style: normal;
  color: #16a34a;
  font-weight: 800;
  margin-left: 6px;
  font-size: 12px;
}
.ic-cfg__extra-body small { color: #64748b; font-size: 12.5px; line-height: 1.45; display: block; }
.ic-cfg__host-cta,
.ic-cfg__host-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  margin: 16px 0;
  text-decoration: none !important;
  color: inherit;
}
.ic-cfg__host-cta {
  background: #fff7ed;
  border: 1px dashed #fb923c;
  transition: background .15s;
}
.ic-cfg__host-cta:hover { background: #ffedd5; }
.ic-cfg__host-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.ic-cfg__host-cta i,
.ic-cfg__host-note i { color: #ea580c; font-size: 22px; margin-top: 2px; }
.ic-cfg__host-note i { color: #2563eb; }
.ic-cfg__host-cta strong,
.ic-cfg__host-note strong { display: block; font-size: 14px; }
.ic-cfg__host-cta span,
.ic-cfg__host-note span { display: block; font-size: 12px; color: #64748b; margin-top: 2px; }
.ic-cfg__total {
  text-align: right;
  font-size: 15px;
  color: #64748b;
  margin: 12px 0 18px;
}
.ic-cfg__total b { color: #0f172a; font-size: 1.25rem; }
.ic-cfg__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ic-cfg__back {
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
}
.ic-cfg__continue {
  border: 0;
  background: #16a34a;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(22, 163, 74, .28);
}
.ic-cfg__continue:hover { background: #15803d; }
.ic-cfg__continue:disabled { opacity: .6; cursor: wait; }

/* Hosting domain mode */
.ic-host-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 14px;
}
.ic-host-banner i { color: #059669; font-size: 20px; margin-top: 2px; }
.ic-host-mode {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.ic-host-mode__opt {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.ic-host-mode__opt:has(input:checked) {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e40af;
}
.ic-host-mode__opt input { margin-top: 2px; accent-color: #2563eb; }
.ic-host-new-hint {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 12px;
  padding: 10px;
  background: #fff7ed;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .ic-cfg__box { padding: 18px 16px 22px; }
  .ic-cfg__step em { display: none; }
  .ic-cfg__continue { width: 100%; justify-content: center; }
}


