/* Talabat Menu Styles */
.talabat-menu-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0px;
	background-color: transparent;
	font-family: "Times New Roman", Sans-serif;
}

/* Search Bar */
.talabat-search-container {
    position: relative;
    margin-bottom: 20px;
}

.talabat-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #ebe8d9;
    color: #000;
    outline: none;
	font-weight: 500;
}

.talabat-search-input::placeholder {
    color: #888;
}

.talabat-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
	width: 20px;
}

/* Category Navigation */
.talabat-categories-wrapper {
    margin-bottom: 0px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.talabat-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.talabat-categories-nav {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    min-width: min-content;
}

.talabat-category-btn {
    padding: 8px 24px;
    background-color: transparent;
    border: none;
    color: #c9a961;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.talabat-category-btn:hover,
.talabat-category-btn.active {
    color: #d4b574;
    border-bottom: 2px solid #c9a961;
	background-color: transparent;
}

/* Static Images Section */
.talabat-static-images-wrapper {
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.talabat-static-images {
    display: flex;
    gap: 15px;
    padding: 20px 0 5px 0;
    min-width: min-content;
}

.talabat-static-image-item {
    flex: 0 0 auto;
    width: 145px;
    text-align: center;
}

.talabat-static-image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px !important;
    margin-bottom: 8px;
}

.talabat-static-image-title {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* Menu Categories */
.talabat-menu-category {
    margin-bottom: 50px;
}

.talabat-category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.talabat-category-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Menu Grid */
.talabat-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.talabat-menu-item {
	background: #EBE8D9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.talabat-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.talabat-item-image {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.talabat-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.talabat-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
	display: none;
}

.talabat-menu-item:hover .talabat-item-overlay {
    opacity: 1;
}

.talabat-item-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.talabat-item-content {
	padding: 20px;
}

.talabat-item-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0px;
	color: #1a1a1a;
	margin-top: 0px;
}

.talabat-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #c9a961;
    margin-bottom: 8px;
}

.talabat-item-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Loading State */
.talabat-loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

/* No Results */
.talabat-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.talabat-no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

/* Hide class for categories */
.talabat-hidden {
    display: none !important;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .talabat-menu-wrapper {
        padding: 0px;
    }
    
    .talabat-categories-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }
    
    .talabat-static-images-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }
    
    .talabat-static-image-item {
        width: 120px;
    }
    
    .talabat-static-image-item img {
        height: 120px;
    }
    
    .talabat-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .talabat-category-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .talabat-menu-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .talabat-static-image-item {
        width: 100px;
    }
    
    .talabat-static-image-item img {
        height: 100px;
    }
    
    .talabat-category-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
	
	.talabat-item-content {
	padding: 10px;
}
	
	.talabat-item-title {
	font-size: 14px;
}
}

/* Scrollbar Styling for horizontal scroll */
.talabat-static-images-wrapper::-webkit-scrollbar {
    height: 6px;
}

.talabat-static-images-wrapper::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.talabat-static-images-wrapper::-webkit-scrollbar-thumb {
    background: #c9a961;
    border-radius: 10px;
}

.talabat-static-images-wrapper::-webkit-scrollbar-thumb:hover {
    background: #b59551;
}