/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-top: 30px;
}

.categories ul {
    list-style: none;
    padding: 0;
}

.categories li {
    display: inline-block;
    margin-right: 10px;
}

.categories a {
    text-decoration: none;
    color: #007BFF;
}

.categories a:hover {
    text-decoration: underline;
}

/* Ürünler */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.product {
    width: 30%;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.product p {
    font-size: 1em;
    margin-bottom: 15px;
}

.product a {
    color: #28a745;
    text-decoration: none;
}

.product a:hover {
    text-decoration: underline;
}

/* Ürün Detay Sayfası */
.product-detail {
    display: flex;
    margin-top: 30px;
    column-gap: 32px;
}

.product-image {
    width: 40%;
    margin-right: 30px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-info h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.product-info form {
    margin-top: 20px;
}

.product-info input[type="number"] {
    width: 50px;
    padding: 5px;
    margin-right: 10px;
}

.product-info button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.product-info button:hover {
    background-color: #218838;
}
.mw-300 {
    max-width:300px!important;
}
/* Dropdown'ı hover ile açmak için özel CSS */
.dropdown:hover .dropdown-menu {
    display: block;
}

