/**
 * Single product page overrides.
 *
 * @package Woo_Custom
 */

/* Hide SKU in product meta (price/stock/quantity/add to cart removed via PHP). */
.single-product .sku {
	display: none;
}

/* Hide category in product meta. */
.single-product .product_meta .posted_in {
	display: none;
}

/* Single product action buttons (Apply, Email to friend, Wishlist). */
.woo-custom-single-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.woo-custom-action-btn {
	display: inline-block;
	padding: 0.6rem 1rem;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid currentColor;
	border-radius: 4px;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: opacity 0.2s;
}

.woo-custom-action-btn:hover {
	opacity: 0.85;
}

.woo-custom-action-btn--wishlist.woo-custom-wishlist-btn--added {
	opacity: 0.8;
}
