/* Nefin Makine marka renkleri — logodan (#762222 bordo, #282828 metin) */

:root {
  --nefin-red: #762222;
  --nefin-red-dark: #5c1a1a;
  --nefin-red-light: #8f2d2d;
  --nefin-text: #282828;
  --nefin-muted: #6b6b6b;
}

.et-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ── Site header (Elektroteks tarzı) ── */
.et-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.et-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.et-header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}

.et-header-logo {
  height: 46px;
  width: auto;
  max-width: min(280px, 42vw);
  object-fit: contain;
}

.et-header-nav {
  display: none;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .et-header-nav {
    display: flex;
  }
}

.et-header-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.et-header-nav-item + .et-header-nav-item {
  margin-left: 32px;
}

.et-header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f1f1f;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s ease;
}

.et-header-nav-link:hover,
.et-header-nav-link.is-active {
  color: var(--nefin-red);
}

.et-header-dropdown {
  position: relative;
}

.et-header-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 60;
}

.et-header-dropdown:hover .et-header-dropdown-panel,
.et-header-dropdown:focus-within .et-header-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.et-header-dropdown-link {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

.et-header-dropdown-link:hover {
  background: #fafafa;
  color: var(--nefin-red);
}

.et-header-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 32px !important;
  padding-left: 32px;
  border-left: 1px solid #e0e0e0;
}

.et-header-lang-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #999;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.et-header-lang-form {
  display: inline;
  margin: 0;
  padding: 0;
}

.et-header-lang-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.et-header-lang--mobile {
  margin-left: 0 !important;
  padding: 16px 0 8px;
  border-left: none;
  justify-content: flex-start;
}

.et-header-lang-link.is-active {
  color: #fff;
  background: var(--nefin-red);
  padding: 5px 11px;
  border-radius: 3px;
}

.et-header-lang-sep {
  color: #ccc;
  font-size: 13px;
  user-select: none;
}

.et-header-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .et-header-mobile-btn {
    display: none;
  }
}

.et-header-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.et-header-burger span {
  display: block;
  height: 2px;
  background: #282828;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.et-header-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.et-header-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.et-header-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.et-header-mobile {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.et-header-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.et-header-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  padding: 80px 24px 32px;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.et-header-mobile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 12px;
}

.et-header-mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.et-header-mobile-link--main {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1f1f1f;
}

.et-header-mobile-rule {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 16px 0;
}

.et-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--nefin-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background-color 0.2s;
  text-decoration: none;
}

.et-btn:hover {
  background-color: var(--nefin-red-dark);
}

.et-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--nefin-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.et-section-sub {
  color: var(--nefin-muted);
  font-size: 15px;
  margin-top: 8px;
}

.et-home-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .et-home-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

.et-home-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #000;
  aspect-ratio: 16 / 9;
}

.et-home-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Electroteks tarzı: video + katalog */
.et-media-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .et-media-duo {
    grid-template-columns: 1.15fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
}

.et-media-video {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.et-media-video-cover,
.et-media-video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #111;
  cursor: pointer;
}

.et-media-video-frame {
  cursor: default;
}

.et-media-video-thumb {
  object-fit: cover;
}

.et-media-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.et-media-video-meta {
  position: absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  text-align: left;
  color: #fff;
}

.et-media-video-title {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.25;
}

.et-media-video-channel {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.85;
}

.et-media-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: #ff0033;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.et-media-video-cover:hover .et-media-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #e6002e;
}

.et-media-play-icon {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.et-media-video-actions {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.et-media-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(40, 40, 40, 0.72);
  color: #fff;
}

.et-media-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(40, 40, 40, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.et-media-yt-btn:hover {
  background: rgba(20, 20, 20, 0.9);
}

.et-media-yt-logo {
  width: 18px;
  height: 18px;
  color: #ff0033;
}

.et-media-video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.et-media-video-tab {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.et-media-video-tab.is-active,
.et-media-video-tab:hover {
  border-color: var(--nefin-red);
  color: var(--nefin-red);
  background: #fff;
}

.et-media-catalog {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #4a1a1a 42%,
    var(--nefin-red) 78%,
    #a33a2a 100%
  );
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 900px) {
  .et-media-catalog {
    min-height: 100%;
  }
}

.et-media-catalog-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 28px 24px;
}

.et-media-catalog-brand {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.et-media-catalog-sub {
  margin: 6px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0.95;
}

.et-media-catalog-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.et-media-catalog-bar {
  width: 5px;
  height: 22px;
  background: #fff;
}

.et-media-catalog-hint {
  margin: 14px 0 0;
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.et-media-catalog-visual {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(58%, 320px);
  aspect-ratio: 4 / 3;
  opacity: 0.55;
  pointer-events: none;
}

.et-media-catalog-img {
  object-fit: cover;
  object-position: right center;
  mix-blend-mode: luminosity;
}

.et-media-catalog:hover .et-media-catalog-cta {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Global presence — world map */
.et-global {
  background: #fff;
  padding: 48px 0 20px;
}

.et-global-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.et-global-copy p {
  margin: 0;
  color: #666;
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 400;
  line-height: 1.55;
}

.et-global-copy p + p {
  margin-top: 6px;
}

.et-global-map {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.et-global-map-img {
  width: min(100%, 760px);
  height: auto;
  opacity: 0.85;
}

.text-brand,
.hover\:text-brand:hover {
  color: var(--nefin-red) !important;
}

.text-brand-light {
  color: var(--nefin-red-light) !important;
}

.bg-brand,
.hover\:bg-brand:hover {
  background-color: var(--nefin-red) !important;
}

.bg-brand\/10 {
  background-color: color-mix(in srgb, var(--nefin-red) 10%, transparent) !important;
}

.bg-brand\/20 {
  background-color: color-mix(in srgb, var(--nefin-red) 20%, transparent) !important;
}

.border-brand\/20 {
  border-color: color-mix(in srgb, var(--nefin-red) 20%, transparent) !important;
}

.hover\:border-brand\/30:hover {
  border-color: color-mix(in srgb, var(--nefin-red) 30%, transparent) !important;
}

.hover\:border-brand\/40:hover {
  border-color: color-mix(in srgb, var(--nefin-red) 40%, transparent) !important;
}

.bg-accent {
  background-color: var(--nefin-red) !important;
}

.text-muted {
  color: var(--nefin-muted) !important;
}

.text-accent {
  color: var(--nefin-red) !important;
}

.hover\:bg-brand-dark:hover {
  background-color: var(--nefin-red-dark) !important;
}

.focus\:border-brand:focus {
  border-color: var(--nefin-red) !important;
}

.focus\:ring-brand:focus {
  --tw-ring-color: var(--nefin-red) !important;
}

::selection {
  background-color: var(--nefin-red);
  color: #fff;
}

.et-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.et-category-card:hover {
  border-color: color-mix(in srgb, var(--nefin-red) 40%, transparent);
  box-shadow: 0 4px 16px rgba(118, 34, 34, 0.1);
}

.et-category-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}

.et-category-card .et-category-img,
.et-category-card img.et-category-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  opacity: 1;
  transition: transform 0.3s ease;
}

.et-category-card:hover .et-category-img,
.et-category-card:hover img.et-category-img {
  opacity: 1;
  transform: scale(1.03);
}

.et-category-card .et-category-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 52px;
  padding: 14px 14px 16px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  text-transform: none;
  border-top: 1px solid #ececec;
  background: #fff;
}

.et-category-label-text {
  min-width: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.et-category-label-text b {
  font-weight: 800;
  color: #111;
}

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

@media (min-width: 640px) {
  .et-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .et-category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.et-category-card .et-category-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  color: var(--nefin-red);
  transition: transform 0.2s ease;
}

.et-category-card:hover .et-category-arrow {
  transform: translateX(2px);
}

/* —— Ana sayfa hero slider (Elektroteks tarzı) —— */
.et-home-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ececec;
}

.et-home-slider-track {
  position: relative;
  min-height: 420px;
}

@media (max-width: 767px) {
  .et-home-slider-track {
    min-height: 560px;
  }
}

@media (min-width: 768px) {
  .et-home-slider-track {
    min-height: 480px;
  }
}

@media (min-width: 1200px) {
  .et-home-slider-track {
    min-height: 540px;
  }
}

.et-home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  pointer-events: none;
}

.et-home-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.et-home-slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #f7f7f7 0%, #efefef 42%, #e4e4e4 100%);
}

.et-home-slide-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.et-home-slide-accent {
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 0;
  width: min(58%, 680px);
  background: linear-gradient(
    160deg,
    var(--nefin-red) 0%,
    var(--nefin-red-dark) 100%
  );
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 767px) {
  .et-home-slide-accent {
    top: 42%;
    width: 100%;
    clip-path: none;
    opacity: 0.96;
  }
}

.et-home-slide-machine {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(62%, 720px);
  height: 88%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1rem 0.5rem;
}

.et-home-slide-img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.22));
}

@media (max-width: 767px) {
  .et-home-slide-machine {
    width: 100%;
    height: 52%;
    top: auto;
    padding: 0 0.5rem 0.4rem;
  }
}

.et-home-slide-watermark {
  position: absolute;
  right: 2%;
  top: 6%;
  z-index: 0;
  opacity: 0.07;
}

.et-home-slide-logo {
  width: min(280px, 40vw);
  height: auto;
}

.et-home-slide-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 767px) {
  .et-home-slide-inner {
    align-items: flex-start;
    padding-top: 1.25rem;
    padding-bottom: 4.6rem;
  }
}

@media (min-width: 768px) {
  .et-home-slide-inner {
    padding-top: 0;
    padding-bottom: 4rem;
  }
}

.et-home-slide-text {
  max-width: 520px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.65s ease 0.1s, opacity 0.65s ease 0.1s;
}

@media (max-width: 767px) {
  .et-home-slide-text {
    max-width: none;
    text-align: center;
  }
}

.et-home-slide-text.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.et-home-slide-text h1 {
  margin: 0;
  color: var(--nefin-red);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .et-home-slide-text h1 {
    font-size: clamp(24px, 8.2vw, 34px);
    line-height: 1.14;
  }
}

.et-home-slide-text h1 b {
  font-weight: 800;
}

.et-home-slide-tagline {
  margin: 0.55rem 0 0 !important;
  font-size: clamp(15px, 1.8vw, 20px) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: #3a3a3a !important;
  max-width: none !important;
}

.et-home-slide.is-fullbleed .et-home-slide-tagline {
  color: rgba(255, 255, 255, 0.88) !important;
}

.et-home-slide-fullbleed {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}

.et-home-slide.is-light .et-home-slide-fullbleed {
  background: #f5f5f5;
}

.et-home-slide-fullbleed-img {
  object-fit: cover !important;
  object-position: 68% center;
  width: 100% !important;
  height: 100% !important;
  image-rendering: auto;
}

.et-home-slide-fullbleed-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    transparent 62%
  );
  pointer-events: none;
}

.et-home-slide.is-light .et-home-slide-fullbleed-wash {
  display: none;
}

.et-home-slide.is-fullbleed .et-home-slide-text h1 {
  color: #fff;
}

.et-home-slide.is-fullbleed.is-light .et-home-slide-text h1 {
  color: var(--nefin-red);
}

.et-home-slide.is-fullbleed .et-home-slide-text p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.et-home-slide.is-fullbleed.is-light .et-home-slide-text p {
  color: #2b2a2a;
}

.et-home-slide.is-fullbleed .et-home-slide-tagline {
  color: rgba(255, 255, 255, 0.9) !important;
}

.et-home-slide.is-fullbleed.is-light .et-home-slide-tagline {
  color: #3a3a3a !important;
}

/* Siyah hero — 1920×579 oran */
.et-home-slider:has(.et-home-slide.is-fullbleed) {
  background: #0a0a0a;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.et-home-slider:has(.et-home-slide.is-light.is-active) {
  background: #f5f5f5;
}

.et-home-slider:has(.et-home-slide.is-fullbleed) .et-home-slider-track {
  aspect-ratio: 1920 / 579;
  width: 100%;
  min-height: 0 !important;
  height: auto;
  max-height: none;
}

@media (max-width: 767px) {
  .et-home-slider:has(.et-home-slide.is-fullbleed) {
    background: #0a0a0a;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .et-home-slider:has(.et-home-slide.is-fullbleed) .et-home-slider-track {
    aspect-ratio: 1920 / 579;
    min-height: 0 !important;
    height: auto;
    max-height: none;
  }

  .et-home-slide-fullbleed-img {
    object-position: 68% center;
  }

  .et-home-slide-fullbleed-wash {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .et-home-slide.is-light .et-home-slide-fullbleed-wash {
    display: none;
  }

  .et-home-slide.is-fullbleed .et-home-slide-text h1 {
    color: #fff;
  }

  .et-home-slide.is-fullbleed.is-light .et-home-slide-text h1 {
    color: var(--nefin-red);
  }

  .et-home-slide.is-fullbleed .et-home-slide-text p {
    color: rgba(255, 255, 255, 0.88);
  }

  .et-home-slide.is-fullbleed.is-light .et-home-slide-text p {
    color: #2b2a2a;
  }
}

.et-home-slide-text p {
  margin: 1rem 0 0;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.45;
  color: #2b2a2a;
  max-width: 28ch;
}

@media (max-width: 767px) {
  .et-home-slide-text p {
    margin-top: 0.75rem;
    font-size: clamp(14px, 4.2vw, 18px);
    max-width: none;
    color: #232222;
  }
}

@media (min-width: 768px) {
  .et-home-slide-text p {
    max-width: 36ch;
  }
}

.et-home-slide-btn {
  margin-top: 1.75rem;
}

@media (max-width: 767px) {
  .et-home-slide-btn {
    margin-top: 1rem;
  }
}

.et-home-slide-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
  padding: 0 22px;
  height: 46px;
  background: var(--nefin-red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.2s;
}

@media (max-width: 767px) {
  .et-home-slide-btn a {
    width: 100%;
    max-width: 240px;
    height: 42px;
    margin-inline: auto;
    font-size: 15px;
  }
}

.et-home-slide-btn a:hover {
  background: var(--nefin-red-dark);
  transform: translateY(-1px);
}

.et-home-slider-nav {
  position: absolute;
  top: 42%;
  z-index: 20;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.et-home-slider-nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

.et-home-slider-prev {
  left: 0;
}

.et-home-slider-next {
  right: 0;
}

@media (max-width: 767px) {
  .et-home-slider-nav {
    display: none;
  }
}

.et-home-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 767px) {
  .et-home-slider-dots {
    bottom: 12px;
  }
}

.et-home-slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s;
}

.et-home-slider-dots button.is-active {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(118, 34, 34, 0.45);
  transform: scale(1.1);
}

.et-home-slider-dots button:hover:not(.is-active) {
  background: rgba(118, 34, 34, 0.65);
}

/* Mobilde slider'ı üst üste bindirmek yerine dikey akışa al */
@media (max-width: 767px) {
  .et-home-slider-track {
    min-height: 620px;
  }

  .et-home-slide {
    display: flex;
    flex-direction: column;
  }

  .et-home-slide-bg {
    background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
  }

  .et-home-slide-visual {
    position: relative;
    inset: auto;
    margin-top: auto;
    min-height: 255px;
  }

  .et-home-slide-accent {
    display: none;
  }

  .et-home-slide-watermark {
    display: none;
  }

  .et-home-slide-machine {
    position: relative;
    inset: auto;
    width: 100%;
    height: 255px;
    padding: 0 0.75rem 0.5rem;
    align-items: center;
  }

  .et-home-slide-img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.16));
  }

  .et-home-slide-inner {
    min-height: 0;
    padding-top: 1.1rem;
    padding-bottom: 1.3rem;
  }

  .et-home-slide-text {
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .et-home-slide-text p {
    max-width: 100%;
  }

  .et-home-slide-btn a {
    max-width: 270px;
  }
}

/* Mobilde Elektroteks benzeri slider tasarimi */
@media (max-width: 767px) {
  .et-home-slider:not(:has(.et-home-slide.is-fullbleed)) {
    background: #121212;
    padding: 0 0 34px;
  }

  .et-home-slider:not(:has(.et-home-slide.is-fullbleed)) .et-home-slider-track {
    min-height: 510px;
  }

  .et-home-slide {
    display: block;
  }

  .et-home-slide-bg {
    background: linear-gradient(180deg, #212121 0%, #1b1b1b 100%);
  }

  .et-home-slide-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: 1;
  }

  .et-home-slide-accent {
    display: none;
  }

  .et-home-slide-watermark {
    display: none;
  }

  .et-home-slide-machine {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .et-home-slide-machine::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.45) 54%,
      rgba(0, 0, 0, 0.82) 100%
    );
  }

  .et-home-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
  }

  .et-home-slide-inner {
    align-items: flex-end;
    min-height: inherit;
    padding: 0 14px 18px;
  }

  .et-home-slide-text {
    position: relative;
    z-index: 3;
    max-width: none;
    padding: 0;
    text-align: left;
    color: #fff;
  }

  .et-home-slide-text h1 {
    font-size: clamp(24px, 8vw, 33px);
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  }

  .et-home-slide-text p {
    margin-top: 0.6rem;
    font-size: 14px;
    line-height: 1.45;
    max-width: 27ch;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }

  .et-home-slide-btn {
    margin-top: 0.95rem;
  }

  .et-home-slide-btn a {
    width: auto;
    min-width: 148px;
    max-width: none;
    height: 42px;
    border-radius: 3px;
    font-size: 14px;
    padding: 0 18px;
  }

  .et-home-slider-dots {
    bottom: 10px;
    z-index: 25;
    gap: 6px;
  }

  .et-home-slider-dots button {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
  }

  .et-home-slider-dots button.is-active {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(118, 34, 34, 0.5);
    transform: scale(1.06);
  }
}

.et-blog-card {
  display: block;
  border: 1px solid #e8e8e8;
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.et-blog-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.et-blog-card:hover h4 {
  color: var(--nefin-red);
}

.et-ref-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 20px;
  border: 1px solid #eee;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--nefin-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.et-footer {
  background: #1e1e1e;
  color: #ccc;
}

.et-footer a:hover {
  color: var(--nefin-red-light);
}

.et-newsletter-bar {
  background: var(--nefin-red);
  color: #fff;
}

.et-newsletter-bar input {
  border: none;
}

.et-newsletter-bar button {
  background: var(--nefin-text);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
}

.et-newsletter-bar button:hover {
  background: #111;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* Ürün kataloğu — Elektroteks tarzı */
.et-breadcrumb-bar {
  background: linear-gradient(
    90deg,
    var(--nefin-red-dark) 0%,
    var(--nefin-red) 55%,
    var(--nefin-red-light) 100%
  );
  color: #fff;
  padding: 0;
  border-bottom: 3px solid color-mix(in srgb, #000 18%, transparent);
}

.et-breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.et-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.et-breadcrumb-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

.et-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px 0;
}

.et-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.et-breadcrumb-sep {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  opacity: 0.65;
  flex-shrink: 0;
}

.et-breadcrumb-link,
.et-breadcrumb-current {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.et-breadcrumb-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s;
}

.et-breadcrumb-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.et-breadcrumb-current {
  color: #fff;
  opacity: 0.95;
  max-width: 42ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.et-breadcrumb-social {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .et-breadcrumb-social {
    display: flex;
  }
}

.et-breadcrumb-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.et-breadcrumb-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}

.et-category-nav {
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.et-category-nav-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e8e8e8;
}

@media (max-width: 1100px) {
  .et-category-nav-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .et-category-nav-list li {
    flex: 0 0 min(150px, 42vw);
    scroll-snap-align: start;
  }
}

.et-category-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px 8px 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1f1f1f;
  text-decoration: none;
  border-right: 1px solid #e8e8e8;
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}

.et-category-nav-list li:last-child .et-category-nav-item {
  border-right: none;
}

.et-category-nav-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
}

.et-category-nav-text b {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.et-category-nav-text span {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
}

.et-category-nav-caret {
  width: 11px;
  height: 11px;
  opacity: 0.55;
  transform: rotate(90deg);
  transition: opacity 0.2s, transform 0.2s;
}

.et-category-nav-item:hover {
  color: var(--nefin-red);
  background: #fafafa;
}

.et-category-nav-item:hover .et-category-nav-caret {
  opacity: 1;
  color: var(--nefin-red);
}

.et-category-nav-item.is-active {
  background: var(--nefin-red);
  color: #fff;
  border-color: var(--nefin-red);
}

.et-category-nav-item.is-active .et-category-nav-caret {
  opacity: 1;
  color: #fff;
}

.et-category-nav-item.is-active + .et-category-nav-item,
.et-category-nav-list li:has(+ li .is-active) .et-category-nav-item {
  border-left-color: transparent;
}

.et-category-page-head {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid #e8e8e8;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.et-category-page-mark {
  width: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nefin-red);
  border-right: 4px solid var(--nefin-red-dark);
}

.et-category-page-mark span {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  transform: rotate(45deg);
}

.et-category-page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 14px 18px;
  min-height: 56px;
}

.et-category-page-title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--nefin-red-dark);
  line-height: 1.2;
}

.et-category-page-count {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--nefin-muted);
  text-transform: lowercase;
}

.et-category-banner {
  background: var(--nefin-red);
  color: #fff;
  padding: 18px 0;
}

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

@media (min-width: 768px) {
  .et-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .et-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.et-product-card {
  display: block;
  background: #fff;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.et-product-card:hover {
  border-color: color-mix(in srgb, var(--nefin-red) 35%, transparent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.et-product-card-image {
  position: relative;
  height: 200px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.et-product-card-body {
  padding: 16px 14px 18px;
  text-align: center;
}

.et-product-card-code {
  font-size: 15px;
  font-weight: 700;
  color: var(--nefin-red);
  text-transform: uppercase;
  line-height: 1.25;
}

.et-product-card-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--nefin-muted);
  line-height: 1.4;
}

/* —— Machines overview —— */
.et-machines-intro {
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid #eee;
  padding: 36px 0 32px;
}

.et-machines-intro-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--nefin-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.et-machines-intro-text {
  margin-top: 12px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nefin-muted);
}

.et-machines-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 768px) {
  .et-machines-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .et-machines-categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.et-machines-category-card {
  display: block;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.et-machines-category-card:hover {
  border-color: color-mix(in srgb, var(--nefin-red) 45%, transparent);
  box-shadow: 0 14px 28px rgba(118, 34, 34, 0.14);
  transform: translateY(-4px);
}

.et-machines-category-image {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.et-machines-category-image img {
  transition: transform 0.45s ease;
}

.et-machines-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.35) 100%
  );
  transition: background 0.25s ease;
}

.et-machines-category-card:hover .et-machines-category-overlay {
  background: linear-gradient(
    180deg,
    transparent 10%,
    rgba(118, 34, 34, 0.35) 100%
  );
}

.et-machines-category-card:hover .et-machines-category-image img {
  transform: scale(1.08);
}

.et-machines-category-body {
  padding: 12px 10px 14px;
  text-align: center;
  transition: background-color 0.25s ease;
}

.et-machines-category-card:hover .et-machines-category-body {
  background: #faf7f7;
}

.et-machines-category-body h2 {
  font-size: 11px;
  font-weight: 700;
  color: var(--nefin-red);
  text-transform: uppercase;
  line-height: 1.3;
}

.et-machines-category-body span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--nefin-muted);
}

/* —— Product grid (pro cards) —— */
.et-product-grid-pro {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
}

@media (min-width: 640px) {
  .et-product-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .et-product-grid-pro {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

.et-product-card-pro {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.et-product-card-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--nefin-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.et-product-card-pro:hover {
  border-color: color-mix(in srgb, var(--nefin-red) 50%, #ddd);
  box-shadow:
    0 20px 44px rgba(40, 20, 20, 0.12),
    0 4px 12px rgba(118, 34, 34, 0.08);
  transform: translateY(-8px);
}

.et-product-card-pro:hover::before {
  transform: scaleX(1);
}

.et-product-card-pro:focus-visible {
  outline: 2px solid var(--nefin-red);
  outline-offset: 3px;
}

.et-product-card-pro-image {
  position: relative;
  height: 240px;
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 45%),
    linear-gradient(160deg, #f4f4f4 0%, #ececec 55%, #f7f7f7 100%);
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.et-product-card-pro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(118, 34, 34, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.et-product-card-pro:hover .et-product-card-pro-image::after {
  opacity: 1;
}

.et-product-card-pro-img,
.et-product-card-pro-image img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.et-product-card-pro:hover .et-product-card-pro-img,
.et-product-card-pro:hover .et-product-card-pro-image img {
  transform: scale(1.1);
}

.et-product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
  transition: transform 0.35s ease;
}

.et-product-card-pro:hover .et-product-card-badges {
  transform: translateY(-3px);
}

.et-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--nefin-red);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(118, 34, 34, 0.25);
}

.et-product-badge-pdf {
  background: #2b2b2b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.et-product-card-pro-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 18px 18px;
  transition: background-color 0.35s ease;
}

.et-product-card-pro:hover .et-product-card-pro-body {
  background: linear-gradient(180deg, #fff 0%, #fff8f7 100%);
}

.et-product-card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8a8a;
}

.et-product-card-pro-title {
  margin-top: 8px;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 800;
  color: var(--nefin-red);
  line-height: 1.28;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.et-product-card-pro:hover .et-product-card-pro-title {
  color: var(--nefin-red-dark);
}

.et-product-card-pro-sub {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.et-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.et-product-card-spec-hint {
  margin-top: 0;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.02em;
}

.et-product-card-link {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--nefin-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.et-product-card-link-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.et-product-card-pro:hover .et-product-card-link {
  color: var(--nefin-red);
  transform: none;
}

.et-product-card-pro:hover .et-product-card-link-icon {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .et-machines-category-card,
  .et-machines-category-card:hover,
  .et-product-card-pro,
  .et-product-card-pro:hover,
  .et-product-card-pro::before,
  .et-product-card-pro:hover::before,
  .et-product-card-pro-image img,
  .et-product-card-pro:hover .et-product-card-pro-image img,
  .et-product-card-link-icon,
  .et-product-card-pro:hover .et-product-card-link-icon {
    transition: none;
    transform: none;
  }
}

/* —— Product detail —— */
.et-product-hero {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 28px 0 24px;
}

.et-product-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nefin-muted);
  text-decoration: none;
}

.et-product-back:hover {
  color: var(--nefin-red);
}

.et-product-hero-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--nefin-red);
  text-transform: uppercase;
  line-height: 1.15;
}

.et-product-hero-sub {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--nefin-muted);
}

.et-product-detail-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .et-product-detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.et-product-main-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f8f8f8;
  border: 1px solid #eee;
}

/* —— Product image slider —— */
.et-image-slider {
  width: 100%;
}

.et-image-slider-main {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f8f8f8;
  border: 1px solid #eee;
  overflow: hidden;
}

.et-image-slider-img {
  transition: opacity 0.25s ease;
}

.et-image-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nefin-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.et-image-slider-nav:hover {
  background: var(--nefin-red);
  color: #fff;
}

.et-image-slider-prev {
  left: 12px;
}

.et-image-slider-next {
  right: 12px;
}

.et-image-slider-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(40, 40, 40, 0.65);
  border-radius: 2px;
}

.et-image-slider-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.et-image-slider-thumb {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid #e5e5e5;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}

.et-image-slider-thumb:not(.is-active) {
  opacity: 0.65;
}

.et-image-slider-thumb.is-active,
.et-image-slider-thumb:hover {
  border-color: var(--nefin-red);
  opacity: 1;
}

.et-product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.et-product-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid #e5e5e5;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s;
}

.et-product-thumb.is-active,
.et-product-thumb:hover {
  border-color: var(--nefin-red);
}

.et-product-videos {
  margin-top: 24px;
}

.et-product-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nefin-text);
}

.et-product-video {
  aspect-ratio: 16 / 9;
  background: #000;
  margin-bottom: 16px;
}

.et-product-block {
  margin-bottom: 28px;
}

.et-product-block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--nefin-text);
  line-height: 1.35;
}

.et-product-benefits {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.et-product-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.et-product-pdf-block {
  padding: 20px;
  background: #fafafa;
  border: 1px solid #eee;
}

.et-product-pdf-hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--nefin-muted);
  line-height: 1.5;
}

.et-product-pdf-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.et-product-pdf-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.et-product-pdf-card:hover {
  border-color: var(--nefin-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.et-product-pdf-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--nefin-text);
}

.et-product-pdf-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--nefin-red);
}

.et-product-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.et-product-quick-form-block {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
}

.et-product-quick-form-lead {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--nefin-muted, #666);
}

.et-product-quick-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.et-product-quick-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.et-product-quick-field span {
  font-size: 12px;
  font-weight: 700;
  color: var(--nefin-text);
}

.et-product-quick-field span em {
  font-style: normal;
  font-weight: 500;
  color: var(--nefin-muted, #888);
}

.et-product-quick-field input,
.et-product-quick-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.et-product-quick-field input:focus,
.et-product-quick-field textarea:focus {
  outline: none;
  border-color: var(--nefin-red);
  box-shadow: 0 0 0 3px rgba(118, 34, 34, 0.08);
}

.et-product-quick-field textarea {
  resize: vertical;
  min-height: 72px;
}

.et-product-quick-error {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fdecec;
  border: 1px solid #f5c6c6;
  color: #a11;
  font-size: 13px;
}

.et-product-quick-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px 4px 4px;
}

.et-product-quick-success-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #166534;
}

.et-product-quick-success-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #15803d;
}

.et-product-quick-reset {
  margin-top: 4px;
  border: none;
  background: none;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.et-btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.et-btn-outline {
  background: transparent !important;
  color: var(--nefin-text) !important;
  border: 1px solid #ddd !important;
}

.et-btn-outline:hover {
  border-color: var(--nefin-red) !important;
  color: var(--nefin-red) !important;
}

.et-product-specs-section {
  background: #f5f5f5;
  padding: 48px 0 56px;
  border-top: 1px solid #eee;
}

.et-specs-table-wrap {
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.et-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.et-specs-table tr:nth-child(even) {
  background: #fafafa;
}

.et-specs-table th,
.et-specs-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.et-specs-table th {
  width: 48%;
  font-weight: 600;
  color: var(--nefin-text);
}

.et-specs-table td {
  color: #555;
}

.et-highlights-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .et-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.et-highlight-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fafafa;
  border: 1px solid #eee;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
