/* ========================================
   HURTOWNIA - PRODUCT CARDS LAYOUT
   Nowy prosty layout bez interaktywnego zdjęcia
   ======================================== */

.section-heading2 {
	position: relative;
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 1px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	color: #a17455;
}

/* Hero section */
.warehouse__hero {
	max-width: 1200px;
	margin: 0 auto 4rem;
	padding: 0 2rem;
}

.warehouse__hero-title {
	font-size: 4rem;
	font-weight: 300;
	color: #5f3a3b;
	margin-bottom: 2rem;
	font-family: 'Montserrat', sans-serif;
	text-align: left;
	letter-spacing: 1px;
}

/* Hero layout - dwie kolumny */
.warehouse__hero-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.warehouse__hero-content-right {
	display: flex;
	flex-direction: column;
}

.warehouse__hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-wood-image {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 0;
	box-shadow: none;
}

.warehouse__hero-text {
	margin-top: 0;
}

.warehouse__hero-text p {
	padding: 0 5rem 0 0;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1.5rem;
}

.warehouse__hero-content p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1.5rem;
}

/* Benefits grid - siatka 2x2 */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.benefit-box {
	background: linear-gradient(135deg, #5f3a3b 0%, #7d5149 100%);
	color: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(95, 58, 59, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(95, 58, 59, 0.3);
}

.benefit-box p {
	font-size: 1.4rem;
	line-height: 1.5;
	color: white;
	margin: 0;
}

/* Alternate colors for variety */
.benefit-box:nth-child(2) {
	background: linear-gradient(135deg, #a17455 0%, #b88968 100%);
}

.benefit-box:nth-child(3) {
	background: linear-gradient(135deg, #a17455 0%, #b88968 100%);
}

.benefit-box:nth-child(4) {
	background: linear-gradient(135deg, #704647 0%, #8a5a5b 100%);
}

@media (max-width: 992px) {
	.warehouse__hero-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.benefit-box {
		padding: 1.5rem;
	}

	.benefit-box p {
		font-size: 1.4rem;
	}
}

.warehouse__hero-highlight {
	margin-top: 2rem;
	padding: 1.5rem;
	font-size: 1.6rem;
	font-style: italic;
	color: #5f3a3b;
}

.warehouse__hero-highlight strong {
	font-weight: bold;
	color: #5f3a3b;
}

.highlight-text {
	color: #a17455 !important;
}

/* Locations Section */
.warehouse__locations-section {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
	text-align: center;
}

.section-subtitle {
	font-size: 1.6rem;
	color: rgb(95, 58, 59);
	margin-top: 1rem;
	margin-bottom: 2.5rem;
}

/* NAV: wybór lokalizacji (kafle / menu) */
.warehouse-sales-wrapper {
	max-width: 1200px;
	margin: 6rem auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 0 12px;
}

/* Wspólne style dla kart */
.warehouse__location-card {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	text-align: left;
	width: 100%;
	border: none;
	border-radius: 12px;
	padding: 2.5rem 2rem;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.warehouse__location-card .benefits__icon {
	flex-shrink: 0;
	margin: 0;
}

.warehouse__location-card-content {
	flex: 1;
	padding-left: 1rem;
}

/* Pierwsza karta - biała */
.warehouse__location-card:nth-child(1) {
	background: #fff;
}

.warehouse__location-card:nth-child(1) h3 {
	color: #3f2527;
}

.warehouse__location-card:nth-child(1) .warehouse__city {
	color: #3f2527;
}

.warehouse__location-card:nth-child(1) .warehouse__address {
	color: #3f2527;
}

.warehouse__location-card:nth-child(1) .location-icon {
	color: #d9894a;
}

/* Druga karta - ciemny brąz */
.warehouse__location-card:nth-child(2) {
	background: #3f2527;
}

.warehouse__location-card:nth-child(2) h3 {
	color: white;
}

.warehouse__location-card:nth-child(2) .warehouse__city {
	color: white;
}

.warehouse__location-card:nth-child(2) .warehouse__address {
	color: rgba(255, 255, 255, 0.8);
}

.warehouse__location-card:nth-child(2) .location-icon {
	color: #d9894a;
}

.location-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	display: block;
}

.warehouse__location-card h3 {
	font-size: 2rem;
	margin: 0 0 1rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.warehouse__city {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 600;
}

.warehouse__address {
	margin: 0.3rem 0 0;
	font-size: 1.4rem;
}

.warehouse__hint {
	margin: 0.7rem 0 0;
	font-size: 1.3rem;
	color: #777;
}

/* hover */
.warehouse__location-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(95, 58, 59, 0.15);
}

/* ACTIVE: wyraźnie zaznaczony wybór */
.warehouse__location-card.is-active {
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(95, 58, 59, 0.18);
}

/* focus (klawiatura) */
.warehouse__location-card:focus-visible {
	outline: 2px solid rgba(95, 58, 59, 0.45);
	outline-offset: 3px;
}

/* RWD */
@media (max-width: 768px) {
	.warehouse-sales-wrapper {
		grid-template-columns: 1fr;
	}
	.warehouse__location-card {
		padding: 1.25rem 1.5rem;
	}
}

.warehouse__products {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.warehouse__grid {
	display: grid;
	padding: 0 12px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.product-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

.product-card__image--raised {
	transform: translateY(-12px);
}

.product-card__content {
	padding: 2rem;
}

.product-card__title {
	font-size: 2rem;
	color: #5f3a3b;
	margin-bottom: 1rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

.product-card__description {
	font-size: 1.5rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 1.5rem;
}

.product-card__specs {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.product-card__specs li {
	font-size: 1.4rem;
	color: #555;
	padding: 0.5rem 0;
	padding-left: 2rem;
	position: relative;
}

.product-card__specs li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #a17455;
	font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
	.warehouse__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.product-card__image {
		height: 200px;
	}

	.product-card__image--raised {
		transform: translateY(-8px);
	}

	.product-card__content {
		padding: 1.5rem;
	}

	.product-card__title {
		font-size: 1.8rem;
	}

	.product-card__description {
		font-size: 1.4rem;
	}
}

/* Why us section - karty */
.warehouse__why {
	background: #3f2527;
	padding: 5rem 2rem;
	margin: 4rem 0;
}

.warehouse__why-grid {
	display: grid;
	padding: 0 12px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	max-width: 1200px;
	margin: 3rem auto 0;
}

.warehouse__why-item {
	background: #fff;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.warehouse__why-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.warehouse__why-item:nth-child(1) {
	transition-delay: 0.2s;
}

.warehouse__why-item:nth-child(2) {
	transition-delay: 0.5s;
}

.warehouse__why-item:nth-child(3) {
	transition-delay: 0.8s;
}

.warehouse__why-item:nth-child(4) {
	transition-delay: 1.1s;
}

.warehouse__why-item .benefits__icon,
.warehouse__location-card .benefits__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: block;
}

.warehouse__why-item h3 {
	font-size: 2rem;
	color: #5f3a3b;
	margin-bottom: 1rem;
	font-family: 'Montserrat', sans-serif;
}

.warehouse__why-item p {
	font-size: 1.5rem;
	line-height: 1.6;
	color: #666;
}

/* Info sections */
.warehouse__info {
	max-width: 1200px;
	margin: 5rem auto;
	padding: 0 2rem;
}

.warehouse__info-section {
	margin-bottom: 6rem;
}

/* Grid layout dla sekcji z obrazkami */
.warehouse__info-section--grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* Reverse - obraz po lewej, tekst po prawej */
.warehouse__info-section--reverse {
	direction: ltr;
}

.warehouse__info-section--reverse .warehouse__info-image {
	order: -1;
}

.warehouse__info-content {
	display: flex;
	flex-direction: column;
}

.warehouse__info-content h2 {
	text-align: left;
	margin-bottom: 2rem;
}

.warehouse__info-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.warehouse__info-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
}

.warehouse__info-section h2 {
	margin-bottom: 2rem;
}

.warehouse__info-section p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1.5rem;
}

.warehouse__info-section ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.warehouse__info-section li {
	font-size: 1.6rem;
	color: #555;
	padding: 0.5rem 0;
	padding-left: 2.5rem;
	position: relative;
}

.warehouse__info-section li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #a17455;
	font-weight: bold;
	font-size: 1.8rem;
}

@media (max-width: 768px) {
	.warehouse__info-section--grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.warehouse__info-section--reverse .warehouse__info-image {
		order: 2;
	}

	.warehouse__info-section--reverse .warehouse__info-content {
		order: 1;
	}

	.warehouse__info-image img {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.warehouse__products {
		padding: 0 1.5rem;
	}

	.warehouse__info {
		padding: 0 1.5rem;
	}
}
