/**
 * Theme overrides – classes used in theme PHP that are not in Sellzy’s Tailwind build.
 * Sellzy builds from @source "./*.html" only, so utilities added in header.php etc. are not in style.css.
 *
 * Upcoming matches (home page): team logos thumbnail uses same styling as single-product (proportional
 * logo sizing, faded site-logo background, brand-green “vs”). Fallback image in .upcoming-match-card__left
 * is scoped to > a > img so thumb logos are not affected; thumb fills square with consistent proportions on mobile.
 */

/* Restore text selection (Sellzy style.css sets body { user-select: none }) */
body {
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	user-select: text !important;
}

/* Container max-width (Sellzy default is 1632px) */
.container {
	max-width: 1400px;
}

/* Header product search: autocomplete panel (plain CSS; no Tailwind) */
.search-input-container,
.tickets-mobile-search-form {
	position: relative;
}
.tickets-product-search-results {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 0.25rem;
	z-index: 95;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	box-shadow: 0 10px 25px rgba(22, 28, 36, 0.12);
	max-height: min(22.5rem, 50vh);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
}
.tickets-product-search-list {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
}
.tickets-product-search-item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(145, 158, 171, 0.2);
}
.tickets-product-search-item:last-child {
	border-bottom: none;
}
.tickets-product-search-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 1rem;
	color: #161c24;
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.35;
}
.tickets-product-search-link:hover,
.tickets-product-search-link:focus {
	background: rgba(76, 125, 69, 0.08);
	color: #4c7d45;
	outline: none;
}
.tickets-product-search-thumb {
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
	flex-shrink: 0;
	border-radius: 0.25rem;
	background: #f9fafb;
}
.tickets-product-search-title {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.tickets-product-search-empty {
	margin: 0;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: #637381;
}
.tickets-product-search-footer {
	padding: 0.5rem 0.75rem 0.65rem;
	border-top: 1px solid #e5e7eb;
}
.tickets-product-search-all {
	display: block;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	color: #4c7d45;
	text-decoration: none;
	padding: 0.35rem 0;
}
.tickets-product-search-all:hover {
	text-decoration: underline;
}

/* Header: Explore All Leagues dropdown – scroll when list is long (no Tailwind) */
#dropdownMenu {
	max-height: 70vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* Deals section (#deals): title container (container px-4 py-[50px] lg:pt-24 pb-12 relative z-20) – pointer-events none so arrow clicks reach carousel. */
#deals > div:first-child {
	pointer-events: none;
}

/* Trust signals: equal-height cards */
.trust-signals .grid {
	display: grid;
	align-items: stretch;
}
.trust-signals .grid > div {
	display: flex;
}
.trust-signals__card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}
.trust-signals__desc {
	flex: 1;
	min-height: 0;
	margin: 0;
}

/* Top green bar – slightly less padding top and bottom */
.header-top-inner {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

/* Header middle: logo positioned above the bar */
.header-logo-wrap {
	position: absolute;
	width: 170px;
	z-index: 99;
	top: -63px;
}

/* Category/archive hero banner – inner content (Tailwind not built from PHP, so padding/layout here) */
.archive-hero-banner-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3.5rem 1.5rem;
	box-sizing: border-box;
}

/* Upcoming match card (home page) – layout so button is never cut off; Tailwind not built from PHP */
.upcoming-match-card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(145, 158, 171, 0.24);
	border-radius: 1.5rem;
	overflow: hidden;
	background: #fff;
}
@media (min-width: 768px) {
	.upcoming-match-card {
		flex-direction: row;
	}
}
.upcoming-match-card__left {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #FCF6E2;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.upcoming-match-card__left {
		width: 40%;
		max-height: none;
	}
}
/* Fallback product image only (not team logos thumb) */
.upcoming-match-card__left > a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
	max-height: 260px;
}
/* Team logos thumb: fill square and match card rounding */
.upcoming-match-card__left .tickets-team-logos-thumb-link,
.upcoming-match-card__left .tickets-team-logos-thumb {
	border-radius: 1rem;
	overflow: hidden;
}
.upcoming-match-card__left .tickets-team-logos-thumb-link {
	display: block;
	height: 100%;
	width: 100%;
}
.upcoming-match-card__left .tickets-team-logos-thumb {
	box-sizing: border-box;
}
.upcoming-match-card__right {
	width: 100%;
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.upcoming-match-card__right {
		width: 60%;
		padding: 1.5rem 1.75rem 1.75rem;
		gap: 0.875rem;
	}
}
.upcoming-match-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	line-height: 1.25;
	font-weight: 500;
	background: rgba(34, 197, 94, 0.2);
	color: #15803d;
	width: fit-content;
	animation: upcoming-match-pill-flash 1.2s ease-in-out infinite;
}
.upcoming-match-card__pill-icon {
	font-size: 1rem;
	line-height: 1;
	display: inline-block;
	color: inherit;
}
@keyframes upcoming-match-pill-flash {
	0%, 100% { transform: scale(1) rotate(0deg); }
	15% { transform: scale(1.02) rotate(-3deg); }
	30% { transform: scale(1.02) rotate(3deg); }
	45% { transform: scale(1.02) rotate(-2deg); }
	60% { transform: scale(1.02) rotate(2deg); }
	75% { transform: scale(1.02) rotate(-1deg); }
	90% { transform: scale(1.02) rotate(1deg); }
}
.upcoming-match-card__league {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #637381;
}
.upcoming-match-card__league-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.upcoming-match-card__league img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}
.upcoming-match-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #161c24;
	margin: 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.upcoming-match-card__title a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}
.upcoming-match-card__date {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.875rem;
	color: #161c24;
}
.upcoming-match-card__countdown {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.25rem 0 0;
}
.upcoming-match-card__countdown-item {
	background: #f3f4f6;
	border-radius: 0.75rem;
	min-width: 3.5rem;
	height: 3.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	box-sizing: border-box;
}
.upcoming-match-card__countdown-item .label {
	font-size: 0.65rem;
	line-height: 1.2;
	color: #637381;
}
.upcoming-match-card__countdown-item .value {
	font-size: 0.875rem;
	font-weight: 600;
	color: #161c24;
}
.upcoming-match-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}
.upcoming-match-card__price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #161c24;
}
.upcoming-match-card__add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	background: #4C7D45;
	color: #fff;
	text-decoration: none;
	border: none;
	cursor: pointer;
	white-space: nowrap;
}
.upcoming-match-card__add-to-cart:hover {
	background: #3d6538;
	color: #fff;
}

/* Product card (shop grid) – right column layout */
.product-card__info {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}
.product-card__pill {
	margin-bottom: 0.15rem;
}
.product-card__league {
	margin-bottom: 0.15rem;
}
.product-card__title {
	text-decoration: none;
	display: block;
	font-size: 1rem;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	max-width: 100%;
}
.product-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 0.25rem;
}
.product-card__date {
	font-size: 0.875rem;
	color: #637381;
}
.product-card__cta {
	margin-top: 0.5rem;
}

/* Team colours flag thumbnail: square container; home/away are pennant-shaped (point at bottom) */
.tickets-flag-thumb {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 120px;
	background-color: #F7F3E0;
}
.tickets-flag-thumb__circle {
	position: absolute;
	width: 40%;
	height: 40%;
	min-width: 48px;
	min-height: 48px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
	clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.tickets-flag-thumb__home {
	top: 6%;
	left: 6%;
}
.tickets-flag-thumb__away {
	bottom: 6%;
	right: 6%;
}
.tickets-flag-thumb__line {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 145%;
	height: 2px;
	background-color: rgba(0, 0, 0, 0.12);
	transform: translate(-50%, -50%) rotate(-45deg);
	pointer-events: none;
}
.tickets-flag-thumb__stripes {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: row;
}
.tickets-flag-thumb__stripes .tickets-flag-thumb__stripe {
	flex: 1;
	min-width: 0;
}
.tickets-flag-thumb__stripe {
	min-width: 0;
}
.tickets-flag-thumb-link {
	text-decoration: none;
	color: inherit;
}
.tickets-flag-thumb-link:hover {
	opacity: 0.95;
}

/* Thumbnail container: always square aspect ratio (product card, single product, cart, home) */
.tickets-thumb-square {
	aspect-ratio: 1 / 1;
	width: 100%;
	overflow: hidden;
	display: block;
}
.tickets-product-card-thumb {
	max-width: 180px;
}
.tickets-single-product-thumb {
	max-width: 100%;
}
.woocommerce-cart-form .product-thumbnail.tickets-thumb-square {
	width: 120px;
	max-width: 120px;
	min-width: 120px;
	background-color: #FCF6E2;
}

/* Thumbnail wrapper for pill overlay (position relative) */
.tickets-thumb-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

/* Date confirmed pill on product thumbnail – absolute top-left ~10px */
.tickets-date-confirmed-pill {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	pointer-events: none;
}
.tickets-date-confirmed-pill--confirmed {
	background-color: #4C7D45;
	color: #fff;
}
.tickets-date-confirmed-pill--not-confirmed {
	background-color: rgba(145, 158, 171, 0.35);
	color: #374151;
}

/* Sold out pill on match thumbnail – same footprint as date confirmed, top-right (date stays top-left) */
.tickets-sold-out-pill {
	position: absolute;
	top: 10px;
	right: 10px;
	left: auto;
	z-index: 2;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	pointer-events: none;
	background-color: #b42318;
	color: #fff;
	box-shadow: 0 1px 2px rgba(22, 28, 36, 0.12);
}
.tickets-sold-out-pill__icon {
	font-size: 0.85rem;
	line-height: 1;
	color: inherit;
}
.tickets-sold-out-pill__text {
	line-height: 1.2;
}
/* Inline row on product / home match card (same role as .upcoming-match-card__pill for “only a few left”) */
.tickets-sold-out-pill--inline {
	position: static;
	display: inline-flex;
	align-items: center;
	pointer-events: none;
	font-size: 0.75rem;
	font-weight: 500;
	gap: 0.35rem;
	width: fit-content;
	margin-bottom: 0.15rem;
	background-color: rgba(180, 35, 24, 0.12);
	color: #7f1d1d;
	border: 1px solid rgba(180, 35, 24, 0.35);
	box-shadow: none;
}
.tickets-sold-out-pill--inline .tickets-sold-out-pill__icon {
	font-size: 1rem;
	color: #b42318;
}

/* Team logos thumbnail: [logo] vs [logo] – "vs" always centred, logos never crop (object-fit: contain), BG #FCF6E2 */
.tickets-team-logos-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 8%;
	background-color: #FCF6E2;
	height: 100%;
	width: 100%;
	min-height: 0;
	box-sizing: border-box;
}
/* Keep identical logo proportions at all wrapper sizes using percentage slots. */
.tickets-team-logos-thumb__logo {
	flex: 0 0 38%;
	width: 38%;
	height: 38%;
	max-width: 38%;
	max-height: 38%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	flex-shrink: 0;
	display: block;
}
.tickets-team-logos-thumb__logo--home {
	object-position: center right;
}
.tickets-team-logos-thumb__logo--away {
	object-position: center left;
}
.tickets-team-logos-thumb__vs {
	flex: 0 0 12%;
	width: 12%;
	text-align: center;
	font-size: 1.05rem;
	font-weight: 300;
	color: #4C7D45;
	text-transform: lowercase;
	line-height: 1;
}
.tickets-team-logos-thumb-link {
	display: block;
	height: 100%;
	width: 100%;
}
.tickets-team-logos-thumb-link:hover {
	opacity: 0.95;
}

/* Footer: smaller logo */
.footer-logo-wrap {
	max-width: 100px;
}
.footer-logo-wrap img,
.footer-logo-img {
	max-width: 100%;
	height: auto;
}

/* Footer: payment methods image at natural size, not full width */
.payments-footer-icon {
	max-width: 320px;
	width: auto;
	height: auto;
	max-height: 56px;
	object-fit: contain;
	display: block;
}
.single-product .payments-icon {
	height: 38px;
	width: auto;
	object-fit: contain;
}

/* Single product: "We will take guest details later" – blue with info icon to the left */
.tickets-guest-details-note {
	color: #1890ff;
}
.tickets-guest-details-note .hgi {
	color: inherit;
}

/* Single product: hide variation price below options (top summary price updates instead) */
.single-product .single_variation_wrap .woocommerce-variation-price {
	display: none !important;
}

/* Single product: quantity input – same height and 100% rounded as Buy Now / Add to Cart buttons */
.single-product .quantity-section.tickets-product-qty-wrap {
	flex: 0 0 auto;
	width: 7.5rem;
	max-width: 7.5rem;
	min-width: 2.5rem;
}
.single-product .quantity-section .quantity {
	border: 1px solid rgba(145, 158, 171, 0.24);
	border-radius: 80px;
	min-height: 48px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	min-width: 2.5rem;
	width: 100%;
	box-sizing: border-box;
}
.single-product .quantity-section .quantity .qty {
	width: 100%;
	min-width: 2.5rem;
	display: block;
	text-align: center;
	border: none;
	border-radius: 80px;
	min-height: 46px;
	height: 100%;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	.single-product .quantity-section.tickets-product-qty-wrap {
		flex-shrink: 0;
		min-width: 2.5rem;
		width: 7.5rem;
		max-width: 7.5rem;
	}
	.single-product .quantity-section .quantity .qty {
		min-width: 2.5rem;
	}
}

/* Shop: catalog ordering (sorting) dropdown – match theme input border */
.woocommerce-ordering select,
.woocommerce-ordering .orderby {
	border: 1px solid rgba(145, 158, 171, 0.24);
	border-radius: 80px;
	padding: 0.5rem 0.875rem;
	min-height: 2.5rem;
	background-color: #fff;
}

/* Shop: pagination */
.woocommerce-pagination {
	margin-top: 1rem;
	padding-top: 1.5rem;
}
.woocommerce-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.woocommerce-pagination .page-numbers li {
	margin: 0;
}
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 1px solid rgba(145, 158, 171, 0.24);
	border-radius: 80px;
	background-color: #fff;
	color: var(--color-light-primary-text, #212b36);
	font-size: 0.875rem;
	line-height: 1.25;
	text-decoration: none;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.woocommerce-pagination .page-numbers a:hover {
	border-color: var(--color-primary, #0d9488);
	background-color: rgba(13, 148, 136, 0.06);
	color: var(--color-primary, #0d9488);
}
.woocommerce-pagination .page-numbers .current {
	border-color: var(--color-primary, #0d9488);
	background-color: var(--color-primary, #0d9488);
	color: #fff;
	cursor: default;
}
.woocommerce-pagination .page-numbers .prev,
.woocommerce-pagination .page-numbers .next {
	padding-left: 1rem;
	padding-right: 1rem;
}
.woocommerce-pagination .page-numbers .dots {
	border: none;
	background: transparent;
	cursor: default;
	min-width: auto;
}

/* Gravity Forms – match Contact template (Sellzy) styling */
.gform_wrapper.gravity-theme .gform_body .gfield input[type="text"],
.gform_wrapper.gravity-theme .gform_body .gfield input[type="email"],
.gform_wrapper.gravity-theme .gform_body .gfield input[type="tel"],
.gform_wrapper.gravity-theme .gform_body .gfield input[type="url"],
.gform_wrapper .gform_body .gfield input[type="text"],
.gform_wrapper .gform_body .gfield input[type="email"],
.gform_wrapper .gform_body .gfield input[type="tel"],
.gform_wrapper .gform_body .gfield input[type="url"] {
	border: 1px solid rgba(145, 158, 171, 0.24);
	border-radius: 80px;
	padding: 0.5rem 0.875rem;
	min-height: 2.5rem;
	width: 100%;
}
.gform_wrapper.gravity-theme .gform_body .gfield textarea,
.gform_wrapper .gform_body .gfield textarea {
	border: 1px solid rgba(145, 158, 171, 0.24);
	border-radius: 1rem;
	padding: 0.5rem 0.875rem;
	width: 100%;
	min-height: 120px;
	resize: vertical;
}
.gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.gform_wrapper .gform_footer input[type="submit"] {
	border-radius: 100px;
	padding: 0.5rem 1.5rem;
	font-weight: 600;
	background-color: var(--color-primary, #0d9488);
	color: #fff;
	border: none;
	cursor: pointer;
}
.gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer input[type="submit"]:hover {
	opacity: 0.9;
}
.gform_wrapper .gform_body .gfield_label {
	font-weight: 600;
	color: var(--color-light-primary-text, #212b36);
}
.gform_wrapper .gform_body .gfield {
	margin-bottom: 1rem;
}

/* Single product: Description block – readable headings and list spacing */
.product-description-section .product-description {
	font-size: 0.9375rem;
	line-height: 1.6;
}
.product-description-section .product-description h2 {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--color-light-primary-text, #212b36);
}
.product-description-section .product-description h2:first-child {
	margin-top: 0;
}
.product-description-section .product-description ul {
	margin-top: 0.5rem;
	margin-bottom: 0.75rem;
	padding-left: 1.25rem;
}
.product-description-section .product-description li {
	margin-bottom: 0.5rem;
}
.product-description-section .product-description li:last-child {
	margin-bottom: 0;
}
.product-description-section .product-description li p {
	margin: 0;
	line-height: 1.55;
}
.product-description-section .product-description hr {
	margin: 1rem 0;
	border: none;
	border-top: 1px solid rgba(145, 158, 171, 0.24);
}
.product-description-section .product-description .emoji {
	vertical-align: middle;
	height: 1.1em;
	width: 1.1em;
}

/* ========== Mobile: testimonials carousel controls (no Tailwind compiler – explicit styles) ========== */
.home-reviews-slider .slick-prev,
.home-reviews-slider .slick-next {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	border-radius: 9999px;
	background-color: rgba(145, 158, 171, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}
.home-reviews-slider .slick-prev:hover,
.home-reviews-slider .slick-next:hover {
	background-color: #4C7D45;
}
.home-reviews-slider .slick-prev i,
.home-reviews-slider .slick-next i {
	font-size: 1.25rem;
	line-height: 1;
	color: #161c24;
}
.home-reviews-slider .slick-prev:hover i,
.home-reviews-slider .slick-next:hover i {
	color: #fff;
}
.home-reviews-slider .slick-dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}
.home-reviews-slider .slick-dots button {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: none;
	border-radius: 9999px;
	background-color: #d1d5db;
	font-size: 0;
	line-height: 0;
	transition: background-color 0.3s ease;
}
.home-reviews-slider .slick-dots .slick-active button {
	background-color: #4C7D45;
}

/* ========== Mobile: product card thumbnail full width, logos + vs centered ========== */
@media (max-width: 767px) {
	.product-card .tickets-product-card-thumb {
		max-width: none;
		width: 100%;
	}
	.product-card .tickets-team-logos-thumb {
		background-color: #FCF6E2;
		justify-content: center;
		align-items: center;
	}
}

/* ========== Shop: filters full-screen popup on mobile (z-index above nav) ========== */
.tickets-shop-filters-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(22, 28, 36, 0.5);
	z-index: 92;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.tickets-shop-filters-overlay.is-open {
	display: block;
}
.tickets-shop-filters-modal {
	position: relative;
	min-height: 100%;
	background: #fff;
	margin: 0;
	padding: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.tickets-shop-filters-overlay { display: none !important; }
	.tickets-shop-filters-btn { display: none !important; }
}
@media (max-width: 1023px) {
	.tickets-shop-filters-btn {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
	}
}
.tickets-shop-filters-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.tickets-shop-filters-close {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(145, 158, 171, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.25rem;
}

/* ========== Mobile: logo size in fixed top bar (explicit dimensions, no Tailwind) ========== */
@media (max-width: 1279px) {
	.tickets-mobile-logo a {
		display: inline-block;
	}
	.tickets-mobile-logo .tickets-mobile-logo-inner {
		display: block;
		max-width: 7.5rem;
	}
	.tickets-mobile-logo img,
	.tickets-mobile-logo .custom-logo-link img {
		display: block;
		height: 3.5rem;
		width: auto;
		max-width: 7.5rem;
		object-fit: contain;
	}
}
@media (min-width: 768px) and (max-width: 1279px) {
	.tickets-mobile-logo .tickets-mobile-logo-inner {
		max-width: 9.375rem;
	}
	.tickets-mobile-logo img,
	.tickets-mobile-logo .custom-logo-link img {
		max-width: 9.375rem;
	}
}

/* Mobile header tools: surface search + leagues button under top row */
.tickets-mobile-header-tools {
	margin-top: 0.75rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.625rem;
}
.tickets-mobile-search-form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 9999px;
	padding: 0.625rem 0.875rem 0.625rem 2.25rem;
}
.tickets-mobile-search-icon {
	position: absolute;
	left: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	color: #637381;
	font-size: 1.125rem;
	line-height: 1;
}
.tickets-mobile-search-input {
	width: 100%;
	border: none;
	outline: none;
	background: transparent;
	color: #161c24;
	font-size: 0.9375rem;
	line-height: 1.4;
}
.tickets-mobile-search-input::placeholder {
	color: #637381;
	opacity: 1;
}
.tickets-mobile-leagues-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	background: #4C7D45;
	color: #fff;
	text-decoration: none;
	border-radius: 0.625rem;
	padding: 0.6875rem 1rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	border: none;
	cursor: pointer;
}
.tickets-mobile-leagues-btn:hover,
.tickets-mobile-leagues-btn:focus {
	color: #fff;
	background: #3d6538;
}
.tickets-mobile-leagues-arrow {
	font-size: 1rem;
	line-height: 1;
	margin-left: 0.125rem;
}
.tickets-mobile-leagues-menu {
	display: none;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 0.75rem;
	max-height: 60vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0.5rem 0.75rem;
}
.tickets-mobile-leagues-menu[data-state="open"] {
	display: block;
}
.tickets-mobile-leagues-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tickets-mobile-leagues-menu > ul > li {
	padding: 0.45rem 0;
	border-bottom: 1px solid rgba(145, 158, 171, 0.24);
}
.tickets-mobile-leagues-menu > ul > li:last-child {
	border-bottom: none;
}
.tickets-mobile-leagues-menu a {
	color: #161c24;
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.35;
	display: block;
}
.tickets-mobile-leagues-menu a:hover {
	color: #4C7D45;
}
.tickets-mobile-leagues-parent {
	font-weight: 600;
}
.tickets-mobile-leagues-children {
	margin-top: 0.35rem;
	padding-left: 0.75rem;
}
.tickets-mobile-leagues-children li {
	padding: 0.25rem 0;
}
@media (min-width: 1280px) {
	.tickets-mobile-header-tools {
		display: none;
	}
}

/* ========== Contact page: constrain image (no Tailwind compiler – explicit sizes) ========== */
.contact-page-image {
	flex-shrink: 0;
	margin-right: 0;
	margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
	.contact-page-image {
		margin-right: 2rem;
		margin-bottom: 0;
	}
}
.contact-page-image img {
	width: 10rem;
	height: 10rem;
	max-width: 100%;
	border-radius: 1rem;
	object-fit: cover;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
	display: block;
}
@media (min-width: 768px) {
	.contact-page-image img {
		width: 13rem;
		height: 13rem;
	}
}

/* ========== Header: account + cart tools (plain CSS) ========== */
.tickets-header-tools-desktop {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
}
.tickets-header-tools-desktop-list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.tickets-header-tool-item {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}
/* Account: round icon only (desktop + mobile header bar) */
.tickets-header-account-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background-color: rgba(76, 125, 69, 0.12);
	color: #212b36;
	text-decoration: none;
	flex-shrink: 0;
}
.tickets-header-account-icon-btn:hover,
.tickets-header-account-icon-btn:focus {
	background-color: rgba(76, 125, 69, 0.2);
	outline: none;
}
.tickets-header-account-icon-btn .hgi {
	font-size: 1.5rem;
	line-height: 1;
}
.tickets-header-mobile-icons {
	display: flex;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 1280px) {
	.tickets-header-mobile-icons {
		display: none;
	}
}
/* ========== WooCommerce My Account (override WC floats + layout; plain CSS) ========== */
/*
 * WooCommerce woocommerce-layout.css sets .woocommerce-MyAccount-navigation { float:left; width:30% }
 * and .woocommerce-MyAccount-content { float:right; width:68% }, which breaks our grid and squishes content.
 */
.tickets-woo-account-page {
	padding-top: 0.5rem;
	padding-bottom: 2rem;
}
.tickets-woo-account-breadcrumb {
	padding-top: 2rem;
	padding-bottom: 0.75rem;
}
.tickets-woo-account-inner {
	display: grid;
	gap: 1.5rem 2rem;
	padding-bottom: 4rem;
	align-items: start;
}
/* Notices render as first child inside inner (before nav); span full width */
.tickets-woo-account-inner > .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	width: 100%;
}
@media (min-width: 768px) {
	.tickets-woo-account-inner {
		grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	}
}
/* Reset WC layout floats inside our wrapper */
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation,
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none;
	margin: 0;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-content {
	min-width: 0;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.25rem 1rem;
	box-shadow: 0 1px 3px rgba(22, 28, 36, 0.06);
}
@media (min-width: 768px) {
	body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-content {
		padding: 1.75rem 1.5rem;
	}
}
/* Sidebar nav */
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 0.5rem;
	box-shadow: 0 1px 3px rgba(22, 28, 36, 0.06);
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation li {
	margin: 0;
	padding: 0;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.7rem 0.85rem;
	text-decoration: none;
	color: #212b36;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	border-radius: 8px;
	transition: background-color 0.15s ease, color 0.15s ease;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation a:focus {
	background: rgba(145, 158, 171, 0.12);
	color: #4c7d45;
	outline: none;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation li.is-active a {
	background: rgba(76, 125, 69, 0.14);
	color: #4c7d45;
	font-weight: 600;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #637381;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	color: #b42318;
	background: rgba(180, 35, 24, 0.08);
}
.tickets-mya-nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	flex-shrink: 0;
	border-radius: 8px;
	background: rgba(145, 158, 171, 0.1);
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation li.is-active .tickets-mya-nav-icon {
	background: rgba(76, 125, 69, 0.2);
}
.tickets-mya-nav-icon .hgi {
	font-size: 1.125rem;
	line-height: 1;
	color: #4c7d45;
}
body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout .tickets-mya-nav-icon .hgi {
	color: #637381;
}
.tickets-mya-nav-label {
	flex: 1;
	min-width: 0;
}
/* Headings inside account content */
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content h2,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #212b36;
	margin: 0 0 1rem;
	line-height: 1.3;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content > :first-child {
	margin-top: 0;
}
/* Notices: theme-aligned, no single blue top bar */
body.woocommerce-account .tickets-woo-account-page .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-account .tickets-woo-account-page .woocommerce-notices-wrapper .woocommerce-info,
body.woocommerce-account .tickets-woo-account-page .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-error {
	border: 1px solid #e5e7eb !important;
	border-radius: 10px !important;
	border-top: 1px solid #e5e7eb !important;
	padding: 1rem 1.15rem !important;
	margin: 0 0 1rem !important;
	list-style: none;
	box-shadow: none;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-message,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-message {
	background: rgba(76, 125, 69, 0.1) !important;
	border-color: rgba(76, 125, 69, 0.35) !important;
	color: #1a2e16 !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-info,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-info {
	background: #f4f6f8 !important;
	border-color: #dfe3e8 !important;
	color: #212b36 !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-error,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-error {
	background: rgba(180, 35, 24, 0.08) !important;
	border-color: rgba(180, 35, 24, 0.35) !important;
	color: #5c1f1a !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-message::before,
body.woocommerce-account .tickets-woo-account-page .woocommerce-info::before,
body.woocommerce-account .tickets-woo-account-page .woocommerce-error::before {
	color: #4c7d45 !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-error::before {
	color: #b42318 !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-info::before {
	color: #637381 !important;
}
/* Buttons */
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .button,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-button,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content button.button,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content a.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	float: none !important;
	padding: 0.65rem 1.35rem !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	border-radius: 80px !important;
	text-decoration: none !important;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	cursor: pointer;
	border: 1px solid transparent;
	box-shadow: none;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .button.alt,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-button,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content button.button.alt,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content a.button.alt {
	background: #4c7d45 !important;
	color: #fff !important;
	border-color: #4c7d45 !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .button.alt:hover,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-button:hover,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content a.button.alt:hover {
	background: #3d6638 !important;
	border-color: #3d6638 !important;
	color: #fff !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .button:not(.alt),
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content a.button:not(.alt) {
	background: #fff !important;
	color: #212b36 !important;
	border: 1px solid #dfe3e8 !important;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .button:not(.alt):hover,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content a.button:not(.alt):hover {
	border-color: #4c7d45 !important;
	color: #4c7d45 !important;
}
/* Tables (orders, etc.) */
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content table.shop_table,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-orders-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
	margin: 0 0 1.5rem;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content table.shop_table thead th,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-orders-table thead th {
	text-align: left;
	padding: 0.65rem 0.5rem;
	border-bottom: 2px solid #e5e7eb;
	color: #637381;
	font-weight: 600;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content table.shop_table tbody td,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content table.shop_table tbody th,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-orders-table tbody td,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-orders-table tbody th {
	padding: 0.85rem 0.5rem;
	border-bottom: 1px solid #f0f2f4;
	vertical-align: middle;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content table.shop_table a,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-orders-table a {
	color: #4c7d45;
	font-weight: 600;
	text-decoration: none;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content table.shop_table a:hover,
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content .woocommerce-orders-table a:hover {
	text-decoration: underline;
}
/* Login / register columns: drop floats */
body.woocommerce-account .tickets-woo-account-page .u-columns.col2-set,
body.woocommerce-account .tickets-woo-account-page .col2-set {
	width: 100% !important;
	display: grid;
	gap: 1.5rem;
}
body.woocommerce-account .tickets-woo-account-page .col2-set::before,
body.woocommerce-account .tickets-woo-account-page .col2-set::after {
	content: none !important;
	display: none !important;
}
body.woocommerce-account .tickets-woo-account-page .col2-set .col-1,
body.woocommerce-account .tickets-woo-account-page .col2-set .col-2 {
	width: 100% !important;
	float: none !important;
	max-width: none !important;
}
@media (min-width: 768px) {
	body.woocommerce-account .tickets-woo-account-page .u-columns.col2-set,
	body.woocommerce-account .tickets-woo-account-page .col2-set {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}
body.woocommerce-account .tickets-woo-account-page form.login,
body.woocommerce-account .tickets-woo-account-page form.register {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.25rem 1.15rem;
	background: #fafbfb;
}
@media (min-width: 768px) {
	body.woocommerce-account .tickets-woo-account-page form.login,
	body.woocommerce-account .tickets-woo-account-page form.register {
		padding: 1.5rem;
	}
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-form-row input.input-text,
body.woocommerce-account .tickets-woo-account-page .woocommerce-form-row textarea,
body.woocommerce-account .tickets-woo-account-page .woocommerce-form-row select {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid #dfe3e8;
	border-radius: 8px;
	padding: 0.6rem 0.85rem;
	font-size: 1rem;
}
body.woocommerce-account .tickets-woo-account-page .woocommerce-form-row label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 500;
	color: #212b36;
	font-size: 0.875rem;
}
/* Dashboard copy */
body.woocommerce-account .tickets-woo-account-page .woocommerce-MyAccount-content p {
	color: #454f5b;
	line-height: 1.55;
	margin: 0 0 0.85rem;
}
@media (max-width: 767px) {
	body.woocommerce-account .tickets-woo-account-inner .woocommerce-MyAccount-navigation a {
		padding: 0.65rem 0.75rem;
		font-size: 0.875rem;
	}
}
