.product-card {
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
text-align: center;
transition: box-shadow 0.3s ease;
height: 250px;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: #f8f9fa; /* Bootstrap’in açık gri tonu */
}
.product-card:hover {
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.btn-hover {
transition: all 0.3s ease;
}
.btn-hover:hover {
transform: scale(1.1);
background-color: #0d6efd !important; /* Bootstrap primary */
color: white !important;
box-shadow: 0 4px 8px rgba(13,110,253,0.5);
}
.binary-separator {
width: 100%;
text-align: center;
font-family: monospace;
font-size: 7px;       /* Çok küçük puntolar */
color: #4598fb;
letter-spacing: 2px;  /* Harfler arası boşluk */
user-select: none;    /* Seçilmeyi engeller */
margin: 40px 0;
white-space: nowrap;  /* Satır kayması olmasın */
overflow-x: auto;     /* Taşarsa yatay scroll olur */
}