:root {
    --primary-pink: #EC5B75;
    --light-pink: #FED5DC;
    --dark-text: #333333;
    --white: #FFFFFF;
}

.flavors-header {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffe9ec0a; /* Background remains white for simplicity */
}

.flavors-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-pink);
    margin-bottom: 20px;
    font-weight: 700;
}

.flavors-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--dark-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.flavors-intro2 {
    background-color: #ffe9ec0a;
}

.number {
    color: var(--primary-pink);
}

.flavor-item h3 {
    color: var(--primary-pink);
}
  
.flavor-item p {
    color: var(--primary-pink);
}

/* Horizontal lines */
.flavor-item::after {
    background-color: var(--light-pink); /* More transparent */
}
  
/* Remove vertical lines from last column */
.flavor-item:nth-child(3n)::before {
    display: none;
}

/* Sitni kolači */

.mini-desserts {
    padding: 60px 20px;
    background-color: var(--white);
    text-align: center;
}

.mini-desserts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-pink);
    margin-bottom: 40px;
}

.desserts-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px; /* Adds spacing between Zalogaji and Čašice */
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px;
    flex-wrap: wrap;
}

.category {
    text-align: center; /* Aligns the text to the left */
    flex: 1;
    min-width: 100px; /* Ensures categories stay responsive and stack on smaller screens */
}

.category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--primary-pink);
    margin-bottom: 40px;
}

.category h3 {
    position: relative;
}

.category h3::after {
    content: '';
    position: absolute;
    top: -20px; /* Position the line above the text */
    left: 0;
    width: 100%; /* Full width of the parent */
    height: 2px; /* Thickness of the line */
    background-color: rgba(236, 91, 117, 0.3); /* Semi-transparent pink color */
}

.category p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 5px;
}