/* Banner */
.banner {
	position: relative;
	width: 100%;
	height: 300px;
	background: url('../images/choinki/tlo_choinki.png') no-repeat center
		center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-overlay {
	background: rgba(0, 0, 0, 0.5);
	padding: 20px 40px;
	border-radius: 10px;
}

.banner h1 {
	color: white;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

/* Opis sekcji */
.description {
	padding: 50px 20px;
	background: #fff;
	color: black;
}

.container {
	max-width: 1000px;
	margin: auto;
}

/* Nagłówek sekcji */
.description h2 {
	font-size: 28px;
	margin-bottom: 20px;
	text-align: center;
}

/* Blok prezentacji choinek */
.tree-section {
	display: flex;
	align-items: flex-start; /* Wyrównanie do góry */
	justify-content: flex-start;
	margin-bottom: 40px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}

/* Zdjęcie choinki */
.tree-section img {
	width: 250px;
	height: auto;
	border-radius: 8px;
}

/* Kontener tekstu */
.tree-details {
	flex: 1;
	padding-left: 20px;
	text-align: left;
}

/* Tytuł choinki */
.tree-title {
	font-size: 26px;
	margin-bottom: 5px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Klasa choinki */
.tree-class {
	font-size: 18px;
	color: #666;
	margin-bottom: 5px;
}

/* Opis */
.tree-description {
	font-size: 16px;
	color: #333;
	margin-top: 5px;
}

/* Tabela rozmiarów */
.size-table {
	border: none;
	text-align: center;
	padding: 10px;
	min-width: 180px;
	border-collapse: collapse; /* żeby nie było podwójnych ramek */
	background-color: transparent;
}

.size-table th,
.size-table td {
	border: none;
	padding: 10px;
	font-size: 16px;
}

/* Responsywność */
@media (max-width: 900px) {
	.tree-section {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.tree-section img {
		margin-bottom: 10px;
	}

	.tree-details {
		text-align: center;
		padding-left: 0;
	}

	.size-table {
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
	}
}

.size-table td {
    padding: 10px;
    font-size: 16px;
    text-align: left;
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s, box-shadow 0.3s;
    border-radius: 6px;
}

/* Efekt podświetlenia przy najechaniu */
.size-table td:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: default;
}


.size-table .icon {
    width: 20px;
    height: auto;
}
.tree-description {
    font-family: 'Montserrat';
}