/* Product grid */
.woo-el-product-grid {
	display: grid;
	width: 100%;
}

.woo-el-product-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: center;
}

.woo-el-product-card__image {
	display: block;
	overflow: hidden;
}

.woo-el-product-card__image img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

.woo-el-product-card__title {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.3;
}

.woo-el-product-card__title a {
	text-decoration: none;
}

.woo-el-product-card__price {
	font-weight: 600;
}

.woo-el-product-card__actions .button {
	display: inline-block;
	margin-top: 0.25rem;
}

/* Event cards inside product grid */
.woo-el-event-card__date {
	font-size: 0.95rem;
	opacity: 0.9;
}

.woo-el-event-card__type {
	font-size: 0.9rem;
	opacity: 0.85;
}

/* Countdown block */
.woo-el-countdown-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.woo-el-countdown-block__image img {
	max-width: 100%;
	height: auto;
	display: block;
}

.woo-el-countdown-block__title {
	margin: 0;
	font-size: 1.35rem;
}

.woo-el-countdown-block__date {
	opacity: 0.9;
}

.woo-el-countdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
}

.woo-el-countdown__unit {
	min-width: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.woo-el-countdown__value {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.woo-el-countdown__label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.85;
}

.woo-el-countdown-block__actions .button {
	display: inline-block;
}

.woo-el-empty {
	padding: 1rem;
	border: 1px dashed currentColor;
	opacity: 0.8;
}

/* Event schedule table */
.woo-el-schedule {
	width: 100%;
	box-sizing: border-box;
}

.woo-el-schedule__inner {
	width: 100%;
}

.woo-el-schedule__row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 0;
	box-sizing: border-box;
}

.woo-el-schedule__cell {
	box-sizing: border-box;
	min-width: 0;
	word-break: break-word;
}

.woo-el-schedule__row--head .woo-el-schedule__cell {
	font-weight: 600;
}

.woo-el-schedule__cell--cta {
	text-align: center;
}

.woo-el-schedule__divider {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0;
	border: 0;
	padding: 0;
}

.woo-el-schedule__btn {
	display: inline-block;
	font-size: 0.875rem;
	line-height: 1.25;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border: 0;
	transition: opacity 0.15s ease;
}

.woo-el-schedule__btn:hover,
.woo-el-schedule__btn:focus {
	opacity: 0.9;
}

.woo-el-schedule__btn--soon {
	cursor: default;
}

@media (max-width: 767px) {
	.woo-el-schedule {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.woo-el-schedule__inner {
		min-width: 36rem;
	}
}

/* Contact section */
.woo-el-contact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 32px;
	row-gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.woo-el-contact__col {
	min-width: 0;
}

.woo-el-contact__h4 {
	margin: 0 0 0.75rem;
}

.woo-el-contact__text {
	margin: 0 0 1.25rem;
}

.woo-el-contact__row {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	align-items: center;
	column-gap: 12px;
}

.woo-el-contact__row-icon svg,
.woo-el-contact__row-icon i {
	width: 24px;
	height: 24px;
	display: inline-block;
}

.woo-el-contact__row-icon,
.woo-el-contact__social-link {
	color: inherit;
}

.woo-el-contact__row-icon svg,
.woo-el-contact__social-link svg {
	fill: currentColor;
}

.woo-el-contact__row-icon i,
.woo-el-contact__social-link i {
	color: currentColor;
}

.woo-el-contact__row-title {
	font-weight: 600;
}

.woo-el-contact__line {
	margin: 0.75rem 0 1.25rem;
}

.woo-el-contact__divider {
	height: 1px;
	width: 100%;
	background: rgba(0, 0, 0, 0.12);
	margin: 0.5rem 0 1.25rem;
}

.woo-el-contact__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0.75rem;
}

.woo-el-contact__social-link {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.06);
	text-decoration: none;
}

.woo-el-contact__sub {
	margin: 0 0 1rem;
}

@media (max-width: 767px) {
	.woo-el-contact {
		grid-template-columns: 1fr;
	}
}
