.comparison-section {
    min-height: 70vh;
    background-color: #F8F8F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.comparison-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.comparison-title {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-title h2 {
    font-size: 2.2rem;
    color: #323232;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.products-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-box {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.product-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.product-logo {
    display: inline-block;
    margin: auto;
    min-height: 58px;
}

.product-logo img {
    max-height: 50px;
    width: auto;
    max-width: 180px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-product {
    border: 1px solid #9C7B98 !important;
    color: #9C7B98;
}

.our-product .logo-text {
    color: #9C7B98;
}

.competitor-product .logo-text {
    color: #323232;
}

.product-image-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.product-image {
    max-width: 85%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: 6px;
}

.no-image {
    background: #f5f5f5;
    padding: 30px 15px;
    text-align: center;
    color: #768071;
    border-radius: 6px;
    font-style: italic;
    font-size: 0.9rem;
}

.product-features {
    width: 100%;
    margin-top: auto;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.features-list li:last-child {
    border-bottom: none;
}

.our-product .features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #9C7B98;
    font-size: 1.1rem;
    font-weight: bold;
}

.competitor-product .features-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 8px;
    color: #f44336;
    font-size: 1.1rem;
    font-weight: bold;
}

.no-features {
    text-align: center;
    color: #768071;
    font-style: italic;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 0.9rem;
    margin: 0;
}

/* VS Badge */
.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-comparison {
        gap: 25px;
    }

    .product-box {
        max-width: 350px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 50px 15px;
        min-height: auto;
    }

    .comparison-title {
        margin-bottom: 30px;
    }

    .comparison-title h2 {
        font-size: 1.6rem;
    }

    .products-comparison {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 3px;
        position: relative;
    }

    .product-box {
        flex: 1;
        min-width: 0;
        max-width: none;
        margin-bottom: 0;
        border-radius: 12px;
    }

    .vs-badge {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 10;
    }

    .product-logo {
        min-height: 38px;
    }

    .product-logo img {
        max-height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .product-image {
        max-height: 120px;
        max-width: 90%;
    }

    .product-box {
        padding: 15px;
    }

    .product-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .product-image-wrapper {
        margin-bottom: 12px;
    }

    .features-list li {
        font-size: 0.85rem;
        padding: 5px 0;
        padding-left: 22px;
    }

    .features-list li:before {
        font-size: 0.95rem;
        top: 5px;
    }
}

@media (max-width: 480px) {
    .comparison-title h2 {
        font-size: 1.5rem;
    }

    .product-box {
        padding: 12px;
    }

    .vs-badge {
        width: 28px;
        height: 28px;
        font-size: 0.7255rem;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .product-logo img {
        max-height: 30px;
    }

    .product-image {
        max-height: 100px;
    }

    .features-list li {
        font-size: 0.8rem;
        padding: 4px 0;
        padding-left: 20px;
    }

    .features-list li:before {
        font-size: 0.9rem;
        top: 4px;
    }
}