/**
 * Villages Collection Styles
 * 
 * This stylesheet contains all styles for the villages collection pages:
 * - /villages (archive page)
 * - /villages/{brand} (brand archive with filters)
 * - /villages/{brand}/view-all (view all products)
 * - /villages/{brand}/{category} (category archive)
 * 
 * @package Avada-Child-Theme
 */

/* ==========================================================================
   Brand Filter Pills
   ========================================================================== */

/**
 * Container for the filter pills navigation
 * Displays category filters horizontally with "NEW THIS YEAR" and "VIEW ALL" options
 */
.lemax-brand-filters {
	padding: 2rem 0;
	margin-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}
.lemax-brand-filters:not(.lemax-seasonal-filters) {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
.lemax-brand-filters__container {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}

.lemax-brand-filters__back img {
	display: block;
    width: auto;
    height: 45px;
    max-width: 100%;
    min-width: 45px;
    margin-top: 2px;
}
/**
 * Individual filter pill button
 * Pill-shaped buttons for category navigation
 */
.lemax-brand-filters__pill {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	background-color: #f5f5f5;
	color: #333;
	text-decoration: none;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.lemax-brand-filters__pill:hover {
	background-color: #e8e8e8;
	color: #000;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/**
 * Active state for filter pills
 * Highlights the currently selected filter
 */
.lemax-brand-filters__pill--active {
	background-color: #002349;
	color: #ffffff;
	border-color: #002349;
	font-weight: 600;
}

.lemax-brand-filters__pill--active:hover {
	background-color: #1e4220;
	border-color: #1e4220;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

/* ==========================================================================
   Brand Hero Section
   ========================================================================== */

/**
 * Hero section at the top of brand pages
 * Contains brand image, title, description, and back link
 */
.lemax-brand-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	padding: 2rem 0 3rem;
}

.lemax-brand-hero__media {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.lemax-brand-hero__media img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.lemax-brand-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lemax-brand-hero__eyebrow {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #666;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.lemax-brand-hero__title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
	line-height: 1.2;
}

.lemax-brand-hero__description {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 1.5rem;
}

.lemax-brand-hero__description p {
	margin-bottom: 1rem;
}

.lemax-brand-hero__description p:last-child {
	margin-bottom: 0;
}

/**
 * Back to villages link
 */
.lemax-brand-hero__back {
	display: inline-flex;
	align-items: center;
	color: #002349;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	margin-top: auto;
}

.lemax-brand-hero__back:hover {
	color: #1e4220;
	text-decoration: underline;
}

.lemax-brand-hero__back::before {
	content: '←';
	margin-right: 0.5rem;
	font-size: 1.2rem;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */

/**
 * Breadcrumb navigation section
 * Displays navigation path: HOME / VILLAGES / BRAND_NAME
 */
.lemax-breadcrumb {
	background-color: #002349;
	padding: 16px 30px;
	margin-bottom: 0;
	margin: 0 -30px;
}

.lemax-breadcrumb__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	width: 100%;
}
.lemax-breadcrumb__share #st-1 .st-total {
    color: #fff;
	padding-left: 0;
}
.lemax-breadcrumb__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: opacity 0.3s ease;
}

.lemax-breadcrumb__link:hover {
	opacity: 0.8;
	text-decoration: none;
	color: #ffffff;
}

.lemax-breadcrumb__icon {
	font-size: 1rem;
	line-height: 1;
}

.lemax-breadcrumb__separator {
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 400;
	opacity: 0.7;
}

.lemax-breadcrumb__current {
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* Category Filters Toggle Button */
.lemax-breadcrumb__content {
	flex: 1;
}

.lemax-breadcrumb__actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-left: 20px;
	flex-wrap: wrap;
}

.lemax-breadcrumb__toggle-btn {
	background-color: #edce04;
	color: #000;
	border: none;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 4px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.lemax-breadcrumb__share {
	display: flex;
	align-items: center;
}

/* Style ShareThis buttons within breadcrumb */
.lemax-breadcrumb__share .st-inline-share-buttons,
.lemax-breadcrumb__share .sharethis-inline-share-buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Ensure ShareThis buttons are visible on dark background */
.lemax-breadcrumb__share .st-btn,
.lemax-breadcrumb__share .st-inline-share-buttons .st-btn {
	opacity: 1;
}

.lemax-breadcrumb__filter-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.lemax-breadcrumb__toggle-btn:hover {
	background-color: #ffb300;
}

.lemax-breadcrumb__toggle-btn:active {
	transform: translateY(0);
}

.lemax-breadcrumb__toggle-text {
	font-weight: 600;
}

.lemax-breadcrumb__toggle-icon {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	display: inline-block;
}

.lemax-breadcrumb__toggle-icon--rotated {
	transform: rotate(180deg);
}

/* Category Filters Wrapper - Hidden State */
.lemax-category-filters-wrapper--hidden {
	display: none !important;
}

/* Product Grid Wrapper - Add spacing when filters are hidden */
.lemax-product-grid-wrapper {
	transition: margin-top 0.3s ease;
}

.lemax-product-grid-wrapper--filters-hidden {
	margin-top: 30px;
}

.term-norman-rockwell section.lemax-breadcrumb { margin-bottom: 30px;}
/* ==========================================================================
   Brand Categories Grid (Old Layout - Kept for Reference)
   ========================================================================== */

/**
 * Grid layout for category cards (if used elsewhere)
 */
.lemax-brand-categories {
	margin-bottom: 3rem;
}

.lemax-brand-categories header {
	margin-bottom: 2rem;
	text-align: center;
}

.lemax-brand-categories header h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.lemax-brand-categories header p {
	color: #666;
	font-size: 1rem;
}

.lemax-brand-categories__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.lemax-brand-categories__card {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lemax-brand-categories__card:hover {
	border-color: #002349;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
	text-decoration: none;
}

.lemax-brand-categories__name {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
}

.lemax-brand-categories__count {
	font-size: 0.875rem;
	color: #666;
}

/* ==========================================================================
   Product Filters (Static Filters for Category Pages)
   ========================================================================== */

/**
 * Container for product feature filters
 * Shows filter options like "4.5V ADAPTOR", "ANIMATED", "LIGHTED", etc.
 */
.lemax-product-filters {
    border-bottom: 1px solid #e0e0e0;
	flex: 1;
}

.lemax-product-filters__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.lemax-product-filters__label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #002349;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lemax-product-filters__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #e8e8e8;
	border: none;
	border-radius: 50%;
	color: #333;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lemax-product-filters__clear:hover {
	background-color: #d0d0d0;
	color: #000;
	text-decoration: none;
	transform: scale(1.05);
}

.lemax-product-filters__clear--disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.lemax-product-filters__container {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: flex-start;
}

/**
 * Individual filter item button
 * Contains an icon in circular container and text label below
 */
.lemax-product-filters__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #333;
	padding: 8px;
}

.lemax-product-filters__item:hover {
	transform: translateY(-4px);
	text-decoration: none;
}

.lemax-product-filters__item--active .lemax-product-filters__text {
	color: #002349;
	font-weight: 600;
}

.lemax-product-filters__icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #000;
	border: 2px solid #000;
	border-radius: 50%;
	transition: all 0.3s ease;
	padding: 12px;
	overflow: hidden;
	position: relative;
}

.lemax-product-filters__item:hover .lemax-product-filters__icon-wrapper {
	background-color: #333;
	border-color: #333;
	transform: scale(1.1);
}

.lemax-product-filters__item--active:hover {
	border-color: #d8e2d4;
	background-color: #d8e2d4;
	border-radius: 8px;
}

.lemax-product-filters__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
}

.lemax-product-filters__icon img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.lemax-product-filters__icon--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
}

.lemax-product-filters__item--active {
	border-color: #d8e2d4;
	background-color: #d8e2d4;
	border-radius: 8px;
}

.lemax-product-filters__text {
	font-size: 0.75rem;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
	color: #333;
	transition: color 0.3s ease;
}

/* ==========================================================================
   Combined Filters Row (Feature + Season)
   ========================================================================== */

.lemax-filters-row {
	display: flex;
	gap: 1.5rem;
	align-items: stretch;
	margin: 2rem 0;
}

.lemax-filters-row__col {
	flex: 1 1 0;
	display: flex;
}

.lemax-filters-row__col--features {
	flex-basis: 66%;
	max-width: 66%;
}

.lemax-filters-row__col--season {
	flex-basis: 34%;
	max-width: 34%;
	padding-left: 1.5rem;
	border-left: 1px solid #e0e0e0;
}

/* Make inner filter sections fill column height and align to top */
.lemax-filters-row__col > .lemax-product-filters,
.lemax-filters-row__col > .lemax-seasonal-filters {
	flex: 1 1 auto;
	height: 100%;
}

/* Tweak seasonal filter padding/border when used in the combined row */
.lemax-filters-row__col--season .lemax-seasonal-filters {
	padding-top: 0;
	margin: 0;
}

/* When only one filter is present, let it span full width and remove separator */
.lemax-filters-row--single .lemax-filters-row__col {
	flex-basis: 100%;
	max-width: 100%;
}

.lemax-filters-row--single .lemax-filters-row__col--season,
.lemax-filters-row--single .lemax-filters-row__col--features {
	border-left: none;
	padding-left: 0;
}
.lemax-product-filters__container {
	padding-bottom: 1.5rem;
}


@media (max-width: 960px) {
	.lemax-filters-row {
		flex-direction: column;
	}

	.lemax-filters-row__col--features,
	.lemax-filters-row__col--season {
		max-width: 100%;
		flex-basis: 100%;
	}

	.lemax-filters-row__col--season {
		border-left: none;
		border-top: 1px solid #e0e0e0;
		padding-left: 0;
		padding-top: 1rem;
		margin-top: 0.5rem;
	}
}

/* ==========================================================================
   Product Features Display (Single Product Page)
   ========================================================================== */

/**
 * Product features section on single product pages
 * Shows features with icons
 */
.lemax-product-features {
	margin: 2rem 0;
	padding: 1.5rem 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.lemax-product-features__title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lemax-product-features__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.lemax-product-features__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background-color: #f5f5f5;
	border-radius: 4px;
	font-size: 0.875rem;
	color: #333;
}

.lemax-product-features__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.lemax-product-features__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lemax-product-features__name {
	font-weight: 500;
}

/* ==========================================================================
   Product Specifications (Custom Fields on Single Product Page)
   ========================================================================== */

/**
 * Product specifications display above add to cart button
 */
.lemax-product-specs {
	margin: 1.5rem 0;
	padding: 1.5rem;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.lemax-product-specs__item {
	display: flex;
	align-items: baseline;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #e8e8e8;
}

.lemax-product-specs__item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.lemax-product-specs__label {
	font-weight: 600;
	color: #333;
	margin-right: 0.5rem;
	min-width: 140px;
	font-size: 0.9375rem;
}

.lemax-product-specs__value {
	color: #555;
	font-size: 0.9375rem;
	flex: 1;
}

/* ==========================================================================
   Product Loop Features (Feature Icons on Product Cards)
   ========================================================================== */

/**
 * Feature icons displayed on product cards in shop/archive loops
 */
.lemax-product-loop-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e0e0e0;
	position: relative;
	z-index: 1;
}

/* Ensure features stay inside product card */
li.product .lemax-product-loop-features {
	width: 100%;
	box-sizing: border-box;
}

.lemax-product-loop-features__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.lemax-product-loop-features__icon:hover {
	background-color: #e8e8e8;
	transform: scale(1.1);
}

.lemax-product-loop-features__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* ==========================================================================
   Brand Category Header (Category Archive Pages)
   ========================================================================== */

/**
 * Header section for category archive pages within a brand
 */
.lemax-brand-category-header {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.lemax-brand-category-header__eyebrow {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #666;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.lemax-brand-category-header h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.lemax-brand-category-header__description {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 1rem;
}

.lemax-brand-category-header__back {
	display: inline-flex;
	align-items: center;
	color: #002349;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.lemax-brand-category-header__back:hover {
	color: #1e4220;
	text-decoration: underline;
}

.lemax-brand-category-header__back::before {
	content: '←';
	margin-right: 0.5rem;
	font-size: 1.2rem;
}

/* ==========================================================================
   Villages Archive Page
   ========================================================================== */
.fusion-product-wrapper {
	background-color: #FFFFFF;
	position: relative;
	transition: all 0.3s ease-in-out 0s;
	border: 1px solid #dbd4d4 !important;
	box-shadow: 1px 1px 15px 0 rgb(95 80 186 / 20%) !important;
	border-radius: 12px;
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.fusion-product-wrapper .fusion-product-content {
	padding: 20px 0 0 0 !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.product-images .crossfade-images {
	background-color: white;
	height: 300px !important;
	width: 300px !important;
	margin: auto;
}

.featured-image img {
	height: 300px !important;
	width: 300px !important;
	object-fit: contain;
}

.featured-image.crossfade-images {
	background-color: white !important;
	height: 300px !important;
	width: 300px !important;
	margin: auto;
}

.fusion-product-content .product-details .product-details-container .product-title a {
	color: #002349;
	text-decoration: none;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
}

.fusion-product-content .product-details .product-details-container .fusion-price-rating {
	justify-content: center;
}

.fusion-product-content .product-details .product-details-container .fusion-price-rating .lemax-product-loop-sku {
	margin: 0;
	color: #002349 !important;
	font-size: 20px;
	line-height: normal;
}

.fusion-product-content .product-details .product-details-container .product-title {
	line-height: normal !important;
	font-size: 22px !important;
}

.fusion-product-content .product-details .product-details-container .fusion-price-rating .lemax-product-loop-sku .lemax-product-sku-value {
	color: #002349 !important;
}

.fusion-product-wrapper .fusion-product-content .product-buttons {
	padding: 0;
	display: block !important;
}

.fusion-product-wrapper .fusion-product-content .product-buttons .fusion-content-sep.sep-double.sep-solid {
	border: 0;
	margin: 0;
}

.fusion-product-content .product-details .product-details-container {
	padding-bottom: 15px;
}

.fusion-product-wrapper .fusion-product-content .product-buttons .product-buttons-container .show_details_button {
	display: none;
}

.fusion-product-wrapper .fusion-product-content .product-buttons .eqs-add-to-quotation.eqs-add-to-quotation-loop {
	padding: 15px;
}
.lemax-category-product-grid li.product p:empty, .lemax-category-product-grid li.product a.product-images + p {
    display: none;
	margin: 0 !important;
}

.lemax-product-loop-features + .product-buttons {
	display: block !important;
}
.eqs-add-to-quotation.eqs-add-to-quotation-loop {
    background: #002349;
    text-align: center !important;
    border-radius: 6px;
}
.eqs-add-to-quotation.eqs-add-to-quotation-loop:hover {
	background: #fcc943;
	color: #002349;
}
/* Brand Icon in Loop */
.lemax-product-brand-icon {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
	max-width: 90px;
	z-index: 111;
	width: 100%;
}

.lemax-product-brand-icon img {
    height: 60px;
	max-width: 90px;
	width: 100%;
    object-fit: contain;
}
.lemax-product-brand-icon .icon-vail-village,
.lemax-product-brand-icon .icon-carnival,
.lemax-product-brand-icon .icon-caddington,
.lemax-product-brand-icon .icon-santas-wonderland,
.lemax-product-brand-icon .icon-sugar-n-spice,
.lemax-product-brand-icon .icon-jukebox-junction,
.lemax-product-brand-icon .icon-plymouth-corners,
.lemax-product-brand-icon .icon-spooky-town {
    height: 100%;
}
.lemax-product-brand-icon.general-products {
    max-width: 60px;
}
/* ==========================================================================
   Yearly Tags Styles
   ========================================================================== *
*/
.single-product .avada-single-product-gallery-wrapper .images {
	position: relative;
}

/* Year tags */
.yearly-tag .year-tag {
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	z-index: 111;
	background-size: contain;
	top: 10px;
	left: 10px;
	right: auto;
}
span.year-2026 {
	background: url(../images/2026.svg) top left no-repeat;
}

span.year-2025 {
	background: url(../images/2025.svg) top left no-repeat;
}

span.retired-2026, span.retired-2025, span.retired-2024, span.retired-2023, span.retired-2022, span.retired-2021, span.retired-2020, span.retired-2019, span.retired-2018, span.retired-2017, span.retired-2016, span.retired-2015, span.retired-2014, span.retired-2013, span.retired-2012, span.retired-2011, span.retired-2010, span.retired-2009, span.retired-2008, span.retired-2007, span.retired-2006, span.retired-2005, span.retired-2004, span.retired-2003, span.retired-2002, span.retired-2001, span.retired-2000, span.retired-1999, span.retired-1997, span.retired-1996, span.retired-1995, span.retired-1994, span.retired-1993, span.retired-1992 span.retired-1991, span.retired-2018 {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 111;
    background: url(../images/retired-icon.svg) top left no-repeat;
    top: 10px;
    right: 10px;
    left: auto;
}

/* Retired Products on Single Product Pages - Special Layout */
/* Village icon on left, Retired icon on right */
.single-product .village-icon.product-is-retired {
	position: absolute;
	top: 10px;
	left: 10px;
	right: auto;
	z-index: 111;
	max-width: 90px;
}

.single-product .village-icon.product-is-retired .lemax-product-brand-icon {
	position: relative;
	top: auto;
	right: auto;
	left: auto;
	max-width: 90px;
	width: 100%;
}

.single-product .village-icon.product-is-retired .lemax-product-brand-icon img {
	height: 60px;
	max-width: 90px;
	width: 100%;
	object-fit: contain;
}

/* Ensure retired icon stays on right for retired products */
.single-product .yearly-tag.product-is-retired span[class^="retired-"] {
	top: 10px;
	right: 10px;
	left: auto;
}

/* Hide year tag for retired products on single product pages */
.single-product .yearly-tag.product-is-retired .year-tag {
	display: none;
}

/* Legacy class for backward compatibility */
span.pdyear2024 {
	width: 100px;
	height: 100px;
	background: url(../images/2024.svg) no-repeat;
	background-size: contain;
	margin-left: 20px;
	margin-top: 20px;
	position: absolute;
	z-index: 99;
}
.avada-myaccount-user .avada-myaccount-user-column:last-child {
    display: none;
}
/* ==========================================================================
   Responsive Design
   ========================================================================== */

/**
 * Tablet and below (max-width: 768px)
 */
@media (max-width: 768px) {
	.lemax-brand-hero {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-top: 10px;
		padding-bottom: 30px;
		margin-bottom: 0;
	}

	.lemax-brand-hero__title {
		font-size: 2rem;
	}

	.lemax-brand-filters__container {
		gap: 0.5rem;
	}

	.lemax-brand-filters__pill {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.lemax-villages__grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1.5rem;
	}

	.lemax-brand-categories__grid {
		grid-template-columns: 1fr;
	}

	.lemax-product-filters__container {
		gap: 0.75rem;
	}

	.lemax-product-filters__item {
		padding: 0.5rem 0.875rem;
		font-size: 0.8125rem;
	}

	.lemax-product-filters__icon {
		font-size: 1rem;
	}
	.featured-image.crossfade-images, 
	.product-images .crossfade-images,
	.featured-image img {
		height: 250px !important;
		width: 250px !important;
	}

	/* Category Filters Toggle Button - Mobile Styles */
	.lemax-breadcrumb__container {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
	.lemax-breadcrumb__share {
		margin-right: 10px;
	}
	.lemax-breadcrumb__actions {
		margin-left: 0;
		justify-content: space-between;
		width: 100%;
	}
	.lemax-breadcrumb__toggle-btn {
		width: auto;
		padding: 10px 15px;
		margin-left: 0;
		justify-content: center;
	}
	
	.lemax-breadcrumb__toggle-text {
		display: none;
	}
	
	.lemax-breadcrumb__filter-icon {
		margin: 0;
	}
	
	.lemax-breadcrumb__content {
		flex: 1;
		min-width: 0;
		overflow: hidden;
	}
	
	.lemax-product-grid-wrapper--filters-hidden {
		margin-top: 20px;
	}
}

/**
 * Mobile (max-width: 480px)
 */
@media (max-width: 480px) {
	.lemax-brand-hero__title {
		font-size: 1.75rem;
	}

	.lemax-brand-filters__pill {
		padding: 0.5rem 0.875rem;
		font-size: 0.75rem;
	}

	.lemax-villages__grid {
		grid-template-columns: 1fr;
	}

	.lemax-villages__image {
		height: 200px;
	}
	.lemax-brand-filters__back img {
		height: 36px;
		min-width: 36px;
	}
}
