.parana-ingredients-widget-wrapper {
    direction: rtl;
    padding: 20px 0;
    font-family: 'Tajawal', sans-serif;
}

.parana-ingredients-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: -20px; 
    position: relative;
    z-index: 2;
}

.parana-ingredients-title-box {
    background: #FFFFFF;
    padding: 15px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-weight: 700;
    font-size: 18px;
    position: relative;
    color: #000;
}

/* The indicator at the bottom of the title box */
.parana-ingredients-title-box::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background-color: #000000;
    border-radius: 2px;
}

.parana-ingredients-container {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 40px 30px 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.parana-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);

    gap: 20px 60px; /* Horizontal gap of 60px, vertical gap of 20px */
    padding: 10px;
}

.parana-ingredient-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.parana-ingredient-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.parana-ingredient-dot {
    width: 34px;
    height: 34px;
    background-color: rgba(251, 176, 59, 0.2); /* FBB03B with transparency */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.parana-ingredient-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #FBB03B;
    border-radius: 50%;
}

.parana-ingredients-placeholder {
    padding: 30px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    text-align: center;
    border-radius: 20px;
    color: #777;
}

@media (max-width: 767px) {
    .parana-ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .parana-ingredients-container {
        padding: 40px 20px 20px;
    }
}
