.dining-catalog-section {
    padding: 60px 0;
    background-color: #f8faff; /* Matches screenshot background */
    font-family: 'Poppins', sans-serif;
}

.catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-header p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Card Design */
.catalog-card {
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.5s ease;
}

.catalog-card:hover .product-img img {
    transform: translateY(-10px) scale(1.05);
}

.product-info .offer-tag {
    display: block;
    font-size: 12px;
    color: #003399; /* Deep Blue Offer Text */
    font-weight: 500;
    margin-bottom: 5px;
}

.product-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000080; /* Navy Blue like screenshot */
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.shop-now-btn:hover {
    background: #D4AF37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation Buttons Styling */
.custom-nav {
    color: #000 !important;
    background: rgba(255,255,255,0.9);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.custom-nav:after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .catalog-header h2 { font-size: 18px; }
    .product-img { height: 150px; }
}