body {
    padding-top: 70px; 
}

#kahveSlider {
    max-width: 2000px;
    margin: 0 auto;
    max-height: 400px; 
    overflow: hidden; 
    align-items: center; 
   
    display: flex;
}

.slider-content {
    min-height: 450px;
    display: flex;
   
    align-items: center;
    background-color: #f5f5f5; 
    padding: 20px 0;
    
}


.slider-row {
    width: 100%;
    margin: 0;

}


.slider-picture-area {
    padding: 20px;

}


.slider-img {
   
  
    display: flex;
    align-items: center;
    justify-content: center;
 
    padding: 10px;
    box-sizing: border-box;
    height: 500px; 
    width: auto !important;
    object-fit: contain; 
    margin: 0 auto;
}


.slider-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
     display: flex;
     align-items: center;
}

.slider-subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 25px;
 display: flex;
}


.btn-slider {
    padding: 10px 25px;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #333; 
    border-radius: 50%;
    opacity: 0;

}

.theme-slider-picture img {
    height: 500px;
    object-fit: contain; 
    background-color: #f5f5f5;
    width: 70%;
}
.theme-slider-content {
    background-color: #f5f5f5;
    padding: 40px 0;
}



.products-container {
    display: flex;
    max-height: 250px;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
    padding: 20px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.product-card {
    height: 225px;
 flex-direction: column;
    width: 200px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    margin: 0; 
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2ecc71;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
}

.card-image {
    width: 100%;
 
    max-height: 85px;


    display: flex;
    align-items: center;   
    justify-content: center;
    
    background-color: #f9f9f9;
    padding: 10px;
    box-sizing: border-box;
    
}

.card-image img {
  
    width: auto;
    height: auto; 
    
   
    max-width: 100%;
    max-height: 100%; 
    object-fit: contain;
}

.card-content {
    padding: 15px;
    text-align: center;
    margin-top: -10px;
}
.product-link {
            text-decoration: none;
            color: inherit;
        }

.product-title {
    font-size: 15px;
    color: #1b1414;
    margin-top: 25px;
    font-weight: 600;
    line-height: 1.4;
    height: auto;
    overflow: hidden;
}

.product-price {
    font-size: 16px;
    color: #d35400;
    font-weight: bold;
    margin-top: 10px;
}

.add-btn {
    
    width: 50px;
    height: 50px; 
    padding: 0; 
    
  
    margin: 0;
    background-color:transparent;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;


   
    position: relative; 
    text-align: center;
}


.add-btn::after {
   
    content: "\f07a"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 

    
    position: absolute;
  
 
    transform: translate(-50%, -50%); 
    font-size: 25px;
    color: rgb(245, 107, 43); 
}


.add-btn:hover {
    background-color: #555;
}

.products-section {
    padding: 20px 0 50px; 
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
    margin-bottom: 20px; 
}
.section-header h2 {
    margin: 0; 
    font-size: 24px;
    font-weight: 600;
}

.view-all-btn {
    display: inline-block; 
    padding: 8px 20px; 
    background-color: #d35400;
    color: white;
    text-decoration: none; 
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background-color: #e67e22;
}




.mobile-bottom-menu {
        display: none;
    }

 
    @media screen and (max-width: 800px) {
        .mobile-bottom-menu {
            display: flex;           
            justify-content: space-around; 
            align-items: center;      
            
            position: fixed;          
            bottom: 0;               
            left: 0;               
            width: 100%;           
            
            height: 60px;         
            background-color: #fff;   
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1); 
            z-index: 1000;            
        }

      
        .mobile-bottom-menu a {
            text-decoration: none;
            color: #333;
            font-size: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .product-link {
            text-decoration: none;
            color: inherit;
        }
       
        body {
            padding-bottom: 70px; 
        }
    }