/* Free Gift */
.fgf-gift-products-content thead,
.shop_table_responsive .fgf-gift-product-item td[data-title]::before {
    display: none;
}

/* Target only the gift products table rows */
table.fgf_gift_products_table tr.fgf-gift-product-item {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	gap: var(--space-normal);
	align-items: center;
	border: none;
	border-top: 1px solid var(--border-color);
}

table.fgf_gift_products_table tr.fgf-gift-product-item:first-of-type {
	border-top: none;
}
  
/* Position the Product Image to the left, spanning both rows */
table.fgf_gift_products_table tr.fgf-gift-product-item td[data-title="Product Image"] {
	grid-row: 1 / span 2;
	grid-column: 1;
	width: 140px;
}
  
/* Style the image inside the Product Image cell */
table.fgf_gift_products_table tr.fgf-gift-product-item .fgf-product-image img {
	width: 100%;
}
  
/* Position Product Name at the top right */
table.fgf_gift_products_table tr.fgf-gift-product-item td[data-title="Product Name"] {
	grid-row: 1;
	grid-column: 2;
    align-self: end;
	border-bottom: none;
	font-weight: 700;
    padding-bottom: 0;
    text-align: left !important;
}
  
/* Position Add to Cart at the bottom right */
table.fgf_gift_products_table tr.fgf-gift-product-item td[data-title="Add to cart"] {
	grid-row: 2;
	grid-column: 2;
	border-bottom: none;
    padding-top: 0;
	justify-self: start; 
	align-self: start;
	text-align: left !important;
}
  
/* Style the Add to Cart button */
table.fgf_gift_products_table tr.fgf-gift-product-item .fgf_add_to_cart_link a {
	margin-left: 0;
}