.lda-product-wrap{
    display:flex;
    gap:60px;
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.lda-gallery{
    width:50%;
}

.lda-gallery img{
    width:100%;
    border-radius:10px;
}

.lda-info{
    width:50%;
}

.lda-info h1{
    font-size:48px;
    margin-bottom:20px;
}

.lda-price{
    font-size:36px;
    color:red;
    font-weight:bold;
    margin-bottom:30px;
}

.lda-attribute{
    margin-bottom:30px;
}

.lda-attribute label{
    display:block;
    margin-bottom:10px;
    font-weight:bold;
}

.lda-colors{
    display:flex;
    gap:10px;
}

.lda-color{
    width:70px;
    height:70px;
    border:2px solid #ddd;
    background:none;
    padding:0;
    cursor:pointer;
    border-radius:10px;
    overflow:hidden;
}

.lda-color img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.lda-color.active{
    border-color:red;
}

#lda-length{
    width:100%;
    padding:14px;
    font-size:18px;
}

.lda-add-cart{
    background:red;
    color:white;
    border:none;
    padding:18px 30px;
    font-size:20px;
    cursor:pointer;
    border-radius:6px;
}

.lda-sku{
    margin-top:15px;
    margin-bottom:25px;
    color:#666;
    font-size:14px;
}

.lda-add-cart:disabled{
    opacity:0.5;
    cursor:not-allowed;
}

.lda-colors{
    position:relative;
    z-index:999;
}

.lda-color{
    pointer-events:auto;
    cursor:pointer;
}

/* MOBILE */

@media(max-width: 768px){

    .lda-product-wrap{
        flex-direction:column;
        gap:30px;
        padding:20px;
    }
    .lda-gallery{
        width:100%;
    }
    .lda-info{
        width:100%;
    }
    .lda-info h1{
        font-size:34px;
    }
    .lda-price{
        font-size:28px;
    }
    .lda-color{

        width:58px;
        height:58px;
    }
    .lda-add-cart{
        width:100%;
    }
}