body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
}
.top-menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px;
    padding-bottom: 0;
    background: #ffffff00;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.top-menu button {
    margin: 0 8px;
    padding: 12px 18px;
    border: none;
    background: white;
    color: #bb3c42;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.top-menu button:hover {
    background: #fff3e0;
}
.top-menu button.selected, .sticky-menu button.selected {
    background: #bb3c42;
    color: white;
}
.sticky-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#bb3c42e3;
    padding: 10px;
    text-align: center;
    z-index: 999;
    overflow-x: auto;
    white-space: nowrap;
}
.sticky-menu div {
    display: flex;
    gap: 10px;
    padding: 5px;
}
.sticky-menu button {
    background: white;
    color: #bb3c42;
    border-radius: 15px;
    padding: 6px 12px;
    border: none;
}
.menu-section {
    padding: 150px 20px 10px;
    text-align: center;
}
.menu-section img {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.accordion-button {
    background: #bb3c42 !important;
    color: white !important;
    font-weight: 600;
}
.accordion-button:hover {
    background: #bb3c42 !important;
}
.accordion-body {
    padding: 0.1rem;
}
.horizontal-products {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 1px;
    white-space: nowrap;
}
.product-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
    margin: 10px!important;
}
.product-card img {
    max-width: 80px;
    border-radius: 10px;
    margin-right: 20px;
}
.price {
    font-size: 1.2em;
    color: #28a745;
}
.old-price {
    text-decoration: line-through;
    color: red;
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #bb3c42;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}
.scroll-to-top:hover {
    background-color: #bb3c42;
}
.search-input {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: none;
    z-index: 1001;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.product-list {
    display: none;
    padding: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1002;
}
.close-search {
    position: initial;
    right: 10px;
    top: 0px;
    background: transparent;
    border: none;
    color: #bb3c42;
    font-size: 15px;
    cursor: pointer;
}
.search-button {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Arama butonunun sol altta görünmesi için konumlandırma */
    background: #bb3c42;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    z-index: 1001;
    cursor: pointer;
    display: flex; /* Mobilde görünür olması için */
    align-items: center; /* İkonu dikey olarak ortala */
    justify-content: center; /* İkonu yatay olarak ortala */
}
.search-button:hover {
    background: #a52c34;
}
a {
    color:rgb(32,32,32)!important;
    text-decoration:none!important;
}
.selected{
    font-weight: bolder!important;
    color: #a52c34!important;
}

.ml-3{
    margin-left: 1rem;
}