:root {
        --brand-burgundy: #850E35;
        --brand-rose: #EE6983;
        --brand-pink: #FFC4C4;
        --brand-cream: #FFF5E4;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background-color: var(--brand-cream);
    }

    /* BeautyGo Homepage Styles */

/* Hero Carousel Styles */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(133, 14, 53, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    color: white;
    z-index: 10;
    padding: 2rem;
    max-width: 800px;
}

.carousel-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.carousel-btn {
    background-color: var(--color-burgundy);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.carousel-btn:hover {
    background-color: var(--color-rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 105, 131, 0.4);
    color: white;
}

.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-arrow.left {
    left: 2rem;
}

.carousel-arrow.right {
    right: 2rem;
}

/* Hero Section with Search */
.hero-section-new {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-rose) 100%);
    padding: 3rem 0 2rem 0;
    color: white;
}

.hero-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

/* Search Bar */
.search-bar-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.search-bar-container {
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.search-icon {
    color: var(--color-burgundy);
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.search-input {
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-divider {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

.search-category-group {
    position: relative;
    padding: 0 1rem;
}

.search-category-select {
    border: none;
    outline: none;
    font-size: 1rem;
    padding-right: 2rem;
    background: transparent;
    cursor: pointer;
    color: #333;
    appearance: none;
}

.category-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-burgundy);
}

/* Business Card Base */
.business-card {
    position: relative;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* Image Section */
.business-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.business-card:hover .business-card-img img {
    transform: scale(1.05);
}

/* Badges */
.airbnb-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-burgundy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.distance-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-burgundy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Suggested badge */
.suggested-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #2196F3, #00BCD4);
    color: white;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.suggested-badge i {
    font-size: 0.75rem;
}

/* Heart Button */
.airbnb-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.airbnb-favorite-btn:hover {
    background: var(--color-pink);
    color: var(--color-burgundy);
}

/* Card Content */
.business-card-content {
    padding: 12px;
}

.business-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-burgundy);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.business-type-location {
    color: #717171;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

/* Rating */
.airbnb-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
    font-size: 0.85rem;
}

.airbnb-rating i {
    color: var(--color-rose);
}

.rating-count {
    color: #717171;
    font-size: 0.85rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #717171;
}

.empty-state i {
    font-size: 4rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.business-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Favorite button states */
.airbnb-favorite-btn.favorited {
    background: var(--color-burgundy);
}

.airbnb-favorite-btn.favorited i {
    color: white;
}

.airbnb-favorite-btn i {
    transition: all 0.3s ease;
}

/* Compact Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #717171;
}

/* Compact Featured Section */
.featured-section {
    background: linear-gradient(135deg, #fff5e4 0%, #ffe8e8 100%);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}

/* Compact Section spacing */
.businesses-section {
    padding: 2rem 0;
}

/* Compact Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* OPTIMIZED Category Card Styles - Replace existing .category-card styles */

.category-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    /* OPTIMIZED: Only transition what's necessary */
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    /* Add will-change for better performance */
    will-change: transform;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-rose));
}

/* OPTIMIZED: Faster icon transitions */
.category-icon {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(13%) sepia(85%) saturate(3000%) hue-rotate(330deg) brightness(90%) contrast(95%);
    /* OPTIMIZED: Smooth but quick transition */
    transition: filter 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon-img,
.category-card.active .category-icon-img {
    filter: brightness(0) invert(1);
    transform: scale(1.15) rotate(5deg);
}

/* Alternative: White icons on hover when background changes */
.category-card:hover .category-icon-img {
    filter: brightness(0) invert(1);
    transform: scale(1.15) rotate(5deg);
}

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

.category-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-burgundy);
    /* OPTIMIZED: Quick color transition */
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-name,
.category-card.active .category-name {
    color: white;
}

.category-count {
    font-size: 0.85rem;
    color: #717171;
    /* OPTIMIZED: Quick color transition */
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-count,
.category-card.active .category-count {
    color: rgba(255,255,255,0.9);
}

/* Prevent hover effect when force-inactive (after deselecting while hovering) */
.category-card.force-inactive {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    background: white !important;
}

.category-card.force-inactive .category-icon-img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(85%) saturate(3000%) hue-rotate(330deg) brightness(90%) contrast(95%) !important;
    transform: none !important;
}

.category-card.force-inactive .category-name {
    color: var(--color-burgundy) !important;
}

.category-card.force-inactive .category-count {
    color: #717171 !important;
}

/* Badge variations */
.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* View All Button - Add this to your styles.css file */
.view-all-btn {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    background-color: white;
    color: var(--color-burgundy);
    border: 2px solid var(--color-burgundy);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: auto;
    width: auto;
}

.view-all-btn:hover {
    background-color: var(--color-burgundy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(133, 14, 53, 0.3);
}

.view-all-btn i {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.view-all-btn:hover i {
    color: white;
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-pink), transparent);
    margin: 2.5rem 0;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-rose));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(133, 14, 53, 0.4);
    z-index: 1000;
    overflow: hidden;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-rose), var(--color-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top-btn:hover::before {
    opacity: 1;
}

.back-to-top-btn i {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.back-to-top-text {
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: -2px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.back-to-top-btn:hover {
    transform: translateY(0) scale(1.1);
    box-shadow: 0 8px 30px rgba(238, 105, 131, 0.6);
}

.back-to-top-btn:hover i {
    transform: translateY(-3px);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Empty State for Individual Sections */
.section-empty-state {
    display: none;
    width: 100%;
    padding: 2rem 0;
}

.empty-state-mini {
    text-align: center;
    padding: 4rem 2rem;
    color: #717171;
}

.empty-state-mini i {
    font-size: 4rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.empty-state-mini p {
    margin: 0;
    font-size: 1rem;
    color: #717171;
}

/* ==================== CUSTOM TOAST NOTIFICATIONS ==================== */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.custom-toast {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(133, 14, 53, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 400px;
    pointer-events: all;
    cursor: pointer;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.hide {
    transform: translateX(400px);
    opacity: 0;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.custom-toast.success .toast-icon {
    background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-rose));
    color: white;
}

.custom-toast.error .toast-icon {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
}

.custom-toast.warning .toast-icon {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: white;
}

.custom-toast.info .toast-icon {
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-cream));
    color: var(--brand-burgundy);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #333;
}

.toast-message {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.toast-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    color: #666;
}

.toast-close:hover {
    background: #e0e0e0;
    color: #333;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-rose));
    border-radius: 0 0 12px 12px;
    animation: progress 3s linear;
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .custom-toast {
        min-width: auto;
        width: 100%;
    }
}

/* ==================== LOGIN REQUIRED MODAL ==================== */

.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(133, 14, 53, 0.3);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.login-modal-overlay.show .login-modal {
    transform: scale(1) translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #666;
    font-size: 1.2rem;
}

.login-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.login-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(133, 14, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(133, 14, 53, 0);
    }
}

.login-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-burgundy);
    text-align: center;
    margin-bottom: 0.75rem;
}

.login-modal-message {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.login-modal-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-modal-btn-primary {
    background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-rose));
    color: white;
    box-shadow: 0 4px 12px rgba(133, 14, 53, 0.3);
}

.login-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 14, 53, 0.4);
}

.login-modal-btn-secondary {
    background: white;
    color: var(--brand-burgundy);
    border: 2px solid var(--brand-burgundy);
}

.login-modal-btn-secondary:hover {
    background: var(--brand-burgundy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(133, 14, 53, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .login-modal {
        padding: 2rem;
        max-width: 350px;
    }
    
    .login-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .login-modal-title {
        font-size: 1.5rem;
    }
    
    .login-modal-message {
        font-size: 0.95rem;
    }
}

/* Pulse animation when first appearing */
@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.back-to-top-btn.show {
    animation: pulse-button 1s ease-in-out;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-btn i {
        font-size: 1.5rem;
    }
    
    .back-to-top-text {
        font-size: 0.6rem;
    }
}

/* Heart fill animation */
@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
}

.airbnb-favorite-btn.favorited i {
    animation: heartBeat 0.4s ease;
}

@media (max-width: 768px) {
    .hero-carousel-wrapper {
        height: 400px;
    }
    
    .carousel-content h1 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .business-card {
        width: 100%;
        max-width: 350px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .category-icon {
        font-size: 2rem;
    }
}

    /* Favorite button states */
    .airbnb-favorite-btn.favorited {
        background: var(--brand-burgundy);
    }

    .airbnb-favorite-btn.favorited i {
        color: white;
    }

    .airbnb-favorite-btn i {
        transition: all 0.3s ease;
    }

    /* Heart fill animation */
    @keyframes heartBeat {
        0%, 100% {
            transform: scale(1);
        }
        25% {
            transform: scale(1.3);
        }
        50% {
            transform: scale(1.1);
        }
    }

    .airbnb-favorite-btn.favorited i {
        animation: heartBeat 0.4s ease;
    }

    /* Show More Functionality */
    .business-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .business-row.collapsed .business-card:nth-child(n+5) {
        display: none;
    }

    .show-more-container {
        text-align: center;
        margin-top: 1.5rem;
    }

    .show-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 2rem;
        background: white;
        color: var(--color-burgundy);
        border: 2px solid var(--color-burgundy);
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .show-more-btn:hover {
        background: var(--color-burgundy);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(133, 14, 53, 0.3);
    }

    .show-more-btn i {
        transition: transform 0.3s ease;
    }

    .show-more-btn.expanded i {
        transform: rotate(180deg);
    }

    /* Keep grid for All Businesses */
    #allBusinessesGrid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .business-grid-paginated {
        display: grid;
        /* Changed from auto-fill to auto-fit and fixed max width */
        grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
        gap: 1.5rem;
        padding: 1rem 0;
        /* This centers the grid */
        justify-content: center;
        max-width: 100%;
    }

    .business-grid-paginated .business-card {
        width: 260px;
        /* Remove justify-self as it's not needed anymore */
    }

    .business-grid-paginated .business-card:nth-child(n+21) {
        display: none;
    }

    .business-grid-paginated.show-more-40 .business-card:nth-child(n+21):nth-child(-n+40) {
        display: block;
    }

    .business-grid-paginated.show-more-60 .business-card:nth-child(n+41):nth-child(-n+60) {
        display: block;
    }

    .business-grid-paginated.show-all .business-card {
        display: block;
    }

    .load-more-container {
        text-align: center;
        margin-top: 2rem;
        padding: 2rem 0;
    }

    .load-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, var(--color-burgundy), var(--color-rose));
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.05rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(133, 14, 53, 0.3);
    }

    .load-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(133, 14, 53, 0.4);
    }

    .load-more-btn i {
        font-size: 1.2rem;
    }

    .businesses-count {
        color: #717171;
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    @media (max-width: 768px) {
    .business-grid-paginated {
        grid-template-columns: 1fr;
    }
    
    .business-grid-paginated .business-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

