:root {
  --eur-green: #165a42;
  --eur-green-dark: #104632;
  --eur-orange: #ef6b35;
  --eur-text: #1d2925;
  --eur-muted: #70807a;
  --eur-border: #e7ece9;
  --eur-soft: #f5f8f6;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  color: var(--eur-text);
}

.site-header__top {
  border-bottom: 1px solid var(--eur-border);
}

.site-header__main {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-logo {
  flex: 0 0 auto;
  width: 180px;
}

.main-logo a {
  display: inline-flex;
  align-items: center;
}

.main-logo img {
  display: block;
  width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 700px;
  min-width: 250px;
  height: 48px;
  align-items: center;
  padding: 4px 5px 4px 18px;
  background: var(--eur-soft);
  border: 1px solid transparent;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.header-search:focus-within {
  background: #fff;
  border-color: rgba(22, 90, 66, 0.35);
  box-shadow: 0 0 0 4px rgba(22, 90, 66, 0.08);
}

.header-search .form-control {
  height: 100%;
  padding: 0;
  color: var(--eur-text);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.92rem;
}

.header-search .form-control::placeholder {
  color: #91a099;
}

.header-search button {
  width: 40px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--eur-green);
  color: #fff;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.header-search button:hover {
  background: var(--eur-orange);
  transform: translateY(-1px);
}

.header-search button svg {
  display: block;
  fill: currentColor;
}

/* Right actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin-left: auto;
  white-space: nowrap;
}

.support-box {
  flex-direction: column;
  text-align: right;
  line-height: 1.25;
}

.support-box span {
  margin-bottom: 3px;
  color: var(--eur-muted);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.support-box a {
  color: var(--eur-text);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.support-box a:hover {
  color: var(--eur-green);
}

.account-button,
.mobile-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 10px;
  background: var(--eur-orange);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.account-button:hover,
.mobile-account-button:hover {
  color: #fff;
  background: #d95725;
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(239, 107, 53, 0.22);
}

.account-button svg {
    display: block;
    flex: 0 0 auto;
    fill: currentColor;
}

/* Navigation */
.site-header__nav {
  background: #fff;
  border-bottom: 1px solid var(--eur-border);
}

.main-menu {
  min-height: 62px;
  padding: 0;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.menu-list .nav-link {
  position: relative;
  padding: 20px 16px !important;
  color: #43514b;
  font-size: 0.87rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  transition: color 0.2s ease;
}

.menu-list .nav-link::after {
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  height: 2px;
  content: "";
  background: var(--eur-orange);
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu-list .nav-link:hover,
.menu-list .nav-link.active {
  color: var(--eur-green);
}

.menu-list .nav-link:hover::after,
.menu-list .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  padding: 8px 10px;
  border: 1px solid var(--eur-border);
  border-radius: 8px;
  box-shadow: none !important;
}

/* Mobile */
@media (max-width: 991.98px) {
  .site-header__main {
    min-height: 76px;
    justify-content: space-between;
    gap: 16px;
  }

  .main-logo {
    width: 155px;
  }

  .header-actions {
    gap: 0;
  }

  .account-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.8rem;
  }

  .site-header__nav {
    border-bottom: 0;
  }

  .main-menu {
    min-height: 58px;
    justify-content: space-between;
  }

  .navbar-brand {
    color: var(--eur-green);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .offcanvas {
    width: min(88vw, 360px) !important;
  }

  .offcanvas-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--eur-border);
  }

  .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 18px 24px 28px;
  }

  .menu-list {
    align-items: stretch;
    gap: 0;
  }

  .menu-list .nav-link {
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--eur-border);
  }

  .menu-list .nav-link::after {
    display: none;
  }

  .mobile-account-button {
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .site-header__main {
    min-height: 70px;
  }

  .main-logo {
    width: 132px;
  }

  .account-button {
    width: 40px;
    min-width: 40px;
    padding: 0;
    border-radius: 9px;
  }

  .account-button span {
    display: none;
  }
}

:root {
  --eur-green: #165a42;
  --eur-green-dark: #0d3f2e;
  --eur-orange: #ef6b35;
  --eur-text: #1c2924;
  --eur-muted: #73817b;
  --eur-border: #e5ebe7;
  --eur-soft: #f5f8f6;
}

/* Genel section düzeni */
.home-section {
  padding: 82px 0;
}

.home-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--eur-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--eur-text);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--eur-green);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--eur-orange);
}

/* Banner alanı */
.home-hero-section {
  padding: 28px 0 20px;
}

.home-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 20px;
}

.hero-slider-card {
  grid-row: span 2;
  min-height: 440px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--eur-soft);
}

.main-swiper,
.main-swiper .swiper-wrapper,
.main-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slider-image {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(10, 41, 30, 0.78) 0%,
    rgba(10, 41, 30, 0.45) 34%,
    rgba(10, 41, 30, 0.08) 60%,
    transparent 78%
  );
}

.hero-slider-image {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-slide__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(24px, 5vw, 76px);
  max-width: min(480px, 58%);
  color: #fff;
  transform: translateY(-50%);
}

.hero-slide__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #f9bc7a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-slide__content h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-slide__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 9px;
  background: var(--eur-orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-slide__button:hover {
  background: #d95725;
  color: #fff;
  transform: translateY(-2px);
}

.hero-slide__button i {
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .hero-slider-image {
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  .hero-slide::after {
    background: linear-gradient(
      90deg,
      rgba(10, 41, 30, 0.78) 0%,
      rgba(10, 41, 30, 0.32) 75%,
      transparent 100%
    );
  }

  .hero-slider-image {
    height: 230px;
  }

  .hero-slide__content {
    left: 23px;
    max-width: 67%;
  }

  .hero-slide__eyebrow {
    margin-bottom: 8px;
    font-size: 0.6rem;
  }

  .hero-slide__content h2 {
    margin-bottom: 15px;
    font-size: 1.45rem;
  }

  .hero-slide__button {
    padding: 10px 13px;
    font-size: 0.72rem;
  }
}

.main-swiper .swiper-pagination {
  bottom: 18px !important;
}

.main-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.65);
}

.main-swiper .swiper-pagination-bullet-active {
  width: 23px;
  border-radius: 8px;
  background: #fff;
}

/* Sağ kampanya kutuları */
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 210px;
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
  background-color: #edf7ef;
  background-image: var(--banner-image);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 90%;
  color: var(--eur-text);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.promo-banner:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 15px 32px rgba(22, 52, 39, 0.13);
}

.promo-banner--promo {
  background-color: var(--eur-green);
  color: #fff;
}

.promo-banner--promo:hover {
  color: #fff;
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.promo-banner__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--eur-orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.promo-banner--promo .promo-banner__eyebrow {
  color: #f9bc7a;
}

.promo-banner h2 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.promo-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.promo-banner:hover .promo-banner__link i {
  transform: translateX(4px);
}

.promo-banner__link i {
  transition: transform 0.2s ease;
}

/* Kategori alanı */
.home-category-section {
  background: var(--eur-soft);
}

.category-carousel {
  overflow: visible;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--eur-border);
  border-radius: 16px;
  background: #fff;
  color: var(--eur-text);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.category-card:hover {
  color: var(--eur-text);
  border-color: rgba(22, 90, 66, 0.3);
  box-shadow: 0 14px 25px rgba(22, 52, 39, 0.09);
  transform: translateY(-4px);
}

.category-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e7f2eb;
  color: var(--eur-green);
  font-size: 1.1rem;
}

.category-card h3 {
  max-width: 85%;
  margin: 24px 0 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.category-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--eur-orange);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.category-card:hover .category-card__arrow {
  transform: translate(3px, -3px);
}

.swiper-buttons {
  display: flex;
  gap: 8px;
}

.swiper-buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--eur-border);
  border-radius: 9px;
  background: #fff;
  color: var(--eur-green);
  transition: all 0.2s ease;
}

.swiper-buttons button:hover {
  border-color: var(--eur-green);
  background: var(--eur-green);
  color: #fff;
}

/* New product kartları */
.home-products-section {
  background: #fff;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--eur-border);
  border-radius: 16px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-product-card:hover {
  border-color: rgba(22, 90, 66, 0.3);
  box-shadow: 0 14px 30px rgba(22, 52, 39, 0.1);
  transform: translateY(-4px);
}

.home-product-card__image-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 20px;
  overflow: hidden;
  background: #f8faf9;
}

.home-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.home-product-card:hover .home-product-card__image {
  transform: scale(1.06);
}

.home-product-card__badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--eur-orange);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.home-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.home-product-card__meta {
  margin: 0 0 8px;
  color: var(--eur-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-product-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
}

.home-product-card__title a {
  color: var(--eur-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-product-card__title a:hover {
  color: var(--eur-green);
}

.home-product-card__view {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--eur-green);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.home-product-card__view i {
  transition: transform 0.2s ease;
}

.home-product-card__view:hover {
  color: var(--eur-orange);
}

.home-product-card__view:hover i {
  transform: translateX(4px);
}

/* Tablet / mobile */
@media (max-width: 991.98px) {
  .home-section {
    padding: 58px 0;
  }

  .home-banner-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero-slider-card {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .hero-slider-image {
    height: 360px;
  }

  .promo-banner {
    min-height: 190px;
  }
}

@media (max-width: 575.98px) {
  .home-hero-section {
    padding-top: 14px;
  }

  .home-banner-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-slider-card {
    grid-column: auto;
    min-height: 230px;
    border-radius: 14px;
  }

  .hero-slider-image {
    height: 230px;
  }

  .promo-banner {
    min-height: 165px;
    padding: 23px;
    border-radius: 14px;
    background-size: auto 82%;
  }

  .home-section__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-actions {
    width: 100%;
    justify-content: space-between;
  }

  .home-product-card__image-link {
    height: 175px;
    padding: 14px;
  }

  .home-product-card__body {
    padding: 14px;
  }

  .home-product-card__title {
    font-size: 0.86rem;
  }

  .home-product-card__view {
    display: none;
  }
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: 68px 0 58px;
  border-top: 1px solid var(--eur-border);
  background: #fff;
}

.site-footer__main {
  align-items: flex-start;
}

.footer-brand__logo {
  display: inline-flex;
  max-width: 190px;
  margin-bottom: 20px;
}

.footer-brand__logo img {
  display: block;
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand__text {
  max-width: 300px;
  margin: 0 0 20px;
  color: var(--eur-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--eur-green);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e6f1eb;
  font-size: 0.86rem;
}

.footer-contact:hover {
  color: var(--eur-orange);
}

.footer-widget__title {
  position: relative;
  margin: 7px 0 22px;
  padding-bottom: 12px;
  color: var(--eur-text);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-widget__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 3px;
  background: var(--eur-orange);
  content: "";
}

.footer-links,
.footer-category-links {
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-category-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-category-links a {
  color: var(--eur-muted);
  font-size: 0.86rem;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-links a:hover,
.footer-category-links a:hover {
  padding-left: 4px;
  color: var(--eur-green);
}

/* Kategoriler otomatik çok kolonlu görünür */
.footer-category-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 26px;
}

/* Footer alt bölümü */
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--eur-green-dark);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f9bc7a;
}

/* Responsive */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 52px 0 42px;
  }

  .footer-category-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    margin-top: 20px;
    padding: 42px 0 30px;
  }

  .footer-brand__logo {
    max-width: 165px;
  }

  .footer-widget__title {
    margin-top: 10px;
  }

  .footer-category-links {
    display: block;
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}


/* Products page */
.products-page {
    padding: 34px 0 80px;
    background: #fff;
}

.products-page__mobile-toolbar {
    margin-bottom: 18px;
}

.products-page__category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--eur-border);
    border-radius: 10px;
    background: var(--eur-soft);
    color: var(--eur-green);
    font-size: .83rem;
    font-weight: 800;
}

.products-page__category-button:hover {
    border-color: var(--eur-green);
    background: #eaf4ed;
}

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 20px;
    overflow: hidden;
    border: 1px solid var(--eur-border);
    border-radius: 14px;
    background: #fff;
}

.products-sidebar__header {
    padding: 20px 18px 16px;
    border-bottom: 1px solid var(--eur-border);
    background: var(--eur-soft);
}

.products-sidebar__header span,
.category-offcanvas__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--eur-orange);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.products-sidebar__header h2 {
    margin: 0;
    color: var(--eur-text);
    font-size: 1rem;
    font-weight: 800;
}

.products-category-list {
    margin: 0;
    padding: 7px;
}

.products-category-list li {
    margin: 0;
}

.products-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 10px 10px;
    border-radius: 8px;
    color: #57655f;
    font-size: .78rem;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, padding .18s ease;
}

.products-category-list a i {
    flex: 0 0 auto;
    color: #a3afa9;
    font-size: .75rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .18s ease, transform .18s ease;
}

.products-category-list a:hover {
    padding-left: 14px;
    background: var(--eur-soft);
    color: var(--eur-green);
}

.products-category-list a:hover i {
    color: var(--eur-green);
    opacity: 1;
    transform: translateX(0);
}

.products-category-list a.active {
    background: var(--eur-green);
    color: #fff;
    font-weight: 800;
}

.products-category-list a.active i {
    color: #fff;
    opacity: 1;
    transform: translateX(0);
}

/* Heading */
.products-page__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--eur-border);
}

.products-page__heading h1 {
    margin: 0;
    color: var(--eur-text);
    font-size: clamp(1.65rem, 2.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.products-page__count {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 7px;
    background: var(--eur-soft);
    color: var(--eur-muted);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Mobile category panel */
.category-offcanvas {
    width: min(88vw, 360px) !important;
}

.category-offcanvas .offcanvas-header {
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid var(--eur-border);
}

.category-offcanvas .offcanvas-title {
    margin: 0;
    color: var(--eur-text);
    font-size: 1.2rem;
    font-weight: 800;
}

.category-offcanvas .offcanvas-body {
    padding: 16px;
}

/* Empty state */
.products-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 610px;
    margin: 35px auto;
    padding: 55px 25px;
    border: 1px solid var(--eur-border);
    border-radius: 16px;
    background: var(--eur-soft);
    text-align: center;
}

.products-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #e1eee5;
    color: var(--eur-green);
    font-size: 1.5rem;
}

.products-empty-state h2 {
    margin: 0 0 10px;
    color: var(--eur-text);
    font-size: 1.3rem;
    font-weight: 800;
}

.products-empty-state p {
    max-width: 410px;
    margin: 0 0 22px;
    color: var(--eur-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.products-empty-state__button {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 9px;
    background: var(--eur-green);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.products-empty-state__button:hover {
    background: var(--eur-orange);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .products-page {
        padding: 20px 0 55px;
    }

    .products-page__heading {
        align-items: flex-start;
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .products-page__heading h1 {
        font-size: 1.55rem;
    }

    .products-page__count {
        margin-top: 4px;
        font-size: .65rem;
    }
}

.product-item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin: 0;
    padding: 18px;
    background: #f8faf9;
}

.product-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-item__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 18px 20px;
}

.product-item__code {
    display: block;
    margin-bottom: 7px;
    color: var(--eur-muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-item .card-title {
    margin: 0;
    color: var(--eur-text);
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.4;
}

.product-item .card-text {
    margin-top: 9px;
    color: var(--eur-muted);
    font-size: .76rem;
    font-weight: 700;
}

/* About us */
.about-page {
    padding: 42px 0 85px;
    background: #fff;
}

.about-page__hero {
    margin: 0 0 30px;
    padding: 26px 0 22px;
    border-bottom: 1px solid var(--eur-border);
}

.about-page__hero h1 {
    margin: 0;
    color: var(--eur-text);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.05em;
}

.about-page__content {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #48564f;
    font-size: 1rem;
    line-height: 1.8;
}

.about-page__content > :first-child {
    margin-top: 0;
}

.about-page__content > :last-child {
    margin-bottom: 0;
}

.about-page__content h1,
.about-page__content h2,
.about-page__content h3,
.about-page__content h4 {
    margin: 1.7em 0 .6em;
    color: var(--eur-text);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.about-page__content h2 {
    font-size: 1.65rem;
}

.about-page__content h3 {
    font-size: 1.28rem;
}

.about-page__content p {
    margin: 0 0 1.25rem;
}

.about-page__content ul,
.about-page__content ol {
    margin: 0 0 1.35rem;
    padding-left: 1.35rem;
}

.about-page__content li {
    margin-bottom: .45rem;
}

.about-page__content a {
    color: var(--eur-green);
    font-weight: 700;
    text-decoration-color: rgba(22, 90, 66, .35);
    text-underline-offset: 3px;
}

.about-page__content a:hover {
    color: var(--eur-orange);
}

.about-page__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 14px;
}

@media (max-width: 575.98px) {
    .about-page {
        padding: 24px 0 55px;
    }

    .about-page__hero {
        margin-bottom: 23px;
        padding: 18px 0 20px;
    }

    .about-page__content {
        font-size: .93rem;
        line-height: 1.75;
    }
}

/* Contact page */
.contact-page {
    padding: 42px 0 85px;
    background: #fff;
}

.contact-page__hero {
    margin-bottom: 30px;
    padding: 26px 0 22px;
    border-bottom: 1px solid var(--eur-border);
}

.contact-page__hero h1 {
    margin: 0;
    color: var(--eur-text);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.05em;
}

.contact-details-card,
.contact-map-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--eur-border);
    border-radius: 16px;
    background: #fff;
}

.contact-details-card {
    padding: 30px;
}

.contact-details-card h2 {
    margin: 0 0 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--eur-border);
    color: var(--eur-text);
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -.025em;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.contact-details-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.contact-details-item__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: #e8f2eb;
    color: var(--eur-green);
    font-size: .95rem;
}

.contact-details-item__label {
    display: block;
    margin: 1px 0 4px;
    color: var(--eur-muted);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-details-item p {
    margin: 0;
    color: #4a5852;
    font-size: .88rem;
    line-height: 1.6;
}

.contact-details-item a {
    color: var(--eur-text);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.contact-details-item a:hover {
    color: var(--eur-orange);
}

.contact-map-card {
    min-height: 440px;
    background: var(--eur-soft);
}

.contact-map-card iframe {
    display: block;
    width: 100% !important;
    height: 440px !important;
    border: 0 !important;
}

@media (max-width: 991.98px) {
    .contact-map-card,
    .contact-map-card iframe {
        min-height: 390px;
        height: 390px !important;
    }
}

@media (max-width: 575.98px) {
    .contact-page {
        padding: 24px 0 55px;
    }

    .contact-page__hero {
        margin-bottom: 23px;
        padding: 18px 0 20px;
    }

    .contact-details-card {
        padding: 24px 20px;
    }

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 310px;
        height: 310px !important;
    }
}


.category-card {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 20px;
    overflow: hidden;
    align-items: flex-end;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    background-color: #202020;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.82) 100%
    );
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: inherit;
    font-size: 1rem;
    font-weight: 700;
}

.category-card__arrow {
    position: relative;
    z-index: 1;
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #111;
}

.category-card:hover {
    color: #fff;
    transform: translateY(-3px);
}

.category-card {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 16px;
    overflow: hidden;
    align-items: flex-end;
    justify-content: space-between;
    border-radius: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-decoration: none;
}

/* Fotoğrafın geneline hafif kontrast verir */
.category-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.16) 65%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.category-card h3 {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 50px);
    margin: 0;
    padding: 8px 11px;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.76);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

.category-card__arrow {
    position: relative;
    z-index: 1;
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: #fff;
    color: #151515;
}