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

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Arial', 'Helvetica Neue', sans-serif;
  /* display: flex; */
  /* height: 100vh; */
  background: #f7f7f7;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background: #f7f7f7;
  align-items: center;
}

.sidebar, .navbar {
  display: none !important;
}

.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: relative;
}

.logo {
  flex: 0 0 auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d6001c;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.header-nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 10px;
}

.header-nav ul li a:hover {
  color: #d6001c;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

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

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

@media (max-width: 1024px) {
  .search-form input[type="text"] {
    width: 150px;
  }
  
  .search-form input[type="text"]:focus {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }

  .header-content {
    height: 100%;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin: 0;
  }

  .header-nav.active {
    left: 0;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .header-nav ul li {
    width: 100%;
    text-align: center;
  }

  .header-nav ul li a {
    display: block;
    font-size: 1.2rem;
    padding: 15px;
    width: 100%;
  }

  .search-form {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 0;
    z-index: 999;
    transition: opacity 0.3s ease;
  }

  .header-nav.active ~ .search-form,
  .hamburger.active ~ .search-form {
    opacity: 0;
    pointer-events: none;
  }

  .search-form input[type="text"] {
    width: 100%;
    max-width: none;
  }

  .search-form button {
    white-space: nowrap;
  }

  .main-section {
    margin-top: 110px;
  }

  .hero-top {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hamburger {
    display: block;
  }

  .header-content {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero-top {
    padding: 20px 0;
  }

  .hero-top-flex {
    flex-direction: column;
    gap: 20px;
  }

  .hero-top-text {
    text-align: center;
  }

  .hero-top-text h1 {
    font-size: 2rem;
  }

  .hero-top-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-top-image img {
    max-height: 250px;
  }

  .slide img {
    height: 120px;
  }

  .info-card .info-image img {
    height: 180px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 5px;
  }

  .product-card {
    min-height: 250px;
  }

  .product-card img {
    height: 150px;
  }

  .product-card h2 {
    font-size: 0.95rem;
    margin: 12px 0 0 0;
    padding: 0 10px;
  }

  .category-selector {
    padding: 10px;
    gap: 8px;
  }

  .category-btn {
    font-size: 0.8em;
    padding: 8px 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    min-height: 150px;
    background-color: #f0f8ff;
    border: 1px solid #add8e6;
  }

  .powered-by {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 5px !important;
    width: auto !important;
    height: auto !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
    background-color: #1a1a1a !important;
    border: none !important;
    overflow: visible !important;
  }

  .powered-by-logo {
    height: 30px !important;
    width: 120px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: none !important;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .hero-top-text h1 {
    font-size: 1.8rem;
  }

  .hero-top-image img {
    width: 200px;
    height: 150px;
  }

  .slide img {
    height: 100px;
  }

  .info-card .info-image img {
    width: 80px;
    height: 80px;
  }

  .hero-top {
    padding: 15px 0;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .product-card {
    padding: 10px;
  }

  .product-card img {
    width: 80px;
    height: 80px;
  }

  .product-card h2 {
    font-size: 0.9em;
  }

  .category-selector {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .category-btn {
    font-size: 0.8em;
    padding: 8px 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    min-height: 150px;
    background-color: #1a1a1a;
  }

  .powered-by {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 5px !important;
    width: auto !important;
    height: auto !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
    background-color: #1a1a1a !important;
    border: none !important;
    overflow: visible !important;
  }

  .powered-by-logo {
    height: 30px !important;
    width: 120px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: none !important;
  }
}

.main-content {
  padding-top: 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero {
  width: 100%;
  max-width: 900px;
  min-height: 320px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-content-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 36px 32px;
}
.hero-text {
  flex: 1;
  text-align: left;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d6001c;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1.25rem;
  color: #222;
  margin: 0;
}
.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  background: #fafafa;
}
@media (max-width: 900px) {
  .hero-content-flex {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px;
  }
  .hero-image img {
    width: 100%;
    height: 160px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.search-form input[type="text"] {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.9rem;
  width: 200px;
  transition: all 0.3s ease;
}

.search-form input[type="text"]:focus {
  outline: none;
  border-color: #d6001c;
  width: 220px;
}

.search-form button {
  background: #d6001c;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.search-form button:hover {
  background: #b30017;
}

.products-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 40px 32px;
  justify-content: flex-start;
  background: #f7f7f7;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1.5px solid #eee;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  position: relative;
  padding-bottom: 18px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.product-card h2 {
  font-size: 1.1rem;
  margin: 18px 0 0 0;
  color: #222;
  font-family: 'Segoe UI', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  text-align: center;
}

.site-footer {
  background-color: #1a1a1a;
  color: #f2f2f2;
  padding: 40px 0 0;
  font-size: 0.9rem;
  border-top: 5px solid #d6001c;
  position: relative;
  left: 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 15px;
  gap: 20px;
  background-color: #1a1a1a;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 250px;
  margin-bottom: 20px;
  background-color: #1a1a1a;
}

.footer-column h3 {
  color: #d6001c;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #f2f2f2;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column i {
  margin-right: 8px;
  color: #d6001c;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: #1a1a1a;
}

.powered-by {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #1a1a1a;
}

.powered-by-logo {
  height: 30px;
  width: auto;
  transition: opacity 0.3s ease;
  background-color: transparent;
  border: none;
}

.powered-by-logo:hover {
  opacity: 0.8;
}

.footer-bottom p {
  margin: 0;
  color: #f2f2f2;
  font-size: 0.9rem;
}

.info-section {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 32px 24px;
}
.info-flex {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.info-image img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fafafa;
}
.info-text {
  flex: 1;
  min-width: 220px;
}
.info-text h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #d6001c;
}
.info-text ul {
  padding-left: 18px;
  margin-bottom: 16px;
}
.info-text li {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.info-text p {
  font-size: 1.08rem;
  color: #333;
}
@media (max-width: 700px) {
  .info-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .info-section {
    padding: 18px 6px;
  }
  .info-image img {
    width: 100%;
    height: 160px;
  }
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.info-card:hover {
  box-shadow: 0 6px 24px rgba(214,0,28,0.13);
  transform: translateY(-4px) scale(1.03);
}
.info-card .info-image {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.info-card .info-image img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 10px;
}
.info-card .info-text {
  width: 100%;
  text-align: left;
}
.info-card .info-text h2 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #d6001c;
}
.info-card .info-text ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.info-card .info-text li {
  margin-bottom: 6px;
  font-size: 1.01rem;
}
.info-card .info-text p {
  font-size: 1.01rem;
  color: #333;
}
@media (max-width: 700px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
  .info-card {
    min-height: unset;
    padding: 16px 6px;
  }
  .info-card .info-image img {
    width: 100px;
    height: 100px;
  }
}

.slider-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: #fff;
  margin: 40px auto;
  max-width: 1200px;
}

.slider {
  display: flex;
  width: max-content;
  animation: slide 40s linear infinite;
}

.slide {
  min-width: 200px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 769px) {
  .slider-container {
    padding: 30px 0;
  }
  
  .slide {
    min-width: 180px;
    max-width: 240px;
  }
  
  .slide img {
    height: 180px;
  }
}

.hero-top {
  width: 100%;
  padding: 40px 0;
  margin-top: 120px;
  background: #f7f7f7;
}

.hero-top-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-top-text {
  flex: 1;
}

.hero-top-text h1 {
  font-size: 2.5rem;
  color: #d6001c;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.hero-top-text p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.hero-top-image {
  flex: 0 0 45%;
  max-width: 500px;
}

.hero-top-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.category-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

.category-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  width: 100%;
}

.category-btn {
  padding: 10px 20px;
  border: none;
  background: #f5f5f5;
  color: #333;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-btn:hover {
  background-color: #007bff;
  color: white;
}

.category-btn.active {
  background-color: #007bff;
  color: white;
}

.category-section {
  display: none;
  padding: 20px;
}

.category-section.active {
  display: block;
}

