.home-announcement-card {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.home-announcement-card:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.card-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.card-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-price {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}
.card-meta {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}
.featured-col h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

/* Pagination Styles */
.pagination-custom {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
}
.pag-link, .pag-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}
.pag-link:hover, .pag-btn:hover {
    background: #f8f9fa;
    border-color: #ddd;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.pag-link.active {
    background: var(--primary-color, #007bff);
    color: #fff;
    border-color: var(--primary-color, #007bff);
}

/* Category Navigation Styles */
.category-breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}
.category-breadcrumbs a {
    color: #888;
    text-decoration: none;
}
.category-breadcrumbs a:hover {
    color: #333;
}

.home-title-group {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}
.home-title-group h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    color: #111;
}
.item-count {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 400;
}

.category-tabs-row {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
.tab-pill {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    display: inline-block;
}
.tab-pill:hover {
    color: #000;
}
.tab-pill.active {
    color: #000;
    border-bottom-color: #000;
}

.sub-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sub-cat-pill {
    padding: 8px 18px;
    background: #f2f2f2;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sub-cat-pill:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}
.sub-cat-pill.more-btn {
    background: #fff;
    border-color: #ddd;
    cursor: pointer;
}
.sub-cat-pill.more-btn:hover {
    background: #f8f9fa;
}
