.restomate-bar-section,
.restomate-bakery-section {
    padding: 10rem 0;
    background-color: #fff;
}

.restomate-bar-container,
.restomate-bakery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Tag Styles */
.restomate-bar-tag,
.restomate-bakery-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.restomate-bar-tag {
    background-color: #CB202D;
    color: white;
}

.restomate-bakery-tag {
    background-color: #C2410C;
    color: white;
}

/* Title Styles */
.restomate-bar-title,
.restomate-bakery-title {
    font-size: 3rem;
    line-height: 1.2;
    color: #1F2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.restomate-bar-highlight,
.restomate-bakery-highlight {
    position: relative;
    display: inline-block;
}

.restomate-bar-highlight {
    color: #CB202D;
    border-bottom: 2px solid #CB202D;
}

.restomate-bakery-highlight {
    color: #C2410C;
    border-bottom: 2px solid #C2410C;
}

/* Description Styles */
.restomate-bar-description,
.restomate-bakery-description {
    color: #6B7280;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Features Styles */
.restomate-bar-features,
.restomate-bakery-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.restomate-bar-feature,
.restomate-bakery-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #374151;
}

.restomate-bar-icon {
    color: #CB202D;
}

.restomate-bakery-icon {
    color: #C2410C;
}

/* CTA Styles */
.restomate-bar-cta,
.restomate-bakery-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.restomate-bar-demo-btn,
.restomate-bakery-demo-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.restomate-bar-cta a {
    text-decoration:  none !important;
}

.restomate-bakery-demo-btn {
    text-decoration: none !important;
}

.restomate-bar-demo-btn {
    background-color: #CB202D;
    color: white;
}

.restomate-bakery-demo-btn {
    background-color: #C2410C;
    color: white;
}

.restomate-bar-learn-btn,
.restomate-bakery-learn-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
}

.restomate-bar-learn-btn {
    color: #CB202D;
}

.restomate-bakery-learn-btn {
    color: #C2410C;
}

/* Image Styles */
.restomate-bar-image-box,
.restomate-bakery-image-box {
    border-radius: 24px;
    padding: 2rem;
}

.restomate-bar-image-box {
    background-color: #F0FDFA;
}

.restomate-bakery-image-box {
    background-color: #FFF7ED;
}

/* Stats Styles */
.restomate-bar-stats,
.restomate-bakery-stats {
    display: flex;
    gap: 1rem;
    margin-top: -2rem;
    justify-content: center;
}

.restomate-bar-stat,
.restomate-bakery-stat {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.restomate-bar-stat-number,
.restomate-bakery-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.restomate-bar-stat-number {
    color: #CB202D;
}

.restomate-bakery-stat-number {
    color: #C2410C;
}

.restomate-bar-stat-label,
.restomate-bakery-stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .restomate-bar-container,
    .restomate-bakery-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .restomate-bar-title,
    .restomate-bakery-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .restomate-bar-cta,
    .restomate-bakery-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .restomate-bar-demo-btn,
    .restomate-bakery-demo-btn,
    .restomate-bar-learn-btn,
    .restomate-bakery-learn-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .restomate-bar-section,
    .restomate-bakery-section {
        padding: 3rem 0;
    }

    .restomate-bar-title,
    .restomate-bakery-title {
        font-size: 2rem;
    }

    .restomate-bar-stats,
    .restomate-bakery-stats {
        flex-direction: column;
    }
}

#bar-hero-image img {
    width: 100% !important;
    border-radius: 20px;
}