/* Tab Content Container */
#producttabval {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    padding-bottom: 0;
}

.producttabval__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 140px;
    flex: 1 1 100%;
    padding: 0;
}

.producttabval__image {
    flex: 0 0 45%;
    max-width: 580px;
}

.producttabval__image img {
    width: 100%;
    height: auto;
    /* border-radius: 12px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.producttabval__description {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: right;
}

.producttabval__description p {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 150%;
    color: rgba(17, 17, 17, 0.72);
    width: 100%;
        text-align: left;
}

.producttabval__description .producttabval__button {
        display: inline-block;
    width: auto;
    display: inline-block;
    margin-top: 0;
    background: #ff6f3c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 111, 60, 0.3);
}

.producttabval__description .producttabval__button:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 111, 60, 0.4);
}

.producttabval__uniqueid {
    display: none !important;
}

/* Mobile responsive styles for tab content */
@media (max-width: 820px) {
    #producttabval {
        padding: 30px 15px;
        padding-bottom: 0;
        gap: 20px;
    }

    .producttabval__item {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .producttabval__image {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .producttabval__description {
        width: 100%;
    }

    .producttabval__description p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    #producttabval {
        padding: 20px 10px;
        padding-bottom: 0;
    }

    .producttabval__description .producttabval__button {
        padding: 12px 24px;
        font-size: 15px;
    }
}