.products-comparison-image {
    position: relative;
    text-align: center;
    margin: 20px 0;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-label {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-image {
    width: 120px;
    height: auto;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.decor-ginger {
    width: 80px;
    position: absolute;
    bottom: 20px;
    left: 30%;
}

.decor-pills {
    width: 60px;
    position: absolute;
    bottom: 20px;
    right: 30%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    margin: 20px 0;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.comparison-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    text-transform: uppercase;
}

.comparison-table td {
    background-color: #fff;
}

.highlight-green {
    color: #28a745;
    font-weight: bold;
}

.highlight-red {
    color: #dc3545;
    font-weight: bold;
}

.comparison-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

.comparison-heading .elementor-heading-title {
    color: #28a745 !important;
}