.biji-btn-options{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

/* tombol variasi */
.biji-btn-options{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:0px;
}

.biji-btn-option{
    border:1px solid #d8d8d8;
    background:#fff;
    padding:5px 18px;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
    font-size:14px;
}

.biji-btn-option:hover{
    border-color:#666;
}

.biji-btn-option.active{
    background:var(--theme-palette-color-1);
    color:#fff;
    border-color:var(--theme-palette-color-1);
}
	
.biji-btn-option.disabled{
    opacity:.35;
    cursor:not-allowed;
    pointer-events:none;
}

.variations select{
    display:none;
}

/* sembunyikan tombol hapus */
.reset_variations{
	display:none !important;
}




/* MOBILE */
/*+++++++++*/
@media (max-width: 768px) {
    /* gambar full samping*/
	/* wrapper full */
    .is-width-constrained {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* gambar full */
	
    .product-entry-wrapper > :not(.ct-media-container) {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .product-entry-wrapper .ct-media-container img {
        width: 100% !important;
        height: auto !important;
    }

    /* text dikembalikan paddingnya */
	.product[class*="gallery"] .entry-summary-items > * {
		padding-left: 20px !important;
		padding-right: 20px !important;
    }

	/* foto gallery */
    .flexy-pills ol{
        display: grid !important;
        grid-template-columns: repeat(7, 1fr);
    }
    	
    .flexy-pills ol li{
        width: 100% !important;
    		
    }
    
    .entry-summary .entry-title,
    .entry-summary-items > .ct-product-divider[data-id="divider_1"]{
        margin: 0px !important;
    }

    .entry-summary .price{
        margin-bottom: 10px !important;
    }
    
    div.woocommerce-product-gallery {
        margin-bottom: 20px !important;
    }
    
    .biji-mobile-variation{
        padding-top: 5px;
        padding-bottom: 5px;
        border: 1px solid #ddd;
    }
    
    .biji-variation-gallery{
        display:flex;
        gap:1px;
        overflow-x:auto;
        padding-bottom: 5px;
    }
    
    .biji-variation-card{
        width:60px;
        flex-shrink:0;
        border:1px solid #ddd;
        border-radius:8px;
        overflow:hidden;
        cursor:pointer;
    }
    
    .biji-variation-card img{
        width:100%;
        display:block;
    }
    
    .biji-variation-card.active{
        border:3px solid var(--theme-palette-color-1);
    }
    
    .biji-selected-variation{
        font-size:14px;
        font-weight:600;
        color:#555;
        padding-left: 20px;
        padding-bottom: 5px;
    }
    
    .biji-selected-variation span{
        margin-right:12px;
    }

}