/*
Theme Name: YCS Metal Form
Theme URI: https://ycsmetalform.com
Author: Ruber Media
Description: YCS Metal Form için hızlı, ürün odaklı ve kurumsal WordPress teması.
Version: 1.0.35
Text Domain: ycs-metalform
*/

:root {
  --ycs-red: #d4aa1f;
  --ycs-red-dark: #a98708;
  --ycs-ink: #17202a;
  --ycs-muted: #667085;
  --ycs-line: #e7ebf0;
  --ycs-soft: #f4f7f8;
  --ycs-dark: #07121a;
  --ycs-metal: #aeb5bd;
  --ycs-radius: 18px;
  --ycs-container: 1320px;
  --ycs-shadow: 0 18px 55px rgba(16, 24, 40, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ycs-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--ycs-muted); font-size: 17px; margin: 0 0 16px; }
h1, h2, h3, h4 { line-height: 1.08; margin: 0 0 18px; color: var(--ycs-ink); letter-spacing: 0; }
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
ul, ol { color: var(--ycs-muted); font-size: 17px; }

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

.ycs-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,235,240,.92);
}
.ycs-header .ycs-container {
  width: min(calc(100% - 48px), 1480px);
}
.ycs-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr) 132px;
  align-items: center;
  gap: 32px;
}
.ycs-logo,
.ycs-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.ycs-logo { min-width: 150px; }
.ycs-logo .custom-logo-link {
  width: 214px;
  max-width: 214px;
  height: 58px;
  max-height: 58px;
  overflow: hidden;
}
.ycs-logo img,
.ycs-logo .custom-logo {
  width: auto !important;
  height: auto !important;
  max-width: 214px !important;
  max-height: 58px !important;
  object-fit: contain;
}
.ycs-logo__text { font-size: 28px; font-weight: 700; color: var(--ycs-red); letter-spacing: 0; }
.ycs-logo__text span { color: var(--ycs-ink); }
.ycs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.ycs-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ycs-menu li { position: relative; }
.ycs-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #253044;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.ycs-menu a:hover,
.ycs-menu .current-menu-item > a,
.ycs-menu .current_page_item > a {
  background: var(--ycs-ink);
  color: #fff;
}
.ycs-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  padding: 14px 10px 10px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--ycs-line);
  border-radius: 18px;
  box-shadow: var(--ycs-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.ycs-menu li:hover > .sub-menu,
.ycs-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ycs-menu .sub-menu a {
  border-radius: 12px;
  min-height: 42px;
  font-size: 14px;
  white-space: normal;
}
.ycs-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.ycs-header-quote {
  min-height: 44px;
  padding: 11px 20px;
  white-space: nowrap;
}
.ycs-btn,
.button,
button,
input[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: var(--ycs-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
  box-shadow: none !important;
}
.ycs-btn:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--ycs-red-dark);
  transform: translateY(-1px);
}
.ycs-btn--dark { background: var(--ycs-ink); }
.ycs-btn--dark:hover { background: #000; }
.ycs-btn--ghost {
  background: transparent;
  color: var(--ycs-ink);
  border: 1px solid var(--ycs-line);
}
.ycs-btn--ghost:hover { background: var(--ycs-ink); color: #fff; }
.ycs-hero .ycs-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.34);
}
.ycs-hero .ycs-btn--ghost:hover {
  background: #fff;
  color: var(--ycs-ink);
}
.ycs-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ycs-ink);
  padding: 0;
}
.ycs-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
}
.ycs-menu-toggle span::before,
.ycs-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
}
.ycs-menu-toggle span::before { top: -7px; }
.ycs-menu-toggle span::after { top: 7px; }

.ycs-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #070b10;
}
.ycs-hero::before,
.ycs-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ycs-hero-image);
  background-size: cover;
  background-position: center;
  opacity: .52;
}
.ycs-hero::after,
.ycs-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,16,.88), rgba(7,11,16,.52), rgba(7,11,16,.25)),
    radial-gradient(circle at 72% 48%, rgba(212,170,31,.22), transparent 35%);
}
.ycs-page-hero::after {
  background:
    linear-gradient(90deg, rgba(7,11,16,.78), rgba(7,11,16,.44), rgba(7,11,16,.18)),
    radial-gradient(circle at 72% 48%, rgba(212,170,31,.16), transparent 35%);
}
.ycs-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.ycs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ycs-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ycs-eyebrow::before {
  content: "";
  width: 44px;
  height: 3px;
  background: currentColor;
  border-radius: 4px;
}
.ycs-hero h1 {
  color: #fff;
  max-width: 930px;
  font-size: clamp(34px, 3vw, 50px);
}
.ycs-hero p {
  max-width: 740px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.ycs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.ycs-hero__panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  padding: 28px;
  backdrop-filter: blur(14px);
}
.ycs-stat-grid { display: grid; gap: 14px; }
.ycs-stat {
  border-radius: 18px;
  padding: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.ycs-stat strong {
  display: block;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}
.ycs-stat span { color: rgba(255,255,255,.7); font-weight: 700; }

.ycs-section { padding: 44px 0; position: relative; }
.ycs-content > .ycs-section:first-child { padding-top: 8px; }
.ycs-content > .ycs-section:first-child .ycs-container:first-child { margin-top: 0; }
.ycs-section--soft {
  background:
    linear-gradient(rgba(247,248,250,.95), rgba(247,248,250,.95)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.10) 0 1px, transparent 1px 72px);
}
.ycs-section--pattern {
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.10) 0 1px, transparent 1px 68px);
}
.ycs-section--dark {
  background:
    radial-gradient(circle at 22% 20%, rgba(212,170,31,.18), transparent 32%),
    linear-gradient(135deg, #080d14, #111827);
  color: #fff;
}
.ycs-section--dark h2,
.ycs-section--dark h3 { color: #fff; }
.ycs-section--dark p,
.ycs-section--dark li { color: rgba(255,255,255,.74); }
.ycs-section--cut::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 42% 43%, transparent 43%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 34px);
  opacity: .75;
}
.ycs-section--cut > * { position: relative; z-index: 1; }
.ycs-section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}
.ycs-section-head p { margin-bottom: 0; }
.ycs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ycs-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ycs-guide-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.ycs-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--ycs-line);
  border-radius: var(--ycs-radius);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}
.ycs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,170,31,.35);
}
.ycs-card::after {
  content: "";
  position: absolute;
  inset: -80px;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.72), transparent 58%);
  transform: translateX(-75%) rotate(8deg);
  transition: transform .65s ease;
  pointer-events: none;
}
.ycs-card:hover::after { transform: translateX(70%) rotate(8deg); }
.ycs-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ycs-soft);
}
.ycs-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ycs-card--product .ycs-card__image {
  padding: 12px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,248,250,.96)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.09) 0 1px, transparent 1px 52px);
}
.ycs-card--product .ycs-card__image img {
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}
.ycs-card--product .ycs-card__body { padding: 16px; }
.ycs-card--product .ycs-card__meta { display: none; }
.ycs-card--product .ycs-card__body h3 {
  font-size: 18px;
  text-transform: none;
}
.ycs-card:hover .ycs-card__image img { transform: scale(1.045); }
.ycs-card--product:hover .ycs-card__image img { transform: scale(1.018); }
.ycs-card__body { padding: 18px; position: relative; z-index: 1; }
.ycs-card__body h3 { font-size: 21px; margin-bottom: 8px; }
.ycs-card__body p { font-size: 15px; line-height: 1.5; margin-bottom: 8px; }
.ycs-card__body p:last-child { margin-bottom: 0; }
.ycs-card .ycs-card__body h3,
.ycs-card .ycs-card__body h3 a { color: var(--ycs-ink); }
.ycs-card .ycs-card__body p { color: var(--ycs-muted); }
.ycs-section--dark .ycs-card .ycs-card__body h3,
.ycs-section--dark .ycs-card .ycs-card__body h3 a { color: var(--ycs-ink); }
.ycs-section--dark .ycs-card .ycs-card__body p { color: var(--ycs-muted); }
.ycs-card__meta {
  color: var(--ycs-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ycs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ycs-red);
  font-weight: 700;
}
.ycs-link::after { content: "→"; }

.ycs-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: #090e15;
}
.ycs-page-hero .ycs-container { position: relative; z-index: 2; padding: 58px 0 52px; }
.ycs-breadcrumb {
  color: rgba(255,255,255,.70);
  font-weight: 700;
  margin-bottom: 18px;
}
.ycs-breadcrumb a { color: #fff; }
.ycs-page-hero h1 { color: #fff; font-size: clamp(30px, 3vw, 44px); max-width: 940px; }
.ycs-page-hero p { color: rgba(255,255,255,.76); max-width: 850px; font-size: 18px; }

.ycs-content {
  width: min(calc(100% - 64px), 1240px);
  margin: 0 auto;
  padding: 20px 0 50px;
}
.ycs-content--narrow { width: min(calc(100% - 64px), 1120px); }
.ycs-category-article { margin-top: 24px; }
.ycs-content :where(h2) { margin-top: 34px; }
.ycs-content :where(h3) { margin-top: 26px; }
.ycs-content a:not(.ycs-btn):not(.ycs-card) {
  color: var(--ycs-red);
  font-weight: inherit;
}
.ycs-prose-card {
  background: #fff;
  border: 1px solid var(--ycs-line);
  border-radius: 24px;
  padding: 20px;
}
.ycs-prose-card > :first-child { margin-top: 0; }

.ycs-inline-visual {
  width: min(calc(100% - 64px), var(--ycs-container));
  margin: 30px auto;
  overflow: hidden;
  border: 1px solid var(--ycs-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ycs-shadow);
}
.ycs-prose-card .ycs-inline-visual {
  width: 100%;
  margin: 26px 0;
  border-radius: 20px;
}
.ycs-inline-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ycs-content table,
.ycs-prose-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid var(--ycs-line);
  border-radius: 18px;
  background: #fff;
}
.ycs-content th,
.ycs-content td,
.ycs-prose-card th,
.ycs-prose-card td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--ycs-line);
  color: #243044;
  vertical-align: top;
}
.ycs-content tr:last-child th,
.ycs-content tr:last-child td,
.ycs-prose-card tr:last-child th,
.ycs-prose-card tr:last-child td { border-bottom: 0; }
.ycs-content th,
.ycs-prose-card th {
  background: #f5f7f9;
  color: var(--ycs-ink);
  font-weight: 700;
  text-align: left;
}
.ycs-content td,
.ycs-prose-card td {
  font-size: 17px;
  line-height: 1.62;
}
.ycs-sitemap {
  display: grid;
  gap: 28px;
}
.ycs-sitemap__intro {
  background: linear-gradient(135deg, #fff, #fbfcfd);
  border: 1px solid var(--ycs-line);
  border-radius: 22px;
  padding: 30px;
}
.ycs-sitemap__intro h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
}
.ycs-sitemap__intro p {
  max-width: 840px;
}
.ycs-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ycs-sitemap__block {
  background: #fff;
  border: 1px solid var(--ycs-line);
  border-radius: 22px;
  padding: 28px;
}
.ycs-sitemap__block--wide {
  grid-column: 1 / -1;
}
.ycs-sitemap__block h3 {
  margin: 0 0 18px;
  font-size: 24px;
}
.ycs-sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.ycs-sitemap li {
  color: var(--ycs-muted);
}
.ycs-sitemap li > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--ycs-line);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--ycs-ink) !important;
  font-weight: 700 !important;
}
.ycs-sitemap li > a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--ycs-gold);
  flex: 0 0 auto;
}
.ycs-sitemap li > a:hover {
  border-color: rgba(212,170,31,.45);
  background: #fff8dc;
}
.ycs-sitemap li ul {
  margin: 8px 0 6px 18px;
}
.ycs-sitemap li li > a {
  min-height: 38px;
  padding: 8px 12px;
  background: #fff;
  font-size: 15px;
}
.ycs-sitemap__columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ycs-tech-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 38px;
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.92)),
    radial-gradient(circle at 100% 0, rgba(212,170,31,.16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(23,32,42,.06) 0 1px, transparent 1px 58px);
}
.ycs-application-grid,
.ycs-process,
.ycs-info-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ycs-application-grid.ycs-guide-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.ycs-application-grid > div,
.ycs-process > div,
.ycs-info-band > div {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.ycs-section:not(.ycs-section--dark) .ycs-application-grid > div,
.ycs-section:not(.ycs-section--dark) .ycs-process > div,
.ycs-info-band > div {
  background:
    linear-gradient(135deg, #fff, #f7f9fa);
  border-color: var(--ycs-line);
}
.ycs-application-grid > div::after,
.ycs-process > div::after,
.ycs-info-band > div::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.36), transparent 62%);
  transform: translateX(-85%);
  transition: transform .7s ease;
}
.ycs-application-grid > div:hover::after,
.ycs-process > div:hover::after,
.ycs-info-band > div:hover::after { transform: translateX(80%); }
.ycs-application-grid strong,
.ycs-process h3,
.ycs-info-band strong {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  font-size: 21px;
  line-height: 1.18;
  margin-bottom: 10px;
}
.ycs-application-grid span,
.ycs-info-band span,
.ycs-process p {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.ycs-section:not(.ycs-section--dark) .ycs-application-grid span,
.ycs-section:not(.ycs-section--dark) .ycs-process p,
.ycs-info-band span { color: var(--ycs-muted); }
.ycs-application-grid a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 18px;
  color: var(--ycs-red);
  font-weight: 700;
  font-size: 15px;
}
.ycs-section--dark .ycs-application-grid a { color: #fff; }
.ycs-process b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--ycs-red);
  color: #fff;
  font-weight: 700;
}
.ycs-info-band {
  margin: 30px 0;
}
.ycs-info-band > div {
  padding: 20px;
}
.ycs-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 38px;
}
.ycs-factory-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.ycs-factory-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ycs-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ycs-shadow);
}
.ycs-factory-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ycs-dual-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.ycs-dual-visuals .ycs-factory-photo img {
  height: 100%;
  min-height: 360px;
}
.ycs-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}
.ycs-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .72fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}
.ycs-product-showcase__media,
.ycs-product-showcase__info,
.ycs-product-tech {
  border: 1px solid var(--ycs-line);
  border-radius: 26px;
  background: #fff;
}
.ycs-product-showcase__media {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,249,251,.96)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.08) 0 1px, transparent 1px 58px);
}
.ycs-product-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: 620px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}
.ycs-product-showcase__info {
  padding: 38px;
}
.ycs-product-showcase__info h2 { margin-top: 0; }
.ycs-product-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}
.ycs-product-features > div {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--ycs-line);
  background:
    radial-gradient(circle at 100% 0, rgba(212,170,31,.10), transparent 42%),
    #f8fafc;
}
.ycs-product-features span {
  display: block;
  width: 58px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 24px, rgba(212,170,31,.95) 24px 30px, transparent 30px),
    repeating-linear-gradient(90deg, rgba(15,23,42,.20) 0 1px, transparent 1px 10px),
    #fff;
  border: 1px solid rgba(212,170,31,.24);
}
.ycs-product-features strong {
  display: block;
  color: var(--ycs-ink);
  font-size: 18px;
  line-height: 1.18;
  margin-bottom: 8px;
}
.ycs-product-features p {
  margin: 0;
  color: var(--ycs-muted);
  font-size: 15px;
  line-height: 1.5;
}
.ycs-product-tech {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: 28px;
  padding: 36px;
  margin: 0 0 34px;
  background:
    linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.10) 0 1px, transparent 1px 62px);
}
.ycs-product-tech__copy h2 { margin-top: 0; }
.ycs-product-tech__visual {
  display: flex;
  align-items: center;
}
.ycs-product-tech__visual a {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--ycs-line);
  background: #fff;
}
.ycs-product-tech__visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
}
.ycs-product-tables {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
.ycs-product-visuals {
  padding: 34px;
  margin: 0 0 34px;
  border: 1px solid var(--ycs-line);
  border-radius: 26px;
  background:
    linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
    repeating-linear-gradient(90deg, rgba(15,23,42,.08) 0 1px, transparent 1px 64px);
}
.ycs-product-visuals .ycs-section-head {
  grid-template-columns: minmax(0, .9fr) minmax(300px, .62fr);
  margin-bottom: 24px;
}
.ycs-product-visuals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ycs-product-visuals__grid a {
  display: block;
  overflow: hidden;
  min-height: 250px;
  padding: 12px;
  border: 1px solid var(--ycs-line);
  border-radius: 18px;
  background: #fff;
}
.ycs-product-visuals__grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}
.ycs-product-visuals__grid a:hover img { transform: scale(1.012); }
.ycs-product-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
  min-width: 0;
}
.ycs-product-slider,
.ycs-product-spec-aside__drawing,
.ycs-product-spec-aside__table {
  border: 1px solid var(--ycs-line);
  border-radius: 26px;
  background: #fff;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.ycs-product-slider {
  padding: 18px;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.96)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.08) 0 1px, transparent 1px 62px);
}
.ycs-product-slider__stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(231,235,240,.9);
}
.ycs-product-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .28s ease, transform .28s ease;
}
.ycs-product-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.ycs-product-slider__slide a,
.ycs-product-slider__slide img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  display: block;
}
.ycs-product-slider__slide img {
  object-fit: contain;
  background: #fff;
}
.ycs-product-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(23,32,42,.92);
  color: #fff;
  font-size: 32px;
  line-height: 1;
}
.ycs-product-slider__nav:hover {
  transform: translateY(-50%);
  background: var(--ycs-red);
}
.ycs-product-slider__nav--prev { left: 16px; }
.ycs-product-slider__nav--next { right: 16px; }
.ycs-product-slider__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.ycs-product-slider__thumb {
  min-height: 0;
  padding: 5px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: #fff;
  aspect-ratio: 1 / 1;
}
.ycs-product-slider__thumb:hover,
.ycs-product-slider__thumb.is-active {
  transform: none;
  border-color: var(--ycs-red);
  background: #fff;
}
.ycs-product-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ycs-product-spec-aside {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}
.ycs-product-spec-aside__drawing {
  padding: 26px;
}
.ycs-product-spec-aside__drawing h2 {
  font-size: 30px;
  margin-top: 0;
}
.ycs-product-spec-aside__drawing a {
  display: block;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--ycs-line);
  border-radius: 18px;
  background: #fff;
}
.ycs-product-spec-aside__drawing img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}
.ycs-product-quote-btn {
  width: 100%;
  margin-top: 18px;
}
.ycs-product-spec-aside__drawing .ycs-product-quote-btn {
  display: inline-flex;
  min-height: 58px;
  padding: 16px 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ycs-red) 0%, #ff3a20 48%, #c40013 100%);
  color: #fff !important;
  letter-spacing: .01em;
  box-shadow: 0 16px 34px rgba(229, 24, 38, .24) !important;
  position: relative;
  overflow: hidden;
}
.ycs-product-spec-aside__drawing .ycs-product-quote-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.ycs-product-spec-aside__drawing .ycs-product-quote-btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #ff2d18 0%, var(--ycs-red) 52%, #a90010 100%);
  transform: translateY(-2px);
}
.ycs-product-spec-aside__drawing .ycs-product-quote-btn:hover::after {
  transform: translateX(120%);
}
.ycs-product-spec-aside__table {
  padding: 26px;
}
.ycs-product-spec-aside__table h3 {
  font-size: 24px;
  margin: 0 0 16px;
}
.ycs-product-spec-aside__table table {
  margin: 0;
  border-radius: 14px;
}
.ycs-product-spec-aside__table .ycs-product-tables {
  gap: 14px;
}
.ycs-product-spec-aside__table th,
.ycs-product-spec-aside__table td {
  padding: 12px 13px;
  font-size: 14px;
  line-height: 1.45;
}
.ycs-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.ycs-feature-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--ycs-soft);
  color: #253044;
  font-weight: 700;
}
.ycs-related-box {
  margin-top: 42px;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(212,170,31,.18);
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    repeating-linear-gradient(90deg, rgba(212,170,31,.14) 0 1px, transparent 1px 64px);
}
.ycs-related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.ycs-related-links a {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--ycs-line);
  background: #fff;
  color: var(--ycs-ink) !important;
  font-weight: 700;
}
.ycs-related-links a:hover { border-color: rgba(212,170,31,.45); }
.ycs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ycs-gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--ycs-line);
  background: #fff;
  padding: 12px;
}
.ycs-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  transition: transform .25s ease;
  background: #fff;
}
.ycs-gallery-grid a:hover img { transform: scale(1.015); }

.ycs-certificate-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.ycs-certificate-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.ycs-certificate-grid img {
  max-height: 156px;
  aspect-ratio: auto;
}

.ycs-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.ycs-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,170,31,.22);
  background: #fff;
  color: var(--ycs-ink);
  font-weight: 700;
}

.ycs-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.ycs-contact-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}
.ycs-contact-tile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--ycs-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(212,170,31,.10), transparent 45%),
    #fff;
  color: var(--ycs-ink);
}
.ycs-contact-tile span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ycs-red);
  color: #fff;
}
.ycs-contact-tile svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.ycs-contact-tile strong {
  color: var(--ycs-muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ycs-contact-tile b {
  color: var(--ycs-ink);
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.ycs-form .full { grid-column: 1 / -1; }
.ycs-field label {
  display: block;
  color: #344054;
  font-weight: 700;
  margin-bottom: 8px;
}
.ycs-field input,
.ycs-field textarea,
.ycs-field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ycs-line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ycs-ink);
  background: #fff;
  outline: none;
}
.ycs-field textarea { min-height: 160px; resize: vertical; }
.ycs-field input:focus,
.ycs-field textarea:focus,
.ycs-field select:focus { border-color: var(--ycs-red); }
.ycs-alert {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
}
.ycs-alert--ok { background: #eaf8f0; color: #11653b; }
.ycs-alert--err { background: #fff1f1; color: #b42318; }

.ycs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ycs-pagination {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.ycs-pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ycs-line);
  font-weight: 700;
}
.ycs-pagination .current { background: var(--ycs-red); border-color: var(--ycs-red); color: #fff; }

.ycs-footer {
  background:
    radial-gradient(circle at 12% 5%, rgba(212,170,31,.18), transparent 24%),
    linear-gradient(135deg, #080d14, #121a26);
  color: #fff;
  padding: 72px 0 0;
}
.ycs-footer p,
.ycs-footer li { color: rgba(255,255,255,.72); }
.ycs-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, .8fr));
  gap: 42px;
}
.ycs-footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}
.ycs-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ycs-footer a:hover { color: #fff; }
.ycs-footer__logo img { max-width: 260px; max-height: 86px; object-fit: contain; filter: brightness(1.08); }
.ycs-footer__bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.62);
  font-weight: 700;
}

.ycs-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  min-width: 176px;
  height: 58px;
  padding: 0 20px 0 14px;
  gap: 10px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(37,211,102,.28) !important;
  font-weight: 700;
  animation: ycs-whatsapp-pulse 1.8s ease-in-out infinite;
}
.ycs-whatsapp svg { width: 32px; height: 32px; fill: currentColor; display: block; flex: 0 0 auto; }
.ycs-whatsapp span { color: #fff; font-size: 15px; white-space: nowrap; }
@keyframes ycs-whatsapp-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,.34), 0 14px 34px rgba(37,211,102,.28); }
  70% { transform: scale(1.035); box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 14px 34px rgba(37,211,102,.28); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 14px 34px rgba(37,211,102,.28); }
}

@media (max-width: 1180px) {
  .ycs-header__inner {
    min-height: 62px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }
  .ycs-actions { margin-left: auto; }
  .ycs-nav {
    position: fixed;
    inset: 62px 18px auto 18px;
    display: none;
    background: #fff;
    border: 1px solid var(--ycs-line);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--ycs-shadow);
  }
  body.ycs-menu-open .ycs-nav { display: block; }
  .ycs-menu {
    display: grid;
    gap: 4px;
    justify-content: stretch;
    text-align: left;
  }
  .ycs-menu a { border-radius: 12px; }
  .ycs-menu .sub-menu {
    position: static;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    margin: 4px 0 4px 16px;
    display: none;
  }
  .ycs-menu li:hover > .sub-menu,
  .ycs-menu li:focus-within > .sub-menu { display: block; }
  .ycs-menu-toggle { display: inline-flex; }
  .ycs-actions .ycs-btn { display: none; }
  .ycs-hero__grid { grid-template-columns: 1fr; }
  .ycs-hero__panel { max-width: 620px; }
  .ycs-grid, .ycs-blog-grid, .ycs-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ycs-application-grid,
  .ycs-process,
  .ycs-info-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ycs-product-showcase,
  .ycs-product-tech,
  .ycs-product-layout,
  .ycs-product-visuals .ycs-section-head { grid-template-columns: 1fr; }
  .ycs-product-visuals__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ycs-tech-panel { grid-template-columns: 1fr; }
  .ycs-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .ycs-container, .ycs-content, .ycs-content--narrow { width: min(calc(100% - 32px), var(--ycs-container)); }
  .ycs-header .ycs-container { width: min(calc(100% - 32px), var(--ycs-container)); }
  p, ul, ol { font-size: 16px; }
  h1 { font-size: 31px; }
  h2 { font-size: 26px; }
  h3 { font-size: 21px; }
  .ycs-header__inner { min-height: 60px; }
  .ycs-logo { min-width: 116px; }
  .ycs-logo .custom-logo-link { width: 132px; max-width: 132px; height: 36px; max-height: 36px; }
  .ycs-logo img,
  .ycs-logo .custom-logo { max-width: 132px !important; max-height: 36px !important; }
  .ycs-nav { inset: 60px 12px auto 12px; }
  .ycs-nav .ycs-menu a { justify-content: flex-start; }
  .ycs-hero { min-height: auto; }
  .ycs-hero__grid { padding: 44px 0; gap: 22px; }
  .ycs-hero h1 { font-size: 32px; }
  .ycs-hero p { font-size: 17px; }
  .ycs-section { padding: 24px 0; }
  .ycs-section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 18px; }
  .ycs-grid,
  .ycs-products-grid,
  .ycs-blog-grid { gap: 14px; }
  .ycs-grid, .ycs-blog-grid, .ycs-products-grid, .ycs-related-links, .ycs-feature-list, .ycs-form, .ycs-footer__grid, .ycs-gallery-grid, .ycs-application-grid, .ycs-process, .ycs-info-band, .ycs-product-features { grid-template-columns: 1fr; }
  .ycs-products-grid,
  .ycs-guide-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 10px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .ycs-products-grid > *,
  .ycs-guide-grid > * {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }
  .ycs-guide-grid > * { min-height: 100%; }
  .ycs-sitemap__grid,
  .ycs-sitemap__columns { grid-template-columns: 1fr; }
  .ycs-sitemap__intro,
  .ycs-sitemap__block { padding: 22px; border-radius: 18px; }
  .ycs-split,
  .ycs-factory-split,
  .ycs-dual-visuals { grid-template-columns: 1fr; gap: 18px; }
  .ycs-split:has(input[name="ycsm_form_type"][value="quote"]) .ycs-prose-card:first-child { order: 2; }
  .ycs-split:has(input[name="ycsm_form_type"][value="quote"]) .ycs-prose-card:last-child { order: 1; }
  .ycs-certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .ycs-certificate-grid a { padding: 8px; border-radius: 14px; }
  .ycs-dual-visuals .ycs-factory-photo img { min-height: 260px; }
  .ycs-product-layout,
  .ycs-product-slider,
  .ycs-product-slider__stage,
  .ycs-product-slider__slide,
  .ycs-product-slider__slide a,
  .ycs-product-slider__slide img,
  .ycs-product-spec-aside,
  .ycs-product-spec-aside__drawing,
  .ycs-product-spec-aside__table {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .ycs-product-showcase__media,
  .ycs-product-showcase__info,
  .ycs-product-tech,
  .ycs-product-visuals,
  .ycs-product-slider,
  .ycs-product-spec-aside__drawing,
  .ycs-product-spec-aside__table { padding: 22px; border-radius: 18px; }
  .ycs-product-showcase__media img { min-height: 260px; max-height: 420px; }
  .ycs-product-layout { margin-bottom: 22px; }
  .ycs-product-slider__stage { border-radius: 16px; }
  .ycs-product-slider__nav { width: 40px; height: 40px; min-height: 40px; font-size: 27px; }
  .ycs-product-slider__nav--prev { left: 10px; }
  .ycs-product-slider__nav--next { right: 10px; }
  .ycs-product-slider__thumbs { gap: 8px; }
  .ycs-product-spec-aside__drawing h2 { font-size: 24px; }
  .ycs-product-spec-aside__drawing img { max-height: 310px; }
  .ycs-product-spec-aside__table .ycs-product-tables { display: block; max-width: 100%; overflow-x: hidden; }
  .ycs-product-spec-aside__table table { width: 100%; min-width: 0; margin-bottom: 14px; table-layout: fixed; }
  .ycs-product-spec-aside__table th,
  .ycs-product-spec-aside__table td { word-break: break-word; }
  .ycs-product-visuals__grid { grid-template-columns: 1fr; }
  .ycs-product-visuals__grid a,
  .ycs-product-visuals__grid img { min-height: 220px; }
  .ycs-page-hero { min-height: 280px; }
  .ycs-page-hero .ycs-container { padding: 34px 0 32px; }
  .ycs-breadcrumb { margin-bottom: 12px; }
  .ycs-page-hero h1 { font-size: 28px; }
  .ycs-content { padding: 18px 0 32px; }
  .ycs-content :where(h2) { margin-top: 24px; }
  .ycs-content :where(h3) { margin-top: 18px; }
  .ycs-prose-card, .ycs-related-box { padding: 20px; border-radius: 18px; }
  .ycs-card--product .ycs-card__image { aspect-ratio: 16 / 10; padding: 9px; }
  .ycs-card--product .ycs-card__body { padding: 12px 13px 13px; }
  .ycs-card--product .ycs-card__body h3 { margin-bottom: 8px; font-size: 17px; }
  .ycs-card__body p { margin-bottom: 6px; }
  .ycs-content table,
  .ycs-prose-card table {
    display: table;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    table-layout: fixed;
    overflow: hidden;
  }
  .ycs-content th,
  .ycs-content td,
  .ycs-prose-card th,
  .ycs-prose-card td {
    min-width: 0;
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.42;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .ycs-footer__bottom { flex-direction: column; align-items: flex-start; }
  .ycs-whatsapp { min-width: 0; width: 56px; height: 56px; padding: 0; right: 16px; bottom: 16px; border-radius: 50%; }
  .ycs-whatsapp span { display: none; }
  .ycs-whatsapp svg { width: 32px; height: 32px; }
}
