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

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* Header Styles */
.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #222;
    cursor: pointer;
    font-weight: 500;
}

.flag-icon {
    font-size: 20px;
    margin-right: 2px;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 2px;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.header-logo img {
    max-width: 180px;
    height: auto;
}

.cart-area {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #222;
    position: relative;
}

.cart-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e94e1b;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Navigation Styles */
.header-nav {
    width: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    position: relative;
}

.header-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.header-nav li {
    font-size: 15px;
    letter-spacing: 1.2px;
    font-weight: 500;
}

.header-nav a {
    text-decoration: none;
    color: #222;
    padding: 18px 0 14px 0;
    display: inline-block;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #e94e1b;
}

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .header-top {
        padding: 14px 16px 8px 16px;
    }

    .header-logo {
        position: static;
        transform: none;
        margin: 8px 0;
    }

    .header-logo img {
        max-width: 140px;
    }

    .header-nav ul {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        padding: 10px 16px;
    }

    .header-logo {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-nav {
        position: relative;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .header-nav li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ececec;
    }

    .header-nav a {
        padding: 16px;
        display: block;
    }

    .lang-select {
        font-size: 14px;
    }

    .cart-area {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 8px 12px;
    }

    .header-logo img {
        max-width: 120px;
    }

    .header-nav a {
        padding: 14px;
        font-size: 14px;
    }
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #e5e2db;
  min-height: 370px;
  max-height: 420px;
  overflow: hidden;
}
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 0 48px 56px;
  height: 100%;
}
.hero-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #181818;
  margin: 0 0 18px 0;
  line-height: 1.18;
}
.hero-desc {
  font-size: 1.1rem;
  color: #222;
  letter-spacing: 0.18em;
  margin-bottom: 32px;
}
.hero-btn {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 36px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 38px;
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #e94e1b;
  color: #fff;
}
.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  display: inline-block;
  transition: background 0.2s;
}
.dot.active {
  background: #222;
}
.hero-image {
  flex: 1;
  display: flex;
  align-items: right;
  justify-content: right;
  background: #e5e2db;
  min-width: 0;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: auto;
  max-width: 540px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    min-height: unset;
    max-height: unset;
    align-items: stretch;
  }
  .hero-text {
    padding: 32px 18px 18px 18px;
    align-items: flex-start;
  }
  .hero-image {
    justify-content: center;
    padding: 0 12px 18px 12px;
  }
  .hero-image img {
    max-width: 100%;
    max-height: 260px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    flex-direction: column;
    min-height: unset;
    max-height: unset;
    align-items: stretch;
  }
  .hero-text {
    padding: 18px 8px 8px 8px;
    align-items: flex-start;
  }
  .hero-image {
    justify-content: center;
    padding: 0 4px 8px 4px;
  }
  .hero-image img {
    max-width: 100%;
    max-height: 180px;
  }
}

/* REFERANSLAR SECTION */
.referanslar-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 32px 0 24px 0;
  box-sizing: border-box;
}
.referanslar-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 55px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.referanslar-container img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}
.referanslar-container img:hover {
  filter: grayscale(0) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
@media (max-width: 900px) {
  .referanslar-container {
    gap: 24px;
  }
  .referanslar-container img {
    height: 36px;
  }
}
@media (max-width: 600px) {
  .referanslar-section {
    padding: 18px 0 12px 0;
  }
  .referanslar-container {
    gap: 12px;
  }
  .referanslar-container img {
    height: 26px;
  }
}

/* MUSTERI SECTION */
.musteri-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 48px 0 48px 0;
  box-sizing: border-box;
}
.musteri-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}
.musteri-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.musteri-img img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
}
.musteri-text {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 32px;
}
.musteri-text h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #181818;
  margin: 0 0 18px 0;
  letter-spacing: 0.01em;
}
.musteri-text p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.6;
}
.musteri-btn {
  background: #fff;
  color: #222;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.musteri-btn:hover {
  background: #e94e1b;
  color: #fff;
  border: 1px solid #e94e1b;
}
@media (max-width: 900px) {
  .musteri-section {
    padding: 0 0 0 0;
  }
  .musteri-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .musteri-img {
    justify-content: center;
  }
  .musteri-img img {
    max-width: 180px;
  }
  .musteri-text {
    padding-left: 0;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .musteri-section {
    padding: 12px 0 12px 0;
  }
  .musteri-img img {
    max-width: 120px;
  }
  .musteri-text h3 {
    font-size: 0.98rem;
  }
  .musteri-text p {
    font-size: 0.92rem;
  }
}


.product-categories {
  padding: 60px 0;
  background: #fafafa;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.category-card:hover img {
  transform: scale(1.05);
}
.category-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 0;
  text-align: center;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-card img {
    height: 160px;
  }
}

.custom-product-categories {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.custom-categories-grid {
  display: flex;
  width: 100%;
  gap: 0;
  justify-content: flex-start;
  align-items: stretch;
}

.custom-category-card {
  position: relative;
  overflow: hidden;
}

.custom-category-card.bar,
.custom-category-card.servis {
  flex: 1 1 0;
  min-width: 0;
  height: 350px;
}

.right-column {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  height: 350px;
}

.right-column .custom-category-card {
  flex: 1 1 0;
  height: 50%;
  width: 100%;
}

.custom-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  padding: 0;
  margin: 0;
  display: block;
}

.custom-category-title {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  z-index: 10;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  background: rgba(0,0,0,0.72);
  padding: 18px 18px 10px 18px;
  letter-spacing: 1px;
  box-sizing: border-box;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  pointer-events: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.custom-category-card:hover img {
  transform: none;
}

.custom-category-card.bar {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.custom-category-card.servis {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.custom-category-card.cam {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.custom-category-card.tabak {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
@media (max-width: 900px) {
  .custom-categories-grid {
    flex-direction: column;
  }
  .custom-category-card.bar,
  .custom-category-card.servis,
  .right-column {
    width: 100% !important;
    height: 220px;
  }
  .right-column .custom-category-card {
    height: 110px;
  }
}

.magazalar-section {
  width: 100vw;
  margin: 0;
  padding: 40px 0;
  background: #fff;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.magazalar-grid {
  display: flex;
  width: 100vw;
}

.magazalar-image,
.katalog-image {
  width: 50%;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}



.katalog-image img {
  justify-content: center;
  align-items: center;

}

/* Footer Styles */
.main-footer {
    width: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 48px 24px 24px 24px;
    font-size: 15px;
    color: #222;
    margin-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col b {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #222;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
    line-height: 1.4;
}

.footer-col a:hover {
    color: #e94e1b;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-icons {
    display: flex;
    gap: 16px;
    margin: 4px 0;
}

.footer-icons a {
    color: #222;
    font-size: 20px;
    transition: color 0.2s;
}

.footer-icons a:hover {
    color: #e94e1b;
}

.footer-phone {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #222;
    margin-top: 4px;
}

/* Mobile Footer Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 32px 16px 24px 16px;
        margin-top: 32px;
    }

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

    .footer-col {
        gap: 6px;
    }

    .footer-col b {
        font-size: 15px;
        margin-bottom: 6px;
    }

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

    .footer-icons {
        gap: 12px;
    }

    .footer-icons a {
        font-size: 18px;
    }

    .footer-phone {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 24px 16px 20px 16px;
        margin-top: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col {
        text-align: center;
        align-items: center;
    }

    .footer-social {
        align-items: center;
    }

    .footer-icons {
        justify-content: center;
    }
}
