/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 13 2025 | 22:09:21 */
//fix

.sgi-custom-product-option{
	display : none ;
}

body.single-product form.cart {
    display: flex;
    flex-direction: column;
}

div#sgi-product-option {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.option-card {
    width: 100%;
    background: #d2d2d2;
	min-height: 238px ;
	padding: 24px ;
	box-sizing: border-box;
	display: flex ;
	flex-direction: column ;
	justify-content: flex-end;
	position: relative ;
}

.option-check {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: #C20E1A;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1em;
    color: #fff;
    cursor: pointer;
    z-index: 10;
	transition: all 0.4s ease ;
}

.option-check.added{
	background: #fff ;
	transition: all 0.4s ease ;
	color: #000 ;
}

h2.option-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 21px;
    font-family: 'DIN';
    position: relative;
    z-index: 1;
}

p.option-price {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 21px;
    font-family: 'DIN';
    position: relative;
    z-index: 1;
}

.option-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.75));
    width: 100%;
    height: 100%;
    z-index: 0;
}

.option-card[data-index="0"]{
	background: url('https://sgia.nc/wp-content/uploads/2022/07/product-option-1.jpg') center center no-repeat;
	background-size: cover ;
}

.option-card[data-index="1"]{
	background: url('https://sgia.nc/wp-content/uploads/2022/07/product-option-2.jpg') center center no-repeat;
	background-size: cover ;
}

.option-card[data-index="2"]{
	background: url('https://sgia.nc/wp-content/uploads/2022/07/product-option-3.jpg') center center no-repeat;
	background-size: cover ;
}

/* Cart Page Product Options */
dl.variation dt {
    font-size: 14px;
    font-family: 'DIN';
    font-weight: 700;
    color: #C20E1A;
}

dl.variation dd {
    margin: 0;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'DIN';
    padding: 0;
    position: relative;
    padding-left: 17px;
}

dl.variation dd::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 11px;
    top: 10px;
    transform: translateY(-50%);
}

@media(max-width:767px){
	div#sgi-product-option{
		flex-wrap : wrap ;
	}
}