.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
}

.product_cart {
    border: 0px solid #ddd;
    padding: 8px 8px;
    border-radius: 5px;
    text-align: center;
    width: 100%; /* 90 */
    background-color: #ffffff;
}

.product_cart img {
    width: 100%;  /* duzenlendi */
    height: auto;  /* duzenlendi */
    object-fit: cover;  /* duzenlendi */
}

.product_cart button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #e26727;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product_cart button:hover {
    background-color: #d05620;
}

.icon-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
    background-color:#fff; /* #4f75bd; */
    position: sticky;
    top: 0;
    z-index: 60;
}

.icon-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    color:#868686 ;     /*  #008080;*/
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.icon-bar i {
    font-size: 20px;
    margin-bottom: 5px;
}

.icon-bar .badge {
    position: absolute;
    top: -16px;
    right: -14px;
    background-color: #e26727;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.icon-bar a:hover {
    color: #ffb700;
}


  