/* Favorite Retailers Block Styles */

.favorite-retailers {
	position: relative;
	background-color: #f5f1eb; /* Beige background */
	padding: 95px 68px 116px;
	min-height: 200px;
	border-bottom: 1px solid #33391D;
}
.favorite-retailers:after{
	    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #33391D;
    position: absolute;
    bottom: 7px;
    left: 0;
}

.favorite-retailers-container {
	display: flex;
	align-items: flex-start;
	gap: 31px;
	max-width: 100%;
	margin: 0 auto;
}

/* Left Side: Title */
.favorite-retailers-title-wrapper {
	flex-shrink: 0;
	width: 200px;
	margin: 4px 0 0;
}

.favorite-retailers-title {
	margin: 0;
	font-family: 'Inria Serif', serif;
	font-size: 32px;
	font-weight: 300;
	line-height: 38px;
	color: #3d2817; /* Dark brown */
	text-transform: none;
	letter-spacing: -0.09rem;
}

/* Right Side: Content */
.favorite-retailers-content {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Links Wrapper */
.favorite-retailers-links-wrapper {
	flex: 1;
	overflow: hidden;
}

.favorite-retailers-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 29px 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: calc((4 * 1.5rem) + (3 * 29px)); /* 4 rows: 4 items + 3 gaps */
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 1rem;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

/* Hide default scrollbar for webkit browsers */
.favorite-retailers-links::-webkit-scrollbar {
	display: none;
}

.favorite-retailers-link-item {
	margin: 0;
	padding: 0;
}

.favorite-retailers-link {
	display: inline-block;
	font-family: 'Figtree', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	color: #33391D; /* Dark brown */
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
	letter-spacing: 0.04rem;
}

.favorite-retailers-link:hover {
	opacity: 0.8;
	color: #2a1c10;
	text-decoration:underline;
}

.favorite-retailers-link:focus {
	outline: 2px solid #3d2817;
	outline-offset: 2px;
	border-radius: 2px;
}

.favorite-retailers-link:focus-visible {
	outline: 3px solid #005fcc;
	outline-offset: 3px;
}

/* Custom Scrollbar Container */
.favorite-retailers-scrollbar-container {
	display: none; /* Hidden by default, shown via JS when needed */
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 20px;
	padding: 0 4px;
	pointer-events: none;
}

.favorite-retailers-scrollbar-container.active {
	display: block;
}

.favorite-retailers-scrollbar-track {
	position: relative;
	width: 1px;
	height: 100%;
	background: #33391D;
}

.favorite-retailers-scrollbar-thumb {
	position: absolute;
	width: 12px;
	height: 12px!important;
	background: #3d2817; /* Dark brown */
	border-radius: 50%;
	cursor: grab;
	transition: background 0.2s ease;
	pointer-events: auto;
	min-height: 12px;
	right: -6px;
}

.favorite-retailers-scrollbar-thumb:hover {
	background: #2a1c10;
}

.favorite-retailers-scrollbar-thumb:active {
	cursor: grabbing;
	background: #1f1509;
}

/* Responsive Styles */
@media (max-width: 1024px) {

	.favorite-retailers-links {
		grid-template-columns: repeat(2, 1fr);
		max-height: calc((4 * 1.5rem) + (3 * 29px)); /* 4 rows: 4 items + 3 gaps */
	}
}

@media (max-width: 860px) {
	.favorite-retailers-content {
	width:100%;
	}
	
	.favorite-retailers-container {
		flex-direction:column;
	}
	.favorite-retailers {
		    padding: 55px 60px 80px;
	}
}
@media (max-width:650px) {
	    .favorite-retailers {
        padding: 55px 30px 80px;
    }
	    .favorite-retailers-links {
        grid-template-columns: repeat(1, 1fr);
        max-height: calc((4 * 1.5rem) + (3 * 29px));
    }
}
/* Print Styles */
@media print {
	.favorite-retailers-scrollbar-container {
		display: none !important;
	}
	
	.favorite-retailers-links {
		max-height: none;
		overflow: visible;
	}
	
	.favorite-retailers-links {
		grid-template-columns: repeat(3, 1fr);
	}
}


