  /* ===========================
   Global Variables
   =========================== */
  
   :root {
      /*Background Color*/
      --color-background: #f5f6f7;
      /* Spacing */
      --space-base: 12px;
      --space-padding: 20px;
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-global: 0.7rem;
      --space-mobile-global: 0.5rem;
      --space-mobile-out-global: 1rem;
      /* Border / Radius */
      --global-radius: 0.7rem;
      --global-mobile-radius: 0.5rem;
      --page-radius: 1rem;
      /* Font */
      --font-raleway: "Raleway", sans-serif;
      --font-outFit: 'Outfit', sans-serif;
      /* === Colors === */
      --color-primary: #0a1829;
      --color-primary-hover: #071220;
      --color-accent: #5E82A2;
      /* Background / surfaces */
      --color-bg: #ffffff;
      /* genel sayfa ve section zeminleri */
      --color-surface: #112740;
      /* kartlar, menü, modal gibi yüzeyler */
      /* Text */
      --color-text: #0a1829;
      --color-text-muted: #6b7785;
      --color-text-footer: #888888;
      --color-text-white: #ffffff;
      /* Borders */
      --color-border: #bebebe;
      --color-border-strong: #474747;
      /* Overlay / modal mask */
      --color-overlay: rgba(0, 0, 0, 0.4);
      /* Semantic colors */
      --color-success: #2ecc71;
      --color-warning: #f39c12;
      --color-danger: #e74c3c;
      --color-border-trans: #e3e3e361;
      --radius: 26px;
      --green: #11c59a;
      --text: #111;
      --muted: #444;
      --shadow: 0 18px 40px rgba(0, 0, 0, .08);
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  }
  
  * {
      margin: 0;
      padding: 0;
      outline: none;
      border: none;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
      text-decoration: none;
      list-style: none;
      -webkit-box-shadow: none;
      box-shadow: none;
  }
  
  body {
      margin: 0;
      overflow-x: hidden;
      overflow-y: auto;
      font-family: var(--font-raleway);
      background: var(--color-background);
  }
  
  body.no-scroll {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
  }
  
  a {
      text-decoration: none !important;
  }
  
  ul {
      padding-inline-start: 0px !important;
  }
  
  p {
      margin-top: 0;
      margin-bottom: 0;
  }
  
  section.content-full-page {
      padding: 90px var(--space-global) var(--space-global) var(--space-global);
  }
  
  wrapper {
      padding: 60px;
      background: #f5f6f7;
      border-radius: 2rem;
      box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .object {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      block-size: 400px;
      inline-size: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-top-right-radius: var(--page-radius);
      ;
      border-bottom-left-radius: var(--page-radius);
      ;
  }
  /* ::before ve ::after */
  
  .object::before,
  .object::after {
      content: '';
      position: absolute;
      background-color: var(--color-background);
  }
  
  .object::before {
      inset-block-start: 0;
      inset-inline-start: 0;
      border-bottom-right-radius: var(--page-radius);
      ;
      block-size: 65px;
      inline-size: 400px;
  }
  
  .object::after {
      inset-block-end: 0;
      inset-inline-end: 0;
      border-top-left-radius: var(--page-radius);
      block-size: 100px;
      inline-size: 100px;
  }
  /* TOP CORNER */
  
  .object__corner--top::before {
      content: '';
      position: absolute;
      top: 0;
      left: 400px;
      width: 50px;
      height: 50px;
      background-color: transparent;
      border-top-left-radius: var(--page-radius);
      ;
      box-shadow: -5px -5px 0 5px var(--color-background);
  }
  
  .object__corner--top::after {
      content: '';
      position: absolute;
      top: 65px;
      left: 0;
      width: 50px;
      height: 50px;
      background-color: transparent;
      border-top-left-radius: var(--page-radius);
      ;
      box-shadow: -5px -5px 0 5px var(--color-background);
  }
  /* BOTTOM CORNER */
  
  .object__corner--bottom::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 100px;
      width: 50px;
      height: 50px;
      background-color: transparent;
      border-top-left-radius: var(--page-radius);
      box-shadow: -5.5px -5.5px 0 5px var(--color-background);
      transform: rotate(180deg);
  }
  
  .object__corner--bottom::after {
      content: '';
      position: absolute;
      bottom: 100px;
      inset-inline-end: 0;
      width: 50px;
      height: 50px;
      background-color: transparent;
      border-top-left-radius: var(--page-radius);
      box-shadow: -5.5px -5.5px 0 5px var(--color-background);
      transform: rotate(180deg);
  }
  
  .wrapper .title {
      width: 400px;
      position: absolute;
      font-size: 50px;
      z-index: 1;
      font-weight: 200;
      top: 110px;
      left: 2rem;
  }
  
  .wrapper .slogan {
      position: absolute;
      font-size: 20px;
      z-index: 1;
      font-weight: 300;
      top: 110px;
      right: 2rem
  }
  /**Hero*/
  
  .hero {
      padding: 0 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 2rem 2rem;
  }
  
  .hero .title {
      font-size: 30px;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 24px;
      line-height: 130%;
      letter-spacing: 0.08em;
  }
  
  .hero .slogan {
      font-size: 30px;
      font-weight: 200;
      color: #a6a5a5;
      font-style: italic;
      width: 600px;
  }
  
  .hero .divider {
      width: 50px;
      height: 2px;
      background-color: #111;
      opacity: 0.15;
      margin: 1.2rem 0 1.6rem 0;
  }
  
  .breadcrumb {
      display: flex;
      font-size: 15px;
      font-weight: 200;
      gap: 6px;
      padding: 0 2rem;
      color: #888888;
      align-items: flex-start;
  }
  
  .breadcrumb a {
      color: #888888;
  }
  
  .breadcrumb svg {
      color: #888888;
  }
  
  .content {
      padding: 2rem;
      font-size: 20px;
      line-height: 140%;
      text-align: justify;
      width: 100%;
      display: flex;
  }
  
  .content p {
      padding: 10px 0;
  }
  
  .content p {
      padding: 10px 0;
  }
  
  .content .page-left {
      width: 300px;
  }
  
  .content .page-right {
      width: calc(100% - 300px);
  }
  
  .about-split {
      display: flex;
      gap: 28px;
      padding: 10px 2rem;
      align-items: stretch;
      /* önemli */
      padding-bottom: 5rem;
  }
  
  .about-card {
      border-radius: var(--global-radius);
      height: 650px;
  }
  
  .about-card.right {
      width: 400px;
      background: #f7f7f7;
      display: flex;
      height: 650px;
      order: 1;
  }
  
  .about-card.left {
      order: 0;
      width: calc(100% - 300px);
      background: #ffffff;
      /* örnekteki gibi mavi */
      color: #202020;
      padding: 28px;
      height: 650px;
  }
  
  .about-card.left p {
      color: rgba(32, 32, 32, 0.85);
      line-height: 1.7;
      margin: 0 0 14px 0;
      text-align: justify;
  }
  
  .aboutImg {
      width: 100%;
      height: 100%;
  }
  
  .aboutImg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* kritik */
      border-radius: 18px;
  }
  
  .about-card.right img {
      filter: saturate(0.95) contrast(0.95);
  }
  
  .quote {
      font-size: 40px;
      opacity: .25;
      line-height: 1;
      margin-bottom: 12px;
  }
  
  .lead {
      font-size: 18px;
      line-height: 1.6;
      margin: 0 0 18px 0;
      color: #333;
      max-width: 42ch;
  }
  
  .media {
      margin-top: 18px;
      border-radius: 14px;
      overflow: hidden;
  }
  
  .media img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
  }
  
  .tag {
      font-size: 12px;
      letter-spacing: .12em;
      font-weight: 700;
      text-transform: uppercase;
      opacity: .85;
      margin-bottom: 14px;
  }
  /* responsive */
  
  @media (max-width: 900px) {
      .about-split {
          grid-template-columns: 1fr;
      }
      .media img {
          height: 170px;
      }
  }
  
  .about-nav {
      position: sticky;
      top: 120px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 13px;
  }
  
  .about-nav a {
      color: #aaa;
      text-decoration: none;
  }
  
  .about-nav a.active {
      color: #111;
      font-weight: 600;
  }
  
  @media only screen and (max-width: 768px) {
      section.content-full-page {
          padding: 90px var(--space-mobile-global) var(--space-mobile-global) var(--space-mobile-global);
      }
      .breadcrumb {
          padding: 0 0.7rem;
      }
      .hero {
          padding: 1rem 0.7rem;
      }
      .hero .title {
          font-size: 20px;
      }
      .hero .slogan {
          font-size: 18px;
          width: 100%;
      }
      .about-split {
          padding: 10px 0rem;
          align-items: stretch;
          padding-bottom: 5rem;
          flex-direction: column;
      }
      .about-card.left {
          order: 1;
          width: 100%;
          height: 100%;
          padding: var(--space-mobile-out-global);
      }
      .about-card.right {
          order: 0;
          width: 100%;
          height: 400px;
      }
      .about-card.left p {
          line-height: 1.3;
      }
  }
  /*Vission and Mission*/
  
  .about-split-vission {
      display: flex;
      gap: 28px;
      padding: 10px 2rem;
      align-items: stretch;
      /* önemli */
      padding-bottom: 5rem;
  }
  
  .about-card-vission {
      border-radius: var(--global-radius);
  }
  
  .about-card-vission {
      width: 50%;
      background: #ffffff;
      /* örnekteki gibi mavi */
      color: #202020;
      padding: 28px;
  }
  
  .about-card-vission p {
      color: rgba(32, 32, 32, 0.85);
      line-height: 1.7;
      margin: 0 0 14px 0;
      text-align: justify;
  }
  
  .about-split.vision-mission {
      padding-bottom: 3rem;
  }
  
  @media only screen and (max-width: 768px) {
      .about-card-vission {
          width: 100%;
          background: #ffffff;
          /* örnekteki gibi mavi */
          color: #202020;
          padding: 28px;
      }
  }
  
  .page-signature {
      margin-top: 0px;
      padding-bottom: 3.15rem;
      text-align: center;
      color: #9a9a9a;
  }
  
  .page-signature::before {
      content: "";
      display: block;
      width: 80px;
      height: 1px;
      background: rgba(0, 0, 0, 0.08);
      margin: 0 auto 24px;
  }
  
  .page-signature p {
      font-size: 16px;
      font-style: italic;
      letter-spacing: 0.4px;
  }
  
  .contact-split {
      display: flex;
      gap: 28px;
      padding: 10px 2rem;
      align-items: stretch;
      /* önemli */
      padding-bottom: 5rem;
  }
  
  .contact-card {
      border-radius: var(--global-radius);
      height: 480px;
  }
  
  .contact-card.left {
      width: 65%;
      background: #ffffff;
      height: 480px;
      order: 0;
      padding: 28px;
      font-weight: 400;
      position: relative;
  }
  
  .contact-card.left .adress {
      padding: 6px 0;
  }
  
  .contact-card.left .mail {
      padding: 4px 0;
  }
  
  .contact-card.left .number {
      font-family: var(--font-outFit);
      font-weight: 300;
      font-size: 17px;
      padding: 2px 0;
  }
  
  .contact-card.left .number a {
      color: #202020;
  }
  
  .contact-card.left .company {
      font-weight: 600;
      font-size: 14px;
  }
  
  .contact-card.right {
      order: 1;
      width: calc(100% - 65%);
      background: #ffffff;
      /* örnekteki gibi mavi */
      color: #202020;
      height: 480px;
      padding: 28px;
  }
  
  .notes {
      display: flex;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      position: absolute;
      bottom: 50px;
  }
  
  .note .tag {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
  }
  
  .note p {
      margin: 0;
      font-size: 12px;
      line-height: 1.4;
      text-align: justify;
      padding-right: 28px;
  }
  
  .note-tr {
      margin-top: 6px;
      font-size: 14px;
      opacity: 0.7;
  }
  
  @media (max-width: 768px) {
      .notes {
          grid-template-columns: 1fr;
      }
  }
  /* Form layout */
  
  .contact-form {
      display: grid;
      gap: 12px;
  }
  
  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }
  
  .field input,
  .field textarea,
  .country-code {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, .08);
      background: #fafafa;
      border-radius: var(--global-radius);
      padding: 12px 14px;
      font-size: 14px;
      outline: none;
  }
  
  .field textarea {
      border-radius: 18px;
      min-height: 120px;
      resize: vertical;
      padding: 12px 14px;
  }
  
  .field input:focus,
  .field textarea:focus,
  .country-code:focus {
      background: #fff;
      border-color: rgba(199, 164, 106, .6);
      /* altın vurgu */
      box-shadow: 0 0 0 4px rgba(199, 164, 106, .15);
  }
  
  .input-with-icon {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(0, 0, 0, .08);
      background: #fafafa;
      border-radius: var(--global-radius);
      padding: 0 14px;
  }
  
  .input-with-icon .icon {
      opacity: .55;
      font-size: 14px;
  }
  
  .input-with-icon input {
      border: none;
      background: transparent;
      padding: 12px 0;
      border-radius: var(--global-radius);
  }
  
  .input-with-icon:focus-within {
      background: #fff;
      border-color: rgba(199, 164, 106, .6);
      box-shadow: 0 0 0 4px rgba(199, 164, 106, .15);
  }
  /* Phone row */
  
  .phone-row {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 10px;
      align-items: center;
  }
  
  .country-code {
      appearance: none;
      text-align: center;
      padding: 12px 10px;
  }
  /* Character counter */
  
  .char-info {
      text-align: right;
      font-size: 12px;
      color: rgba(0, 0, 0, .45);
  }
  /* Button */
  
  .btn-submit {
      margin-top: -6px;
      border: none;
      border-radius: var(--global-radius);
      padding: 12px 16px;
      font-weight: 700;
      cursor: pointer;
      background: #111827;
      /* koyu */
      color: #fff;
      transition: transform .12s ease, opacity .12s ease;
  }
  
  .btn-submit:hover {
      transform: translateY(-1px);
      opacity: .95;
  }
  /* Footnote */
  
  .form-footnote {
      margin: -6px 0 0;
      font-size: 12px;
      color: rgba(0, 0, 0, .5);
      line-height: 1.5;
  }
  
  .form-footnote a {
      color: rgba(0, 0, 0, .75);
      text-decoration: underline;
      text-underline-offset: 2px;
  }
  /* Responsive */
  
  @media (max-width: 900px) {
      .form-row {
          grid-template-columns: 1fr;
      }
      .phone-row {
          grid-template-columns: 1fr;
      }
  }
  
  .our-location {
      padding: 4rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .maps {
      height: 400px;
      margin-bottom: 50px;
      border-radius: var(--global-radius);
  }
  
  #map {
      height: 100%;
      width: 100%;
      margin-bottom: 50px;
      border-radius: var(--global-radius);
  }
  
  #map .gm-style-cc,
  #map .gm-style-mtc,
  #map .gmnoprint {
      opacity: 0.6;
  }
  
  #map .gm-style-cc {
      opacity: 0.4;
      font-size: 10px;
  }
  
  .our-location-inner {
      width: 100%;
      margin: 0 auto;
      /* ortalar */
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      /* harita biraz daha büyük */
      gap: 3rem;
      align-items: center;
  }
  
  .our-location-inner .text .slogan {
      font-style: italic;
      margin-top: -10px;
      padding-bottom: 10px;
      font-size: 19px;
  }
  
  .our-location-inner .text .company-info {
      font-size: 15px;
      padding: 10px 0 30px 0;
      font-weight: 300;
  }
  
  .our-location-inner .text a {
      font-size: 15px;
      padding: 10px 0;
      font-weight: 300;
      padding: 10px;
      border: 1px solid var(--color-primary);
      border-radius: 20px;
      color: var(--color-primary);
  }
  
  @media only screen and (max-width: 768px) {
      .contact-split {
          padding: 10px 0rem;
          align-items: stretch;
          padding-bottom: 5rem;
          flex-direction: column;
      }
      .contact-card.left {
          width: 100%;
          padding: var(--space-mobile-out-global);
      }
      .contact-card.right {
          width: 100%;
          height: 100%;
      }
      .contact-card.left p {
          line-height: 1.3;
      }
      .our-location {
          padding-top: 0px;
      }
      .our-location-inner {
          grid-template-columns: 1fr;
          /* tek kolon */
          gap: 1.5rem;
          align-items: stretch;
      }
      .maps,
      #map {
          height: 320px;
          /* mobilde daha dengeli */
          margin-bottom: 0;
          /* çift boşluğu kaldır */
          border-radius: var(--global-radius);
      }
  }
  /* InfoWindow container override */
  
  .gm-style .gm-style-iw-c {
      padding: 14px !important;
      border-radius: 14px !important;
  }
  /* İç içerik */
  
  .gm-iw-wrap {
      max-width: 260px;
  }
  
  .gm-iw-title {
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
      white-space: normal;
      /* tek satır zorlamasın */
      word-break: break-word;
      /* uzun kelimeyi kır */
  }
  
  .gm-style-iw-ch {
      padding-top: 0;
  }
  
  .gm-iw-link {
      display: inline-block;
      margin-top: 8px;
      font-size: 13px;
      opacity: 0.8;
      text-decoration: underline;
      text-underline-offset: 2px;
  }
  /* Mobilde daha dar */
  
  @media (max-width: 480px) {
      .gm-iw-wrap {
          max-width: 220px;
      }
      .gm-style .gm-style-iw-c {
          padding: 12px !important;
      }
  }
  
  .gm-ui-hover-effect {
      display: none !important;
  }
  /*Reference Page*/
  
  .reference-split {
      padding: 0 2rem 5rem;
      margin-top: -1rem;
  }
  /* Tabs */
  
  .reference-tabs {
      display: flex;
      gap: 28px;
      align-items: center;
      margin-bottom: 10px;
      justify-content: center;
  }
  
  .ref-tab {
      background: transparent;
      border: 0;
      padding: 10px 22px;
      border-radius: 999px;
      font-weight: 600;
      color: #111;
      opacity: .6;
      transition: background-color .25s ease, color .25s ease, opacity .25s ease, transform .2s ease;
  }
  
  .ref-tab.is-active {
      background: #111;
      color: #fff;
      opacity: 1;
      transform: translateY(0);
  }
  
  .ref-tab:hover {
      transform: translateY(-1px);
      opacity: 1;
  }
  /* Content */
  
  .reference-content {
      position: relative;
  }
  
  .ref-pane {
      text-align: center;
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .25s ease, transform .25s ease;
  }
  
  .ref-pane i {
      font-size: 24px;
      color: #d1d1d1;
  }
  /* Aktif pane görünür */
  
  .ref-pane.is-active {
      display: block;
  }
  /* Animasyonu oynatmak için ekstra class */
  
  .ref-pane.is-active.is-enter {
      opacity: 1;
      transform: translateY(0);
  }
  /* (opsiyonel) motion azaltma desteği */
  
  @media (prefers-reduced-motion: reduce) {
      .ref-tab,
      .ref-pane {
          transition: none;
      }
  }
  /* Grid / Cards */
  
  .ref-items {
      padding: 2rem 0;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      /* kartlar arası boşluk */
  }
  
  .ref-item {
      padding: 0.1rem 1rem 1rem 1rem;
      width: 100%;
      background-color: var(--color-text-white);
      border-radius: var(--global-radius);
  }
  
  .ref-item img {
      max-width: 220px;
      opacity: 0.6;
  }
  
  .ref-item-info {
      font-size: 12px;
      border-top: 2px solid #dcdcdc;
      padding-top: 15px;
      margin-top: -10px;
  }
  
  .ref-item-info .card-detail {
      display: flex;
      justify-content: space-between;
  }
  
  .ref-item-info .card-detail .stars {
      color: darkgoldenrod;
  }
  
  .general.ref-item {
      padding: 1rem 1rem 1rem 1rem;
  }
  
  .general .ref-item-info {
      font-size: 15px;
      border-top: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .general .title {
      font-weight: 600;
      font-size: 16px;
  }
  
  .general .location {
      font-weight: 300;
      font-style: italic;
      font-size: 13px;
  }
  
  .government.ref-items {
      padding: 2rem 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      /* kartlar arası boşluk */
  }
  
  @media only screen and (max-width: 768px) {
      .reference-split {
          margin-top: 0rem;
          padding: 0 0rem 5rem;
      }
      .reference-tabs {
          display: flex;
          gap: 3px;
          align-items: center;
          margin-bottom: 10px;
          justify-content: center;
      }
      .ref-tab {
          background: transparent;
          border: 0;
          padding: 10px 10px;
          border-radius: 999px;
          font-weight: 600;
          color: #111;
          opacity: .6;
          transition: background-color .25s ease, color .25s ease, opacity .25s ease, transform .2s ease;
      }
      .ref-items {
          padding: 2rem 0;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
      }
      .government.ref-items {
          padding: 2rem 0;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
          /* kartlar arası boşluk */
      }
      .ref-items {
          padding: 2rem 0;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
      }
      .ref-item img {
          max-width: 140px;
          opacity: 0.6;
      }
  }
  
  @media only screen and (max-width: 540px) {
      .ref-tab {
          background: transparent;
          border: 0;
          padding: 5px 10px;
          border-radius: 999px;
          font-weight: 600;
          color: #111;
          opacity: .6;
          transition: background-color .25s ease, color .25s ease, opacity .25s ease, transform .2s ease;
      }
      .ref-items {
          padding: 2rem 0;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
      }
      .ref-item img {
          max-width: 140px;
          opacity: 0.6;
      }
      .ref-item .card-detail {
          display: flex;
          justify-content: space-between;
          flex-direction: column;
      }
      .ref-item-info .card-detail span:first-child {
          display: none;
      }
      .ref-item-info .card-detail span.title {
          display: block;
      }
      .ref-item-info .card-detail span.stars {
          display: block;
      }
      .ref-item-info .card-detail span.location {
          display: block;
      }
  }
  /*Product*/
  
  .product-slider .swiper-pagination {
      bottom: 3rem !important;
  }
  
  .swiper-pagination {
      position: absolute;
      text-align: center;
      transition: .3s opacity;
      transform: translate3d(0, 0, 0);
      z-index: 10;
  }
  
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #fff;
      border-radius: 0;
      opacity: 1;
      background: #000000;
  }
  
  .swiper-pagination .swiper-pagination-bullet {
      height: .1rem;
      width: 10rem;
      background: #2e2e2e;
      opacity: .4;
  }
  
  .products-container {
      width: 100%;
      border-radius: 1rem;
      transform: translateZ(0);
      overflow: hidden;
      position: relative;
  }
  
  .products-container .swiper-slide {
      display: flex;
  }
  
  .swiper-backface-hidden .swiper-slide {
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
  }
  /* Slider kapsayıcı yüksekliği */
  
  .products-container {
      height: 500px;
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
  }
  /* Swiper slide ve kart 500px’e otursun */
  
  .products-container .swiper-slide,
  .products-container .card {
      height: 500px;
      width: 100%;
      position: relative;
  }
  /* Resim full cover */
  
  .card-image {
      width: 100%;
      height: 100%;
  }
  
  .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: .88;
      /* EKLENDİ: resim az transparan */
  }
  /* Resim üstüne yazı ve buton */
  
  .card-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px;
      /* 24 -> 32 */
      color: #fff;
      z-index: 2;
      background: linear-gradient( to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .20) 45%, rgba(0, 0, 0, 0) 78%);
  }
  
  .product-title {
      margin: 0 0 8px 0;
      font-size: 54px;
      /* 28 -> 54 */
      line-height: 1.02;
      font-weight: 500;
      text-transform: lowercase;
      /* görseldeki stile yakın */
  }
  
  .product-tags {
      margin: 0 0 16px 0;
      /* 14px -> 16px */
      opacity: .9;
      font-size: 13px;
      letter-spacing: .12em;
      /* EKLENDİ */
      text-transform: uppercase;
      /* EKLENDİ (istersen kaldır) */
  }
  
  .product-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      padding: 12px 26px;
      /* 10/14 -> 12/26 */
      border-radius: 999px;
      /* 10px -> oval */
      background: transparent;
      /* beyaz dolgu kalktı */
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: 12px;
      border: 2px solid rgba(255, 255, 255, .9);
      /* outline */
  }
  
  .product-link:hover {
      background: rgba(255, 255, 255, .12);
      opacity: 1;
      /* eski opacity hover iptal */
  }
  /* pagination ve oklar aynı kalabilir; istersen konumunu 500px'e göre ayarla */
  
  .product-slider .swiper-pagination {
      bottom: 12px !important;
  }
  
  .swiper-pagination .swiper-pagination-bullet {
      height: 2px;
      /* .1rem yerine */
      width: 110px;
      /* 10rem yerine daha dengeli */
      border-radius: 0;
      background: rgba(255, 255, 255, .55);
      opacity: 1;
  }
  
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #ffffff;
      /* aktif beyaz */
  }
  /* okların konumu */
  
  .swiper-button-prev,
  .swiper-button-next {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.55);
      /* yarı transparan */
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333 !important;
      /* mavi gider */
      transition: all .25s ease;
  }
  /* ok ikonları */
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
      font-size: 16px;
      /* ince ok */
      font-weight: 700;
  }
  /* hover efekti */
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
      background: rgba(255, 255, 255, 0.75);
      transform: scale(1.05);
  }
  /* soldaki ok biraz içerde */
  
  .swiper-button-prev {
      left: 20px;
  }
  /* sağdaki ok */
  
  .swiper-button-next {
      right: 20px;
  }
  
  .swiper-button-prev svg,
  .swiper-button-next svg {
      width: 16px;
  }
  
  .swiper-button-prev svg {
      margin-left: -3px;
  }
  /* sağdaki ok */
  
  .swiper-button-next svg {
      margin-right: -3px;
  }
  
  .feature-cards {
      padding: 40px 0 80px;
  }
  
  .feature-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 26px;
  }
  
  .product-feature {
      padding: var(--space-global);
  }
  
  .product-feature .card {
      position: relative;
      border-radius: var(--global-radius);
      padding: 28px;
      min-height: 240px;
      transition: transform .25s ease, box-shadow .25s ease;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  }
  
  .product-feature .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
  }
  
  .product-feature .card .num {
      position: absolute;
      top: 13px;
      right: 20px;
      font-size: 44px;
      color: rgba(0, 0, 0, .45);
      opacity: .35;
      font-weight: 500;
  }
  
  .product-feature .card h3 {
      margin: 60px 0 12px;
      font-size: 22px;
      font-weight: 500;
      margin-top: 52px;
      margin-bottom: 10px;
  }
  
  .product-feature .card p {
      font-size: 14px;
      color: #555;
      max-width: 36ch;
      line-height: 1.55;
      opacity: .9;
  }
  
  .product-feature .icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
  }
  /* 🎨 Backgrounds */
  /* 1. Wool – nötr, doğal */
  
  .card.wool {
      background: #f2eee7;
  }
  /* 2. Fire Resistant – sıcak soft kırmızı (daha belirgin) */
  
  .card.fire {
      background: #f1c9c5;
      /* rose / terracotta */
  }
  /* 3. Anti Bacterial – şeftali / bej (fire’dan net ayrılır) */
  
  .card.antibacterial {
      background: #f6e2d6;
  }
  /* 4. Colorfast – pastel mavi */
  
  .card.colorfast {
      background: #dde7f5;
  }
  /* 5. Anti Static – yumuşak sarı */
  
  .card.antistatic {
      background: #f5efc6;
  }
  /* 6. Anti Odor – pastel yeşil */
  
  .card.antiodor {
      background: #e0f1dc;
  }
  /* Responsive */
  
  @media (max-width: 1024px) {
      .feature-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (max-width: 560px) {
      .feature-grid {
          grid-template-columns: 1fr;
      }
  }