.brand-info {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid #e0e0e0;
}

.brand-info h1 {
	margin: 0;
	font-size: 3rem;
}
.brand-image {
	min-width: 150px;
}

.brand-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-width: 150px;
	margin: auto;
}

.brand-header {
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 100%;
}

/* Product Brand Accordion Styles */

.brand-description-container {
	position: relative;
	border: 1px solid #e0e0e0;
	border-radius: 0.3rem;
	margin: 0.2rem 0;
	overflow: visible;
	z-index: 10;
	width: 100%;
}

.brand-description-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.2rem 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	background-color: white;
	border-radius: 0.3rem;
}

.brand-description-header h3 {
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 300;
	color: #333;
}

.brand-description-header:hover {
	background-color: #f6f6f6;
}

.brand-description-title {
	font-weight: 600;
	margin: 0;
	color: #333;
}

.brand-description-toggle {
	font-size: 1.2rem;
	color: #666;
	transition: transform 0.3s ease;
	user-select: none;
}

.brand-description-toggle.expanded {
	transform: rotate(180deg);
}

.brand-description-content {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.3s ease;
	background-color: white;
	border: 1px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 0.3rem 0.3rem;
	z-index: 11;
}

.brand-description-content.expanded {
	max-height: 500px;
	padding: 1rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.brand-description {
	margin: 0;
	line-height: 1.6;
	color: #666;
	font-family: "Poppins", sans-serif;
	font-size: 0.85rem;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.brand-description p {
	margin: 0;
}


/* Mobile version */
@media (max-width: 480px) {
	.brand-info {
		flex-direction: column-reverse;
		gap: 0;
	}

	.brand-header {
		align-items: center;
		text-align: center;
	}

	.brand-header h1 {
		display: none;
	}

	.brand-image {
		min-width: 100%;
		max-width: 250px;
	}
}
