body {
    font-family: "Rubik", sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Kategori Menü Tasarımı */
.categories-menu {
    display: flex;
    justify-content: center;
    padding: 15px 10px;
    background-color: #1e293b;
    border-bottom: 3px solid #64748b;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.categories-container {
    display: flex;
    gap: 20px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #3b82f6 #1e293b; /* Firefox */
}

.categories-container::-webkit-scrollbar {
    height: 6px;
}

.categories-container::-webkit-scrollbar-thumb {
    background-color: #3b82f6;
    border-radius: 10px;
}

.categories-container::-webkit-scrollbar-track {
    background-color: #1e293b;
}

.category-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.category-name {
    white-space: nowrap;
    font-family: 'Rubik', sans-serif;
    color: #ffffff;
}

@media (max-width: 768px) {
    .category-link {
        font-size: 12px;
        padding: 10px 15px;
    }
}

.product {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 18px;
    color: #1e293b;
    margin: 0;
}

.product-info p {
    margin: 5px 0;
    color: #475569;
    font-size: 14px;
}

.prices {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #475569;
    margin-top: 10px;
}

.prices span {
    font-weight: bold;
    color: #2563eb;
}

.info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #f43f5e;
    cursor: pointer;
    transition: color 0.3s;
}

.info-icon:hover {
    color: #3b82f6;
}
