* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	background-color: rgba(250, 248, 209, 0.9);
	color: #a64f25;
	line-height: 1.6;
}

.site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	padding: 1.5rem 4%;
	position: sticky;
	top: 0;
	background: rgba(250, 248, 209, 0.9);
	backdrop-filter: blur(10px);
}

.header-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.header-logo.show {
	opacity: 1;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.header-logo img {
	height: 48px;
	width: auto;
	transition: filter 0.3s ease;
}

/* Show hamburger menu on all screen sizes for all pages */
.hamburger-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	background: none;
	border: none;
	cursor: pointer;
	margin-right: auto;
}

.hamburger-menu span {
	width: 100%;
	height: 3px;
	background-color: #a64f25;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Make mobile menu functional on large screens for all pages */
.mobile-menu {
	display: none;
}

.mobile-menu.active {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: #f2c14f;
	padding: 1rem;
	margin: 0 4%;
	border-radius: 12px;
	align-items: center;
	text-align: center;
}

.mobile-menu a {
	text-decoration: none;
	color: #a64f25;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.mobile-menu a:hover {
	color: #8b3f1f;
}

/* Mobile menu submenu styles for all pages */
.mobile-menu .menu-item-with-submenu {
	position: relative;
}

.mobile-menu .submenu {
	position: static;
	display: none;
	background: rgba(166, 79, 37, 0.1);
	margin: 0.5rem 0;
	padding: 0.5rem;
	border-radius: 4px;
	box-shadow: none;
}

.mobile-menu .menu-item-with-submenu:hover .submenu,
.mobile-menu .menu-item-with-submenu .submenu.active {
	display: block;
}

.mobile-menu .submenu a {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

/* Visual ordering: icons right; center stack with logo then menu */
.site-header .header-icons {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	background: rgba(242, 193, 79, 0.08);
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
}

.site-header .header-icons img {
	width: 22px;
	height: 22px;
	display: block;
	transition: filter 0.3s ease;
}

.site-header .header-icons a:hover img {
	filter: opacity(0.6);
}

.site-header .logo-center {
	order: 2;
	flex: 1;
	margin: 0; /* keep header compact */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.site-header .logo-center .main-nav {
	display: flex;
	gap: 4rem;
	align-items: center;
	background: #f2c14f;
	padding: 0.35rem 0.5rem;
	border-radius: 12px;
}

.main-nav {
	display: flex;
	justify-content: center;
	gap: 4rem;
	align-items: center;
	background: #f2c14f;
	padding: 0.35rem 0.5rem;
	border-radius: 15px;
	margin: 5rem 10% 1rem 10%;
}
.mobile-menu {
	display: none;
}
@media (max-width: 768px) {
	.site-header {
		padding: 1rem 4%;
		gap: 0.5rem;
	}
	.site-header .logo-center {
		flex: 0 0 auto;
	}
	.site-header .logo-center .main-nav {
		display: none; /* hide menu on small screens, show with mobile control later */
	}
	.main-nav {
		display: none;
	}
	.mobile-menu {
		display: none;
	}
	.mobile-menu.active {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		background: #f2c14f;
		padding: 1rem;
		margin: 0 4%;
		border-radius: 12px;
		align-items: center;
		text-align: center;
	}
	.mobile-menu a {
		text-decoration: none;
		color: #a64f25;
		font-size: 1rem;
		font-weight: 700;
	}
	.mobile-menu a:hover {
		color: #a6502561;
	}
}

.logo {
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.main-nav a {
	text-decoration: none;
	color: #a64f25;
	font-size: 1.2rem;
	font-weight: 900;
}

.main-nav a:hover {
	color: #a6502561;
}
.main-nav a:last-child {
	margin-right: 0;
}

/* Submenu Styles */
.menu-item-with-submenu {
	position: relative;
	display: inline-block;
}

.menu-parent {
	text-decoration: none;
	color: #a64f25;
	font-size: 1.2rem;
	font-weight: 900;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #f2c14f;
	min-width: 160px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 0.25rem 0;
	z-index: 1000;
	white-space: nowrap;
}

.submenu a {
	display: block;
	padding: 0.4rem 0.8rem;
	text-decoration: none;
	color: #a64f25;
	font-size: 0.75rem;
	font-weight: 700;
	transition: background-color 0.3s ease;
}

.submenu a:hover {
	background-color: rgba(166, 79, 37, 0.1);
	color: #a64f25;
}

.menu-item-with-submenu:hover .submenu {
	display: block;
}

.menu-parent:hover {
	color: #a6502561;
}

/* Mobile submenu styles */
@media (max-width: 768px) {
	.mobile-menu .menu-item-with-submenu {
		position: relative;
	}

	.mobile-menu .submenu {
		position: static;
		display: none;
		background: rgba(166, 79, 37, 0.1);
		margin: 0.5rem 0;
		padding: 0.5rem;
		border-radius: 4px;
		box-shadow: none;
	}

	.mobile-menu .menu-item-with-submenu:hover .submenu,
	.mobile-menu .menu-item-with-submenu .submenu.active {
		display: block;
	}

	.mobile-menu .submenu a {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
}

.hero {
	min-height: 80vh;
	padding: 4rem 0;
	display: flex;
	flex-direction: column; /* stack elements vertically */
	align-items: center; /* center horizontally */
	justify-content: flex-start; /* start from the top */
	text-align: justify; /* center the text */
	gap: 2rem; /* spacing between logo, text, button */
}

.hero h1 {
	font-size: 3rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.hero p {
	max-width: 800px;
	margin-bottom: 2rem;
	color: #a64f25;
}

.btn-primary {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: 999px;
	background: #f2c14f;
	color: #a64f25;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
}

/* Inline voir plus link styling */
.voir-plus {
	color: #a64f25;
	text-decoration: underline;
	font-weight: 600;
	font-size: 0.9em;
	transition: color 0.3s ease;
}

.voir-plus:hover {
	color: #f2c14f;
	text-decoration: none;
}

/* Products grid styling */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 1.5rem 0;
}

/* Products carousel styling */
.products-carousel {
	position: relative;
	margin: 1.5rem 0;
	overflow: hidden;
}

.carousel-container {
	overflow: visible;
	border-radius: 12px;
}

.products-grid.carousel-container {
	display: flex;
	gap: 1rem;
	grid-template-columns: none;
	animation: marquee 20s linear infinite;
	width: max-content;
}

.products-grid.carousel-container:hover {
	animation-play-state: paused;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.carousel-btn {
	display: none;
}

.product-item {
	text-align: center;
	background: rgba(242, 193, 79, 0.05);
	padding: 1rem;
	border-radius: 8px;
	transition: transform 0.3s ease;
	min-width: 200px;
	flex-shrink: 0;
}

.carousel-container .product-item {
	min-width: 250px;
}

.product-item:hover {
	transform: translateY(-2px);
}

.product-item img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
}

.product-item h4 {
	margin: 0.5rem 0;
	font-size: 0.9rem;
	color: #a64f25;
}

.product-item span {
	color: #a64f25;
	font-weight: 600;
}

@media (max-width: 768px) {
	.products-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.carousel-container .product-item {
		min-width: 200px;
	}

	.carousel-btn {
		width: 35px;
		height: 35px;
	}

	.carousel-prev {
		left: -15px;
	}

	.carousel-next {
		right: -15px;
	}
}

.button-section {
	padding: 2rem 4% 4rem 4%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section {
	padding: 4rem 4%;
}

.search-section {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	position: relative;
}

.search-form {
	display: flex;
	align-items: center;
	background: rgba(242, 193, 79, 0.1);
	border-radius: 25px;
	padding: 4px;
	max-width: 400px;
	width: 100%;
	border: 2px solid transparent;
	transition: border-color 0.3s ease;
}

.search-form:focus-within {
	border-color: #a64f25;
}

.hero-search-input-container {
	display: flex;
	align-items: center;
	width: 100%;
}

.search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	color: #a64f25;
	outline: none;
	font-family: "grappa-two-variable", sans-serif;
}

.search-input::placeholder {
	color: rgba(166, 79, 37, 0.6);
}

.search-button {
	background: #a64f25;
	border: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.search-button:hover {
	background: #8b3e1f;
	transform: scale(1.05);
}

.search-button img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}

.contact-container {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-info {
	flex: 1;
}

.newsletter-signup {
	flex: 1;
}

.newsletter-signup h3 {
	color: #a64f25;
	margin-bottom: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.email-input {
	flex: 1;
	border: 2px solid #f2c14f;
	background: rgba(242, 193, 79, 0.1);
	padding: 0.75rem 1rem;
	font-size: 1rem;
	color: #a64f25;
	border-radius: 8px;
	outline: none;
	font-family: "grappa-two-variable", sans-serif;
	transition: border-color 0.3s ease;
}

.email-input:focus {
	border-color: #a64f25;
}

.email-input::placeholder {
	color: rgba(166, 79, 37, 0.6);
}

.ok-button {
	background: #f2c14f;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: #a64f25;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: "grappa-two-variable", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ok-button:hover {
	background-color: #e6b347;
}

@media (max-width: 768px) {
	.contact-container {
		flex-direction: column;
		gap: 2rem;
	}

	.newsletter-form {
		flex-direction: column;
		gap: 1rem;
	}

	.email-input {
		width: 100%;
	}
}

/* Filter and Sort Section */
.filter-sort-section {
	padding: 2rem 4%;
	background: rgba(242, 193, 79, 0.05);
	border-bottom: 1px solid rgba(242, 193, 79, 0.2);
}

.filter-sort-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.filter-group h3,
.sort-group h3 {
	color: #a64f25;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.filter-select,
.sort-select {
	padding: 0.5rem 1rem;
	border: 2px solid #f2c14f;
	background: rgba(242, 193, 79, 0.1);
	color: #a64f25;
	font-family: "grappa-two-variable", sans-serif;
	font-size: 0.9rem;
	border-radius: 6px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23a64f25" d="M6 8L0 2h12z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
	background-size: 10px 6px;
	padding-right: 2.5rem;
	min-width: 150px;
}

.filter-select:focus,
.sort-select:focus {
	border-color: #a64f25;
	outline: none;
	box-shadow: 0 0 0 2px rgba(166, 79, 37, 0.1);
}

.sort-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.view-toggle {
	display: flex;
	gap: 0.5rem;
}

.view-btn {
	padding: 0.7rem;
	border: 2px solid #f2c14f;
	background: rgba(242, 193, 79, 0.1);
	color: #a64f25;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.view-btn:hover {
	background: #f2c14f;
	color: #a64f25;
}

.view-btn.active {
	background: #f2c14f;
	color: #a64f25;
}

.price {
	font-weight: 600;
	color: #a64f25;
	font-size: 1.1rem;
	display: block;
	margin: 0.5rem 0;
}

.collections-grid.list-view .grid-container {
	grid-template-columns: 1fr;
}

.collections-grid.list-view .collection-card {
	display: flex;
	align-items: center;
	text-align: left;
}

.collections-grid.list-view .collection-card img {
	width: 150px;
	height: 100px;
	margin-right: 1.5rem;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.filter-sort-container {
		flex-direction: column;
		gap: 1.5rem;
		align-items: stretch;
	}

	.filter-options {
		flex-direction: column;
		gap: 0.8rem;
	}

	.filter-select,
	.sort-select {
		min-width: unset;
		width: 100%;
	}

	.view-toggle {
		justify-content: center;
	}

	.collections-grid.list-view .collection-card {
		flex-direction: column;
		text-align: center;
	}

	.collections-grid.list-view .collection-card img {
		width: 100%;
		height: 200px;
		margin-right: 0;
		margin-bottom: 1rem;
	}
}

.collections-grid {
	padding: 4rem 4% 2rem 4%;
}

.collections-grid h2 {
	text-align: center;
	margin-bottom: 3rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 1.6rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.collections-grid h2:hover {
	color: #f2c14f;
	position: relative;
}

.collections-grid h2:hover::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #a64f25, transparent);
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		width: 0%;
	}
	to {
		width: 40%;
	}
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.grid-item {
	background: rgba(242, 193, 79, 0.1);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
}

.grid-image {
	width: 100%;
	height: 250px;
	background-color: #f2c14f;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.grid-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.grid-item h3 {
	color: #a64f25;
	margin-bottom: 1rem;
	font-weight: 700;
}

.grid-item p {
	color: #a64f25;
	font-size: 0.95rem;
}

.marquee-section {
	padding: 2rem 4%;
	margin-top: 3rem;
	overflow: hidden;
}

.marquee-section.marquee-dark {
	background-color: #f2c14f;
	margin-top: 3rem;
}

.marquee {
	display: flex;
	animation: scroll-left 20s linear infinite;
	white-space: nowrap;
}

.marquee span {
	display: inline-block;
	padding-right: 2rem;
	color: #a64f25;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

@keyframes scroll-left {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.section h2 {
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.section h2:hover {
	color: #f2c14f;
	position: relative;
}

.section h2:hover::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #a64f25, transparent);
	animation: slideIn 0.3s ease;
}

/* Remove gradient line for specific titles */
#histoire h2:hover::after,
#collection h2:hover::after,
#contact h2:hover::after {
	display: none;
}

#histoire h2:hover,
#collection h2:hover,
#contact h2:hover {
	color: #a64f25;
}
.site-footer {
	padding: 1rem 4% 2rem 4%;
	font-size: 1rem;
	color: #a64f25;
	border-top: 2px solid #f2c14f;
	position: relative;
}

.site-footer .footer-content {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.site-footer p {
	margin: 0;
}

.footer-link {
	text-decoration: none;
	color: #a64f25;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
	position: absolute;
	right: 2%;
	top: 1rem;
	font-size: 0.85rem;
}

.footer-link:hover {
	color: #f2c14f;
}

.footer-icons-section {
	padding: 2rem 4%;
	background-color: rgba(250, 248, 209, 0.9);
}

.footer-icons {
	display: flex;
	justify-content: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	background: rgba(242, 193, 79, 0.08);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	width: fit-content;
}

.footer-icon {
	display: inline-block;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icon img {
	width: 22px;
	height: 22px;
	filter: brightness(0) saturate(100%) invert(43%) sepia(64%) saturate(661%) hue-rotate(346deg)
		brightness(96%) contrast(91%);
	transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-icon:hover {
	transform: translateY(-3px);
}

.footer-icon:hover img {
	filter: brightness(0) saturate(100%) invert(80%) sepia(46%) saturate(2916%) hue-rotate(28deg)
		brightness(106%) contrast(97%);
}

@media (max-width: 768px) {
	.site-footer .footer-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer-icons-section {
		padding: 1.5rem 4%;
	}

	.footer-icons {
		gap: 1.5rem;
	}

	.footer-icon img {
		width: 18px;
		height: 18px;
	}
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-search {
	display: flex;
	justify-content: center;
}

.search-form {
	display: flex;
	align-items: center;
	background: rgba(242, 193, 79, 0.1);
	border-radius: 25px;
	padding: 0.5rem;
	max-width: 400px;
	width: 100%;
}

.search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	color: #a64f25;
	outline: none;
	font-family: "grappa-two-variable", sans-serif;
}

.search-input::placeholder {
	color: rgba(166, 79, 37, 0.6);
}

.search-button {
	background: #f2c14f;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.search-button:hover {
	background-color: #e6b347;
}

.search-button img {
	width: 16px;
	height: 16px;
}

.footer-copyright {
	margin-top: 1rem;
}

@media (min-width: 768px) {
	.footer-content {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.footer-search {
		flex: 1;
		justify-content: flex-start;
	}

	.footer-copyright {
		margin-top: 0;
		flex: 1;
		text-align: right;
	}
}

.logo-center {
	display: flex;
	justify-content: center;
	margin: 3rem 0;
}

.logo-center img {
	width: 40vw; /* 40% of screen width */
	max-width: 750px; /* never exceed 500px */
	min-width: 260px; /* never go too small */
	height: auto;
}

.collections-hero {
	text-align: center;
	padding: 4rem 8%;
	background-color: #faf8d1;
}

.hero-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f2c14f;
	margin: 0 auto 2rem auto;
	display: block;
}

.hero-circle-small {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #f2c14f;
	display: block;
}

.hero-circles-container {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 2rem auto 0 auto;
}

.hero-circles-section {
	padding: 2rem 4%;
	text-align: center;
}

.collections-hero h1 {
	font-size: 3rem;
	letter-spacing: 0.1em;
	color: #a64f25;
	margin-bottom: 1rem;
	text-align: center;
}

.collections-hero p {
	font-size: 1.2rem;
	color: #a64f25;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.intro-text {
	margin-top: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #a64f25;
	width: 100%; /* take full width */
	max-width: none;
	text-align: justify;
	border-left: 4px solid #f2c14f; /* vertical line */
	padding-left: 1.5rem; /* space between line and text */
}

/* Authentication Modal Styles */
.auth-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.auth-modal-content {
	background-color: #faf8d1;
	margin: 5% auto;
	padding: 0;
	border: none;
	border-radius: 15px;
	width: 90%;
	max-width: 450px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.auth-close {
	position: absolute;
	right: 20px;
	top: 15px;
	color: #a64f25;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1001;
}

.auth-close:hover {
	color: #8b3e1f;
}

.auth-tabs {
	display: flex;
	background-color: #f2c14f;
}

.auth-tab {
	flex: 1;
	padding: 15px;
	border: none;
	background: transparent;
	color: #a64f25;
	font-weight: 600;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.auth-tab.active {
	background-color: #faf8d1;
	color: #a64f25;
}

.auth-tab:hover:not(.active) {
	background-color: rgba(250, 248, 209, 0.3);
}

.auth-form {
	display: none;
	padding: 30px;
}

.auth-form.active {
	display: block;
}

.auth-form h2 {
	text-align: center;
	margin-bottom: 25px;
	color: #a64f25;
	font-size: 1.5rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.auth-form input {
	width: 100%;
	padding: 12px 15px;
	margin: 10px 0;
	border: 2px solid #f2c14f;
	border-radius: 8px;
	background-color: white;
	color: #a64f25;
	font-size: 1rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.auth-form input:focus {
	outline: none;
	border-color: #a64f25;
}

.auth-form button {
	width: 100%;
	padding: 12px;
	margin: 20px 0 10px 0;
	border: none;
	border-radius: 8px;
	background-color: #a64f25;
	color: white;
	font-size: 1rem;
	font-weight: 600;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.auth-form button:hover {
	background-color: #8b3e1f;
}

.auth-form label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 15px 0;
	font-size: 0.9rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.auth-form label input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.auth-form p {
	text-align: center;
	margin-top: 15px;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.auth-form a {
	color: #a64f25;
	text-decoration: none;
}

.auth-form a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.auth-modal-content {
		margin: 10% auto;
		width: 95%;
	}

	.auth-form {
		padding: 20px;
	}
}
/* Customer Reviews Section */
.reviews-section {
	background: linear-gradient(135deg, rgba(250, 248, 209, 0.7) 0%, rgba(242, 193, 79, 0.1) 100%);
	padding: 4rem 4%;
	margin: 3rem 0;
	border-radius: 20px;
}

.reviews-section h2 {
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
}

.reviews-section h2:hover {
	color: #f2c14f;
	position: relative;
}

.reviews-section h2:hover::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #a64f25, transparent);
	animation: slideIn 0.3s ease;
}

.reviews-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.review-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(166, 79, 37, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid transparent;
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(166, 79, 37, 0.15);
	border-color: #f2c14f;
}

.review-stars {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #f2c14f;
}

.review-text {
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: #a64f25;
	font-size: 1rem;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #f2c14f;
	padding: 12px;
}

.author-info h4 {
	margin: 0;
	color: #a64f25;
	font-weight: 600;
	font-size: 1rem;
}

.author-info span {
	font-size: 0.9rem;
	color: #8b3e1f;
	opacity: 0.8;
}

.reviews-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 3rem 0 2rem 0;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 2.5rem;
	color: #a64f25;
	margin: 0;
	font-weight: 700;
}

.stat-item p {
	color: #8b3e1f;
	margin: 0.5rem 0 0 0;
	font-size: 1rem;
}

.add-review-cta {
	text-align: center;
	margin-top: 2rem;
}

.btn-secondary {
	background: transparent;
	border: 2px solid #a64f25;
	color: #a64f25;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

.btn-secondary:hover {
	background-color: #a64f25;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(166, 79, 37, 0.3);
}

@media (max-width: 768px) {
	.reviews-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.review-card {
		padding: 1.5rem;
	}

	.reviews-stats {
		gap: 2rem;
	}

	.stat-item h3 {
		font-size: 2rem;
	}

	.reviews-section {
		padding: 3rem 4%;
		margin: 2rem 0;
	}
}

/* Review Submission Modal */
.review-modal {
	display: none;
	position: fixed;
	z-index: 1001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
}

.review-modal-content {
	background-color: #faf8d1;
	margin: 3% auto;
	padding: 0;
	border: none;
	border-radius: 20px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	max-height: 90vh;
	overflow-y: auto;
}

.review-close {
	position: absolute;
	right: 25px;
	top: 20px;
	color: #a64f25;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1002;
	transition: color 0.3s ease;
}

.review-close:hover {
	color: #8b3e1f;
}

.review-modal-content h2 {
	text-align: center;
	padding: 30px 0 10px 0;
	margin: 0;
	color: #a64f25;
	font-size: 1.8rem;
	background: linear-gradient(135deg, #f2c14f, #faf8d1);
}

.review-form {
	padding: 30px;
}

.review-form .form-group {
	margin-bottom: 25px;
}

.review-form label {
	display: block;
	margin-bottom: 8px;
	color: #a64f25;
	font-weight: 600;
	font-size: 1rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #f2c14f;
	border-radius: 12px;
	background-color: white;
	color: #a64f25;
	font-size: 1rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form textarea:focus {
	outline: none;
	border-color: #a64f25;
	box-shadow: 0 0 0 3px rgba(166, 79, 37, 0.1);
}

.review-form textarea {
	resize: vertical;
	min-height: 100px;
}

/* Star Rating System */
.star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 5px;
}

.star-rating input[type="radio"] {
	display: none;
}

.star-rating .star {
	font-size: 2rem;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s ease;
	user-select: none;
}

.star-rating input[type="radio"]:checked ~ .star,
.star-rating .star:hover,
.star-rating .star:hover ~ .star {
	color: #f2c14f;
}

.checkbox-group label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
}

.form-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	margin-top: 30px;
}

.btn-cancel,
.btn-submit {
	padding: 12px 25px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-cancel {
	background-color: transparent;
	color: #a64f25;
	border: 2px solid #a64f25;
}

.btn-cancel:hover {
	background-color: #a64f25;
	color: white;
}

.btn-submit {
	background-color: #a64f25;
	color: white;
	border: 2px solid #a64f25;
}

.btn-submit:hover {
	background-color: #8b3e1f;
	border-color: #8b3e1f;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(166, 79, 37, 0.3);
}

@media (max-width: 768px) {
	.review-modal-content {
		margin: 5% auto;
		width: 95%;
		max-height: 85vh;
	}

	.review-form {
		padding: 20px;
	}

	.form-buttons {
		flex-direction: column;
		gap: 10px;
	}

	.btn-cancel,
	.btn-submit {
		width: 100%;
	}

	.star-rating .star {
		font-size: 1.8rem;
	}
}

/* Search Modal */
.search-modal {
	display: none;
	position: fixed;
	z-index: 1002;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
}

.search-modal-content {
	background-color: #faf8d1;
	margin: 5% auto;
	padding: 0;
	border: none;
	border-radius: 20px;
	width: 90%;
	max-width: 700px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	max-height: 80vh;
	overflow-y: auto;
}

.search-close {
	position: absolute;
	right: 25px;
	top: 20px;
	color: #a64f25;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1003;
	transition: color 0.3s ease;
}

.search-close:hover {
	color: #8b3e1f;
}

.search-modal-content h2 {
	text-align: center;
	padding: 30px 0 20px 0;
	margin: 0;
	color: #a64f25;
	font-size: 1.8rem;
	background: linear-gradient(135deg, #f2c14f, #faf8d1);
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.modal-search-form {
	padding: 30px;
}

.search-input-container {
	display: flex;
	gap: 0;
	margin-bottom: 30px;
	border: 2px solid #f2c14f;
	border-radius: 15px;
	overflow: hidden;
	background: white;
}

.search-input-container input {
	flex: 1;
	padding: 18px 20px;
	border: none;
	background: transparent;
	color: #a64f25;
	font-size: 1.1rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.search-input-container input:focus {
	outline: none;
}

.search-submit-btn {
	padding: 18px 20px;
	border: none;
	background: #f2c14f;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.search-submit-btn:hover {
	background-color: #e6ad47;
}

.search-submit-btn img {
	width: 20px;
	height: 20px;
}

.search-suggestions h3 {
	color: #a64f25;
	margin-bottom: 15px;
	font-size: 1.1rem;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.suggestion-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 25px;
}

.suggestion-tag {
	padding: 8px 16px;
	background: rgba(242, 193, 79, 0.2);
	border: 1px solid #f2c14f;
	border-radius: 20px;
	color: #a64f25;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: 0.9rem;
}

.suggestion-tag:hover {
	background: #f2c14f;
	color: #8b3e1f;
}

.search-results {
	min-height: 100px;
	padding: 20px 0;
}

.search-results-title {
	color: #a64f25;
	margin-bottom: 15px;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.search-result-item {
	padding: 15px;
	border: 1px solid rgba(242, 193, 79, 0.3);
	border-radius: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-result-item:hover {
	background: rgba(242, 193, 79, 0.1);
	border-color: #f2c14f;
}

.search-result-item h4 {
	color: #a64f25;
	margin-bottom: 5px;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.search-result-item p {
	color: #8b3e1f;
	font-size: 0.9rem;
	opacity: 0.8;
}

.no-results {
	text-align: center;
	color: #8b3e1f;
	opacity: 0.7;
	padding: 40px 20px;
	font-style: italic;
}

@media (max-width: 768px) {
	.search-modal-content {
		margin: 10% auto;
		width: 95%;
	}

	.modal-search-form {
		padding: 20px;
	}

	.search-input-container input {
		font-size: 1rem;
		padding: 16px 18px;
	}

	.search-submit-btn {
		padding: 16px 18px;
	}

	.suggestion-tags {
		gap: 8px;
	}

	.suggestion-tag {
		font-size: 0.85rem;
		padding: 6px 12px;
	}
}

/* Shopping Cart Modal */
.cart-modal {
	display: none;
	position: fixed;
	z-index: 1003;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
}

.cart-modal-content {
	background-color: #faf8d1;
	margin: 3% auto;
	border: none;
	border-radius: 20px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
}

.cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px 20px 30px;
	background: linear-gradient(135deg, #f2c14f, #faf8d1);
	border-bottom: 2px solid rgba(166, 79, 37, 0.1);
}

.cart-header h2 {
	color: #a64f25;
	font-size: 1.8rem;
	margin: 0;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.cart-close {
	color: #a64f25;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
}

.cart-close:hover {
	color: #8b3e1f;
}

.cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 0;
}

.cart-items {
	min-height: 200px;
	padding: 20px 30px;
}

.empty-cart {
	text-align: center;
	padding: 40px 20px;
	color: #a64f25;
}

.empty-cart-icon {
	width: 60px;
	height: 60px;
	opacity: 0.7;
	margin-bottom: 20px;
}

.empty-cart h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.empty-cart p {
	color: #8b3e1f;
	opacity: 0.8;
	margin-bottom: 25px;
	line-height: 1.5;
}

.browse-btn {
	display: inline-block;
	padding: 12px 25px;
	background-color: #a64f25;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	transition: all 0.3s ease;
}

.browse-btn:hover {
	background-color: #8b3e1f;
	transform: translateY(-2px);
}

.cart-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(242, 193, 79, 0.3);
}

.cart-item:last-child {
	border-bottom: none;
}

.item-image {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	background: #f2c14f;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-details {
	flex: 1;
}

.item-name {
	font-weight: 600;
	color: #a64f25;
	margin-bottom: 5px;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: 0.95rem;
}

.item-price {
	color: #8b3e1f;
	font-size: 0.9rem;
}

.item-quantity {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.quantity-btn {
	width: 25px;
	height: 25px;
	border: 1px solid #f2c14f;
	background: white;
	color: #a64f25;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	transition: all 0.2s ease;
}

.quantity-btn:hover {
	background: #f2c14f;
}

.quantity-number {
	min-width: 30px;
	text-align: center;
	font-weight: 600;
	color: #a64f25;
}

.remove-item {
	color: #a64f25;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}

.remove-item:hover {
	color: #d32f2f;
}

.cart-summary {
	background: rgba(242, 193, 79, 0.1);
	padding: 25px 30px;
	border-top: 2px solid rgba(166, 79, 37, 0.1);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	color: #a64f25;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
}

.total-row {
	font-size: 1.2rem;
	font-weight: 700;
	padding-top: 10px;
	border-top: 2px solid #f2c14f;
	margin-top: 15px;
}

.cart-actions {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.checkout-btn,
.continue-shopping-btn {
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.checkout-btn {
	background-color: #a64f25;
	color: white;
}

.checkout-btn:hover {
	background-color: #8b3e1f;
	transform: translateY(-1px);
}

.continue-shopping-btn {
	background: transparent;
	color: #a64f25;
	border: 2px solid #a64f25;
}

.continue-shopping-btn:hover {
	background-color: #a64f25;
	color: white;
}

.cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #d32f2f;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 600;
}

@media (max-width: 768px) {
	.cart-modal-content {
		margin: 5% auto;
		width: 95%;
		max-height: 90vh;
	}

	.cart-header {
		padding: 20px 20px 15px 20px;
	}

	.cart-items {
		padding: 15px 20px;
	}

	.cart-summary {
		padding: 20px;
	}

	.cart-item {
		gap: 12px;
	}

	.item-image {
		width: 50px;
		height: 50px;
	}
}

/* Hero Search Modal */
.hero-search-modal {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 2px solid #a64f25;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	margin-top: 10px;
	max-height: 400px;
	overflow: hidden;
}

.hero-search-results {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hero-search-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid #f2c14f;
	background: #faf8d1;
}

.hero-search-header h3 {
	margin: 0;
	color: #a64f25;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: 1.1rem;
}

.hero-search-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #a64f25;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.hero-search-close:hover {
	background: #a64f25;
	color: white;
}

.hero-search-content {
	padding: 20px;
	overflow-y: auto;
	flex: 1;
}

.hero-search-item {
	display: flex;
	align-items: center;
	padding: 12px;
	margin-bottom: 10px;
	border: 1px solid #f2c14f;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.hero-search-item:hover {
	background: #faf8d1;
	border-color: #a64f25;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(166, 79, 37, 0.2);
}

.hero-search-item-image {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	border-radius: 6px;
	overflow: hidden;
	background: #f2c14f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-search-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-search-item-details h4 {
	margin: 0 0 5px 0;
	color: #a64f25;
	font-family: "grappa-two-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: 1rem;
}

.hero-search-item-details p {
	margin: 0;
	color: #8b3e1f;
	font-size: 0.9rem;
	opacity: 0.8;
}

.hero-search-no-results {
	text-align: center;
	padding: 40px 20px;
	color: #a64f25;
}

.hero-search-no-results img {
	width: 60px;
	height: 60px;
	opacity: 0.4;
	margin-bottom: 15px;
}

.search-section {
	position: relative;
}

@media (max-width: 768px) {
	.hero-search-modal {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: 0;
		border-radius: 0;
		max-height: none;
	}

	.hero-search-content {
		padding: 15px;
	}

	.hero-search-item {
		padding: 10px;
	}

	.hero-search-item-image {
		width: 40px;
		height: 40px;
		margin-right: 12px;
	}
}
