
.ResimKart1 {
      position: relative;
      overflow: hidden;        /* taşan overlay'i kes */
      border-radius: 12px;
      cursor: pointer;
  }

.ResimKart1 img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;   /* hover'da hafif zoom */
}

.Gorunen {
    position: absolute;
    /*inset: 0;*/ 
    bottom :0;                          /* top/right/bottom/left: 0 */
    transition: opacity 0.35s ease;
    display: flex;
             /* içeriği alta yasla */
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(20, 20, 30, 0.92) 0%,    /* altta koyu kırmızı */
        rgba(220, 20, 30, 0.0) 80%     /* üstte şeffaf */
    );
    width:100%;
    height: 20%;
}

.Gorunen h4 {
    position: absolute;
    bottom :0;                          /* top/right/bottom/left: 0 */
    transition: all 0.35s ease;
    color:white;
    z-index: 1000000;
}
/* Overlay — normalde tamamen şeffaf */
.Gorunen2 {
    position: absolute;
    inset: 0;                           /* top/right/bottom/left: 0 */
    background: linear-gradient(
        to top,
        rgba(220, 20, 30, 0.92) 0%,    /* altta koyu kırmızı */
        rgba(220, 20, 30, 0.0) 60%   
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

/* Yazı bloğu — başlangıçta 20px aşağıda */
.Aciklamalar {
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.Aciklama1 {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(255,255,255,.75);
    margin-bottom: .35rem;
}

.Aciklama2 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* Hover tetikleyici */
.ResimKart1:hover .Gorunen2 {
    opacity: 1;                         
}
.ResimKart1:hover .Gorunen {
    background:transparent;
}

.ResimKart1:hover .Gorunen h4 {
    bottom:50px;                       
}

.ResimKart1:hover .Aciklamalar {
    transform: translateY(0); 
}
.ResimKart1:hover img {
    transform: scale(1.05);
}