/* Combo Card Styles */
.combo-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.combo-card.featured {
    border: 2px solid #D89B1D;
    position: relative;
}

.combo-card.featured::before {
    content: "⭐ MOST POPULAR";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #D89B1D;
    color: #4B2E20;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.combo-header {
    background: linear-gradient(135deg, #C67E12 0%, #C67E12 50%, #FFD580 100%);
    color: white;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.veg-badge {
    background: #008000;
    color: white;
}

.non-veg-badge {
    background: #B22222;
    color: white;
}

.best-seller {
    background: #D89B1D;
    color: #4B2E20;
}

.premium {
    background: #4B2E20;
    color: white;
}

.mega {
    background: #4B2E20;
    color: white;
}

.combo-price {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    width: 75%;
}

.combo-body {
    padding: 25px;
}

.combo-title {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.combo-items {
    margin-bottom: 25px;
}

.combo-items .item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
	gap:2px !important;
    border-bottom: 1px solid #f0f0f0;
}

.combo-items .item:last-child {
    border-bottom: none;
}

.combo-items .item i {
    margin-right: 10px;
    font-size: 16px;
}

.combo-items .item span {
    color: #444444;
    font-size: 15px;
	font-family: 'Roboto', sans-serif;
}

.combo-footer {
    margin-top: 20px;
}

.combo-footer .btn {
    border-radius: 25px;
    padding: 12px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.combo-footer .btn i {
    font-size: 1.2rem;
}

/* Make buttons side by side */
.combo-footer .row {
    display: flex;
    gap: 10px;
}

.combo-footer .row > * {
    flex: 1;
}

.combo-footer .row {
    margin: 0;
}

.combo-footer .col-6 {
    padding: 0 5px;
}

.combo-footer .btn-primary {
    background: #4B2E20;
    color: white;
}

.combo-footer .btn-primary:hover {
    background: #a0522d;
    transform: translateY(-2px);
}

.combo-footer .btn-success {
    background: #25d366;
    color: white;
}

.combo-footer .btn-success:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Gift Card Styles */
.gift-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.gift-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D89B1D;
}

.gift-card h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.gift-card p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fef7e0 0%, #f5e6d3 50%, #f0d9c7 100%);
    border-radius: 20px;
    padding: 50px 30px;
    margin: 50px 0;
    border: 2px solid #D89B1D;
}

.cta-section h2 {
    color: #4B2E20;
    font-weight: 700;
}

.cta-section .btn {
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section .btn-warning {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-section .btn-warning:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-section .btn-outline-primary {
    border: 2px solid #4B2E20;
    color: #4B2E20;
    background: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-outline-primary:hover {
    background: #4B2E20;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .combo-card.featured::before {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .combo-header {
        padding: 15px;
    }
    
    .combo-price {
        font-size: 1.5rem;
    }
    
    .combo-body {
        padding: 20px;
    }
    
    .gift-card {
        padding: 20px;
    }
    
    .gift-icon {
        font-size: 2rem;
    }
}

/* Animation for cards */
.combo-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for multiple cards */
.combo-card:nth-child(1) { animation-delay: 0.1s; }
.combo-card:nth-child(2) { animation-delay: 0.2s; }
.combo-card:nth-child(3) { animation-delay: 0.3s; }
.combo-card:nth-child(4) { animation-delay: 0.4s; }
.combo-card:nth-child(5) { animation-delay: 0.5s; }
.combo-card:nth-child(6) { animation-delay: 0.6s; }
