
.tree-node {
    display: none;
    padding: 20px;
    margin: 10px auto;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 0px;
    width: 90%;
    text-align: center;
}
#start {
    display: block;
}

#backButton {
    display: none;
    margin: 15px auto;
    padding: 12px 15px;
    font-size: 16px;
    background-color: #252b32;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
#backButton i {
    font-size: 18px;
}
#backButton:hover {
    background-color: #e43229;
}

.product a {
    display: block;
    margin-top: 10px;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
.product a:hover {
    text-decoration: underline;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.button-container button {
    flex: 1;
    max-width: 200px; 
    padding: 12px;
    font-size: 16px;
    background-color: #252b32;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    min-width: 150px;
}
.button-container button:hover {
    background-color: #e43229;
}
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    .button-container button {
        width: 90%; 
        max-width: 300px; 
    }
}
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

.product h4 {
    background-color: #e43229;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 10px;
    color: #fff;
    border: none;
}
.product img {
    display: block;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
    border: none;
    height: 350px;
    width: 80%;
    max-width: 80%;
    object-fit: contain;
    display: block;
}
.product p {
    background-color: #e43229;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 15px 5px 15px;
    margin: 0;
    color: #fff;
    text-align: left;
    border: none;
}
.product a span:hover {
    background-color: #f5f5f5;
    color: #b01e2f;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.product {
    font-family: 'Lato', sans-serif;
    color: #fff;
    padding: 0;
    box-shadow: none;
    text-align: left;
    overflow: hidden;
    width: 22%;
    min-width: 200px;
    border: 1px solid #e43229;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}
.product, .product img, .product a span, .button-container button {
    border-radius: 0 !important;
}

.product-description {
    background-color: #e43229;
    margin: 0;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-description p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}
.product a span {
    display: inline-block;
    background-color: #fff;
    color: #e43229;
    padding: 10px 15px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    margin-top: 10px;
    border: none;
    align-self: flex-start;
}
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
    .product {
        width: 90%;
    }
}

#breadcrumb {
	font-family:lato;
}

.breadcrumbSep {
	margin:0 10px;
	color:#ccc;
	font-weight:bold;
	font-size:16px;
}

@media only screen and (min-width: 1280px) {
	#start {
		width: 100%;
		min-height: 350px;
	}
}