* {
    margin: 0;
    padding: 0;
}

#single-page {
    background-color: #EFF0F5;
}

#s_p_left {
    background-color: #ffffff;
}



.cart-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: color 0.3s;
}

.cart-link:hover {
    color: orange;
}

.product-img-main {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.thumb-img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}


.specs-table td {
    padding: 6px 10px;
}


.btn-lg {
    padding: 10px 20px;
    font-size: 16px;
}

.product-img-main {
    max-height: 400px;
    object-fit: contain;
}

.thumb-img {
    max-height: 100px;
    object-fit: contain;
}

/* This part is repeated – keep one */
.price {
    font-size: 28px;
    font-weight: bold;
    color: #D23F3F;
}


.thumbnail-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.thumb-img:hover {
    border-color: #f39c12;
    cursor: pointer;
}




.color-circle {
    display: inline-block;
    /* অথবা inline-flex */
    height: 30px;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 14px;
    padding: 0 8px;
    /* বক্সে একটু horizontal padding দিন */
    border-radius: 6px;
    /* ইচ্ছা করলে বর্ডার radius দিতে পারেন */
    white-space: nowrap;
    /* টেক্সট এক লাইনে রাখবে */
}


.color-circle.selected {
    border: 1px solid #007BFF !important;
    background-color: #D0E7FF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    border-color: #000;
}

.size-box {
    display: inline-block;
    /* অথবা inline-flex */
    height: 30px;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 14px;
    padding: 0 8px;
    /* বক্সে একটু horizontal padding দিন */
    border-radius: 6px;
    /* ইচ্ছা করলে বর্ডার radius দিতে পারেন */
    white-space: nowrap;
    /* টেক্সট এক লাইনে রাখবে */
}

.size-box.selected {
    border: 1px solid #007BFF !important;
    background-color: #D0E7FF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    border-color: #000;
}






@media(max-width: 412px) {
    .color-circle {
        font-size: 11px;
    }

    .size-box {
        font-size: 11px;
    }
}
