    /* ------------------- */
        /* --- BASE & RESET --- */
        /* ------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body { 
            font-family: 'Inter', sans-serif; 
            background-color: #fff; 
            color: #1f2937; /* Default text color */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background-color: transparent;
        }

        input {
            font-family: inherit;
        }

        /* ------------------- */
        /* --- UTILITIES & HELPERS --- */
        /* ------------------- */
        .container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        /* Responsive container widths */
        @media (min-width: 640px) { .container { max-width: 640px; } }
        @media (min-width: 768px) { .container { max-width: 768px; } }
        @media (min-width: 1024px) { .container { max-width: 1024px; } }
        @media (min-width: 1280px) { .container { max-width: 1280px; } }

        .hidden {
            display: none;
        }

        /* ------------------- */
        /* --- BRAND STYLES --- */
        /* ------------------- */
        .font-anton { font-family: 'Anton', sans-serif; }
        .brand-red-bg { background-color: #d5232a; }
        .text-brand-red { color: #d5232a; }
        .border-brand-red { border-color: #d5232a; }
        .brand-red-bar {
            background-color: #d5232a;
            height: 0.375rem;
        }

        /* ------------------- */
        /* --- HEADER --- */
        /* ------------------- */
        .top-bar {
            background-color:#fdf0df;
            padding:20px;
            border-bottom: 1px solid #e5e7eb;
        }
        .top-bar .container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .top-bar a {
            font-size: 0.75rem;
            font-weight: 600;
            color: #000000;
            margin-left: 1rem;
            display: flex;
            align-items: center;    
            transition: color 0.2s ease;
        }
        .top-bar a:hover {
            color: #d5232a;
        }
        .top-bar a svg {
            height: 1rem;
            width: 1rem;
            margin-right: 0.25rem;
        }
        .icon-row {
  display: flex;
  gap: 20px; /* İkonlar arası boşluk */
  align-items: center; /* Dikey ortalama */
}

.desktop-icon {
  display: flex;
  align-items: center;
  gap: 8px; /* İkon ile yazı arası boşluk */
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-family: Arial, sans-serif;
}

.desktop-icon img {
  width: 35px;
  height: auto;
  display: block;
}

        .main-header {
            background-color:#d5232a    ;
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }
        .logo {
            font-family: 'Anton', sans-serif;
            font-size: 2.7rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 0.050em;
            margin-left: 60px;
        }
        .desktop-search-container {
            flex-grow: 1;
            max-width: 36rem;
            margin: 0 1rem;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 0.625rem 3rem 0.625rem 1.25rem;
            border: 2px solid #d5232a;
            border-radius: 9999px;
            font-weight: 600;
           
        }
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(213, 35, 42, 0.4);
            border: 3px solid rgb(132, 14, 14);
        }
        .search-icon {
            position: absolute;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            height: 1.5rem;
            width: 1.5rem;
            color: #d5232a;
        }
        .header-actions {
            display: flex;
            align-items: center;
        }
        .header-actions > * {
            margin-left: 1rem;
            color: #ffffff;
            transition: color 0.2s ease;
        }
        .header-actions > *:hover {
            color: #c4c2c2;
        }
        .header-actions svg {
            height: 2rem;
            width: 2rem;
          margin-right: 20px;
        }
        #mobile-search { padding: 0.5rem 0; position: relative; }

        @media (max-width: 767px) {
            .desktop-search-container, .header-actions .desktop-icon { display: none; }
            #mobile-menu-button { display: block; }
        }
        @media (min-width: 768px) {
            .desktop-search-container { display: flex; }
            #mobile-menu-button, #mobile-search { display: none; }
        }

        /* ------------------- */
        /* --- MAIN CONTENT --- */
        /* ------------------- */
        main { margin-top: 1rem; }

        .order-options {
            background-color: #f9fafb;
            padding: 1rem;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .order-options-buttons { display: flex; gap: 1rem; }
        .order-options-buttons button {
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
        }
        .btn-primary { background-color: #d5232a; color: white; }
        .btn-secondary { background-color:  #e5e7eb; color: #000000; }
        
        .address-input-wrapper { flex-grow: 1; }
        .address-input {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #d5232a;
            border-radius: 9999px;
        }
        .address-input:focus {
            outline: none;
            border-color: #d5232a;
        }
   .dere{
                width: 10px;  
                position:absolute;
                 left:210px;
                  top:-20px;
            }
        @media (max-width: 639px) {
            .order-options { flex-direction: column; }
            .address-input-wrapper { width: 100%; }
            .dere{
                width: 25px;  
                position:absolute;
                 left:210px;
                  top:-20px;
            }
        }

/* Dropdown Menü */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.dropbtn i {
  margin-left: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff; /* Tam beyaz arka plan */
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 1000;
  border: 1px solid #f5f5f5;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: var(--red);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #fff1f1; /* Açık kırmızı hover */
  color: #9b1b1b;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.slider-container {
  width: 100%;
  max-width: 1050px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #f9f9f9;
  aspect-ratio: 16 / 9;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-slide.active {
  opacity: 1;
}

.slider-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
}

/* Mobilde daha dik oran ve uyum */
@media (max-width: 768px) {
  .slider-container {
    max-width: 95%;
    aspect-ratio: 4 / 3;
  }

  .slider-slide img {
    object-fit: contain;
  }
}

        /* --- Promo Cards --- */

/* --- KART --- */
.promo-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 340px;
    height: 240px;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #eee;
    overflow: hidden;
}

/* --- RESİM --- */
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* --- "ÇOK SATAN" ETİKETİ --- */
.promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fbbf24;
    color: #78350f;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-bottom-left-radius: 0.75rem;
    z-index: 2;
}

/* --- MOBİL İÇİN BÜYÜK KARTLAR --- */
@media (max-width: 768px) {
    .promo-card {
        width: 320px;
        height: 260px;
    }

    .mobile-only {
        display: block;
    }
}

/* --- SAĞ SOL OKLAR SADECE MOBİLDE --- */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 3rem;
    font-weight: bold;
    color: #ffdd57;
    cursor: pointer;
    z-index: 10;

    /* Çizgi film efekti */
    text-shadow: 3px 3px 0 #000, 
                 5px 5px 0 #000; /* dış cartoon çizgisi */
    transition: transform 0.2s ease;
}

/* okların yön pozisyonu */
.scroll-btn.left { left: 5px; }
.scroll-btn.right { right: 5px; }

/* Hover efekti */
.scroll-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

/* basılınca */
.scroll-btn:active {
    transform: translateY(-50%) scale(0.9);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* --- SCROLLBAR GİZLEME --- */

        /* --- Section Title --- */
        .section-title {
            text-align: center;
            float: center;
            margin: 1.5rem 0;
        }
        .section-title h2 {
            font-size: 1.875rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        .section-title-icon {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .section-title-icon svg {
            width: 2rem;
            height: 2rem;
            color: #ffffff;
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1400px;       /* Bozulmayı engeller */
    margin: auto;            /* Ortalar */
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border: 1px #fc5c2a;
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease-in-out;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
    text-align: center;
}

.add-to-cart {
    background-color: #d5232a;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    width: 150px;
    height: 30px;
    transition: background-color 0.2s ease-in-out;
}

.add-to-cart:hover {
    background-color: #b71c1c;
}
.add-btn {
    margin-top: auto;
    background-color: red;
    color: white;
    width: 150px;
    height: 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
/* --- Responsive --- */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

        /* ------------------- */
        /* --- FOOTER --- */
        /* ------------------- */
/* --- FOOTER GENEL --- */
.site-footer {
  background-color: #d5232a;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Center yerine space-between daha dengeli yayar */
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* --- ORTA KISIM AYARLARI --- */
.footer-center {
  text-align: center;
  flex: 1; /* 300px sınırını kaldırdık, esnek yaptık */
  min-width: 300px; /* Çok küçülmesini engeller */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-center h2 {
  font-size: 1.5rem; /* Başlığı biraz kibarlaştırdık */
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* YENİ TELEFON STİLLERİ */
.phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Mobilde sığmazsa alt alta geçsin */
}

.phone-link {
  font-size: 1.2rem; /* İdeal okunaklı boyut */
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.1); /* Hafif transparan zemin */
  padding: 8px 15px;
  border-radius: 30px;
}

.phone-link:hover {
  background: #ffffff;
  color: #d5232a; /* Hover olunca sitenin kırmızısı olsun */
}

.phone-divider {
  font-size: 1.2rem;
  opacity: 0.5;
}

/* --- DİĞER KISIMLAR --- */
.footer-side {
  flex: 1;
  min-width: 200px;
}

.footer-left .footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link i, .social-link svg {
  font-size: 20px;
  color: white;
  transition: color 0.3s;
}

.social-link:hover i, .social-link:hover svg {
  color: #ffc107;
}

.contact-details p {
  font-size: 0.9rem;
  margin: 5px 0;
  line-height: 1.5;
}

.footer-right h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

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

.footer-right ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-right ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255 255 255 / 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* --- RESPONSIVE (MOBİL) AYARLARI --- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-center {
    order: -1; /* Mobilde en üste al */
    width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-side {
      align-items: center;
      display: flex;
      flex-direction: column;
  }

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

.social-link svg {
  width: 28px;
  height: 28px;
  fill: white;
  transition: fill 0.3s;
  cursor: pointer;
}

.social-link:hover svg {
  fill: #ffc107;
}

.contact-details p {
  font-size: 0.95rem;
  margin: 6px 0;
  max-width: 280px;
}

.footer-right h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.footer-right ul li {
  margin-bottom: 12px;
}

.footer-right ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-right ul li a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255 255 255 / 0.3);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: #f0f0f0;
}

@media (max-width: 900px) {
  .footer-container {
    justify-content: center;
    gap: 40px;
  }

  .footer-center {
    order: -1;
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .footer-side {
    flex: 1 1 100%;
    text-align: center;
    min-width: auto;
  }

  .contact-details p {
    max-width: none;
  }

  .phone-large {
    font-size: 3.2rem;
  }

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

        /* ------------------- */
        /* --- FLOATING BUTTONS --- */
        /* ------------------- */
        .floating-buttons {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }
        .floating-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #d5232a;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }
        .floating-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .floating-button span {
            display: none;
            position: absolute;
            right: 70px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
            white-space: nowrap;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .floating-button:hover span {
            display: block;
            opacity: 1;
        }
        .floating-button.whatsapp { background-color: #25D366; }
        .floating-button.whatsapp:hover { background-color: #128C7E; }
