/* HERO STARBUCKS */
.sb-hero {
    background: #ff7eb9;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.sb-hero-title {
    font-size: 48px;
    font-weight: 700;
}

.sb-hero-subtitle {
    font-size: 20px;
    margin-top: 10px;
}

/* INTRO STARBUCKS */
.sb-intro {
    padding: 60px 20px;
    text-align: center;
}

.sb-section-title {
    font-size: 32px;
    font-weight: 700;
}

.sb-section-desc {
    font-size: 18px;
    margin-top: 10px;
    color: #555;
}

/* GRID STARBUCKS */
.sb-grid {
    padding: 40px 20px;
}

.sb-grid-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sb-card {
    width: 300px;
    background: #ffe6f3;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.sb-card-img {
    width: 100%;
    border-radius: 20px;
}

.sb-card-title {
    font-size: 22px;
    margin-top: 15px;
}

.sb-card-desc {
    font-size: 16px;
    color: #555;
}