@media (max-width: 768px) {
	.nina-pdp-header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 99999;
		display: flex;
		justify-content: space-between;
		padding: 12px;
		pointer-events: none;
	}
}

	.nina-left,
	.nina-right {
		display: flex;
		gap: 8px;
		pointer-events: auto;
	}

	.nina-right {
		flex-direction: column;
		align-items: flex-end;
	}

	.nina-btn {
		width: 40px;
		height: 40px;
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		color: #111;
		border: 0;
		text-decoration: none;
		padding: 0;
		cursor: pointer;
	}

	.nina-btn svg {
		width: 18px;
		height: 18px;
	}

	.nina-right .ct-cart-item {
		width: 40px;
		height: 40px;
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
		padding: 0 !important;
		text-decoration: none !important;
	}

	.nina-right .ct-cart-item .ct-label {
		display: none !important;
	}

	.nina-right .ct-cart-item .ct-icon-container {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.nina-wishlist-proxy {
		width: 40px;
		height: 40px;
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
		border: 0;
		padding: 0;
		cursor: pointer;
		color: #111;
	}

	.nina-wishlist-proxy svg {
		width: 18px;
		height: 18px;
		display: block;
	}

	.nina-wishlist-proxy .nina-heart-fill {
		opacity: 0;
		transition: opacity 0.2s ease;
	}

	.nina-wishlist-proxy.is-active .nina-heart-fill {
		opacity: 1;
	}

	.ct-wishlist-button-single {
		transition: opacity 0.2s ease;
	}

	body.single-product .nina-hidden-real-wishlist {
		position: absolute !important;
		left: -9999px !important;
		top: auto !important;
		width: 1px !important;
		height: 1px !important;
		overflow: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
}