/* ============================================================
   WINGSBRO - URUN DETAY SAYFASI
   Dosya: assets/css/urun-detay.css
============================================================ */


/* ============================================================
   ROOT
============================================================ */

.bro-product-detail {
	--bro-green: #073b2b;
	--bro-green-dark: #032e21;
	--bro-green-light: #0b5a3e;
	--bro-yellow: #ffb20d;
	--bro-yellow-dark: #e99a00;
	--bro-cream: #f8f4eb;
	--bro-white: #ffffff;
	--bro-text: #26352e;
	--bro-muted: #6b716c;
	--bro-border: #deddd6;

	background:
		radial-gradient(
			circle at 80% 10%,
			rgba(255, 178, 13, 0.06),
			transparent 25%
		),
		#f8f5ee;

	color: var(--bro-text);

	padding: 0 0 60px;

	min-height: 100vh;

	font-family:
		Inter,
		Arial,
		sans-serif;
}


.bro-product-detail *,
.bro-product-detail *::before,
.bro-product-detail *::after {
	box-sizing: border-box;
}


.bro-product-detail img {
	display: block;
	max-width: 100%;
}


.bro-product-detail button,
.bro-product-detail a {
	-webkit-tap-highlight-color: transparent;
}


/* ============================================================
   CONTAINER
============================================================ */

.bro-product-container {
	width: min(1180px, calc(100% - 40px));

	margin-left: auto;
	margin-right: auto;
}


/* ============================================================
   BREADCRUMB
============================================================ */

.bro-product-breadcrumb {
	min-height: 85px;

	display: flex;
	align-items: center;

	gap: 10px;

	font-size: 12px;

	color: #777d78;
}


.bro-product-breadcrumb a {
	color: #777d78;

	text-decoration: none;

	transition:
		color 0.2s ease;
}


.bro-product-breadcrumb a:hover {
	color: var(--bro-green);
}


.bro-product-breadcrumb > i {
	font-size: 15px;

	color: #a0a49f;
}


.bro-product-breadcrumb a:first-child {
	width: 28px;
	height: 28px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: rgba(7, 59, 43, 0.07);

	color: var(--bro-green);
}


.bro-product-breadcrumb strong {
	color: var(--bro-green);

	font-weight: 700;
}


/* ============================================================
   PRODUCT HERO
============================================================ */

.bro-product-hero {
	display: grid;

	grid-template-columns:
		minmax(0, 1.08fr)
		minmax(0, 0.92fr);

	gap: 48px;

	align-items: start;
}


/* ============================================================
   PRODUCT GALLERY
============================================================ */

.bro-product-gallery {
	min-width: 0;
}


.bro-product-gallery__main {
	position: relative;

	min-height: 540px;

	border-radius: 16px;

	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;

	background:
		radial-gradient(
			circle at 50% 42%,
			#126345 0%,
			#084832 38%,
			#032e21 78%
		);

	box-shadow:
		0 25px 55px rgba(4, 45, 31, 0.16);

	isolation: isolate;
}


/* Decorative circles */

.bro-product-gallery__main::before {
	content: "";

	position: absolute;

	width: 430px;
	height: 430px;

	border-radius: 50%;

	border:
		1px solid rgba(255, 255, 255, 0.06);

	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	z-index: -1;
}


.bro-product-gallery__main::after {
	content: "";

	position: absolute;

	width: 320px;
	height: 320px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(255, 178, 13, 0.09),
			transparent 68%
		);

	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	z-index: -1;
}


/* ============================================================
   BADGE
============================================================ */

.bro-product-badge {
	position: absolute;

	top: 28px;
	left: 28px;

	width: 94px;
	height: 94px;

	border-radius: 50%;

	border:
		2px solid rgba(255, 255, 255, 0.32);

	display: flex;
	flex-direction: column;

	align-items: center;
	justify-content: center;

	text-align: center;

	color: #ffffff;

	z-index: 5;

	transform: rotate(-7deg);

	background:
		rgba(255, 255, 255, 0.04);

	backdrop-filter: blur(4px);
}


.bro-product-badge::before {
	content: "";

	position: absolute;

	inset: 6px;

	border-radius: inherit;

	border:
		1px dashed rgba(255, 178, 13, 0.65);
}


.bro-product-badge span {
	position: relative;

	z-index: 2;

	font-size: 9px;

	letter-spacing: 0.7px;
}


.bro-product-badge strong {
	position: relative;

	z-index: 2;

	max-width: 65px;

	margin-top: 2px;

	font-size: 10px;

	line-height: 1.2;

	color: var(--bro-yellow);
}


/* ============================================================
   MAIN PRODUCT IMAGE
============================================================ */

.bro-product-image {
	width: 90%;
	height: 440px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 30px;
}


.bro-product-image img {
	width: 100%;
	height: 100%;

	object-fit: contain;

	filter:
		drop-shadow(
			0 25px 25px rgba(0, 0, 0, 0.32)
		);

	transition:
		transform 0.35s ease;
}


.bro-product-gallery__main:hover
.bro-product-image img {
	transform: scale(1.025);
}


/* ============================================================
   THUMBNAILS
============================================================ */

.bro-product-thumbnails {
	margin-top: 14px;

	display: flex;

	align-items: center;
	justify-content: center;

	gap: 10px;
}


.bro-product-thumbnail {
	width: 78px;
	height: 68px;

	padding: 5px;

	border:
		1px solid #d6d6cf;

	border-radius: 9px;

	background: #ffffff;

	cursor: pointer;

	overflow: hidden;

	transition:
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}


.bro-product-thumbnail:hover {
	transform: translateY(-2px);

	border-color: var(--bro-green);
}


.bro-product-thumbnail.is-active {
	border:
		2px solid var(--bro-yellow);

	box-shadow:
		0 6px 16px rgba(255, 178, 13, 0.18);
}


.bro-product-thumbnail img {
	width: 100%;
	height: 100%;

	object-fit: contain;
}


.bro-product-thumbnail-arrow {
	width: 38px;
	height: 38px;

	border: 0;

	border-radius: 50%;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: var(--bro-green);

	color: #ffffff;

	font-size: 20px;

	cursor: pointer;

	transition:
		background 0.2s ease,
		transform 0.2s ease;
}


.bro-product-thumbnail-arrow:hover {
	background: var(--bro-yellow);

	color: var(--bro-green);

	transform: scale(1.05);
}


/* ============================================================
   PRODUCT INFORMATION
============================================================ */

.bro-product-info {
	padding-top: 4px;
}


.bro-product-category {
	color: var(--bro-yellow-dark);

	font-size: 13px;

	font-weight: 800;

	letter-spacing: 1.2px;

	margin-bottom: 7px;
}


.bro-product-title {
	margin: 0;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: clamp(52px, 5vw, 72px);

	font-weight: 800;

	line-height: 0.92;

	letter-spacing: -1px;

	text-transform: uppercase;
}


.bro-product-title-line {
	width: 92px;
	height: 4px;

	margin-top: 13px;
	margin-bottom: 22px;

	border-radius: 20px;

	background: var(--bro-yellow);

	transform: rotate(-2deg);
}


.bro-product-description {
	margin: 0;

	max-width: 530px;

	color: #515852;

	font-size: 14px;

	line-height: 1.75;
}


/* ============================================================
   PRODUCT FEATURES
============================================================ */

.bro-product-features {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	margin-top: 24px;
	margin-bottom: 25px;

	border:
		1px solid var(--bro-border);

	border-radius: 11px;

	background:
		rgba(255, 255, 255, 0.42);

	overflow: hidden;
}


.bro-product-feature {
	min-height: 74px;

	display: flex;
	align-items: center;

	gap: 10px;

	padding: 12px 13px;

	border-right:
		1px solid var(--bro-border);
}


.bro-product-feature:last-child {
	border-right: 0;
}


.bro-product-feature > i {
	flex: 0 0 auto;

	font-size: 25px;

	color: var(--bro-green);
}


.bro-product-peppers {
	flex: 0 0 auto;

	font-size: 16px;

	letter-spacing: -5px;

	padding-right: 5px;
}


.bro-product-feature div {
	min-width: 0;
}


.bro-product-feature strong {
	display: block;

	color: var(--bro-green);

	font-size: 10px;

	font-weight: 800;

	line-height: 1.25;
}


.bro-product-feature span:not(
	.bro-product-peppers
) {
	display: block;

	margin-top: 3px;

	color: #747a75;

	font-size: 9px;
}


/* ============================================================
   PRODUCT SECTIONS
============================================================ */

.bro-product-section {
	margin-top: 20px;
}


.bro-product-section-title {
	margin: 0 0 10px;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 17px;

	font-weight: 800;

	letter-spacing: 0.3px;
}


/* ============================================================
   MENU CONTENT LIST
============================================================ */

.bro-product-content-list {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 8px 18px;

	list-style: none;

	padding: 0;

	margin: 0;
}


.bro-product-content-list li {
	display: flex;
	align-items: center;

	gap: 8px;

	color: #505750;

	font-size: 12px;
}


.bro-product-content-list li i {
	width: 18px;
	height: 18px;

	flex: 0 0 18px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		rgba(255, 178, 13, 0.14);

	color: var(--bro-yellow-dark);

	font-size: 13px;

	font-weight: 800;
}


/* ============================================================
   ALLERGENS
============================================================ */

.bro-product-allergens {
	display: grid;

	grid-template-columns:
		repeat(5, minmax(0, 1fr));

	border-top:
		1px solid var(--bro-border);

	border-bottom:
		1px solid var(--bro-border);

	padding: 13px 0;
}


.bro-product-allergen {
	min-height: 55px;

	display: flex;
	flex-direction: column;

	align-items: center;
	justify-content: center;

	gap: 5px;

	text-align: center;

	border-right:
		1px solid var(--bro-border);
}


.bro-product-allergen:last-child {
	border-right: 0;
}


.bro-product-allergen i {
	font-size: 22px;

	color: var(--bro-green);
}


.bro-product-allergen span {
	color: #626963;

	font-size: 9px;

	line-height: 1.3;
}


/* ============================================================
   PRICE
============================================================ */

.bro-product-price {
	margin-top: 16px;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 36px;

	font-weight: 800;

	line-height: 1;
}


/* ============================================================
   PRODUCT ACTIONS
============================================================ */

.bro-product-actions {
	display: flex;

	gap: 12px;

	margin-top: 16px;
}


.bro-product-order-button {
	flex: 1;

	min-height: 56px;

	padding: 0 25px;

	display: inline-flex;
	align-items: center;
	justify-content: space-between;

	gap: 15px;

	border-radius: 9px;

	background: var(--bro-yellow);

	color: var(--bro-green);

	text-decoration: none;

	font-size: 14px;

	font-weight: 800;

	box-shadow:
		0 10px 25px
		rgba(233, 154, 0, 0.24);

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}


.bro-product-order-button:hover {
	background: #ffc02e;

	color: var(--bro-green);

	transform: translateY(-2px);

	box-shadow:
		0 13px 30px
		rgba(233, 154, 0, 0.3);
}


.bro-product-order-button i {
	font-size: 19px;
}


.bro-product-favorite {
	width: 56px;
	height: 56px;

	flex: 0 0 56px;

	border:
		1px solid #c7c8c2;

	border-radius: 9px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: transparent;

	color: var(--bro-green);

	font-size: 22px;

	cursor: pointer;

	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}


.bro-product-favorite:hover {
	background: var(--bro-green);

	border-color: var(--bro-green);

	color: #ffffff;

	transform: translateY(-2px);
}


/* ============================================================
   PRODUCT DETAIL BOX
============================================================ */

.bro-product-details {
	margin-top: 55px;

	border:
		1px solid var(--bro-border);

	border-radius: 14px;

	overflow: hidden;

	background: #ffffff;

	box-shadow:
		0 12px 35px
		rgba(6, 51, 36, 0.07);
}


/* ============================================================
   TABS
============================================================ */

.bro-product-tabs {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	border-bottom:
		1px solid var(--bro-border);
}


.bro-product-tab {
	min-height: 55px;

	border: 0;

	border-right:
		1px solid var(--bro-border);

	background: #ffffff;

	color: #747a75;

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 16px;

	font-weight: 800;

	cursor: pointer;

	transition:
		background 0.2s ease,
		color 0.2s ease;
}


.bro-product-tab:last-child {
	border-right: 0;
}


.bro-product-tab:hover {
	color: var(--bro-green);
}


.bro-product-tab.is-active {
	background: var(--bro-green);

	color: #ffffff;
}


/* ============================================================
   TAB CONTENT
============================================================ */

.bro-product-tab-content {
	display: none;
}


.bro-product-tab-content.is-active {
	display: block;
}


/* ============================================================
   ABOUT
============================================================ */

.bro-product-about {
	display: grid;

	grid-template-columns:
		minmax(0, 2fr)
		minmax(260px, 0.75fr);

	padding: 32px;
}


.bro-product-about__content {
	padding-right: 32px;

	border-right:
		1px solid var(--bro-border);
}


.bro-product-about__content > h2,
.bro-product-simple-content h2 {
	margin: 0 0 12px;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 25px;

	font-weight: 800;
}


.bro-product-about__content > p,
.bro-product-simple-content p {
	max-width: 720px;

	margin: 0;

	color: #5c635d;

	font-size: 12px;

	line-height: 1.75;
}


/* ============================================================
   ABOUT FEATURES
============================================================ */

.bro-product-about-features {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	margin-top: 30px;
}


.bro-product-about-feature {
	min-height: 125px;

	display: flex;
	flex-direction: column;

	align-items: center;

	text-align: center;

	padding: 0 18px;

	border-right:
		1px solid var(--bro-border);
}


.bro-product-about-feature:first-child {
	padding-left: 0;
}


.bro-product-about-feature:last-child {
	border-right: 0;

	padding-right: 0;
}


.bro-product-about-feature i {
	margin-bottom: 12px;

	color: var(--bro-yellow-dark);

	font-size: 35px;
}


.bro-product-about-feature strong {
	margin-bottom: 7px;

	color: var(--bro-green);

	font-size: 11px;

	font-weight: 800;
}


.bro-product-about-feature span {
	color: #777d78;

	font-size: 9px;

	line-height: 1.5;
}


/* ============================================================
   NUTRITION
============================================================ */

.bro-product-nutrition {
	padding-left: 30px;
}


.bro-product-nutrition h3 {
	margin: 0 0 14px;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 15px;

	font-weight: 800;
}


.bro-product-nutrition-table {
	border:
		1px solid var(--bro-border);

	border-radius: 7px;

	overflow: hidden;
}


.bro-product-nutrition-table > div {
	min-height: 34px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 15px;

	padding: 7px 10px;

	border-bottom:
		1px solid var(--bro-border);

	font-size: 10px;
}


.bro-product-nutrition-table > div:last-child {
	border-bottom: 0;
}


.bro-product-nutrition-table span {
	color: #676e68;
}


.bro-product-nutrition-table strong {
	color: var(--bro-green);

	font-weight: 700;
}


/* ============================================================
   SIMPLE TAB CONTENT
============================================================ */

.bro-product-simple-content {
	padding: 35px;
}


/* ============================================================
   RELATED PRODUCTS
============================================================ */

.bro-related-products {
	padding-top: 50px;
	padding-bottom: 32px;
}


.bro-related-products__header {
	margin-bottom: 24px;
}


.bro-related-products__header h2 {
	margin: 0;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 31px;

	font-weight: 800;
}


.bro-related-products__header > div {
	width: 60px;
	height: 4px;

	margin-top: 7px;

	border-radius: 20px;

	background: var(--bro-yellow);
}


/* ============================================================
   RELATED GRID
============================================================ */

.bro-related-products__grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 18px;
}


/* ============================================================
   RELATED CARD
============================================================ */

.bro-related-card {
	border:
		1px solid var(--bro-border);

	border-radius: 12px;

	overflow: hidden;

	background: #ffffff;

	box-shadow:
		0 8px 25px
		rgba(6, 51, 36, 0.06);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}


.bro-related-card:hover {
	transform: translateY(-6px);

	box-shadow:
		0 16px 35px
		rgba(6, 51, 36, 0.12);
}


.bro-related-card__image {
	height: 175px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 15px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at center,
			#126345,
			#063b2a 65%,
			#032e21
		);
}


.bro-related-card__image img {
	width: 100%;
	height: 100%;

	object-fit: contain;

	transition:
		transform 0.3s ease;

	filter:
		drop-shadow(
			0 12px 14px rgba(0, 0, 0, 0.28)
		);
}


.bro-related-card:hover
.bro-related-card__image img {
	transform: scale(1.06);
}


.bro-related-card__content {
	padding: 16px;
}


.bro-related-card__content h3 {
	margin: 0 0 8px;

	color: var(--bro-green);

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 18px;

	font-weight: 800;
}


.bro-related-card__content p {
	min-height: 34px;

	margin: 0;

	color: #717771;

	font-size: 10px;

	line-height: 1.55;
}


.bro-related-card__price {
	display: block;

	margin-top: 12px;
	margin-bottom: 12px;

	color: var(--bro-green);

	font-size: 15px;

	font-weight: 800;
}


.bro-related-card__content > a {
	min-height: 38px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 8px;

	padding: 0 15px;

	border-radius: 6px;

	background: var(--bro-yellow);

	color: var(--bro-green);

	text-decoration: none;

	font-size: 10px;

	font-weight: 800;

	transition:
		background 0.2s ease,
		transform 0.2s ease;
}


.bro-related-card__content > a:hover {
	background: #ffc02e;

	color: var(--bro-green);

	transform: translateY(-1px);
}


/* ============================================================
   DELIVERY CTA
============================================================ */

.bro-product-delivery-cta {
	min-height: 115px;

	display: flex;
	align-items: center;

	gap: 24px;

	padding: 24px 42px;

	border-radius: 14px;

	color: #ffffff;

	background:
		radial-gradient(
			circle at 20% 50%,
			#0c5a3d,
			#063b2a 50%,
			#032e21
		);

	box-shadow:
		0 15px 35px
		rgba(4, 46, 32, 0.2);

	position: relative;

	overflow: hidden;
}


.bro-product-delivery-cta::after {
	content: "";

	position: absolute;

	width: 260px;
	height: 260px;

	border-radius: 50%;

	border:
		1px solid rgba(255, 255, 255, 0.05);

	right: -80px;
	top: -80px;

	pointer-events: none;
}


.bro-product-delivery-cta__icon {
	width: 62px;
	height: 62px;

	flex: 0 0 62px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		rgba(255, 178, 13, 0.12);

	color: var(--bro-yellow);

	font-size: 38px;
}


.bro-product-delivery-cta__content h2 {
	margin: 0;

	font-family:
		"Barlow Condensed",
		Impact,
		sans-serif;

	font-size: 29px;

	font-weight: 800;
}


.bro-product-delivery-cta__content p {
	margin: 4px 0 0;

	color:
		rgba(255, 255, 255, 0.75);

	font-size: 11px;
}


.bro-product-delivery-cta > a {
	position: relative;

	z-index: 2;

	min-height: 52px;

	margin-left: auto;

	padding: 0 30px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 12px;

	border-radius: 8px;

	background: var(--bro-yellow);

	color: var(--bro-green);

	text-decoration: none;

	font-size: 12px;

	font-weight: 800;

	white-space: nowrap;

	transition:
		background 0.2s ease,
		transform 0.2s ease;
}


.bro-product-delivery-cta > a:hover {
	background: #ffc02e;

	color: var(--bro-green);

	transform: translateY(-2px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

	.bro-product-hero {
		gap: 30px;
	}


	.bro-product-gallery__main {
		min-height: 480px;
	}


	.bro-product-image {
		height: 390px;
	}


	.bro-related-products__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}


	.bro-product-about {
		grid-template-columns: 1fr;
	}


	.bro-product-about__content {
		padding-right: 0;

		padding-bottom: 30px;

		border-right: 0;

		border-bottom:
			1px solid var(--bro-border);
	}


	.bro-product-nutrition {
		padding-left: 0;

		padding-top: 28px;
	}

}


/* ============================================================
   SMALL TABLET
============================================================ */

@media (max-width: 900px) {

	.bro-product-hero {
		grid-template-columns: 1fr;
	}


	.bro-product-gallery {
		max-width: 650px;

		width: 100%;

		margin-left: auto;
		margin-right: auto;
	}


	.bro-product-info {
		padding-top: 15px;
	}


	.bro-product-description {
		max-width: 100%;
	}


	.bro-product-about-features {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 25px 0;
	}


	.bro-product-about-feature:nth-child(2) {
		border-right: 0;
	}


	.bro-product-about-feature:nth-child(3) {
		padding-left: 0;
	}

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

	.bro-product-detail {
		padding-bottom: 35px;
	}


	.bro-product-container {
		width:
			min(100% - 28px, 1180px);
	}


	/* Breadcrumb */

	.bro-product-breadcrumb {
		min-height: 65px;

		gap: 6px;

		overflow-x: auto;

		white-space: nowrap;

		font-size: 10px;
	}


	/* Gallery */

	.bro-product-gallery__main {
		min-height: 410px;

		border-radius: 12px;
	}


	.bro-product-image {
		width: 100%;

		height: 330px;

		padding: 30px 18px;
	}


	.bro-product-badge {
		top: 18px;
		left: 18px;

		width: 78px;
		height: 78px;
	}


	.bro-product-badge span {
		font-size: 7px;
	}


	.bro-product-badge strong {
		font-size: 8px;
	}


	/* Thumbnails */

	.bro-product-thumbnail {
		width: 60px;
		height: 55px;
	}


	.bro-product-thumbnail-arrow {
		width: 32px;
		height: 32px;
	}


	/* Title */

	.bro-product-title {
		font-size: 52px;
	}


	.bro-product-description {
		font-size: 13px;
	}


	/* Features */

	.bro-product-features {
		grid-template-columns: 1fr;
	}


	.bro-product-feature {
		min-height: 62px;

		border-right: 0;

		border-bottom:
			1px solid var(--bro-border);
	}


	.bro-product-feature:last-child {
		border-bottom: 0;
	}


	/* Content */

	.bro-product-content-list {
		grid-template-columns: 1fr;
	}


	/* Allergens */

	.bro-product-allergens {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));

		gap: 12px 0;
	}


	.bro-product-allergen:nth-child(3) {
		border-right: 0;
	}


	/* Tabs */

	.bro-product-tabs {
		grid-template-columns: 1fr;
	}


	.bro-product-tab {
		border-right: 0;

		border-bottom:
			1px solid var(--bro-border);
	}


	.bro-product-tab:last-child {
		border-bottom: 0;
	}


	/* About */

	.bro-product-about {
		padding: 22px;
	}


	.bro-product-about-features {
		grid-template-columns: 1fr;

		gap: 0;
	}


	.bro-product-about-feature {
		min-height: auto;

		padding: 20px 0;

		border-right: 0;

		border-bottom:
			1px solid var(--bro-border);
	}


	.bro-product-about-feature:last-child {
		border-bottom: 0;
	}


	/* Related */

	.bro-related-products {
		padding-top: 40px;
	}


	.bro-related-products__grid {
		grid-template-columns: 1fr;
	}


	.bro-related-card__image {
		height: 210px;
	}


	/* CTA */

	.bro-product-delivery-cta {
		flex-wrap: wrap;

		padding: 25px;
	}


	.bro-product-delivery-cta__content {
		flex: 1;
	}


	.bro-product-delivery-cta > a {
		width: 100%;

		margin-left: 0;

		margin-top: 5px;
	}

}


/* ============================================================
   VERY SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

	.bro-product-gallery__main {
		min-height: 360px;
	}


	.bro-product-image {
		height: 285px;
	}


	.bro-product-thumbnails {
		gap: 6px;
	}


	.bro-product-thumbnail {
		width: 52px;
		height: 50px;
	}


	.bro-product-title {
		font-size: 46px;
	}


	.bro-product-allergens {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}


	.bro-product-allergen:nth-child(3) {
		border-right:
			1px solid var(--bro-border);
	}


	.bro-product-allergen:nth-child(even) {
		border-right: 0;
	}


	.bro-product-actions {
		gap: 8px;
	}


	.bro-product-order-button {
		padding: 0 18px;
	}


	.bro-product-delivery-cta__icon {
		width: 50px;
		height: 50px;

		flex-basis: 50px;

		font-size: 29px;
	}

}