* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #fff5ed;
    padding: 0px 80px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* ========== NAVBAR (ÜST MENU) ========== */
.padding-top-60 {
    padding-top: 60px;
}
.navbar {
    background-color: #093824; /* Mor renk */
    padding: 25px 45px;
    margin: 0 80px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.navbar--hidden {
  opacity: 0;
  visibility: hidden;
}

.navbar-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO BÖLÜMÜ */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 36px;
}

.logo-text {
    color: white;
    line-height: 1.2;
}

.logo-title {
    font-size: 20px;
    font-weight: 600;
}

.logo-subtitle {
    font-size: 13px;
    opacity: 0.95;
}

/* MENU ORTASI */
.menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.menu-item {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.menu-item:hover {
    opacity: 0.8;
}

/* ========== HAMBURGER MENU ========== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== HERO (BANNER) BÖLÜMÜ ========== */
.hero {
    position: relative;
    height: 487px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* HERO ARKA PLANI */
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
    background-image: url('https://trendcarpet.eu/images/zoom/gardiner-morklaggningsgardinoctavia-morkgra-01-interior-f0a4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

/* Arka plan koyu overlay */
.bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

/* HERO İÇERİĞİ */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 120px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.leaf-icon {
    font-size: 36px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text h1 {
    font-size: 60px;
    line-height: 1em;
}

.date-text {
    font-size: 18px;
    opacity: 0.95;
}

/* BUTON STİLİ */
.btn-primary {
    background-color: white;
    color: #000;
    border: 1px solid transparent;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* ========== ÜRÜN KATEGORİLERİ ========== */
.categories {
    background-color: #f5f1f0;
    padding: 40px 60px;
    text-align: center;
}

.categories h2 {
    font-size: 32px;
    color: #093824;
    font-weight: 600;
    margin-bottom: 50px;
}

/* KARTLAR GRID DÜZENI */
.categories-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 0 20px;
}

/* KATEGORİ KARTI */
.category-card {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}


/* KART GÖRSEL */
.card-image {
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.1),
      rgba(0,0,0,0.6)
    );
    transition: transform 0.5s ease;
    transform: translateX(0);
    pointer-events: none;
}


.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.08);
}

.category-card:hover .card-image::after {
    transform: translateX(100%);
}



/* KART İÇERİĞİ */
.card-content {
    padding: 20px;
    text-align: center;
    background-color: #f5f1f0;
}

.card-title {
    font-size: 20px;
    color: #d2691e;
    font-weight: 700;
}

.card-link {
    font-size: 15px;
    color: #333;
    text-decoration: underline;
    transition: color 0.3s;
}

.card-link:hover {
    color: #093824;
}

/* ========== BANNER BÖLÜMÜ ========== */
.banner-section {
    background-color: white;
    padding: 80px 60px;
}

.banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    background-color: white;
    border: 1px solid red;
}

.banner-image {
    width: 100%;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    color: #333;
    padding: 15px;
}

.banner-content h2 {
    font-size: 32px;
    color: #093824;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.banner-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}
/* 5 Adım */
.steps{
  background-color: #f5f1f0;
  text-align: center;
  margin-top: 200px;
}

.steps-title{
  font-size: 32px;
  color: #093824;
  font-weight: 600;
  margin-bottom: 50px;
  padding-top: 40px;
}

.steps-inner{
  margin: 0 80px;
  text-align: center;
}

.steps-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

/* ortadaki bağlantı çizgisi */
.steps-grid::before{
  content:"";
  position:absolute;
  left: 6%;
  right: 6%;
  top: 28px;                      /* badge hizası */
  height: 2px;
  background: rgba(33, 55, 33, .18);
  z-index: 0;
}

.step-card{
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(33,55,33,.10);
  padding: 18px 14px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.step-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
}

.step-badge{
  width: 44px;
  height: 44px;
  margin: -34px auto 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #2f6b3f, #1f3f29);
  border: 3px solid #f6f4ef;      /* çizgiden ayrışsın */
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

.step-icon{
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}

.step-card h3{
  margin: 0 0 6px;
  font-size: 15px;
  color: #1f2a1f;
}

.step-card p{
  margin: 0;
  font-size: 13px;
  color: rgba(31, 42, 31, .78);
}

/* Responsive */
@media (max-width: 1024px){
  .steps-grid{ grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before{ display:none; } /* mobilde çizgi kapansın */
}

@media (max-width: 640px){
  .steps{ padding: 42px 14px; }
  .steps-grid{ grid-template-columns: 1fr; }
  .step-badge{ margin-top: 0; }
  .steps-inner {margin: 0;}
  .steps-title {font-size: 22px;margin-bottom: 30px;}
}

/* ========== FOOTER ========== */
.footer {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 165px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    justify-items: start;
}

.footer-section {
    color: #333;
}

.footer-logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    font-size: 28px;
}

.footer-logo-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #093824;
}

.footer-section h4 {
    font-size: 21px;
    color: #66625e;
    font-weight: 100;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #093824;
    text-decoration: underline;
}
/* ---- Trigger button (opsiyonel) ---- */
#openCurtainModal{
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font: inherit;
}

/* ---- Modal base ---- */
.modal{
  position: fixed;
  inset: 0;
  display: none;               /* kapalı */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.is-open{
  display: flex;               /* açık */
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.modal__dialog{
  position: relative;
  width: min(900px, calc(100% - 24px));
  max-height: min(85vh, 900px);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
}
.modal__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.modal__header h2{
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}
.modal__close{
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 6px 8px;
}
.modal__close:hover{
  background: #f3f4f6;
}
.modal__body{
  padding: 16px;
  overflow: auto; /* içerik uzunsa kaydır */
}
.modal__footer{
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.btn-secondary{
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font: inherit;
}
.btn-secondary:hover{
  background: #f9fafb;
}

/* ---- İçerik section stilleri (istersen kaldır/değiştir) ---- */
.curtain-guide{
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #111827;
}
.curtain-guide h2{
  margin: 0 0 10px;
  font-size: 22px;
}
.curtain-guide p{
  margin: 0 0 14px;
  color: #374151;
  font-size: 15px;
}
.curtain-guide .step{
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.curtain-guide .step h3{
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
}
.curtain-guide ul{
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 15px;
}
.curtain-guide .hint{
  margin-top: 10px;
  font-size: 14px;
  color: #4b5563;
}
.curtain-guide .send{
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  padding: 14px 16px;
}
.curtain-guide .msg{
  margin-top: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 12px;
  color: #111827;
  font-size: 15px;
}
.curtain-guide .mini{
  margin-top: 10px;
  font-size: 14px;
  color: #4b5563;
}

/* ---- Mobil iyileştirme ---- */
@media (max-width: 480px){
  .modal__body{ padding: 12px; }
  .curtain-guide h2{ font-size: 20px; }
}
/* ========== SOHBET BUTTON ========== */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #c84c2d;
    color: white;
    padding: 14px 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 99;
    font-size: 14px;
    text-decoration: none;
}

.chat-button:hover {
    background-color: #b83a1f;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ========== EL SANATLARI BÖLÜMÜ ========== */
.product-list {
    max-width: 970px;
    margin: 0 auto !important;
}

.product-list-title {
    line-height: 1.2em;
    text-align: center;
    font-size: 60px;
    color: #093824;
    padding: 60px 0;
}

.product-card {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
/*
.product-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
} */

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

/* .product-card:hover .product-image img {
    transform: scale(1.05);
} */

.badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #556b6b;
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 15px 0;
}

.product-info a {
    font-size: 23px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    text-decoration: none;
}

.price {
    font-size: 16px;
    color: #093824;
    font-weight: 700;
    margin: 0;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}

/* ========== RESPONSIVE GRID SYSTEM (Bootstrap Alternatifi) ========== */

/* CONTAINER */
.container {
    width: 100%;
    margin: 0 auto;
}

.desc-content {
    background-color: white;
    padding: 80px 100px;
    margin: 0 auto;
    max-width: 980px;
}
.desc-content > h2 {
    color: #093824; /* mor-mavi başlık rengi */
    font-size: 32px;
    margin-bottom: 15px;
}

.desc-content > p {
    margin-bottom: 15px;
    line-height: 1.6em;
    font-size: 16px;
    font-family: 'open sans';
    color: #000;
}
.white-background{
  background-color: white;
}
/* ===== SSS / FAQ SECTION ===== */
.faq-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 40px;
  background-color: #ffffff;
}

.faq-title {
  font-size: 24px;
  margin-bottom: 60px;
  font-family: 'Open Sans';
  font-weight: 100;
}

/* ITEM */
.faq-item {
  border: 1px solid #f1b2a6;
  margin-bottom: 18px;
  padding: 20px 24px;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #d14c2d;
  cursor: pointer;
}

/* ICON */
.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 20px;
  }

  .faq-title {
    font-size: 26px;
  }
}

/* ROW */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* COLUMN BASE */
[class*="col-"] {
    padding: 0 15px;
    box-sizing: border-box;
}

/* DESKTOP (12 SÜTUN) */
.col-1 { width: 8.333%; }
.col-2 { width: 16.666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333%; }
.col-5 { width: 41.666%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333%; }
.col-8 { width: 66.666%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333%; }
.col-11 { width: 91.666%; }
.col-12 { width: 100%; }

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .col-md-1 { width: 8.333%; }
    .col-md-2 { width: 16.666%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-5 { width: 41.666%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333%; }
    .col-md-8 { width: 66.666%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.333%; }
    .col-md-11 { width: 91.666%; }
    .col-md-12 { width: 100%; }
}

/* MOBİL (640px - 768px) */
@media (max-width: 768px) {
    .col-sm-1 { width: 8.333%; }
    .col-sm-2 { width: 16.666%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.333%; }
    .col-sm-5 { width: 41.666%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.333%; }
    .col-sm-8 { width: 66.666%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.333%; }
    .col-sm-11 { width: 91.666%; }
    .col-sm-12 { width: 100%; }
}

/* MOBİL KÜÇÜK (640px ve altı) */
@media (max-width: 640px) {
    .col-xs-1 { width: 8.333%; }
    .col-xs-2 { width: 16.666%; }
    .col-xs-3 { width: 25%; }
    .col-xs-4 { width: 33.333%; }
    .col-xs-5 { width: 41.666%; }
    .col-xs-6 { width: 50%; }
    .col-xs-7 { width: 58.333%; }
    .col-xs-8 { width: 66.666%; }
    .col-xs-9 { width: 75%; }
    .col-xs-10 { width: 83.333%; }
    .col-xs-11 { width: 91.666%; }
    .col-xs-12 { width: 100%; }
}

/* ========== OFFSET (KAYDIRMA) ========== */
.offset-1 { margin-left: 8.333%; }
.offset-2 { margin-left: 16.666%; }
.offset-3 { margin-left: 25%; }
.offset-4 { margin-left: 33.333%; }
.offset-5 { margin-left: 41.666%; }
.offset-6 { margin-left: 50%; }

@media (max-width: 1024px) {
    .offset-md-1 { margin-left: 8.333%; }
    .offset-md-2 { margin-left: 16.666%; }
    .offset-md-3 { margin-left: 25%; }
    .offset-md-4 { margin-left: 33.333%; }
    .offset-md-5 { margin-left: 41.666%; }
    .offset-md-6 { margin-left: 50%; }
}

@media (max-width: 768px) {
    .offset-sm-1 { margin-left: 8.333%; }
    .offset-sm-2 { margin-left: 16.666%; }
    .offset-sm-3 { margin-left: 25%; }
    .offset-sm-4 { margin-left: 33.333%; }
    .offset-sm-5 { margin-left: 41.666%; }
    .offset-sm-6 { margin-left: 50%; }
}

@media (max-width: 640px) {
    .offset-xs-1 { margin-left: 8.333%; }
    .offset-xs-2 { margin-left: 16.666%; }
    .offset-xs-3 { margin-left: 25%; }
    .offset-xs-4 { margin-left: 33.333%; }
    .offset-xs-5 { margin-left: 41.666%; }
    .offset-xs-6 { margin-left: 50%; }
}

/* ========== GUTTERs (BOŞLUK) ========== */
.g-0 { gap: 0; }
.g-1 { gap: 10px; }
.g-2 { gap: 20px; }
.g-3 { gap: 30px; }
.g-4 { gap: 40px; }
.g-5 { gap: 50px; }

/* ========== HIDDENs ========== */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

@media (max-width: 1024px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
    .d-md-grid { display: grid; }
}

@media (max-width: 768px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
    .d-sm-flex { display: flex; }
    .d-sm-grid { display: grid; }
}

@media (max-width: 640px) {
    .d-xs-none { display: none; }
    .d-xs-block { display: block; }
    .d-xs-flex { display: flex; }
    .d-xs-grid { display: grid; }
}

/* ========== TABLET RESPONSIVE (1024px - 768px) ========== */
@media (max-width: 1024px) {
    body {
        padding: 0px 40px;
    }

    .navbar {
        margin: 0 40px;
        padding: 20px 30px;
    }

    .banner-content h2 {
        padding: 0;
    }

    .banner-content p {
        padding: 0;
    }

    .categories-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .banner-container {
        gap: 40px;
    }

    .footer {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .hero-text h1 {
        font-size: 48px;
    }
}

/* ========== MOBİL ORTA (768px - 640px) ========== */
@media (max-width: 768px) {
    body {
        padding: 0px 20px;
    }

    .navbar {
        margin: 0 20px;
        padding: 15px 20px;
    }

    .navbar-container {
        flex-direction: row;
        gap: 15px;
    }

    .menu {
        flex-direction: column;
        gap: 12px;
        display: none;
        width: 100%;
        background-color: #093824F2;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 20px;
        margin-top: 10px;
        z-index: 1000;
    }

    .menu.active {
        display: flex;
    }

    .menu-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-item:last-child {
        border-bottom: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .logo {
        gap: 12px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .logo-title {
        font-size: 16px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        margin-top: 80px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .date-text {
        font-size: 16px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 13px;
    }

    .categories {
        padding: 50px 20px;
    }

    .categories h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .categories-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0;
    }

    .card-image {
        height: 200px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-link {
        font-size: 13px;
    }

    .banner-section {
        padding: 50px 20px;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .banner-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 13px;
    }

    .banner-image {
        order: -1;
    }

    .footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 20px;
        margin-bottom: 80px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .chat-button {
        bottom: 20px;
        right: 20px;
        padding: 11px 18px;
        font-size: 12px;
    }
}

/* ========== MOBİL KÜÇÜK (640px ve altı) ========== */
@media (max-width: 640px) {
    body {
        padding: 0px 16px;
        font-size: 15px;
    }

    .navbar {
        margin: 0;
        padding: 12px 16px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .logo-title {
        font-size: 14px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .hero {
        height: 350px;
    }

    .hero-content {
        margin-top: 60px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .date-text {
        font-size: 14px;
    }

    .leaf-icon {
        font-size: 28px;
    }

    .btn-primary {
        padding: 9px 20px;
        font-size: 12px;
    }

    .categories {
        padding: 40px 16px;
    }

    .categories h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .categories-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
    }

    .card-image {
        height: 250px;
    }

    .card-content {
        padding: 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-link {
        font-size: 12px;
    }

    .banner-section {
        padding: 40px 16px;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .banner-content h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 16px;
        margin-bottom: 70px;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-section a {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-logo-icon {
        font-size: 24px;
    }

    .footer-logo-text {
        font-size: 12px;
    }

    .chat-button {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 11px;
    }
}
