/* ajax search start */
.search-container {
    position: relative;
    width: 300px;
}

#search-results {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 1000;
}

#results-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.result-item:hover {
    background-color: #f0f0f0;
}

.result-item img {
    margin-right: 10px;
}

.result-details {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: bold;
}

.product-price {
    color: #888;
}

/* ajax search end */

/*Frontend Fixing*/

.tp-slider-thumb {
    max-height: 395px;
}

.tp-product-category-thumb a img {
    width: 76px;
    height: 98px;
}

.trending-products a img {
    width: 282px;
    height: 242px;
}

.random-products a img {
    width: 248px;
    height: 240px;
}

.new-arrivals a img {
    width: 282px;
    height: 242px;
}

.dfs-products a img {
    width: 140px;
    height: 140px;
}

.tp-product-details-nav-main-thumb {
    width: 580px;
    height: 670px;
}

.related-products a img {
    width: 282px;
    height: 242px;
}


/*Color Button design start*/
.tp-product-details-variation-list {
    display: flex;
    gap: 10px;
}

.color-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 5px;
}

/* Hide the radio input */
.color-option input[type="radio"] {
    display: none;
}

/* Style the color circle */
.color-circle {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-right: 5px;
}

/* Highlight the selected color */
.color-option input[type="radio"]:checked + .color-circle {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
}

/*Color Button design end*/

/*Size Button design start*/
.tp-product-details-size-dropdown {
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    background-color: #fff;
    color: #333;
    width: 100%;
}

.tp-product-details-size-dropdown option {
    font-size: 14px;
    padding: 5px;
}
/*Size Button design end*/


