/* GENEL RESET */
html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* Genel Ayarlar */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7faf7;
  color: #232e23;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fff;
  padding: 6px 20px;
  font-size: 15px;
  gap: 12px;
  border-bottom: 1px solid #eaeaea;
}

.header-top i {
  color: #1b8b44;
  margin-right: 8px;
  font-size: 18px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 12px 32px;
  border-bottom: 1.5px solid #e5ece6;
  position: relative;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.logo-text img {
  height: 66px;
  max-width: 120px;
}

.menu {
  display: flex;
  gap: 18px;
  box-sizing: border-box;
}

.menu a {
  color: #195f36;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  transition: background .2s;
  border-radius: 6px;
}

.menu a:hover {
  background: #ecf4ec;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flags img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 2px;
  border: 1.5px solid #f1f1f1;
  transition: box-shadow .2s;
}

.lang-flags img:hover {
  box-shadow: 0 0 6px #e1e1e1;
}

/* ----- HERO ----- */
.green-hero {
  background: linear-gradient(135deg, #0a4f2b 0%, #158b4d 100%);
  padding: 36px 0 26px 0;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.green-hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.green-hero-breadcrumb {
  color: #d1f2dd;
  margin-top: 10px;
  font-size: 1.07rem;
  font-weight: 500;
}

/* Ana Ürün Menüsü */
.urunler-menu-bar {
  width: 100vw;
  background: #fff;
  padding: 0;
  border-bottom: 1.4px solid #e1e9e6;
}

.urunler-menu-list {
  width: 96vw;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0 5px 0;
  font-size: 1.13rem;
  color: #09984b;
  flex-wrap: wrap;
}

.urunler-menu-link {
  color: #222;
  text-decoration: none;
  margin-right: 14px;
  position: relative;
  padding-bottom: 4px;
  font-weight: 400;
  cursor: pointer;
}

.urunler-menu-link.active,
.urunler-menu-link:hover {
  color: #09984b;
  font-weight: 600;
}

.urunler-menu-link.active:after,
.urunler-menu-link:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #09984b;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* Alt kategori ve ürünler */
.urunler-section {
  display: flex;
  max-width: 1320px;
  margin: 32px auto 0 auto;
  min-height: 480px;
  gap: 36px;
  padding: 0 12px 36px 12px;
  align-items: flex-start;
}

.kategori-menu {
  flex: 0 0 245px;
  background: #fff;
  border-radius: 0;
  margin-top: 8px;
}

.kategori-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kategori-item {
  font-size: 1.12rem;
  padding: 20px 22px;
  background: #09984b;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
  border-bottom: 3px solid #f8d91c;
}

.kategori-item:not(.active) {
  background: #f6f8f7;
  color: #09984b;
  font-weight: 400;
  border-bottom: 2px solid #e8f6e7;
  box-shadow: none;
}

.kategori-item:not(.active):hover {
  background: #e6fbd3;
  color: #066b2d;
  cursor: pointer;
}

/* Ürün Grid */
.urunler-grid {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

@media (max-width: 1100px) {
  .urunler-section {
    flex-direction: column;
    gap: 18px;
  }

  .kategori-menu {
    flex: none;
    width: 100%;
    max-width: 98vw;
  }

  .urunler-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .green-hero {
    min-height: 90px;
    height: 90px;
    max-height: 90px;
  }

  .green-hero-title {
    font-size: 1.25rem;
  }

  .urunler-grid {
    grid-template-columns: 1fr;
  }

  .kategori-menu {
    display: none;
  }

  .urunler-section {
    padding: 0 4px 28px 4px;
  }
}


.urun-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 22px 28px 22px;
  min-height: 200px;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease;
  overflow: hidden;
}

.urun-card.urun-card-with-img {
  padding: 0;
}

.urun-card-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.urun-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #fdbb2d;
}

.urun-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}

.urun-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.urun-card:hover .urun-img-wrap img {
  transform: scale(1.05);
}

.urun-card-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
}

.urun-card:hover {
  box-shadow: 0 8px 28px #00000016;
  border-color: #f8d91c;
}

.urun-title {
  color: #0c7440;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.urun-title i {
  font-size: 1.8rem;
  color: #fdbb2d;
  background: #fff8e1;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(253, 187, 45, 0.2);
}

.urun-desc {
  font-size: 1.03rem;
  color: #606060;
  font-weight: 400;
}



:root {
  --green: #0b9447;
  --green2: #12b364;
  --ink: #1f2731;
  --soft: #f6fbf8;
  --stroke: #e5efe9;
}




/* Kapsayıcı: sayfayla bütünleşik kutu */
.contact-wrapper {
  max-width: 1200px;
  margin: 56px auto 72px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(11, 148, 71, .06);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  min-height: 0;
  /* gerek yoksa yüksekliği dayatma */
}

/* Sol kart: daha yumuşak, gradient */
.contact-left {
  background: linear-gradient(160deg, var(--green) 0%, var(--green2) 100%);
  color: #fff;
  border-radius: 20px;
  width: auto;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 26px;
  box-shadow: 0 8px 24px rgba(11, 148, 71, .12);
  margin-top: 0;
}

.contact-left .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: 34px;
  margin-bottom: 18px;
  backdrop-filter: blur(2px);
}

.contact-left h2 {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 700;
  margin: 6px 0 14px 0;
  line-height: 1.25;
  letter-spacing: .2px;
}

.contact-left .phone-btn {
  margin: 16px 0 10px 0;
  background: #fff;
  color: var(--green);
  font-size: 1.08rem;
  padding: 12px 18px;
  border-radius: 14px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid #eef5f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  text-decoration: none;
  transition: background .18s, transform .12s, box-shadow .18s;
}

.contact-left .phone-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.contact-left .email {
  margin-top: 8px;
  font-size: .98rem;
  opacity: .95;
  text-align: center;
}

/* Sağ kart: hafif çerçeve + iç boşluk */
.contact-form-area {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .03);
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
  width: 100%;
  flex-wrap: wrap;
  /* dar ekranda kırıl */
}

.form-row input,
.form-row select {
  flex: 1 1 260px;
  /* eşit paylaşıp min genişlik tut */
}

input,
select,
textarea {
  padding: 14px 14px;
  border: 1px solid #dbe7e1;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: #8aa39a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #bfe6cf;
  box-shadow: 0 0 0 3px rgba(11, 148, 71, .12);
  background: #fff;
}

textarea {
  min-height: 150px;
}

/* <-- hatayı düzelttim */

/* Gönder butonu: sakin degrade, sitenin tonu */
.submit-btn {
  width: 100%;
  padding: 14px 0;
  border: none;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 12px;
  margin-top: 6px;
  cursor: pointer;
  letter-spacing: .2px;
  box-shadow: 0 6px 16px rgba(11, 148, 71, .15);
  outline: none;
  transition: transform .12s ease, box-shadow .18s ease, filter .15s ease;
  border: 0;
}

.submit-btn:hover,
.submit-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 148, 71, .18);
  filter: brightness(1.03);
}

/* Mobil uyum */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .contact-left {
    padding: 24px 20px;
  }

  .contact-form-area {
    padding: 16px;
  }
}


.footer-section {
  width: 100vw;
  background: #fff;
  color: #252525;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-top: 0;
}

.footer-divider {
  width: 100vw;
  height: 1.5px;
  background: #f1f1f1;
  margin: 0 0 18px 0;
}

.footer-content {
  max-width: 1481px;
  margin: 0 auto;
  display: flex;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 20px 10px 20px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 130px;
  max-width: 260px;
}

.footer-logo-contact {
  min-width: 180px;
  max-width: 240px;
  gap: 7px;
}

.footer-logo {
  width: 90px;
  margin-bottom: 8px;
}

.footer-contact {
  font-size: 1.01rem;
  color: #4b4b4b;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact i {
  color: #1b8b44;
  margin-right: 6px;
  font-size: 1.09rem;
}

.footer-title {
  color: #179143;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
  font-size: 1.01rem;
}

.footer-col a {
  color: #232323;
  text-decoration: none;
  font-size: 0.97rem;
  margin-bottom: 1px;
  transition: color 0.13s;
}

.footer-col a:hover {
  color: #18a352;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  font-size: 1.2rem;
  color: #1b8b44;
  transition: color 0.15s;
}

.footer-social a:hover {
  color: #128d3e;
}

.footer-bottom {
  width: 100vw;
  max-width: 1481px;
  margin: 0 auto;
  padding: 13px 20px 9px 20px;
  border-top: 1px solid #f1f1f1;
  color: #424242;
  font-size: 0.96rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #179143;
  text-decoration: none;
  font-weight: 500;
  margin-right: 8px;
  font-size: 0.97rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.agency-link {
  display: inline-block;
  position: relative;
  font-weight: 900;
  font-size: 1.2em;
  line-height: 1;
  /* sıçrama olmasın */
  text-decoration: none;
  color: #0c7440;
  background: none;
  -webkit-text-fill-color: initial;
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: transform .25s ease, text-shadow .25s ease;
  transform-origin: left bottom;
  /* büyüyünce aşağı taşmasın */
}

/* Metnin blur'lu kopyası = kontrollü glow */


/* Hover efektleri */
.agency-link:hover {
  transform: scale(1.08);
  text-shadow: 0 0 8px rgba(0, 255, 170, .45), 0 0 14px rgba(0, 229, 255, .25);
}


/* Sürekli akan gradient */
@keyframes galaxyMove {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}




/* ==========================
      RESPONSIVE TASARIM
========================== */

@media (max-width: 1100px) {
  .contact-map-area {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 24px 0 30px 0;
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .contact-map-img,
  .contact-main-card {
    width: 100vw !important;
    max-width: 510px;
    min-width: 0 !important;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-main-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 12px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 6vw;
  }

  .mobile-toggle {
    display: block !important;
  }

  .menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    background: #fff;
    z-index: 100;
    padding: 24px 0 18px 0;
    box-shadow: 0 6px 24px rgba(80, 120, 80, .09);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    text-align: left;
  }

  .menu.open {
    display: flex !important;
  }

  .header-main {
    position: relative;
    z-index: 110;
  }
}

@media (max-width: 780px) {
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8vw;
    gap: 18px;
  }

  .menu {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 1.02rem;
  }

  .logo-text img {
    height: 52px;
    max-width: 86px;
  }
}

@media (max-width: 600px) {

  .header-main,
  .header-top {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .green-hero {
    padding: 19px 0 10px 0;
  }

  .green-hero-title {
    font-size: 1.25rem;
  }

  .contact-map-img {
    height: 170px !important;
    min-width: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }

  .contact-main-card {
    max-width: 99vw;
    width: 99vw !important;
    padding: 14px 4px;
    border-radius: 11px;
    min-width: 0 !important;
  }

  .contact-info-side,
  .contact-form-side {
    min-width: 120px;
    font-size: 0.97rem;
  }

  .footer-col {
    min-width: 110px;
    font-size: 0.97rem;
  }

  .footer-logo {
    max-width: 65px;
    margin-bottom: 10px;
  }

  .footer-title {
    font-size: 0.97rem;
    margin-bottom: 5px;
  }

  .footer-content,
  .footer-section,
  .footer-bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 430px) {
  .header-main {
    padding: 10px 2vw;
    gap: 10px;
  }

  .green-hero-title {
    font-size: 1rem;
  }

  .green-hero-breadcrumb {
    font-size: 0.82rem;
  }

  .contact-main-card {
    padding: 8px 2px;
  }
}

/* ==========================
      RESPONSIVE TASARIM
========================== */

/* Hamburger Menü */
.mobile-toggle {
  display: none;
  font-size: 2.8rem;
  color: #0c7440;
  cursor: pointer;
  margin-left: 16px;
  user-select: none;
  z-index: 120;
}

/* Masaüstünde görünen bayraklar */
.desktop-only {
  display: flex;
  gap: 10px;
}

/* Mobil menüde görünen bayraklar */
.lang-flags-mobile {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

@media (max-width: 1100px) {
  .contact-map-area {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 24px 0 30px 0;
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .contact-map-img,
  .contact-main-card {
    width: 100vw !important;
    max-width: 510px;
    min-width: 0 !important;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-main-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 12px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 35px;
    padding: 22px 4vw 18px 4vw;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 14px 4vw 14px 4vw;
    text-align: center;
  }

  .footer-col {
    align-items: center !important;
    text-align: center !important;
  }

  .mobile-toggle {
    display: block !important;
  }

  .menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    background: #fff;
    z-index: 100;
    padding: 24px 0 18px 0;
    box-shadow: 0 6px 24px rgba(80, 120, 80, .09);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    text-align: left;
  }

  .menu.open {
    display: flex !important;
  }

  .header-main {
    position: relative;
    z-index: 110;
  }

  .header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 10px 2vw;
    position: relative;
  }

  .logo-text {
    margin-right: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    margin-left: 0;
    margin-right: 10px;
    order: 2;
  }

  .header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    order: 3;
  }

  /* Masaüstü bayrakları gizle, mobil göster */
  .desktop-only {
    display: none !important;
  }

  .lang-flags-mobile {
    display: flex !important;
  }
}

@media (max-width: 780px) {
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8vw;
    gap: 18px;
  }

  .menu {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 1.02rem;
  }

  .logo-text img {
    height: 52px;
    max-width: 86px;
  }
}

@media (max-width: 600px) {

  .header-main,
  .header-top {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .green-hero {
    padding: 19px 0 10px 0;
  }

  .green-hero-title {
    font-size: 1.25rem;
  }

  .contact-map-img {
    height: 170px !important;
    min-width: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }

  .contact-main-card {
    max-width: 99vw;
    width: 99vw !important;
    padding: 14px 4px;
    border-radius: 11px;
    min-width: 0 !important;
  }

  .contact-info-side,
  .contact-form-side {
    min-width: 120px;
    font-size: 0.97rem;
  }

  .footer-col {
    min-width: 110px;
    font-size: 0.97rem;
  }

  .footer-logo {
    max-width: 65px;
    margin-bottom: 10px;
  }

  .footer-title {
    font-size: 0.97rem;
    margin-bottom: 5px;
  }

  .footer-content,
  .footer-section,
  .footer-bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 10px 2vw;
    position: relative;
  }

  .logo-text {
    margin-right: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 200;
  }

  .header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    order: 3;
  }
}


.lang-flags-mobile img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.lang-flags-mobile img:hover {
  transform: scale(1.1);
}







@media (max-width: 700px) {

  /* Ürünler grid tek kolona düşsün ve padding azalsın */
  .urunler-section {
    flex-direction: column;
    gap: 10px;
    padding: 0 2vw 18px 2vw;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .urunler-grid {
    grid-template-columns: 1fr;
    gap: 14px 0;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box;
    padding: 0;
  }

  .urun-kart {
    padding: 18px 10px 16px 10px;
    min-width: 0 !important;
    box-sizing: border-box;
    width: 98vw !important;
    max-width: 98vw !important;
  }

  .urunler-menu-bar,
  .urunler-menu-list {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    overflow-x: auto;
  }

  .urunler-menu-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    font-size: 1.05rem;
    padding: 10px 0 4px 6px !important;
  }

  .kategori-menu {
    display: none;
  }
}

/* İletişim/contact için */
@media (max-width: 700px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 0 2vw;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box;
  }

  .contact-left,
  .contact-form-area {
    min-width: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }

  form {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .urunler-menu-list {
    display: none !important;
  }

  /* Masaüstü menüsünü gizle */
  .urunler-menu-list-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    width: 100vw;
    background: #fff;
    padding: 10px 0 0 0;
    box-sizing: border-box;
  }

  .mobile-dropdown {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    position: relative;
  }

  .dropdown-toggle {
    width: 100%;
    background: #fff;
    color: #09984b;
    font-size: 1.09rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    border: none;
    padding: 12px 18px;
    text-align: left;
    outline: none;
    cursor: pointer;
    transition: background 0.13s;
    border-radius: 0;
    position: relative;
  }

  .dropdown-toggle::after {
    content: '▼';
    float: right;
    font-size: 1.2em;
    color: #b2b2b2;
    margin-top: 1px;
    margin-right: 2px;
    transition: transform 0.2s;
  }

  .mobile-dropdown.open .dropdown-toggle::after {
    transform: rotate(-180deg);
    color: #09984b;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    background: #f8fbf7;
    box-shadow: 0 3px 10px #00000010;
    z-index: 5;
    padding: 2px 0 10px 16px;
    border-radius: 0 0 9px 9px;
    animation: fadeIn .2s;
  }

  .mobile-dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    color: #09984b;
    padding: 9px 0 9px 0;
    font-size: 1.02rem;
    text-decoration: none;
    border: none;
    background: none;
    border-radius: 4px;
    transition: background 0.12s, color 0.13s;
    margin-bottom: 0;
  }

  .dropdown-content a:hover {
    background: #e9fbe3;
    color: #048c34;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-6px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Masaüstü için mobil menüyü gizle */
@media (min-width: 901px) {
  .urunler-menu-list-mobile {
    display: none !important;
  }
}



.kategori-menu {
  flex: 0 0 260px;
  background: transparent;
  border-radius: 0;
  margin-top: 8px;
}

.kategori-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kategori-item {
  font-size: 1.12rem;
  padding: 24px 28px;
  background: #f6f8f7;
  color: #09984b;
  margin-bottom: 18px;
  font-weight: 400;
  border-bottom: 2px solid #e8f6e7;
  border-radius: 7px;
  transition: all 0.16s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kategori-item a {
  color: inherit;
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kategori-item i {
  font-size: 1.35em;
  margin-right: 8px;
  color: #09984b;
}

.kategori-item.active {
  background: #09984b;
  color: #fff;
  font-weight: 700;
  border-bottom: 4px solid #ffe26b;
}

.kategori-item.active a,
.kategori-item.active i {
  color: #fff !important;
}

.kategori-item:not(.active):hover {
  background: #e6fbd3;
  color: #066b2d;
}

.kategori-item:not(.active):hover a,
.kategori-item:not(.active):hover i {
  color: #066b2d;
}

/* ==== DİKEY BOŞLUKLARI SIKIŞTIR ==== */

/* Ürünler bölümünün alt boşluğunu küçült */
.urunler-section {
  margin-bottom: 18px !important;
  padding-bottom: 0 !important;
}

/* Grid ve sidebar’ın fazladan alt boşluk bırakmasını engelle */
#product-grid,
.kategori-menu,
.urunler-menu-bar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* İletişim bloğunu yukarı çek */
.contact-wrapper {
  margin-top: 14px !important;
  /* 0–20px arası oynatabilirsin */
}

/* Kart içi boşlukları biraz azalt (istersen) */
.contact-form-area {
  padding-top: 12px !important;
}

form {
  gap: 12px !important;
}

.form-row {
  gap: 12px !important;
}