.entry-content h2 {
	font-size: 1.5rem !important;
}

.entry-content h3 {
	font-size: 1.2rem !important;
}

.price-box .sale-price bdi {
	text-decoration: line-through;
	margin-right: 10px;
	font-size: 13px;
}

.price-box .sale-price bdi {
	color: #000;
}

/* Breadcrumb Styles */
#breadcrumb {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

#breadcrumb div {
    display: inline;
}

#breadcrumb a {
    color: #337ab7;
    text-decoration: none;
}

#breadcrumb .red {
    color: #d9534f;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/* Box Category List */
.boxs-category-list {
    background: #f8f9fa;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.boxs-category-list a {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px 10px 5px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.boxs-category-list a:hover {
    background: #e9ecef;
    border-color: #007bff;
}

.boxs-category-list a.current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Service Category Styles */
.service-category {
    margin: 40px 0;
}

.service-category .h-title {
    display: flex;
    justify-content: left;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.service-category .h-title h2 {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.service-category .h-title a {
    color: #2842b3;
    font-weight: bold;
    line-height: 10px;
    font-size: 15px;
}

.service-category .h-title a:hover {
    text-decoration: underline;
}

/* Service List Grid */
.service-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.s-item-group {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15)
}

.s-item-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.s-container {
    padding: 8px;
    text-align: center;
}

.s-img {
    display: block;
    margin-bottom: 15px;
}

.s-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    aspect-ratio: 1;
}

.s-name {
    margin-bottom: 15px;
}

.s-name h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #444;
    margin-bottom: 0px;
    margin-top: 5px;
    height: 73px !important;
}

.s-name a {
    color: #333;
    text-decoration: none;
}

.s-name a:hover {
    color: #007bff;
}

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

.price_service font {
    color: #d9534f;
}

.phone_service {
    margin: 10px 0;
}

.phone_service a {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s ease;
}

.phone_service a:hover {
    background: #218838;
}

.s-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.btn-cart-stop {
    color: #d42333;
    background: url(https://ftechwebsite.com/phucanh/wp-content/uploads/2025/05/icon_addcart_new.jpg) left 1px no-repeat;
    padding-left: 17px;
    font-size: 13px;
    float: right;
}

.btn-cart-stop:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .service-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .service-category .h-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .s-container {
        padding: 8px;
    }
    
    .s-name h3 {
        font-size: 14px;
        min-height: 36px;
    }
    
    .boxs-category-list {
        padding: 10px;
    }
    
    .boxs-category-list a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .s-bottom {
        flex-direction: column;
        gap: 10px;
    }
}