/* Hero Section */
.hero-section {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #fff6f5 0%, #fff 100%);
    border-radius: 0 0 24px 24px;
    margin-bottom: 50px;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    background: #ffe3e0;
    color: var(--primary-color);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--dark-bg);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 6px solid #ffffff;
    max-height: 420px;
    object-fit: cover;
    width: 100%;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Feature Section */
.features-section {
    padding: 20px 0 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fdfbfb;
    border: 1px solid var(--border-color);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(217, 56, 30, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
}

/* Menu Grid */
.menu-section {
    padding: 40px 0 60px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 22px;
    border-radius: 30px;
    background: #f3f4f6;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Product Card Hidden State */
.product-card.hidden {
    display: none !important;
}

.product-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-rating {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.add-cart-btn {
    background: rgba(217, 56, 30, 0.1);
    color: var(--primary-color);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.add-cart-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Load More Wrap */
.load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

/* Sweets Banner */
.sweets-banner {
    background: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.85)), url('../img/sweets-bg.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 60px 40px;
    color: #ffffff;
    text-align: center;
    margin: 50px 0;
}

.sweets-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.sweets-banner p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px;
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .hero-grid { flex-direction: column; }
    .hero-content h1 { font-size: 2rem; }
    .sweets-banner h2 { font-size: 1.8rem; }
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.action-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.buy-now-btn {
    background-color: #e67e22;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #d35400;
    color: #fff;
}