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: '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.otf') 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: 1004;
}

.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%;
}

.yildizli-urunler-bolumu {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    padding: 20px;
    border-radius: 20px;
    margin: 50px auto;
    width: 95%;
    max-width: 1200px;
}

.yildizli-baslik-konteyner {
    background-color: black;
    color: white;
    height: 350px;
    margin-right: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.yildizli-baslik {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    transform: rotate(180deg);
}

.urun-kartlari-konteyner {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    flex-grow: 1;
}

.urun-kart {
    background-color: white;
    padding: 10px;
    text-align: center;
    flex-shrink: 0;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.urun-kart img {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    object-fit: cover;
}

.urun-detay {
    margin-top: 10px;
}

.urun-adi, .urun-kategori, .urun-fiyat {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.urun-adi {
    font-weight: 800;
    margin-bottom: 5px;
}

.urun-kategori {
    font-weight: 200;
    margin-bottom: 5px;
}

.urun-fiyat {
    font-weight: bold;
    color: #333;
}

.urunler-tablosu-konteyner {
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 100px auto;
    background-color: #ffffff;
}

.urun-tablosu-nav {
    background: #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    padding: 20px 50px;
}

.nav-sol {
    display: flex;
    align-items: center;
    border-right: 2px solid black;
    padding-right: 20px;
    padding-top: 15px;    /* Bu satırı ekleyin */
    padding-bottom: 15px; /* Bu satırı ekleyin */
}

.nav-baslik {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

.nav-orta {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-weight: 200;
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 60px;
    font-size: 20px;
}

.kategoriler {
    display: flex;
    gap: 20px;
}

.kategori-link {
    text-decoration: none;
    color: #777;
    font-weight: 500;
    padding: 5px 0;
    margin-right: 40px;
    transition: color 0.3s;
}

.kategori-link.aktif {
    color: black;
    border-bottom: 2px solid black;
}

.filtre-secenekleri {
    display: flex;
    align-items: center;
    gap: 10px;
}

.siralama-menusu {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-weight: 200;
    padding: 8px 10px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 20px;
    color: black;
}

.filtre-ikonu {
    padding: 14px;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urun-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.urun-kart-grid {
    background-color: #fff;
    padding-top: 60px;
    padding-right: 60px;
    padding-left: 60px;
    overflow: hidden;
}

.urun-kart-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

.urun-bilgisi {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.urun-metinleri {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.urun-adi-grid {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: black;
    margin: 0;
}

.urun-kategori-grid {
    font-size: 12px;
    font-weight: 200;
    color: #999999;
    margin: 0;
}

.urun-fiyat-buton {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.urun-fiyat-grid {
    font-family: 'samsungsharpsansBold', sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: black;
    display: flex;
    white-space: nowrap;
}

.urun-fiyat-grid .fiyat-ikon {
    padding-left: 10px;
    height: 20px;
    width: auto;
}

.satin-al-butonu-grid {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}


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 Ekranlar İçin (767px ve altı) */
/* ========================================================== */
@media (max-width: 767px) {
    /* Genel ayarlar */
    body {
        font-size: 13px;
        line-height: 1.4;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* Üst Alan */
    .stock-ticker {
        position: static;
        width: 100%;
        height: 18px;
        font-size: 9px;
        gap: 6px;
        z-index: 1001;
    }
    .stock-ticker ul {
        min-width: 100%;
        gap: 30px;
        animation: scroll 20s linear infinite;
    }
    @keyframes scroll {
        to {
            transform: translateX(calc(-100% - 6px));
        }
    }
    .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: 550px;
        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;
        width: auto;
        vertical-align: middle;
        margin: 0 2px;
    }
    .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 {
        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%;
        height: auto;
    }

    /* 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: 20px;
        margin-bottom: 3px;
        line-height: 1.1;
    }
    .sagalt p {
        font-size: 11px;
        margin-top: 3px;
    }
    .sagalt img {
        height: auto;
        width: 35px;
    }
    
    /* "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;
    }

    /* ... diğer mobil kodlar ... */

    /* Ürün tablosu navigasyonunu düzenleme (mobil) */
    .urun-tablosu-nav {
        display: flex;
        flex-direction: column; /* Dikey sıralama */
        align-items: center; /* Ortala */
        padding: 10px; /* Padding azaltıldı */
        gap: 10px; /* Elemanlar arası boşluk */
    }

    .nav-sol {
        border-right: none;
        padding-right: 0;
        padding-top: 5px;
        padding-bottom: 5px;
        width: auto;
        justify-content: center;
        text-align: center;
    }

    .nav-baslik {
        font-size: 18px; /* Başlık fontu küçültüldü */
    }

    .nav-orta {
        flex-direction: row; /* Yazıları yan yana sırala */
        align-items: center;
        padding-left: 0;
        padding-top: 5px;
        width: 100%;
        justify-content: center; /* Yan yana duran elemanları ortala */
    }

    .kategoriler {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .kategori-link {
        font-size: 12px;
        margin-right: 0;
    }

    .filtre-secenekleri {
        flex-direction: row; /* Yan yana sırala */
        width: auto;
        margin-top: 0;
        gap: 5px;
    }

    .siralama-menusu {
        font-size: 10px; /* Font boyutu daha da küçültüldü */
        padding: 5px 8px; /* Padding ayarlandı */
        width: auto;
    }

    .filtre-ikonu {
        padding: 5px; /* Padding ayarlandı */
        width: auto;
    }

    /* ... diğer mobil kodlar ... */

    /* Yıldızlı ürünler ve kombin ürünler kısmı düzeltildi */
    .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;
    }
    .yildizli-baslik-konteyner {
        width: 70%;
        height: auto;
        padding: 8px;
        border-radius: 6px 6px 0 0;
        text-align: center;
    }
    .yildizli-baslik {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 10px;
        white-space: nowrap;
    }
    .urun-kartlari-konteyner {
        display: flex;
        gap: 6px;
        padding: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
    }
    .urun-kart {
        width: 100px;
        height: 180px;
        flex-shrink: 0;
        padding: 4px;
    }
    .urun-kart img {
        height: 90px;
        margin-bottom: 6px;
        margin-top: 4px;
    }
    .urun-adi, .urun-fiyat {
        font-size: 6px;
    }

    /* 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;
    }
    
    /* E-bülten buton düzeltmesi */
    .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.newsletter button:hover {
        color: darkorange;
    }
    .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; /* Ekranın alt köşesine sabitler */
        bottom: 0; /* Ekranın en altına hizalar */
        left: 0; /* Ekranın en soluna hizalar */
        display: flex; /* Alt elemanları yan yana dizer */
        align-items: center; /* Dikey olarak hizalar */
        padding: 0 15px 12px 15px; /* Alttan ve yanlardan boşluk ekler */
        box-sizing: border-box;
        width: auto; /* İçeriğe göre genişliği ayarlar */
        gap: 10px; /* Görseller arasına boşluk bırakır */
        z-index: 999; /* Diğer içeriklerin üzerinde görünmesini sağlar */
    }
    
    .en-alt-kisim .sol-kisim,
    .en-alt-kisim .sag-kisim {
        position: static; /* Mutlak konumlandırmayı kaldırır, normal akışta kalır */
        right: auto;
        bottom: auto;
    }
    
    .en-alt-kisim .sol-kisim img,
    .en-alt-kisim .sag-kisim img {
        height: 10px; /* Görsel yüksekliği */
    }

    /* Ürün gridini düzenleme (mobil) */
    .urun-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .urun-kart-grid {
        padding: 10px;
        overflow: hidden;
    }

    .urun-kart-grid img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        display: block;
        object-fit: cover;
    }

    .urun-bilgisi {
        padding: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .urun-metinleri {
        flex: 0 0 60%; /* Ürün adının bulunduğu kısım %65 genişlik alır */
        max-width: 60%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .urun-adi-grid {
        font-size: 9px;
    }

    .urun-kategori-grid {
        font-size: 10px;
    }

    .urun-fiyat-grid {
        font-size: 9px;
    }
    
    .urun-fiyat-buton {
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    
    .urun-fiyat-grid .fiyat-ikon {
        width: 16px;
        height: auto;
    }

    .satin-al-butonu-grid {
        font-size: 12px;
        padding: 4px 8px;
    }
}