/* =============================== BREAKFAST PAGE VIBRANT STYLES ================================= */

/* Bright Morning Color Palette */
:root {
    --breakfast-sunrise: #FF6B6B;
    --breakfast-orange: #FFA07A;
    --breakfast-yellow: #FFD93D;
    --breakfast-mint: #4ECDC4;
    --breakfast-sky: #95E1D3;
    --breakfast-cream: #FFF9E6;
    --breakfast-brown: #8B6F47;
    --breakfast-dark: #2C3E50;
}

/* =============================== HERO SECTION ================================= */
.breakfast-hero {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA07A 50%, #FFD93D 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.morning-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2), transparent);
    animation: morningGlow 8s ease-in-out infinite;
}

@keyframes morningGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 60px;
    animation: floatAround 15s ease-in-out infinite;
}

.coffee-steam {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pancake-flip {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.fruit-bowl {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    25% { transform: translate(30px, -30px) rotate(10deg); opacity: 0.6; }
    50% { transform: translate(-20px, 20px) rotate(-10deg); opacity: 0.4; }
    75% { transform: translate(40px, 10px) rotate(5deg); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    opacity: 0.95;
}

.hero-search-wrapper {
    max-width: 600px;
}

.hero-search-form .input-group-text {
    background: white;
    border: none;
    border-radius: 50px 0 0 50px;
}

.hero-search-form .form-control {
    border: none;
    padding: 15px 20px;
}

.hero-search-form .btn-breakfast {
    background: var(--breakfast-dark);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    font-weight: 700;
}

/* =============================== CAROUSEL ================================= */
.featured-breakfast-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.featured-overlay h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 20px;
}

/* =============================== BREAKFAST CATEGORIES ================================= */
.breakfast-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.breakfast-category-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.breakfast-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--breakfast-sunrise), var(--breakfast-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.breakfast-category-card:hover::before {
    transform: scaleX(1);
}

.breakfast-category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--breakfast-cream), var(--breakfast-sky));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.breakfast-category-card:hover .category-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--breakfast-sunrise), var(--breakfast-orange));
}

.category-icon-wrapper i {
    font-size: 50px;
    color: var(--breakfast-brown);
    transition: color 0.4s ease;
}

.breakfast-category-card:hover .category-icon-wrapper i {
    color: white;
}

.category-name {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.breakfast-category-card:hover .category-name {
    color: var(--breakfast-sunrise);
}

.category-subtitle {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.category-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-arrow i {
    font-size: 24px;
    color: var(--breakfast-sunrise);
}

.breakfast-category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =============================== BUILD YOUR BREAKFAST ================================= */
.bg-breakfast-gradient {
    background: linear-gradient(135deg, var(--breakfast-mint) 0%, var(--breakfast-sky) 100%);
}

.build-breakfast-module {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.build-option-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.build-option-card h5 {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.build-option-card h5 i {
    color: var(--breakfast-sunrise);
    margin-right: 10px;
}

.option-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    background: var(--breakfast-cream);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--breakfast-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-btn:hover {
    background: white;
    border-color: var(--breakfast-sunrise);
    transform: translateX(5px);
}

.option-btn.active {
    background: linear-gradient(135deg, var(--breakfast-sunrise), var(--breakfast-orange));
    color: white;
    border-color: var(--breakfast-sunrise);
    transform: scale(1.05);
}

/* =============================== BREAKFAST BY MOOD ================================= */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.mood-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
}

.mood-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--mood-color);
    text-decoration: none;
}

.mood-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: var(--mood-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mood-card:hover .mood-icon {
    transform: scale(1.1) rotate(10deg);
}

.mood-icon i {
    font-size: 45px;
    color: white;
}

.mood-name {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.mood-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* =============================== QUICK BREAKFAST CARDS ================================= */
.quick-badge {
    display: inline-block;
    background: var(--breakfast-yellow);
    color: var(--breakfast-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.quick-breakfast-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.quick-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.quick-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.quick-breakfast-card:hover .quick-image-wrapper img {
    transform: scale(1.1);
}

.quick-time-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--breakfast-yellow);
    color: var(--breakfast-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.quick-card-body {
    padding: 25px;
}

.quick-card-body h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.quick-card-body h5 a {
    color: var(--breakfast-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-card-body h5 a:hover {
    color: var(--breakfast-sunrise);
}

.btn-outline-breakfast {
    border: 2px solid var(--breakfast-sunrise);
    color: var(--breakfast-sunrise);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-breakfast:hover {
    background: var(--breakfast-sunrise);
    color: white;
}

/* =============================== MORNING DRINKS ================================= */
.drinks-carousel-wrapper {
    padding: 20px 0;
}

.drink-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.drink-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.drink-card:hover img {
    transform: scale(1.1);
}

.drink-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.drink-card:hover .drink-overlay {
    transform: translateY(0);
    opacity: 1;
}

.drink-overlay h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* =============================== WORLD BREAKFAST ================================= */
.bg-world-breakfast {
    background: linear-gradient(135deg, var(--breakfast-sunrise) 0%, var(--breakfast-orange) 100%);
    position: relative;
}

.bg-world-breakfast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.world-breakfast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.world-breakfast-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.world-breakfast-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.world-flag {
    font-size: 60px;
    margin-bottom: 15px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.world-country {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.world-dish {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.world-explore {
    color: var(--breakfast-sunrise);
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.world-breakfast-card:hover .world-explore {
    opacity: 1;
    transform: translateY(0);
}

/* =============================== CHEF'S MORNING PICKS ================================= */
.chef-morning-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.chef-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.chef-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--breakfast-cream), var(--breakfast-sky));
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-placeholder i {
    font-size: 80px;
    color: var(--breakfast-brown);
    opacity: 0.3;
}

.chef-card-body {
    padding: 25px;
}

.chef-name {
    color: var(--breakfast-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.chef-tip {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--breakfast-sunrise);
}

.chef-tip i {
    color: var(--breakfast-sunrise);
    margin-right: 5px;
}

/* =============================== HEALTHY TIPS ================================= */
.bg-tips-gradient {
    background: linear-gradient(135deg, var(--breakfast-mint) 0%, var(--breakfast-sky) 50%, var(--breakfast-yellow) 100%);
}

.tip-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon i {
    font-size: 40px;
    color: var(--breakfast-sunrise);
}

.tip-title {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.tip-content {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================== WEEKEND BRUNCH ================================= */
.brunch-badge {
    display: inline-block;
    background: var(--breakfast-orange);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.brunch-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brunch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.brunch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brunch-card:hover img {
    transform: scale(1.1);
}

.brunch-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.brunch-card:hover .brunch-overlay {
    transform: translateY(0);
    opacity: 1;
}

.brunch-overlay h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* =============================== MEAL PREP ================================= */
.meal-prep-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.prep-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--breakfast-cream), var(--breakfast-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prep-icon i {
    font-size: 40px;
    color: var(--breakfast-brown);
}

.prep-name {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.prep-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.prep-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.prep-detail-item i {
    color: var(--breakfast-sunrise);
    font-size: 1.1rem;
}

/* =============================== ALL BREAKFAST RECIPES ================================= */
.breakfast-recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.recipe-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.recipe-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.breakfast-recipe-card:hover .recipe-image-wrapper img {
    transform: scale(1.1);
}

.recipe-hover-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.breakfast-recipe-card:hover .recipe-hover-actions {
    opacity: 1;
    transform: translateY(0);
}

.hover-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hover-action-btn:hover {
    transform: scale(1.15) rotate(10deg);
}

.hover-action-btn i {
    color: var(--breakfast-sunrise);
}

.recipe-difficulty {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--breakfast-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.recipe-card-body {
    padding: 20px;
}

.recipe-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.recipe-title a {
    color: var(--breakfast-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recipe-title a:hover {
    color: var(--breakfast-sunrise);
}

.recipe-teaser {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.recipe-meta {
    color: var(--breakfast-brown);
    font-size: 0.85rem;
    font-weight: 600;
}

.recipe-meta i {
    margin-right: 5px;
}

/* =============================== FLOATING TOP BUTTON ================================= */
.floating-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--breakfast-sunrise), var(--breakfast-orange));
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.floating-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    text-decoration: none;
    color: white;
}

.floating-top-btn i {
    font-size: 24px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(255, 107, 107, 0.6); }
}

/* =============================== SECTION TITLES ================================= */
.breakfast-title {
    color: var(--breakfast-dark);
}

.breakfast-title i {
    color: var(--breakfast-sunrise);
    margin-right: 10px;
}

/* =============================== EMPTY STATE ================================= */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 100px;
    color: var(--breakfast-cream);
    margin-bottom: 20px;
}

.empty-state h4 {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
}

/* =============================== RESPONSIVE DESIGN ================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .breakfast-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .mood-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .world-breakfast-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .float-item {
        font-size: 40px;
    }
    
    .breakfast-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .build-breakfast-module {
        padding: 25px;
    }
    
    .mood-grid {
        grid-template-columns: 1fr;
    }
    
    .world-breakfast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-top-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
    }
}

/* =============================== ANIMATIONS ================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* =============================== SMOOTH SCROLL ================================= */
html {
    scroll-behavior: smooth;
}

/* =============================== UTILITY CLASSES ================================= */
.btn-breakfast {
    background: linear-gradient(135deg, var(--breakfast-sunrise), var(--breakfast-orange));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-breakfast:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.bg-light {
    background-color: var(--breakfast-cream) !important;
}

/* =============================== MICRO-INTERACTIONS ================================= */
.breakfast-category-card,
.mood-card,
.quick-breakfast-card,
.world-breakfast-card,
.chef-morning-card,
.tip-card,
.brunch-card,
.meal-prep-card,
.breakfast-recipe-card {
    will-change: transform;
}

/* Hover lift effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Animated gradient backgrounds */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-breakfast-gradient,
.bg-world-breakfast,
.bg-tips-gradient {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Steaming coffee animation */
@keyframes steam {
    0% { transform: translateY(0) scaleX(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scaleX(1.2); opacity: 0.4; }
    100% { transform: translateY(-40px) scaleX(1); opacity: 0; }
}

.coffee-steam::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: steam 3s ease-in-out infinite;
}


/* =============================== COMPACT RECIPE CARDS ================================= */
.breakfast-recipe-card-compact {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.breakfast-recipe-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.recipe-image-wrapper-compact {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.recipe-image-wrapper-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.breakfast-recipe-card-compact:hover .recipe-image-wrapper-compact img {
    transform: scale(1.08);
}

.recipe-hover-actions-compact {
    position: absolute;
    top: 8px;
    right: 8px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.breakfast-recipe-card-compact:hover .recipe-hover-actions-compact {
    opacity: 1;
    transform: translateY(0);
}

.hover-action-btn-compact {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hover-action-btn-compact:hover {
    transform: scale(1.1);
}

.hover-action-btn-compact i {
    color: var(--breakfast-sunrise);
    font-size: 16px;
}

.recipe-time-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--breakfast-dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.recipe-card-body-compact {
    padding: 12px;
}

.recipe-title-compact {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.recipe-title-compact a {
    color: var(--breakfast-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-title-compact a:hover {
    color: var(--breakfast-sunrise);
}

.empty-state-compact {
    text-align: center;
    padding: 50px 20px;
}

.empty-state-compact i {
    font-size: 70px;
    color: var(--breakfast-cream);
    margin-bottom: 15px;
}

.empty-state-compact h5 {
    color: var(--breakfast-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state-compact p {
    color: #999;
    margin: 0;
}

/* =============================== PAGINATION STYLING ================================= */
.breakfast-pagination {
    margin: 20px 0 10px;
}

.breakfast-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.breakfast-pagination .page-item {
    margin: 0;
}

.breakfast-pagination .page-link {
    background: white;
    border: 2px solid #e8e8e8;
    color: var(--breakfast-dark);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    justify-content: center;
}

.breakfast-pagination .page-link:hover {
    background: var(--breakfast-sunrise);
    border-color: var(--breakfast-sunrise);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.breakfast-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--breakfast-sunrise), var(--breakfast-orange));
    border-color: var(--breakfast-sunrise);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    cursor: default;
}

.breakfast-pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e8e8e8;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.breakfast-pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background: #f5f5f5;
    border-color: #e8e8e8;
    color: #ccc;
}

.breakfast-pagination .page-link i {
    font-size: 16px;
}

/* Previous/Next buttons - make them stand out */
.breakfast-pagination .page-item:first-child .page-link,
.breakfast-pagination .page-item:last-child .page-link {
    padding: 8px 20px;
    font-weight: 700;
    background: var(--breakfast-cream);
}

.breakfast-pagination .page-item:first-child .page-link:hover,
.breakfast-pagination .page-item:last-child .page-link:hover {
    background: var(--breakfast-sunrise);
}

/* Responsive pagination */
@media (max-width: 576px) {
    .breakfast-pagination .pagination {
        gap: 4px;
    }
    
    .breakfast-pagination .page-link {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 38px;
    }
    
    .breakfast-pagination .page-item:first-child .page-link,
    .breakfast-pagination .page-item:last-child .page-link {
        padding: 6px 14px;
    }
    
    /* Hide page numbers on very small screens, keep only prev/next */
    .breakfast-pagination .page-item:not(:first-child):not(:last-child) {
        display: none;
    }
    
    .breakfast-pagination .page-item.active {
        display: inline-block;
    }
}

/* Compact section spacing */
.section.pt-4 {
    padding-top: 2.5rem !important;
}

.section.pb-4 {
    padding-bottom: 2.5rem !important;
}
