    body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #222;
}

@font-face {
  font-family: 'CormorantGaramondVariable';
  src: url('./fonts/CormorantGaramond-VariableFont_wght.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'MillionDesign';
  src: url('./fonts/MillionDesign.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'MazzardHSemi';
  src: url('./fonts/mazzard-h-semi-bold.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'QuadratGrotesk';
  src: url('./fonts/SolidenTrial-BoldExpanded.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'SamsungsharpsansBold';
  src: url('./fonts/SAMSUNGSHARPSANS-BOLD.TTF') format('opentype');
  font-style: normal;
}

.ust-bilgi,
.ana-navigasyon {
    transition: top 0.3s ease-in-out;
}

.stock-ticker {
    position: static;
    width: 100%;
    height: 22px;
    background-color: black;
    color: white;
    font-size: 11px;
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.stock-ticker ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.stock-ticker:hover ul {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-100% - 10px));
    }
}

.ust-bilgi {
    position: fixed;
    top: 22px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1002;
    transition: top 0.3s ease-in-out;
    border-bottom: 0.01px solid black;
}

body.scrolled .ust-bilgi {
    top: 0;
}

.logo-konteyner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.site-logosu {
    height: 40px;
}

.ikonlar-konteyner {
    display: flex;
    gap: 15px;
    margin-right: 65px;
}

.ikon {
    font-size: 20px;
    color: #333;
    text-decoration: none;
}

.ikon:hover {
    color: #000;
}

.hamburger-menu-buton {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 1003;
}

.hamburger-cizgisi {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu-buton.acik {
    transform: translateX(0px);
}
.hamburger-menu-buton.acik .hamburger-cizgisi:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-menu-buton.acik .hamburger-cizgisi:nth-child(2) {
    opacity: 0;
}
.hamburger-menu-buton.acik .hamburger-cizgisi:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.ana-navigasyon {
    display: block;
    position: fixed;
    top: 75px;
    left: 0;
    width: 400px; 
    height: 820px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1754839182/ha_p1410y.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.ana-navigasyon.acik {
    transform: translateX(0);
}

body.scrolled .ana-navigasyon {
    top: 60px;
}

.ana-navigasyon .ic-kisim {
    margin-top: 110px;
}

.ana-navigasyon .baslik {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-size: 20px; 
    font-weight: 400;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
}

.ana-navigasyon .alt-menu a {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-size: 14px; 
    font-weight: 400;
    color: black;
    text-decoration: none;
    padding: 5px 0;
}

.ana-navigasyon ul {
    list-style-type: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.ana-navigasyon li {
    list-style: none;
    width: 100%;
    text-align: center;
}

.ana-navigasyon li a {
    font-family: 'MillionDesign', sans-serif;
    font-size: 14px; 
    font-weight: 400;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    display: block;
    width: 100%;
}

.ana-navigasyon .ana-baslik {
    font-family: 'CormorantGaramondVariable', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.ana-navigasyon .alt-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    background-color: transparent;
    padding: 0;
    margin-top: 10px;
    width: 100%;
    align-items: center;
}

.alt-menu a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    width: 100%;
}

.hero {
    position: relative;
    text-align: right;
    width: 100%;
}

.arkaplan {
    width: 100%;
    height: auto;
}

.arkaplan img {
    width: 100%;
    display: block;
}

.sagalt {
    position: absolute;
    bottom: 20px;
    right: 170px;
    text-align: right;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sagalt h1 {
    font-size: 60px;
    margin-bottom: 10px;
    font-family: 'CormorantGaramondVariable', sans-serif;
    font-weight: 200;
    color: black;
}

.sagalt p {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: 'CormorantGaramondVariable', sans-serif;
    color: #515153;
}

.sagalt img {
    height: auto;
    width: auto;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 100px;
}

.top-bar .sol h1 {
    font-size: 60px;
    font-family: 'CormorantGaramondVariable', sans-serif;
    font-weight: 200;
}

.top-bar .sag h1 {
    font-size: 60px;
    font-family: 'CormorantGaramondVariable', sans-serif;
    font-weight: 200;
    margin-bottom: 0px;
}

.top-bar .sag img {
  width: auto;
  height: 70px;
}

.top-bar .sag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 150px;
}

.content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.card {
    flex: 1 1 300px;
    margin: 10px;
    margin: 0 50px;
    box-sizing: border-box;
    padding-bottom: 100px;
}

.card img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
}

.card-title {
    margin-top: 35px;
    font-size: 60px;
    font-weight: 200;
    font-family: 'CormorantGaramondVariable', sans-serif;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ortakalan {
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1754839216/sec3bg_nnph8v.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    
    padding: 70px 0 0;
    padding-left: 10px;
}

.hero-iki {
    position: relative;
    text-align: right;
    width: 100%;
}

.yildizli-urunler-bolumu {
    display: flex;
    align-items: center;
    background-color: #eaeaea;
    font-family: Arial, sans-serif;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.yildizli-baslik-konteyner {
    background-color: black;
    color: white;
    height: 100%;
    padding: 60px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.yildizli-baslik {
    font-family: 'MillionDesign', sans-serif;
    font-weight: 400;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    transform: rotate(180deg);
}

.urun-kartlari-konteyner {
    text-decoration: none;
    background: #eaeaea;
    display: flex;
    gap: 20px;

}

.urun-kart {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 10px;
    text-align: center;
    flex-shrink: 0;
    width: 270px;
    height: 400px;
    border-radius: 10px;
}

.urun-kart img {
    text-decoration: none;
    width: 100%;
    height: 300px; 
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 30px;
    margin-top: 40px;
}

.urun-detay {
    text-decoration: none;
    margin-top: 0; 
}

.urun-detay a {
  text-decoration: none;
  border-bottom: none; /* Bu satırı ekleyin */
  font-family: 'MillionDesign', sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 15px;
  color: black;
}


.urun-adi, .urun-fiyat {
    text-decoration: none;
    font-family: 'MillionDesign', sans-serif;
    font-weight: 600;
    margin: 0;
    font-size: 15px;
    color: black;
}

.urun-adi {
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 5px;
}

.urun-fiyat {
    text-decoration: none;
    font-weight: 600;
    color: black;
}

.tanitim-bolumu {
    margin-top: 60px;
    padding-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logoveyazi {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.logoveyazi h2 {
    margin: 0;
    line-height: 1;
}

.tanitim-bolumu h2 {
    font-family: 'MazzardHSemi', sans-serif;
    font-weight: 600;
}

.tanitim-bolumu h1 {
    font-family: 'MazzardHSemi', sans-serif;
    font-weight: 600;
    font-size: 30px;
    padding-top: 5px;
}

.tanitim-bolumu .hijyen h1 {
    font-family: 'MazzardHSemi', sans-serif;
    font-weight: 600;
    font-size: 30px;
    padding-top: 20px;
}

.tanitim-bolumu .tanitim-sagalt {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 1000;
    text-align: right;
}

.hijyen-bilgisi {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
    padding-top: 90px;
    padding-bottom: 10px;
}

.hijyen-bilgisi h1 {
    font-family: 'MazzardHSemi', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: black;
    text-align: center;
    margin: 0;
    padding-top: 8px;
}

.tanitim-bolumu .tanitim-alt-orta img {
    display: block;
}

.tanitim-bolumu .tanitim-sagalt img {
    display: block;
    width: 80%;
    height: auto;
    margin-left: auto;
}

footer {
    position: relative;
    padding-bottom: 70px; 
    background-color: black;
    color: white;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    padding-left: 250px;
    padding-right: 250px;
}

footer a {
  text-decoration: none;
  color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column.newsletter p {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-column.newsletter .newsletter-input-wrapper {
    position: relative;
    width: 100%;
}

.footer-column.newsletter input {
    width: 65%;
    padding: 10px 70px 10px 10px;
    background-color: #222;
    color: #fff;
    border: none;
}

.footer-column.newsletter {
    position: relative;
    padding-bottom: 80px;
}

.footer-column.newsletter button {
    position: absolute;
    top: 0;
    left: 71%;
    height: 100%;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, 0.03);
    color: orange;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-column.newsletter button:hover {
    color: darkorange;
}

.footer-column .copyright {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 13px;
}

.en-alt-kisim {
    position: absolute;
    bottom: 0;
    left: 250px;
    right: 250px;
    width: auto;
    height: 50px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.en-alt-kisim .sol-kisim img,
.en-alt-kisim .sag-kisim img {
    height: 20px;
    width: auto;
    display: block;
}



@media (min-width: 768px) {
    .ana-navigasyon {
        width: 400px;
    }
}


/* ========================================================== */
/* Sadece Mobil ve Küçük Tabletler İçin (991px ve altı) */
/* ========================================================== */
@media (max-width: 991px) {
  /* Genel ayarlar */
  body {
    font-size: 13px;
    line-height: 1.4;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  /* Üst Alan */
  .stock-ticker {
    position: fixed;
    width: 100%;
    height: 18px;
    font-size: 9px;
    gap: 6px;
    z-index: 1001;
  }
  .stock-ticker ul {
    min-width: 100%;
    gap: 30px;
  }
  .ust-bilgi {
    position: fixed;
    top: 18px;
    height: 50px;
    padding: 0 8px;
    z-index: 1002;
  }
  body.scrolled .ust-bilgi {
    top: 0;
  }
  .logo-konteyner {
    left: 50%;
    transform: translateX(-50%);
  }
  .site-logosu {
    height: 25px;
    width: auto;
  }
  .ikonlar-konteyner {
    gap: 6px;
    margin-right: 0;
  }
  .ikon {
    font-size: 14px;
  }

    /* Hamburger Menü */
    .hamburger-menu-buton {
        width: 22px;
        height: 18px;
    }
    .hamburger-cizgisi {
        height: 2px;
    }
    .hamburger-menu-buton.acik {
        transform: translateX(0px);
    }
    .hamburger-menu-buton.acik .hamburger-cizgisi:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .hamburger-menu-buton.acik .hamburger-cizgisi:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Ana Navigasyon */
    .ana-navigasyon {
        display: block;
        position: fixed;
        top: 68px;
        left: 0;
        width: 280px;
        height: 570px;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
        z-index: 1002;
        background-color: #fff;
    }

    .ana-navigasyon .baslik img {
        height: 12px; /* Yıldız yüksekliğini küçült */
        width: auto; /* Genişliği otomatik ayarla */
        vertical-align: middle; /* Metinle dikey hizala */
        margin: 0 2px; /* Sağa ve sola küçük boşluk ekle */
    }
    .ana-navigasyon.acik {
        transform: translateX(0);
    }
    body.scrolled .ana-navigasyon {
        top: 50px;
    }
    .ana-navigasyon .ic-kisim {
        margin-top: 80px;
        margin-bottom: 20px;
    }
    .ana-navigasyon .baslik {
        /* Masaüstü: 20px - Mobil: 11px. Yaklaşık %55 oranında küçültme */
        font-size: 15px;
        padding: 0.1rem 0;
        padding-bottom: 5px;
        gap: 4px;
    }
    .ana-navigasyon .alt-menu a,
    .ana-navigasyon li a {
        border: 0px;
        font-size: 10px;
        padding: 0.1rem 0;
        padding-bottom: 10px;
    }

    .ana-navigasyon .cizgi img {
        width: 50%; /* Çizgi genişliğini azalt (isteğe bağlı değer) */
        height: auto; /* Yüksekliği otomatik ayarla */
    }

  /* Hero ve Ana İçerik */
  .hero {
    text-align: center;
  }
  .sagalt {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    padding: 8px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
  }
  .sagalt h1 {
    font-size: 12px;
    margin-bottom: 3px;
    line-height: 1.1;
  }
  .sagalt p {
    font-size: 6px;
    margin-top: 3px;
  }
  .sagalt img {
    height: auto;
    width: 15px;
  }

  /* "Her adımınıza şıklık katın" ve "şimdi keşfet" yan yana */
  .top-bar {
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .top-bar .sol h1 {
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
  }
  .top-bar .sag h1 {
    display: none;
  }
  .top-bar .sag {
    padding: 0;
  }
  .top-bar .sag img {
    height: 25px;
  }

  /* Keşfet altına boşluk ve dikey daha uzun görseller */
  .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0 5px;
    margin-bottom: 20px;
  }
  .card {
    flex: unset;
    margin: 0;
    padding-bottom: 5px;
  }
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .card-title {
    margin-top: 5px;
    font-size: 10px;
    height: auto;
    padding: 0 2px;
  }

  /* Yıldızlı ürünler ve kombin ürünler kısmı */
  .ortakalan {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 15px;
  }
  .yildizli-urunler-bolumu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 0 8px;
    background-color: #eaeaea;
  }
  .yildizli-baslik-konteyner {
    width: 95%;
    height: auto;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    text-align: center;
    background-color: black;
    color: white;
  }
  .yildizli-baslik {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 10px;
    white-space: nowrap;
  }
  .urun-kartlari-konteyner {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
    overflow-x: hidden;
    justify-content: center;
    width: 95%;
  }
  .urun-kart {
    width: calc(50% - 8px);
    height: auto;
    flex-shrink: 0;
    padding: 4px;
  }
  .urun-kart img {
    width: 180px;
    height: 230px;
    border-radius: 5px;
    margin-bottom: 6px;
    margin-top: 4px;
  }
  .urun-adi, .urun-fiyat {
    font-size: 6px;
  }
  .urun-detay a {
    border-bottom: none;
  }

  /* Tanıtım Bölümü */
  .tanitim-bolumu {
    margin-top: 15px;
    padding-top: 30px;
    text-align: center;
  }
  .logoveyazi {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
  }
  .logoveyazi h2 {
    font-size: 9px;
    margin: 0;
    line-height: 1;
    padding-bottom: 6px;
  }
  .tanitim-bolumu img {
    height: 25px;
    width: auto;
    padding-bottom: 6px;
  }
  .yazilar h2 {
    font-size: 9px;
    margin: 0;
    line-height: 1;
  }
  .tanitim-bolumu h1 {
    font-size: 12px;
    padding-top: 2px;
  }
  .tanitim-bolumu .hijyen h1 {
    font-size: 18px;
    padding-top: 6px;
  }
  .tanitim-bolumu .tanitim-sagalt {
    display: none;
  }
  .hijyen-bilgisi {
    margin-top: 10px;
    padding-top: 25px;
    padding-bottom: 6px;
  }
  .hijyen-bilgisi img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  .hijyen-bilgisi h1 {
    font-size: 5px;
    padding-top: 0px;
  }

  /* Footer düzeltmeleri */
  footer {
    padding: 12px 35px;
    padding-bottom: 30px;
    margin: 0 auto;
    max-width: 100%;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 12px;
  }
  .footer-column h4 {
    font-size: 11px;
  }
  .footer-column ul {
    padding: 0;
  }
  .footer-column li {
    font-size: 10px;
  }
  .footer-column.newsletter {
    grid-column: span 2;
    padding-bottom: 30px;
    position: relative;
  }
  .footer-column.newsletter p {
    font-size: 10px;
  }
  .footer-column.newsletter input {
    width: 100%;
    padding: 6px 120px 6px 6px;
    box-sizing: border-box;
  }
  .footer-column.newsletter button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 8px;
    background-color: rgba(0, 0, 0, 0.03);
    color: orange;
    border: none;
    cursor: pointer;
    max-height: 35px;
  }
  .footer-column .copyright {
    position: static;
    font-size: 10px;
    text-align: center;
    margin-top: 12px;
  }

  /* En-alt-kisim fotoğraflarının alt köşelere sabitlenmesi */
  .en-alt-kisim {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0 15px 12px 15px;
    box-sizing: border-box;
    width: auto;
    gap: 10px;
    z-index: 999;
  }
  .en-alt-kisim .sol-kisim,
  .en-alt-kisim .sag-kisim {
    position: static;
    right: auto;
    bottom: auto;
  }
  .en-alt-kisim .sol-kisim img,
  .en-alt-kisim .sag-kisim img {
    height: 10px;
  }

/* ========================================================== */
/* Sadece YATAY Mobil Ekranlar İçin (576px - 991px) */
/* ========================================================== */
@media (min-width: 576px) {

      /* Header ve Navigasyon - Yatay Mobil */
  .ust-bilgi {
    height: 60px;
    padding: 0 15px;
  }
  .site-logosu {
      height: 35px;
  }
  .ikonlar-konteyner {
      margin-right: 0;
  }
  .ikon {
      font-size: 18px;
  }
  .hamburger-menu-buton {
      width: 25px;
      height: 20px;
  }
  .hamburger-cizgisi {
      height: 2.5px;
  }
  .ana-navigasyon {
    top: 75px;
    width: 270px;
    max-height: calc(100vh - 75px);
    background-color: #fff;
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1754839182/ha_p1410y.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Bu satır, arka planın içerikle kaymasını sağlar */
  }
  .ana-navigasyon .baslik,
  .ana-navigasyon .ana-baslik {
    font-size: 18px;
  }
  .ana-navigasyon .alt-menu a,
  .ana-navigasyon li a {
    font-size: 12px;
  }

  /* Ürün Kartları Bölümü */
  .yildizli-urunler-bolumu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 10px 8px;
    background-color: #eaeaea;
    font-family: Arial, sans-serif;
  }
  
  .yildizli-baslik-konteyner {
    width: 100%;
    height: auto;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    text-align: center;
    background-color: black;
    color: white;
  }
  
  .yildizli-baslik {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 10px;
    white-space: nowrap;
  }
  
  .urun-kartlari-konteyner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    width: 100%;
    overflow-x: hidden;
    justify-content: center;
  }
  
  .urun-kart {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    height: auto;
    padding: 0;
    flex-shrink: 0;
  }
  
  .urun-kart img {
    width: 280px; 
    height: 230px; 
    object-fit: cover; 
    display: block; 
    border-radius: 5px;
    margin-bottom: 6px;
    margin-top: 4px;
  }
  
  .urun-adi, .urun-fiyat {
    font-size: 12px;
  }
  
  .card img {
    height: 250px;
  }
  .card-title {
    font-size: 14px;
  }

  /* Ürün Kartları Bölümü */
  .yildizli-urunler-bolumu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 10px 8px;
    background-color: #eaeaea;
    font-family: Arial, sans-serif;
  }
  
  .yildizli-baslik-konteyner {
    width: 100%;
    height: auto;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    text-align: center;
    background-color: black;
    color: white;
  }
  
  .yildizli-baslik {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 10px;
    white-space: nowrap;
  }
  
  .urun-kartlari-konteyner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    width: 100%;
    overflow-x: hidden;
    justify-content: center;
  }
  
  .urun-kart {
    /* Genişlik ayarını daha güvenilir hale getirdik */
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    height: auto;
    padding: 0;
    /* Gerekirse, kartın kendisini esnetmesini engelliyoruz */
    flex-shrink: 0;
  }
  
  .urun-kart img {
    /* **ÖNEMLİ DEĞİŞİKLİKLER:** */
    width: 280px; /* Resim, kartın genişliğini tamamen kaplasın */
    height: 230px; /* Sabit bir yükseklik vererek resmin görünürlüğünü garantiliyoruz */
    object-fit: cover; /* Resmi, bozulmadan kapsayıcının tamamını kaplayacak şekilde ölçeklendiriyoruz */
    display: block; /* Resmin blok elementi gibi davranmasını sağlıyoruz */
    border-radius: 5px;
    margin-bottom: 6px;
    margin-top: 4px;
  }
  
  .urun-adi, .urun-fiyat {
    font-size: 12px;
  }
  
  .card img {
    height: 250px;
  }
  .card-title {
    font-size: 14px;
  }

  /* ... Diğer yatay mobil stilleriniz ... */
}