/* Zafer Yapı - Yapı Market Mockup Theme */
:root {
  --ym-red: #E30613;
  --ym-dark: #1A1A1A;
  --ym-gray: #F8F9FA;
  --ym-text: #333333;
  --ym-muted: #666666;
  --ym-border: #E5E5E5;
  --ym-white: #FFFFFF;
  --ym-font: 'Poppins', sans-serif;
}

body.ym-site {
  font-family: var(--ym-font);
  color: var(--ym-text);
  background: var(--ym-white);
  /* Eski sarı tema renklerini marka renkleriyle değiştir */
  --global--color-primary: #E30613;
  --global--color-primary-darken: #c00510;
  --global--color-primary-light: #fff0f1;
  --global--color-heading: #1A1A1A;
  --global--color-heading-darken: #141414;
  --global--color-secondary: #1A1A1A;
}

body.ym-site .wrapper { overflow-x: hidden; }

/* Hide old theme header styles */
body.ym-site .header-transparent,
body.ym-site .header-white { background: transparent !important; }

/* ========== TOP BAR ========== */
.ym-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ym-topbar {
  background: var(--ym-white);
  color: var(--ym-muted);
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid var(--ym-border);
}

.ym-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.ym-topbar-left,
.ym-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ym-topbar a {
  color: var(--ym-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color .2s;
}

.ym-topbar a:hover { color: var(--ym-red); }

.ym-topbar a i {
  color: var(--ym-red);
  font-size: 12px;
}

.ym-topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ym-muted);
  font-weight: 500;
}

.ym-topbar-hours i { color: var(--ym-red); }

/* ========== HEADER ========== */
.ym-header {
  background: var(--ym-white);
  border-bottom: 1px solid var(--ym-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.ym-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.ym-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ym-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--ym-red);
  color: var(--ym-white);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}

.ym-logo-icon::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 28px;
  background: var(--ym-dark);
  border-radius: 2px;
}

.ym-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ym-logo-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--ym-dark);
  letter-spacing: .5px;
}

.ym-logo-text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ym-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ym-logo img { max-height: 48px; width: auto; max-width: 220px; object-fit: contain; display: block; }

.ym-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.ym-logo-img--footer {
  height: 42px;
  max-width: 200px;
}

.ym-logo--text-fallback .ym-logo-text strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--ym-dark);
}

body.ym-site .ym-header .ym-logo-img,
body.ym-home .ym-header .ym-logo-img,
body.ym-site .ym-header .ym-logo--text-fallback .ym-logo-text strong,
body.ym-home .ym-header .ym-logo--text-fallback .ym-logo-text strong {
  color: #fff;
}

.ym-footer-about .ym-logo-img--footer {
  margin-bottom: 16px;
}

.ym-site-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ym-site-popup.is-open {
  display: flex;
}

.ym-site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.ym-site-popup-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ym-site-popup-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ym-dark);
}

.ym-site-popup-body {
  color: var(--ym-text);
  line-height: 1.7;
}

.ym-site-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #888;
  cursor: pointer;
}

.ym-site-popup-close:hover {
  color: var(--ym-red);
}

body.ym-popup-open {
  overflow: hidden;
}

.ym-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ym-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ym-nav-list > li > a,
.ym-nav-list > li.has-dropdown > a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ym-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
  position: relative;
}

.ym-nav-list > li > a:hover,
.ym-nav-list > li.active > a {
  color: var(--ym-red);
}

.ym-nav-list > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--ym-red);
  border-radius: 2px;
}

.ym-nav-list .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ym-white);
  border: 1px solid var(--ym-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  z-index: 100;
}

.ym-nav-list > li.has-dropdown { position: relative; }

.ym-nav-list > li.has-dropdown:hover > .dropdown-menu,
.ym-nav-list > li.has-dropdown.open > .dropdown-menu {
  display: block;
}

.ym-nav-list .dropdown-menu li { list-style: none; }

.ym-nav-list .dropdown-menu a {
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ym-dark);
  text-decoration: none;
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

.ym-nav-list .dropdown-menu a:hover {
  background: var(--ym-gray);
  color: var(--ym-red);
}

.ym-toggler {
  display: none;
  border: none;
  background: none;
  font-size: 24px;
  color: var(--ym-dark);
  cursor: pointer;
  padding: 8px;
}

/* ========== HERO ========== */
.ym-hero {
  background: var(--ym-gray);
  padding: 40px 0 18px;
  position: relative;
}

.ym-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ym-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ym-dark);
  margin-bottom: 20px;
}

.ym-hero-title .red,
.ym-hero-title-accent { display: block; }

.ym-hero-desc {
  font-size: 15px;
  color: var(--ym-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.ym-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ym-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  border-radius: 4px;
  transition: all .25s;
  border: 2px solid transparent;
}

.ym-btn-red {
  background: var(--ym-red);
  color: var(--ym-white);
  border-color: var(--ym-red);
}

.ym-btn-red:hover {
  background: #c00510;
  border-color: #c00510;
  color: var(--ym-white);
}

.ym-btn-outline {
  background: var(--ym-white);
  color: var(--ym-dark);
  border-color: var(--ym-dark);
}

.ym-btn-outline:hover {
  background: var(--ym-dark);
  color: var(--ym-white);
}

.ym-hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.ym-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ym-hero-slider {
  position: relative;
}

.ym-hero-viewport {
  position: relative;
}

.ym-hero-slides {
  position: relative;
  min-height: 420px;
}

.ym-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
  pointer-events: none;
  z-index: 0;
}

.ym-hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

.ym-hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 0;
  padding-bottom: 12px;
  position: relative;
  z-index: 12;
}

.ym-hero-viewport .ym-features-bar {
  margin-top: 10px;
  border-top: 1px solid var(--ym-border);
  border-radius: 0 0 12px 12px;
  box-shadow: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.ym-hero-indicators {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.ym-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ym-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(26, 26, 26, .18);
  cursor: pointer;
  transition: width .3s ease, background .25s ease, transform .25s ease;
}

.ym-hero-dot.active {
  width: 28px;
  background: var(--ym-red);
}

.ym-hero-dot:hover {
  background: rgba(227, 6, 19, .45);
}

.ym-hero-arrow {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ym-dark);
  border-radius: 50%;
  background: var(--ym-white);
  color: var(--ym-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  font-size: 14px;
  flex-shrink: 0;
}

.ym-hero-arrow:hover {
  background: var(--ym-red);
  border-color: var(--ym-red);
  color: var(--ym-white);
}

/* ========== FEATURE BAR ========== */
.ym-features {
  margin-top: 0;
  position: relative;
  z-index: 10;
  padding: 0 0 24px;
}

.ym-features .ym-features-bar {
  margin-top: 0;
}

.ym-features-bar {
  background: var(--ym-white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 28px rgba(0,0,0,.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.ym-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--ym-border);
  transition: background .2s ease;
}

.ym-feature-item:hover {
  background: rgba(248, 249, 250, .85);
}

.ym-feature-item:last-child { border-right: none; }

.ym-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--ym-dark);
  color: var(--ym-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.ym-feature-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.ym-feature-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ym-dark);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.ym-feature-text p {
  font-size: 11px;
  color: var(--ym-muted);
  margin: 0;
  line-height: 1.45;
}

/* ========== SECTION COMMON ========== */
.ym-section {
  padding: 80px 0;
}

.ym-section-tight {
  padding-top: 48px;
  padding-bottom: 56px;
}

.ym-section-tight + .ym-section-tight {
  padding-top: 44px;
}

.ym-section-gray { background: var(--ym-gray); }

.ym-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.ym-section-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ym-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.ym-section-title .line {
  width: 50px;
  height: 3px;
  background: var(--ym-red);
  margin: 0 auto;
}

.ym-section-title p {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 15px;
  color: var(--ym-muted);
  line-height: 1.7;
}

.ym-section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ym-red);
  margin-bottom: 10px;
}

/* ========== SERVICES PAGE ========== */
.ym-services-page {
  background: var(--ym-gray);
}

.ym-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ym-service-card {
  background: var(--ym-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.ym-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.ym-service-img {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.ym-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.ym-service-card:hover .ym-service-img img {
  transform: scale(1.05);
}

.ym-service-icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  background: var(--ym-red);
  color: var(--ym-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.ym-service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ym-service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ym-dark);
  margin: 0 0 12px;
  line-height: 1.3;
}

.ym-service-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.ym-service-body h3 a:hover {
  color: var(--ym-red);
}

.ym-service-body p {
  font-size: 14px;
  color: var(--ym-muted);
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

.ym-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--ym-red);
  color: var(--ym-white) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: 4px;
  transition: background .25s;
}

.ym-service-link:hover {
  background: #c00510;
  color: var(--ym-white) !important;
}

.ym-service-link i {
  color: var(--ym-white) !important;
  font-size: 12px;
}

/* ========== HOMEPAGE SERVICES ========== */
.ym-services-home {
  background: var(--ym-white);
}

.ym-services-home-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ym-service-card--home {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.ym-service-card--home:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  border-color: rgba(227, 6, 19, .15);
}

.ym-service-card--home .ym-service-img {
  height: 240px;
}

.ym-service-card--home .ym-service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 45%, rgba(26, 26, 26, .55) 100%);
  opacity: .85;
  transition: opacity .3s ease;
  pointer-events: none;
}

.ym-service-card--home:hover .ym-service-img::after {
  opacity: 1;
}

.ym-service-card--home .ym-service-icon {
  width: 48px;
  height: 48px;
  bottom: 16px;
  left: 16px;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(227, 6, 19, .35);
  border: 3px solid var(--ym-white);
}

.ym-service-card--home .ym-service-body {
  padding: 26px 24px 28px;
}

.ym-service-card--home .ym-service-body h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.ym-service-card--home .ym-service-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ym-muted);
  margin-bottom: 18px;
  flex: 1;
}

.ym-service-card--home .ym-service-link {
  margin-top: auto;
  align-self: flex-start;
}

/* ========== PRODUCT CATEGORIES / SERVICES CARDS ========== */
.ym-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ym-services-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.ym-section-action {
  text-align: center;
  margin-top: 36px;
}

.ym-cat-card {
  text-decoration: none;
  display: block;
  background: var(--ym-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}

.ym-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.ym-cat-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ym-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.ym-cat-card:hover .ym-cat-img img { transform: scale(1.05); }

.ym-cat-icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--ym-red);
  color: var(--ym-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ym-cat-body {
  padding: 16px;
  text-align: center;
}

.ym-cat-body h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ym-dark);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin: 0;
  line-height: 1.4;
}

/* ========== GALLERY ========== */
.ym-gallery-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.ym-gallery-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ym-dark);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ym-gallery-info p {
  font-size: 14px;
  color: var(--ym-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ym-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ym-dark);
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--ym-dark);
  padding: 12px 24px;
  border-radius: 4px;
  transition: all .25s;
}

.ym-gallery-link:hover {
  background: var(--ym-dark);
  color: var(--ym-white);
}

.ym-gallery-link i { color: var(--ym-red); }

.ym-gallery-slider {
  position: relative;
  overflow: hidden;
}

.ym-gallery-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}

.ym-gallery-item {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
}

.ym-gallery-item a {
  display: block;
  text-decoration: none;
  transition: transform .25s;
}

.ym-gallery-item a:hover {
  transform: translateY(-4px);
}

.ym-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: box-shadow .25s;
}

.ym-gallery-item a:hover img {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.ym-gallery-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ym-dark);
  margin: 12px 0 0;
  text-transform: uppercase;
  transition: color .2s;
}

.ym-gallery-item a:hover h4 {
  color: var(--ym-red);
}

.ym-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--ym-white);
  border: 1px solid var(--ym-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  z-index: 5;
  transition: all .2s;
  color: var(--ym-dark);
}

.ym-gallery-nav-prev {
  left: -10px;
}

.ym-gallery-nav-next {
  right: -10px;
}

.ym-gallery-nav:hover {
  background: var(--ym-red);
  color: var(--ym-white);
  border-color: var(--ym-red);
}

/* ========== BRANDS ========== */
.ym-brands {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.ym-brand-box {
  background: var(--ym-white);
  border: 1px solid var(--ym-border);
  border-radius: 6px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: border-color .2s;
}

.ym-brand-box:hover { border-color: var(--ym-red); }

.ym-brand-box img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .2s;
}

.ym-brand-box:hover img { filter: none; }

/* ========== SERVICE BANNER ========== */
.ym-service-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ym-service-block {
  padding: 40px 28px;
  color: var(--ym-white);
  text-align: left;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ym-service-block.red { background: var(--ym-red); }

.ym-service-block.dark { background: var(--ym-dark); }

.ym-service-block h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: .5px;
}

.ym-service-block a {
  font-size: 12px;
  font-weight: 600;
  color: var(--ym-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  opacity: .9;
  transition: opacity .2s;
}

.ym-service-block a:hover { opacity: 1; }

/* ========== FOOTER ========== */
.ym-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.72);
}

.ym-footer-top {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ym-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
}

.ym-footer-about .ym-logo-text strong {
  color: #fff;
}

.ym-footer-about .ym-logo-text span {
  color: rgba(255, 255, 255, 0.55);
}

.ym-footer-about p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 16px 0 20px;
}

.ym-footer-social {
  display: flex;
  gap: 10px;
}

.ym-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  transition: all .2s;
}

.ym-footer-social a:hover {
  background: var(--ym-red);
  border-color: var(--ym-red);
  color: var(--ym-white);
}

.ym-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 20px;
}

.ym-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ym-footer-col ul li { margin-bottom: 10px; }

.ym-footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color .2s;
}

.ym-footer-col ul li a:hover { color: var(--ym-red); }

.ym-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.ym-footer-contact li i {
  color: var(--ym-red);
  margin-top: 3px;
  min-width: 16px;
}

.ym-footer-contact li a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.ym-footer-contact li a:hover { color: #fff; }

.ym-footer-bottom {
  background: #f5f5f5;
  padding: 10px 0;
  border-top: 1px solid rgba(16, 16, 16, 0.06);
}

.ym-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
}

.ym-footer-bottom p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(16, 16, 16, 0.55);
  text-align: center;
}

/* ========== INNER PAGES ========== */
.ym-page-head {
  background: var(--ym-gray);
  border-bottom: 1px solid var(--ym-border);
  padding: 20px 0 22px;
}

.ym-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
}

.ym-breadcrumb a {
  color: var(--ym-muted);
  text-decoration: none;
  transition: color .2s;
}

.ym-breadcrumb a:hover {
  color: var(--ym-red);
}

.ym-breadcrumb-sep {
  color: rgba(26, 26, 26, .25);
  user-select: none;
}

.ym-breadcrumb-current {
  color: var(--ym-dark);
  font-weight: 600;
}

.ym-page-head-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ym-dark);
  margin: 0;
  line-height: 1.3;
}

.ym-page-head-desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ym-muted);
  line-height: 1.5;
}

/* ========== PRODUCT CATALOG v2 ========== */
.ym-catalog--v2 {
  background: #fff;
}

body.ym-site .ym-catalog--v2 {
  padding: clamp(28px, 4vw, 44px) 0 clamp(64px, 7vw, 88px);
}

.ym-catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.ym-catalog-hero-title {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ym-catalog-hero-title-a {
  color: var(--ym-dark);
}

.ym-catalog-hero-title-b {
  color: var(--ym-red);
}

.ym-catalog-hero-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ym-red);
}

.ym-catalog-hero-desc {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ym-muted);
}

.ym-catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ym-catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ym-catalog-btn i {
  font-size: 12px;
}

.ym-catalog-btn-primary {
  background: var(--ym-red);
  color: #fff;
  border: 1px solid var(--ym-red);
}

.ym-catalog-btn-primary:hover {
  background: #c80511;
  border-color: #c80511;
  color: #fff;
  transform: translateY(-1px);
}

.ym-catalog-btn-outline {
  background: #fff;
  color: var(--ym-red);
  border: 1px solid rgba(227, 6, 19, 0.35);
}

.ym-catalog-btn-outline:hover {
  background: rgba(227, 6, 19, 0.05);
  border-color: var(--ym-red);
  color: var(--ym-red);
}

.ym-catalog-hero-visual {
  position: relative;
  min-height: clamp(240px, 28vw, 340px);
  border-radius: 24px;
  background: linear-gradient(145deg, #f7f7f7 0%, #efefef 100%);
  overflow: hidden;
}

.ym-catalog-hero-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 16, 16, 0.12);
}

.ym-catalog-hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ym-catalog-hero-shot-1 {
  top: 8%;
  left: 6%;
  width: 46%;
  height: 52%;
  z-index: 2;
}

.ym-catalog-hero-shot-2 {
  top: 4%;
  right: 6%;
  width: 38%;
  height: 42%;
  z-index: 3;
}

.ym-catalog-hero-shot-3 {
  bottom: 8%;
  right: 10%;
  width: 34%;
  height: 38%;
  z-index: 4;
}

.ym-catalog-hero-shot-4 {
  bottom: 10%;
  left: 18%;
  width: 30%;
  height: 34%;
  z-index: 1;
}

.ym-catalog-hero-shot--placeholder {
  inset: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  background: transparent;
}

.ym-catalog-hero-shot--placeholder i {
  font-size: 56px;
  color: rgba(26, 26, 26, 0.12);
}

.ym-catalog-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ym-catalog-filters::-webkit-scrollbar {
  display: none;
}

.ym-catalog-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: #fff;
  color: var(--ym-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ym-catalog-filter i {
  font-size: 13px;
  color: var(--ym-muted);
  transition: color 0.2s ease;
}

.ym-catalog-filter:hover {
  border-color: rgba(227, 6, 19, 0.25);
  color: var(--ym-dark);
}

.ym-catalog-filter:hover i {
  color: var(--ym-red);
}

.ym-catalog-filter.is-active {
  background: var(--ym-red);
  border-color: var(--ym-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.22);
}

.ym-catalog-filter.is-active i {
  color: #fff;
}


.ym-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ym-catalog-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.07);
  box-shadow: 0 6px 24px rgba(16, 16, 16, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ym-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.08);
  border-color: rgba(227, 6, 19, 0.14);
}

.ym-catalog-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
  text-decoration: none;
}

.ym-catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.ym-catalog-card:hover .ym-catalog-card-media img {
  transform: scale(1.03);
}

.ym-catalog-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 20px;
  flex: 1;
}

.ym-catalog-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ym-muted);
}

.ym-catalog-card-body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.ym-catalog-card-body h3 a {
  color: var(--ym-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ym-catalog-card-body h3 a:hover {
  color: var(--ym-red);
}

.ym-catalog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ym-red);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ym-catalog-card-more i {
  font-size: 11px;
}

.ym-catalog-card-more:hover {
  gap: 10px;
}

.ym-catalog-empty {
  padding: 56px 24px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px dashed rgba(16, 16, 16, 0.1);
  text-align: center;
  color: var(--ym-muted);
}

.ym-catalog-empty i {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  color: rgba(26, 26, 26, 0.25);
}

.ym-catalog-empty p {
  margin: 0;
  font-size: 15px;
}

body.ym-site .hero.hero-14,
body.ym-site section.hero {
  display: none !important;
}

body.ym-site .shop,
body.ym-site .ym-catalog,
body.ym-site .contact,
body.ym-site .services,
body.ym-site .projects,
body.ym-site .blog-grid,
body.ym-site .page-content,
body.ym-site .about-1,
body.ym-site .single-product,
body.ym-site .service-single,
body.ym-site .faqs {
  padding: 48px 0 60px;
}

body.ym-site .page-title {
  background: var(--ym-gray) !important;
}

body.ym-site .page-title .title {
  color: var(--ym-dark) !important;
}

/* ========== BUTTONS ========== */
body.ym-site .btn {
  font-family: var(--ym-font);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  height: auto;
  min-height: 48px;
  padding: 12px 26px;
  width: auto;
  text-transform: none;
  border: 2px solid transparent;
  gap: 8px;
}

body.ym-site .btn::before {
  display: none !important;
}

body.ym-site .product-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

body.ym-site .btn--primary {
  background: var(--ym-red) !important;
  border-color: var(--ym-red) !important;
  color: var(--ym-white) !important;
}

body.ym-site .btn--primary i {
  color: var(--ym-white) !important;
}

body.ym-site .btn--primary:hover,
body.ym-site .btn--primary:focus,
body.ym-site .btn--primary:active {
  background: #c00510 !important;
  border-color: #c00510 !important;
  color: var(--ym-white) !important;
}

body.ym-site .btn--secondary {
  background: var(--ym-dark) !important;
  border-color: var(--ym-dark) !important;
  color: var(--ym-white) !important;
}

body.ym-site .btn--secondary i {
  color: #25D366 !important;
}

body.ym-site .btn--secondary:hover,
body.ym-site .btn--secondary:focus,
body.ym-site .btn--secondary:active {
  background: #333333 !important;
  border-color: #333333 !important;
  color: var(--ym-white) !important;
}

body.ym-site .btn--secondary:hover i,
body.ym-site .btn--secondary:focus i,
body.ym-site .btn--secondary:active i {
  color: #25D366 !important;
}

/* Sarı kalan öğeler — marka renkleri */
body.ym-site .preloader {
  background: var(--ym-white) !important;
}

body.ym-site .preloader .dot1,
body.ym-site .preloader .dot2 {
  background-color: var(--ym-red) !important;
}

body.ym-site ::selection {
  background: var(--ym-red);
  color: var(--ym-white);
}

body.ym-site .product-item .add-to-cart.btn--primary,
body.ym-site .product-item .btn--primary {
  background: var(--ym-red) !important;
  border-color: var(--ym-red) !important;
  color: var(--ym-white) !important;
}

/* ========== PRODUCT GALLERY ========== */
.ym-product-gallery {
  width: 100%;
}

.ym-product-gallery-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ym-white);
  border: 1px solid var(--ym-border);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.ym-product-gallery-main a {
  display: block;
  line-height: 0;
}

.ym-product-gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease;
}

.ym-product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ym-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all .2s ease;
}

.ym-product-gallery-nav:hover {
  background: var(--ym-red);
  color: var(--ym-white);
}

.ym-product-gallery-prev { left: 14px; }
.ym-product-gallery-next { right: 14px; }

.ym-product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.ym-product-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ym-white);
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.ym-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ym-product-thumb.active,
.ym-product-thumb:hover {
  border-color: var(--ym-red);
}

.ym-product-thumb.active {
  transform: translateY(-1px);
}

.ym-product-gallery-lightbox {
  display: none;
}

.fancybox__container {
  z-index: 100000 !important;
}

.fancybox__backdrop {
  z-index: 0 !important;
}

.fancybox__carousel {
  position: relative;
  z-index: 1 !important;
}

.fancybox__slide {
  padding: 8px;
}

.fancybox__content {
  background: transparent !important;
  padding: 0 !important;
  overflow: visible !important;
}

.fancybox__content img,
.fancybox__image {
  display: block !important;
  max-width: min(96vw, 1200px) !important;
  max-height: 90vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

.fancybox__toolbar,
.fancybox__nav {
  z-index: 2 !important;
}

@media (max-width: 991px) {
  .ym-product-gallery-main img {
    height: 320px;
  }

  .ym-product-thumb {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .ym-product-gallery-main img {
    height: 260px;
  }

  .ym-product-gallery-nav {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}

body.ym-site .product-item .add-to-cart.btn--primary:hover,
body.ym-site .product-item .btn--primary:hover {
  background: #c00510 !important;
  border-color: #c00510 !important;
  color: var(--ym-white) !important;
}

body.ym-site .owl-theme .owl-dots .owl-dot.active span,
body.ym-site .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--ym-red) !important;
}

body.ym-site .owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--ym-red) !important;
  color: var(--ym-white) !important;
}

body.ym-site .pricing-table .pricing-panel.active .pricing-wrapper::before,
body.ym-site .widget-reservation .widget-wrapper::before,
body.ym-site .img-card-holder .img-card-wrapper .img-card::before {
  background: rgba(227, 6, 19, 0.92) !important;
}

body.ym-site .module-contact .btn--primary,
body.ym-site .slide-action .btn--primary,
body.ym-site .about-action .btn--primary,
body.ym-site .entry-more .btn--primary,
body.ym-site .blog-entry .entry-content .entry-more a {
  background: var(--ym-red) !important;
  border-color: var(--ym-red) !important;
  color: var(--ym-white) !important;
}

body.ym-site .module-contact .btn--primary:hover,
body.ym-site .slide-action .btn--primary:hover,
body.ym-site .about-action .btn--primary:hover,
body.ym-site .entry-more .btn--primary:hover,
body.ym-site .blog-entry .entry-content .entry-more a:hover {
  background: #c00510 !important;
  color: var(--ym-white) !important;
}

body.ym-site .blog-entry .entry-content .entry-more a i,
body.ym-site .blog-entry .entry-content .entry-more a .icon-arrow-right {
  color: var(--ym-white) !important;
}

body.ym-site .contact-info svg path,
body.ym-site .footer-widget .contact-info svg path {
  fill: var(--ym-red) !important;
}

/* ========== CONTACT PAGE ========== */
.ym-map {
  line-height: 0;
  background: var(--ym-gray);
}

.ym-map iframe {
  width: 100% !important;
  height: 420px !important;
  display: block;
  filter: grayscale(15%);
}

.ym-contact-section {
  padding: 70px 0 90px;
  background: var(--ym-gray);
}

.ym-contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

.ym-contact-info-card {
  background: var(--ym-white);
  color: var(--ym-dark);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid var(--ym-border);
  position: relative;
  overflow: hidden;
}

.ym-contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ym-red);
}

.ym-contact-info-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ym-border);
}

.ym-contact-info-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ym-red);
  background: rgba(227, 6, 19, .08);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.ym-contact-info-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ym-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.ym-contact-info-head p {
  font-size: 14px;
  color: var(--ym-muted);
  line-height: 1.7;
  margin: 0;
}

.ym-contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ym-contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ym-contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ym-white);
  color: var(--ym-red);
  border: 2px solid rgba(227, 6, 19, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(227, 6, 19, .08);
}

.ym-contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ym-contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ym-muted);
}

.ym-contact-info-text a,
.ym-contact-info-text span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ym-dark);
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}

.ym-contact-info-text a:hover {
  color: var(--ym-red);
}

.ym-contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 14px 20px;
  background: #25D366;
  color: var(--ym-white) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background .25s, transform .2s;
}

.ym-contact-whatsapp:hover {
  background: #1fb855;
  color: var(--ym-white) !important;
  transform: translateY(-2px);
}

.ym-contact-whatsapp i {
  font-size: 18px;
  color: var(--ym-white) !important;
}

.ym-contact-form-card {
  background: var(--ym-white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.ym-contact-form-head {
  margin-bottom: 28px;
}

.ym-contact-form-head h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ym-dark);
  margin: 0 0 8px;
}

.ym-contact-form-head p {
  font-size: 14px;
  color: var(--ym-muted);
  margin: 0;
  line-height: 1.6;
}

.ym-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ym-dark);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 8px;
}

body.ym-site .ym-form-control {
  border: 1px solid var(--ym-border);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ym-dark);
  background: var(--ym-white);
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s;
}

body.ym-site .ym-form-control:focus {
  border-color: var(--ym-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
  outline: none;
}

body.ym-site .ym-contact-form .row > [class*="col-"] {
  margin-bottom: 20px;
}

.ym-contact-submit {
  min-width: 180px;
  border: none;
  cursor: pointer;
}

.ym-contact-submit i {
  color: var(--ym-white) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
  .ym-categories { grid-template-columns: repeat(3, 1fr); }
  .ym-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ym-services-home-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ym-brands { grid-template-columns: repeat(4, 1fr); }
  .ym-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .ym-gallery-item { flex: 0 0 calc(33.333% - 14px); min-width: calc(33.333% - 14px); }
  .ym-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ym-catalog-hero { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .ym-toggler { display: block; }
  .ym-topbar-inner { justify-content: center; }
  .ym-topbar-right { display: none; }
  .ym-contact-grid { grid-template-columns: 1fr; }
  .ym-catalog-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ym-catalog-hero-visual {
    min-height: 260px;
    order: -1;
  }
  .ym-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ym-nav {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    background: var(--ym-white);
    border-bottom: 1px solid var(--ym-border);
    padding: 16px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .ym-nav.open { display: block; }
  body.ym-nav-open { overflow: hidden; }
  .ym-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 150;
  }
  .ym-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .ym-nav { z-index: 160; }
  .ym-nav-list { flex-direction: column; align-items: stretch; }
  .ym-nav-list > li > a { padding: 12px 16px; }
  .ym-hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .ym-hero-image { order: -1; }
  .ym-hero-image img { height: 230px; }
  .ym-hero-slides { min-height: 0; }
  .ym-hero {
    padding: 20px 0 12px;
  }
  .ym-hero-viewport {
    background: var(--ym-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    overflow: hidden;
    padding: 14px 14px 0;
    position: relative;
  }
  .ym-hero-viewport .ym-features-bar {
    border-radius: 0 0 16px 16px;
  }
  .ym-hero-image {
    border-radius: 12px;
    box-shadow: none;
    position: relative;
  }
  .ym-hero-content {
    text-align: center;
    padding: 0 2px;
  }
  .ym-hero-title {
    font-size: 1.65rem;
    margin-bottom: 8px;
  }
  .ym-hero-desc {
    max-width: none;
    margin: 0 auto 14px;
    font-size: 14px;
  }
  .ym-hero-btns {
    flex-direction: column;
    gap: 8px;
  }
  .ym-hero-btns .ym-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .ym-hero-controls {
    position: static;
    margin: 8px 0 0;
    padding: 10px 0 12px;
    border-top: 1px solid var(--ym-border);
    height: auto;
    overflow: visible;
    justify-content: center;
    gap: 14px;
  }
  .ym-hero-indicators {
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
  }
  .ym-hero-arrow-prev,
  .ym-hero-arrow-next {
    position: static;
    transform: none;
    width: 38px;
    height: 38px;
    border: 2px solid var(--ym-dark);
    background: var(--ym-white);
    box-shadow: none;
    pointer-events: auto;
  }
  .ym-hero-dot {
    background: rgba(26, 26, 26, .18);
  }
  .ym-hero-dot.active {
    background: var(--ym-red);
  }
  .ym-features {
    margin-top: 0;
  }
  .ym-feature-item {
    padding: 16px 14px;
    gap: 12px;
  }
  .ym-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 14px;
  }
  .ym-features-bar { grid-template-columns: repeat(2, 1fr); }
  .ym-feature-item:nth-child(2) { border-right: none; }
  .ym-feature-item { border-bottom: 1px solid var(--ym-border); }
  .ym-gallery-wrap { grid-template-columns: 1fr; }
  .ym-service-banner { grid-template-columns: repeat(2, 1fr); }
  .ym-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .ym-topbar-left { gap: 12px; font-size: 11px; }
  .ym-topbar-left a span-hide { display: none; }
  .ym-catalog-grid { grid-template-columns: 1fr; }
  .ym-catalog-hero-title { font-size: 2rem; }
  .ym-catalog-hero-actions { flex-direction: column; align-items: stretch; }
  .ym-catalog-btn { width: 100%; }
  .ym-catalog-filters { margin-left: -4px; margin-right: -4px; padding-left: 4px; padding-right: 4px; }
  .ym-section-tight {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .ym-section-tight + .ym-section-tight {
    padding-top: 32px;
  }

  .ym-hero {
    padding: 16px 0 10px;
  }
  .ym-hero-viewport {
    padding: 12px 12px 0;
    border-radius: 14px;
  }
  .ym-hero-viewport .ym-features-bar {
    border-radius: 0 0 14px 14px;
  }
  .ym-feature-item {
    padding: 14px 12px;
  }
  .ym-hero-image img {
    height: 200px;
  }
  .ym-hero-title { font-size: 1.45rem; }
  .ym-hero-arrow-prev,
  .ym-hero-arrow-next {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .ym-categories { grid-template-columns: repeat(2, 1fr); }
  .ym-services-grid { grid-template-columns: 1fr; }
  .ym-services-home-grid { grid-template-columns: 1fr; }
  .ym-service-card--home .ym-service-img { height: 220px; }
  .ym-brands { grid-template-columns: repeat(3, 1fr); }
  .ym-features-bar { grid-template-columns: 1fr; }
  .ym-feature-item { border-right: none; }
  .ym-service-banner { grid-template-columns: 1fr; }
  .ym-footer-grid { grid-template-columns: 1fr; }
  .ym-gallery-item { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
}

@media (max-width: 480px) {
  .ym-categories { grid-template-columns: 1fr; }
  .ym-brands { grid-template-columns: repeat(2, 1fr); }
}

/* Override legacy theme */
body.ym-site .slider,
body.ym-site .header-transparent,
body.ym-site .header-white,
body.ym-site .navbar-sticky { display: none !important; }

body.ym-site .ym-header { display: block !important; background: transparent !important; border-bottom: none !important; box-shadow: none !important; }
body.ym-site .ym-header-wrap .ym-nav-list > li > a,
body.ym-site .ym-header-wrap .ym-nav-list > li.has-dropdown > a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.ym-site h1, body.ym-site h2, body.ym-site h3, body.ym-site h4 {
  font-family: var(--ym-font);
}

body.ym-site a { transition: color .2s, background .2s; }

/* ========== HOMEPAGE ABOUT ========== */
.ym-about-home .ym-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ym-about-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.ym-about-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  color: var(--ym-dark);
}

.ym-about-content .line {
  width: 50px;
  height: 3px;
  background: var(--ym-red);
  margin-bottom: 24px;
}

.ym-about-text {
  color: var(--ym-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ym-about-text p:last-child { margin-bottom: 0; }

@media (max-width: 991px) {
  .ym-about-home .ym-about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== HOMEPAGE BLOG ========== */
.ym-blog-home-section {
  padding-top: 44px;
  padding-bottom: 48px;
}

.ym-blog-home-section .ym-section-title {
  margin-bottom: 32px;
}

.ym-blog-home-section .ym-section-title h2 {
  font-size: 1.45rem;
}

.ym-blog-home-section .ym-section-title p {
  font-size: 14px;
  margin-top: 14px;
}

.ym-blog-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.ym-blog-home-card {
  background: var(--ym-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, .06);
  box-shadow: 0 4px 18px rgba(26, 26, 26, .04);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.ym-blog-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .08);
  border-color: rgba(227, 6, 19, .12);
}

.ym-blog-home-media {
  display: block;
  position: relative;
  height: 168px;
  overflow: hidden;
  text-decoration: none;
}

.ym-blog-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ym-blog-home-card:hover .ym-blog-home-media img {
  transform: scale(1.06);
}

.ym-blog-home-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 50%, rgba(26, 26, 26, .45) 100%);
  opacity: .7;
  transition: opacity .3s ease;
}

.ym-blog-home-card:hover .ym-blog-home-media-shade {
  opacity: .95;
}

.ym-blog-home-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 46px;
  padding: 7px 9px 6px;
  background: var(--ym-white);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(26, 26, 26, .1);
  text-align: center;
  line-height: 1;
}

.ym-blog-home-date-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ym-dark);
}

.ym-blog-home-date-badge em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ym-red);
}

.ym-blog-home-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ym-blog-home-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ym-muted);
  margin-bottom: 8px;
}

.ym-blog-home-meta i {
  color: var(--ym-red);
  font-size: 11px;
}

.ym-blog-home-body h3 {
  font-size: .98rem;
  margin: 0 0 8px;
  line-height: 1.4;
}

.ym-blog-home-body h3 a {
  color: var(--ym-dark);
  text-decoration: none;
  transition: color .25s ease;
}

.ym-blog-home-body h3 a:hover {
  color: var(--ym-red);
}

.ym-blog-home-body p {
  font-size: 13px;
  color: var(--ym-muted);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.ym-blog-home-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--ym-dark);
  text-decoration: none;
  transition: color .25s ease, gap .25s ease;
}

.ym-blog-home-read i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .08);
  color: var(--ym-red);
  font-size: 10px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.ym-blog-home-read:hover {
  color: var(--ym-red);
  gap: 11px;
}

.ym-blog-home-read:hover i {
  background: var(--ym-red);
  color: var(--ym-white);
  transform: translateX(2px);
}

.ym-blog-home-section .ym-section-action {
  margin-top: 28px;
}

.ym-blog-home-section .ym-gallery-link {
  padding: 10px 20px;
  font-size: 12px;
}

@media (max-width: 991px) {
  .ym-blog-home-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .ym-blog-home-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ym-blog-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

/* ========== PROJECT DETAIL ========== */
.ym-project-page {
  padding: 40px 0 64px;
  background: var(--ym-white);
}

.ym-project-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.ym-project-sidebar-card {
  background: var(--ym-white);
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 8px 28px rgba(26, 26, 26, .04);
  position: sticky;
  top: 110px;
}

.ym-project-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ym-dark);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ym-red);
}

.ym-project-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ym-project-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--ym-gray);
  color: var(--ym-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.ym-project-nav-link i {
  font-size: 11px;
  color: var(--ym-muted);
  transition: color .25s ease, transform .25s ease;
}

.ym-project-nav-link:hover,
.ym-project-nav-link.is-active {
  background: var(--ym-dark);
  color: var(--ym-white);
}

.ym-project-nav-link:hover i,
.ym-project-nav-link.is-active i {
  color: var(--ym-white);
  transform: translateX(2px);
}

.ym-project-main {
  min-width: 0;
}

.ym-project-gallery {
  margin-bottom: 28px;
}

.ym-project-gallery-main {
  position: relative;
}

.ym-project-gallery-main img {
  height: 460px;
  cursor: zoom-in;
}

.ym-project-lightbox-trigger {
  display: block;
  line-height: 0;
}

.ym-project-gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26, 26, 26, .72);
  color: var(--ym-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  z-index: 2;
}

.ym-project-gallery-thumbs {
  margin-top: 14px;
}

.ym-project-gallery-thumbs .ym-product-thumb {
  width: 84px;
  height: 64px;
}

.ym-project-content {
  background: var(--ym-white);
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: 12px;
  padding: 28px 30px;
  box-shadow: 0 8px 28px rgba(26, 26, 26, .04);
}

.ym-project-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ym-dark);
  font-weight: 500;
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ym-border);
}

.ym-project-body {
  color: var(--ym-muted);
  font-size: 15px;
  line-height: 1.85;
}

.ym-project-body p {
  margin: 0 0 16px;
}

.ym-project-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .ym-project-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ym-project-sidebar-card {
    position: static;
  }

  .ym-project-gallery-main img {
    height: 280px;
  }

  .ym-project-content {
    padding: 22px 20px;
  }
}

/* ========== PROJECT LIGHTBOX ========== */
.ym-project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ym-project-lightbox.is-open {
  display: flex;
}

body.ym-project-lightbox-open {
  overflow: hidden;
}

.ym-project-lightbox-stage {
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ym-project-lightbox-stage img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.ym-project-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ym-project-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.ym-project-lightbox-prev { left: 24px; }
.ym-project-lightbox-next { right: 24px; }

.ym-project-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
