/* Velina Beauty — homepage-only styles (loaded on the front page only) */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Header */
.velina-header {
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 0 rgba(112, 57, 144, 0.08);
}

.velina-nav a {
	font-weight: 500;
	text-decoration: none;
}

.velina-nav a:hover {
	color: #FF8FB8;
}

/* Hero */
.velina-hero {
	text-align: center;
}

.velina-eyebrow {
	opacity: 0.85;
}

.is-style-outline .wp-block-button__link {
	border: 1.5px solid #FFFFFF;
	background: transparent;
}

.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* Empty shop / coming-soon state */
.velina-empty-shop {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
	padding: var(--wp--preset--spacing--50, 2.5rem) var(--wp--preset--spacing--40, 1.5rem);
	background: var(--wp--preset--color--velina-lavender, #F4ECFB);
	border-radius: 16px;
}

.velina-empty-shop__title {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--wp--preset--color--velina-purple, #703990);
	margin-bottom: 0.5rem;
}

.velina-empty-shop__text {
	margin-bottom: 1.25rem;
	color: var(--wp--preset--color--contrast, #23132B);
}

.velina-empty-shop__link {
	display: inline-block;
	font-weight: 600;
	color: var(--wp--preset--color--velina-purple, #703990);
	text-decoration: underline;
}

/* Real WooCommerce product grid: keep it airy and premium */
#velina-shop ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

#velina-shop ul.products li.product {
	text-align: center;
}

#velina-shop ul.products li.product img {
	border-radius: 12px;
	margin-bottom: 0.75rem;
}

#velina-shop ul.products li.product .price {
	color: #703990;
	font-weight: 600;
}

/* Newsletter form */
.velina-newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.velina-newsletter-form input[type="email"] {
	flex: 1 1 280px;
	max-width: 360px;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	border: none;
	font-size: 1rem;
}

.velina-newsletter-form input[type="email"]:focus-visible {
	outline: 3px solid #FF8FB8;
	outline-offset: 2px;
}

.velina-newsletter-form button {
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	border: none;
	background: #FF8FB8;
	color: #23132B;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.velina-newsletter-form button:hover,
.velina-newsletter-form button:focus-visible {
	background: #FFFFFF;
}

.velina-newsletter-message {
	flex-basis: 100%;
	margin: 0.5rem 0 0;
	font-size: 0.95rem;
	min-height: 1.2em;
}

/* Responsive: tablet */
@media (max-width: 782px) {
	#velina-shop ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

/* Responsive: mobile */
@media (max-width: 480px) {
	#velina-shop ul.products {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.velina-newsletter-form input[type="email"] {
		flex-basis: 100%;
		max-width: 100%;
	}

	.velina-newsletter-form button {
		flex-basis: 100%;
	}
}
