/* Anasayfa düzeltmeleri */
    .home-hero-slider {
      position: relative;
      overflow: hidden;
      background: #111;
    }

    .home-hero-slider .carousel-item {
      height: 640px;
      background-position: center;
      background-size: cover;
      position: relative;
    }

    .home-hero-slider .carousel-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42));
      z-index: 1;
    }

    .home-hero-slider .hero-copy {
      position: relative;
      z-index: 2;
      height: 640px;
      display: flex;
      align-items: flex-end;
      padding-bottom: 90px;
      color: #fff;
    }

    .home-hero-slider h1 {
      font-size: 52px;
      line-height: 1.03;
      font-weight: 900;
      max-width: 600px;
      letter-spacing: -1.6px;
      margin: 0;
    }

    .hero-arrows {
      position: absolute;
      right: calc((100vw - 1180px) / 2 + 10px);
      bottom: 105px;
      z-index: 5;
      display: flex;
      gap: 16px;
    }

    .hero-control-btn {
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      color: var(--sera-green);
      display: grid;
      place-items: center;
      font-size: 30px;
      line-height: 1;
      box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
      transition: .2s ease;
    }

    .hero-control-btn:hover {
      background: var(--sera-green);
      color: #fff;
      transform: translateY(-2px);
    }

    .category-card.same-hover {
      background: var(--sera-green-soft);
      display: block;
      isolation: isolate;
    }

    .category-card.same-hover.active {
      background: var(--sera-green-soft);
    }

    .category-card.same-hover h3 {
      position: relative;
      z-index: 2;
    }

    .category-card.same-hover img {
      position: relative;
      z-index: 1;
      transition: .3s ease;
    }

    .category-card.same-hover .dark-caption {
      position: absolute;
      inset: 0;
      z-index: 4;
      display: flex;
      align-items: flex-end;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 26px 24px;
      background: rgba(0, 0, 0, .72);
      color: #fff;
      font-weight: 600;
      font-size: 12.5px;
      line-height: 1.22;
      opacity: 0;
      visibility: hidden;
      transition: .25s ease;
    }

    .category-card.same-hover .dark-caption-inner {
      width: 100%;
    }

    .category-card.same-hover .pill {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      background: #fff;
      color: #000;
      border-radius: 18px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 900;
      margin-top: 11px;
      text-transform: uppercase;
    }

    .category-card.same-hover:hover .dark-caption {
      opacity: 1;
      visibility: visible;
    }

    .category-card.same-hover:hover img {
      transform: scale(1.045);
    }

    .featured-products-section {
      overflow: hidden;
    }

    .featured-carousel:not(.owl-loaded) {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .featured-carousel .owl-stage {
      display: flex;
      padding: 4px 0 18px;
    }

    .featured-carousel .owl-item {
      display: flex;
    }

    .featured-carousel .item {
      width: 100%;
      display: flex;
    }

    .featured-product-card {
      width: 100%;
      min-height: 300px;
      background: #f5f5f5;
      border: 1px solid #e1e1e1;
      border-radius: 18px;
      padding: 0px 0px 10px 0px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: .22s ease;
    }

    .featured-product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, .10);
    }

    .featured-product-card .imgbox {
      aspect-ratio: 4 / 3;
      width: 100%;
      height: auto;
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 18px;
      flex: 0 0 auto;
      position: relative;
    }

    .featured-product-card .imgbox img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: .25s ease;
    }

    .featured-product-card:hover .imgbox img {
      transform: scale(1.04);
    }

    .featured-product-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin: 0 12px 18px;
      color: #111;
      min-height: 2.4em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .featured-product-card .btn-detail-dark {
      margin-top: auto;
      width: 100%;
      background: #343434;
      color: #fff;
      border-radius: 24px;
      border: 0;
      min-height: 45px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      transition: .2s ease;
      margin-bottom: 5px;
    }

    .featured-product-card .btn-detail-dark:hover {
      background: #1f1f1f;
      color: #fff;
    }

    .featured-products-section .slider-btn {
      cursor: pointer;
      border: 0;
      top: 56%;
      background: #111;
      transition: .2s ease;
    }

    .featured-products-section .slider-btn:hover {
      background: #343434;
      transform: translateY(-50%) scale(1.04);
    }



    @media (max-width: 1199px) {
      .hero-arrows {
        right: 35px;
      }

      .featured-carousel:not(.owl-loaded) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 991px) {
      .home-hero-slider .carousel-item,
      .home-hero-slider .hero-copy {
        height: 520px;
      }

      .home-hero-slider .hero-copy {
        padding-bottom: 64px;
      }

      .home-hero-slider h1 {
        font-size: 38px;
      }

      .hero-arrows {
        bottom: 65px;
      }

      .featured-carousel:not(.owl-loaded) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .newsletter {
        padding: 34px 30px;
        min-height: auto;
      }
    }

    @media (max-width: 575px) {
      .home-hero-slider .carousel-item,
      .home-hero-slider .hero-copy {
        height: 460px;
      }

      .home-hero-slider h1 {
        font-size: 32px;
      }

      .hero-arrows {
        right: 22px;
        bottom: 42px;
      }

      .hero-control-btn {
        width: 42px;
        height: 42px;
        font-size: 24px;
      }

      .featured-carousel:not(.owl-loaded) {
        grid-template-columns: 1fr;
      }

      .newsletter h2 {
        font-size: 22px;
      }
    }
