.category-section{
	
padding-top: 60px;
	
padding-bottom: 80px;
}
.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 400px));
	gap: 20px;
	justify-content: flex-start;
}
.category-box {
	display: flex;
	align-items: center;
	background: #f8f8f8;
	padding: 0;
	height: 280px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cat-left {
	width: 90px;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cat-left span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: white;
	font-weight: bold;
	font-size: 16px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.cat-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 15px;
	flex-wrap: wrap;
}
.cat-content {
	flex: 1 1 60%;
}
.cat-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 10px;
}
.cat-content ul li {
	margin-bottom: 5px;
	color: #333;
	font-size: 15px;
}
.cat-content a {
	text-decoration: none;
	color: #000000;
	font-weight: bold;
}
.cat-image {
	flex: 1 1 30%;
	text-align: right;
}
.cat-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}
.promo-box {
	display: flex;
	height: 280px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	border-radius: 8px;
	overflow: hidden;
}
.promo-left {
	width: 87px;
	background: #ff4c00;
	color: #fff;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}
.promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  padding: 20px;
  flex-wrap: wrap;
}

.promo-content-left {
  flex: 1 1 40%;
}

.promo-content-left h2 {
  font-size: 24px;
  color: #ff4c00;
  margin-bottom: 10px;
  line-height: 30px;
}

.promo-content-left a {
  font-weight: bold;
  text-decoration: underline;
  color: #ff0000;
  font-size: 16px;
}

.promo-images {
  flex: 1 1 55%;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.promo-images img {
  max-width: 120px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.promo-images img:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
	.category-box, .promo-box {
		flex-direction: column;
        height: auto;
	}
	.cat-left {
        width: 100%;
		height: 80px;
	}
	.cat-left span {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 14px;
	}
	.cat-content {
        padding: 10px;
        order: 1;
	}
	.cat-image {
        order: 2;
        padding: 10px;
	}
	.promo-box {
        flex-direction: column;
	}
	.promo-left {
        writing-mode: horizontal-tb;
        transform: none;
        width: 100%;
        height: 40px;
	}
	.promo-content {
        padding: 15px;
        text-align: center;
	}
	.promo-images {
        justify-content: center;
	}
}