.product {
    display: flex;
    align-items: center;
    height: 150px;
    background-color: #F8F5F4;
    padding: 15px;
    margin-bottom: 14px !important;
    border: 4px solid #ff7a3d;
    transition: border-color 0.3s ease-in-out;
    border-radius: 7px;
    overflow: hidden;
		box-shadow: 0px 2px 6px;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-link:hover .product {
  border-color: #ffaa66;
}

.product h2,
.product .product-price,
.product .product-description {
	color: #333; /* Set text color */
}

.product-title {
	color: #ff7a3d !important;
	margin-bottom: 0px !important;
	font-size: 1.4em !important;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    margin-right: 15px;
		margin-bottom: 40px;
}

.product-content {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-product .product {
    width: 100%;
		height: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.single-product .product .woocommerce-product-gallery {
    flex: 0 0 40%;
    max-width: 40%; 
    margin-right: 20px; 
}

.single-product .product .summary {
    flex: 1;
		margin-right: 10px;
}

.single-product .product .woocommerce-product-gallery__wrapper img {
    max-width: 100%;
    height: auto; 
    display: block;
    margin: 0 auto;
		border-radius: 4px;
}

@media screen and (max-width: 768px) {
	.product-thumbnail {
		display: none;
	}
	.custom-product-title {
	font-size: 20px !important;
}
	.custom-product-description {
	font-size: 12px;
}
}

.entry-summary {
  width: 100% !important;
}

.tabs.wc-tabs, .woocommerce-Tabs-panel, .woocommerce-tabs{
  display: none !important;
	width: 0%;
}

.custom-product-title {
	color: #ff7a3d;
	font-size: 30px;
	padding-top: 70px;
	padding-bottom: 10px;
}

.custom-product-title, .custom-product-description {
		text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 10px;
}

.product-description {
	padding-top: 20px;
}


#product-categories {
    background-color: #f8f9fa;
    padding: 20px;
		border-radius: 5px;
		font-size: 25px;
		width: 300px;
		border-style: solid;
		border-top-width: 3px;
		border-bottom-width: 3px;
		border-left-width: 3px;
		border-right-width: 3px;
		border-color: #ff7a3d;
		box-shadow: 0px 2px 6px;
}

#product-categories a {
    display: block;
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

#product-categories a:hover {
    background-color: #e9ecef;
		border-radius: 4px;
    color: #ff7a3d;
}

#product-categories a.active {
    background-color: #ff8249;
    color: white;
    font-weight: bold;
		border-radius: 4px;
}

#product-categories ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#product-categories li {
    border-bottom: 2px solid #ddd;
		padding: 10px 0;
}

#category-header {
		width: 100%;
		border-radius: 4px;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #ff7a3d;
		font-size: 35px;
		text-align: center;
		text-justify: center;
		font-weight: bold;
}