/* === FEATURED CATEGORIES (Kosmos.vn style) === */
.featured-categories-section {
    background-color: #ffffff;
}

.section-title-fancy {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .featured-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .featured-categories-grid {
        grid-template-columns: 1fr;
    }
}

.featured-cat-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 1/1;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    /* Fallback */
}

/* Asymmetric Bento Styling for 6 items */
/* Item 1: Large left side (2 cols x 2 rows) */


/* Item 2 and 3: Stacked on the right of Item 1 (each 1 col x 1 row) but taking up the remaining space?
   Wait, the screenshot shows 3 items on the right? No, it shows:
   [    1    |  2 ]
             |  3 ]
   Then row below:
   [ 4 |  5  |  6 ]
   Let's use a 3 column grid where Item 1 spans 2 cols, 2 rows.
*/



.featured-cat-card.featured-cat-large {
    aspect-ratio: 1/1;
}

.featured-cat-card.featured-cat-small {
    aspect-ratio: 1/1;
}

.featured-cat-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-cat-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s ease;
}

.featured-cat-card:hover .featured-cat-image::after {
    background-color: rgba(0, 0, 0, 0.5);
}

.featured-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.featured-cat-card:hover .featured-cat-image img {
    transform: scale(1.08);
}

.featured-cat-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
}

.featured-cat-placeholder i {
    font-size: 60px;
    color: #e31937;
}

.featured-cat-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    flex-direction: row;
    align-items: stretch;
    z-index: 2;
    transition: transform 0.3s ease;
}

.featured-cat-card:hover .featured-cat-overlay {
    transform: translateY(-3px);
}

.featured-cat-name {
    background-color: #ffffff;
    color: #111111;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.featured-cat-card:hover .featured-cat-name {
    color: #e31937;
}

.featured-cat-plus {
    background-color: #e31937;
    color: #ffffff;
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.featured-cat-plus i {
    display: none;
    /* Hide original icon */
}

.featured-cat-plus::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.featured-cat-card:hover .featured-cat-plus {
    background-color: #c41530;
}

.featured-cat-card:hover .featured-cat-plus::after {
    transform: translateX(3px);
}

/* === PRODUCT CATEGORIES SECTION === */
.product-categories-section {
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid #eaeaea;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ffffff;
}

.category-card:hover .category-card-title {
    color: #e31937;
}

.category-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    border-radius: 8px;
}

.category-card-icon i {
    font-size: 44px;
    color: #e31937;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card:hover .category-card-icon i {
    transform: scale(1.1);
}

.category-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-card-desc {
    font-size: 13px;
    color: #777777;
    line-height: 1.5;
    margin: 0;
}

/* === ACHIEVEMENTS SECTION === */
.achievements-section {
    position: relative;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    background-color: #222222;
}

.achievements-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.achievement-item {
    text-align: center;
    color: #ffffff;
}

.achievement-icon {
    margin-bottom: 15px;
}

.achievement-icon i {
    font-size: 48px;
    color: #e31937;
}

.achievement-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    display: inline;
    line-height: 1;
}

.achievement-suffix {
    font-size: 36px;
    font-weight: 700;
    color: #e31937;
}

.achievement-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    line-height: 1.4;
}

/* === FEATURED PROJECTS SECTION === */
.featured-projects-section {
    background-color: #ffffff;
}

.projects-swiper {
    padding-bottom: 50px;
}

.project-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(149, 157, 165, 0.4) 0px 12px 30px;
}

.project-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #494949 0%, #333333 100%);
}

.project-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 25, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-overlay .btn {
    transform: translateY(0);
}

.project-card-body {
    padding: 20px;
}

.project-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-card-title a {
    color: #222222;
}

.project-card-title a:hover {
    color: #e31937;
}

.project-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-card-meta span {
    font-size: 13px;
    color: #636363;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-card-meta span i {
    color: #e31937;
    font-size: 12px;
}

/* Projects Swiper Controls */
.projects-swiper .swiper-button-prev,
.projects-swiper .swiper-button-next {
    color: #494949;
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.projects-swiper .swiper-button-prev::after,
.projects-swiper .swiper-button-next::after {
    font-size: 16px;
}

.projects-swiper .swiper-button-prev:hover,
.projects-swiper .swiper-button-next:hover {
    background-color: #e31937;
    color: #ffffff;
}

.projects-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cccccc;
    opacity: 1;
}

.projects-swiper .swiper-pagination-bullet-active {
    background-color: #e31937;
    width: 25px;
    border-radius: 5px;
}

/* === LATEST NEWS SECTION === */
.latest-news-section .news-grid {
    gap: 25px;
}

.news-card {
    border-radius: 15px;
    overflow: hidden;
}

.news-card-image-link {
    display: block;
    overflow: hidden;
}

.news-card .card-image {
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image {
    transform: scale(1.05);
}

.news-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    min-height: 200px;
}

.news-placeholder i {
    font-size: 40px;
    color: #cccccc;
}

.news-card-date {
    font-size: 13px;
    color: #999999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-date i {
    color: #e31937;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #e31937;
    margin-top: 10px;
}

.read-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #c41530;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* === PARTNERS SECTION === */
.partners-section {
    background-color: #111111;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(227, 25, 55, 0.08) 0%, rgba(17, 17, 17, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.partners-section .container {
    position: relative;
    z-index: 1;
}

.partners-section .section-title {
    color: #ffffff;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 15px 25px;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

.partner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #636363;
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
    background: linear-gradient(135deg, #e31937 0%, #c41530 100%);
    padding: 40px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-form input[type="email"] {
    padding: 12px 25px;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    width: 300px;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

.newsletter-form .btn {
    background-color: #222222;
    border-radius: 9999px;
}

.newsletter-form .btn:hover {
    background-color: #000000;
}

/* === FOOTER === */
.site-footer {
    background-color: #ffffff;
    padding-top: 50px;
    border-top: 3px solid #e31937;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #222222;
}

.footer-company-info p {
    font-size: 14px;
    color: #575760;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-company-info p i {
    color: #e31937;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-company-info p a {
    color: #575760;
}

.footer-company-info p a:hover {
    color: #e31937;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e31937;
    display: inline-block;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    font-size: 14px;
    color: #575760;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-menu li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e31937;
    font-size: 12px;
}

.footer-menu li a:hover {
    color: #e31937;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #636363;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #e31937;
    color: #ffffff;
}

.working-hours p {
    font-size: 14px;
    color: #575760;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.working-hours p i {
    color: #e31937;
}

.footer-map iframe {
    width: 100%;
    border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f7f8f9;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #636363;
    margin: 0;
}

/* === CONTENT AREA === */
.content-area {
    padding: 40px 0;
}

.content-area .grid {
    gap: 25px;
}

.card-meta {
    margin-top: 10px;
    font-size: 13px;
    color: #999999;
}

/* === PRODUCT SPECS TABLE === */
.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.product-specs-table thead th {
    background-color: #e31937;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

.product-specs-table tbody tr:nth-child(even) {
    background-color: #f7f8f9;
}

.product-specs-table tbody td {
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.product-specs-table .spec-label {
    font-weight: 600;
    color: #333333;
    width: 35%;
}

.product-specs-table .spec-value {
    color: #575760;
}

/* === PRODUCT PRICE === */
.product-price {
    margin: 15px 0;
    font-size: 18px;
}

.price-label {
    color: #636363;
}

.price-value {
    font-weight: 800;
    color: #e31937;
    font-size: 24px;
}

.price-contact {
    color: #e31937;
    font-weight: 600;
}

/* === PROJECT DETAILS BOX === */
.project-details-box {
    background-color: #f7f8f9;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.project-details-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e31937;
}

.project-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.project-detail-item i {
    color: #e31937;
    font-size: 18px;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 13px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
}

/* === RELATED PRODUCTS === */
.related-products {
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
}

/* === NO RESULTS === */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.no-results p {
    font-size: 16px;
    color: #636363;
}

/* === SIDEBAR === */
.sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.widget {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 4px 12px;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e31937;
}

/* Filter Widget */
.filter-list li {
    margin-bottom: 8px;
}

.filter-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 14px;
    color: #575760;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filter-list li a:hover,
.filter-list li a.active {
    background-color: #f7f8f9;
    color: #e31937;
}

.filter-list li a .count {
    font-size: 12px;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 9999px;
    color: #636363;
}

.filter-sub-list {
    padding-left: 15px;
    margin-top: 5px;
}

/* === CATEGORY PAGE (taxonomy-product_category) === */

/* Hero Banner */
.cat-hero {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #494949;
    display: flex;
    align-items: center;
}

.cat-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cat-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cat-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 20px;
}

.cat-hero-icon i {
    font-size: 30px;
    color: #ffffff;
}

.cat-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cat-hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

/* Category Description */
.cat-description {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.cat-description-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.cat-description-content h2,
.cat-description-content h3 {
    color: #222222;
    margin-top: 30px;
    margin-bottom: 15px;
}

.cat-description-content h2 {
    font-size: 26px;
    color: #e31937;
}

.cat-description-content h3 {
    font-size: 20px;
}

.cat-description-content ul,
.cat-description-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.cat-description-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cat-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}

/* Section Title inside Category Page */
.cat-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e31937;
    display: inline-block;
}

/* Subcategories Grid */
.cat-subcategories {
    background-color: #f7f8f9;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.subcat-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 4px 12px;
    transition: all 0.3s ease;
}

.subcat-card:hover {
    box-shadow: rgba(149, 157, 165, 0.25) 0px 8px 24px;
    transform: translateY(-2px);
}

.subcat-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.subcat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subcat-card:hover .subcat-card-image img {
    transform: scale(1.05);
}

.subcat-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.subcat-card-placeholder i {
    font-size: 40px;
    color: #cccccc;
}

.subcat-card-info {
    padding: 15px;
    text-align: center;
}

.subcat-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 5px;
}

.subcat-card:hover .subcat-card-name {
    color: #e31937;
}

.subcat-card-count {
    font-size: 13px;
    color: #999999;
}

.subcat-card-arrow {
    display: none;
}

/* Products Header */
.cat-products-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cat-products-header .cat-section-title {
    margin-bottom: 0;
}

.cat-products-count {
    font-size: 14px;
    color: #999999;
}

/* Contact Widget */
.widget-contact {
    background: linear-gradient(135deg, #e31937 0%, #c41530 100%);
    color: #ffffff;
}

.widget-contact .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-contact-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.widget-contact-phone,
.widget-contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.widget-contact-phone:hover,
.widget-contact-email:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* No Results */
.no-results-icon {
    font-size: 60px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* CTA Section */
.cat-cta {
    background: linear-gradient(135deg, #222222 0%, #333333 100%);
}

.cat-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cat-cta-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.cat-cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cat-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #222222;
}

/* Loading state for AJAX filter */
.content-main.is-loading {
    position: relative;
    min-height: 200px;
    pointer-events: none;
}

.content-main.is-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.content-main.is-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #e0e0e0;
    border-top-color: #e31937;
    border-radius: 50%;
    animation: catFilterSpin 0.8s linear infinite;
    z-index: 11;
}

@keyframes catFilterSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Sidebar active link styling */
.filter-list .cat-filter-link {
    transition: color 0.2s, background-color 0.2s;
    cursor: pointer;
}