/* Product page */

.product-type-gift_card{
	--fp-padding: 30px;
	--fp-margin: 40px
}
/* Image */
.product-type-gift_card .product-slider{
	padding: 0 var(--fp-padding) var(--fp-padding) var(--fp-padding)
}
/* Card after image */
.product-type-gift_card .afgc-main-form-preview-container{
	width: calc(100% - (2*var(--fp-padding)));
	bottom: -220px;
	left: 50%;
    transform: translateX(-50%);
}
/* Delivery section */
.product-type-gift_card input[type="checkbox"]{
	width: 16px;
	height: 16px
} 
.product-type-gift_card .afgc-gift-card-amount-box input[type="text"],
.product-type-gift_card .afgc-gift-card-amount-box input[type="email"]{
	border-radius: 100px;
	padding: 16px !important;
	border-color: #555555 !important;
	font-size: 16px
}
.product-type-gift_card .afgc-gift-card-amount-box textarea{
	border-radius: 16px;
	padding: 16px !important;
	border-color: #555555 !important;
	font-size: 16px
}
.product-type-gift_card .afgc-gift-card-amount-box input[type="text"]::placeholder,
.product-type-gift_card .afgc-gift-card-amount-box input[type="email"]::placeholder,
.product-type-gift_card .afgc-gift-card-amount-box textarea::placeholder{
	font-size: 16px
}
/* Recepient section */
.product-type-gift_card .afgc_gift_card_opt{
	margin-bottom: var(--fp-margin) !important
}
.product-type-gift_card .afgc-sender-info{
	margin-top: var(--fp-margin)
}
.product-type-gift_card .afgc-recipient-info h5,
.product-type-gift_card .afgc-sender-info h5{
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: #333333
}
.product-type-gift_card .afgc-recipient-info label,
.product-type-gift_card .afgc-sender-info label{
	font-size: 16px !important;
	line-height: 16px;
	color: #767676
}
.product-type-gift_card  .afgc_items_cl {
	
}
/* Sender section*/
.product-type-gift_card  .afgc-sender-info{
	
}
/* Pop-up */
.product-type-gift_card  .afgc_popup_content{
	margin-top: 210px;
	margin-bottom: 210px
}

@media (min-width:999px){
	/* Gift-card page */
	.afgc-shordcodes-gifts-cards .woocommerce ul.products li.product{
		width: 31.25% !important
	}
}


/* Mobile */

@media (max-width:999px){
	.product-type-gift_card{
		margin-top: -80px
	}
	.product-type-gift_card .product-slider{
		padding: 0 0 var(--fp-padding) 0
	}
	.product-type-gift_card .afgc-main-form-preview-container{
		position: relative;
		transform: none;
		bottom: 0;
		left: initial;
		width: 100%
	}
	.product-type-gift_card  .afgc_popup_content{
		width: 90%
	}
}

.wl-gift-cards-container {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.wl-gift-cards-container.wl-gift-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wl-gift-cards-container.wl-gift-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wl-gift-cards-container.wl-gift-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .wl-gift-cards-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .wl-gift-cards-container {
        grid-template-columns: 1fr !important;
    }
}

.wl-gift-card-item {
    /* background: #fff; */
    
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wl-gift-card-item:hover {
    border: 1px solid #e0e0e0;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wl-gift-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wl-gift-card-image-wrapper {
    width: 100%;
    padding-top: 60%; /* 4:3 aspect ratio - adjust if needed */
    position: relative;
    overflow: hidden;
    /* background: #f5f5f5; */
}

.wl-gift-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This preserves aspect ratio and fills the container */
    object-position: center;
}

.wl-gift-card-content {
    padding: 15px;
}

.wl-gift-cards-container .wl-gift-card-content h3.wl-gift-card-title {
    margin: 0 0 10px 0;
    line-height: 23px;
    font-size: 18px;
    /* font-weight: 600; */
    color: #333;
    text-transform: uppercase;
}

.wl-gift-card-description {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
    color: #666;
}

.wl-gift-card-price {
    font-size: 18px;
    line-height: 22px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #2b5346;
}

.wl-gift-card-price .woocommerce-Price-amount {
    color: inherit;
}

.wl-gift-card-button {
    display: inline-block;
    margin-top: 15px;
    padding: 16px 24px;
    background-color: #2B5346;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 14px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wl-gift-card-button:hover {
    background-color: #1e3a30;
    /*transform: translateY(-2px);*/
    color: #fff;
    text-decoration: none;
}


