/*hero start*/

.hero-section {
    width: 100%;
    height: 360px;
    position: relative;
    background-color: #58595B;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-hover-60);
}

.hero-section img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.hero-section .text-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.hero-section .text-content h1 {
    font-size: 45px;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-section .text-content h1 {
        font-size: 30px;
    }
}

.hero-section .breadcrumb {
    margin-bottom: 0;
}

.hero-section .breadcrumb-wrapper li {
    font-size: 13px;
    color: var(--secondary-hover);
}

.hero-section .breadcrumb-wrapper a {
    text-decoration: none;
    color: #F5F5F5;
}

.hero-section .breadcrumb-wrapper li.active {
    color: var(--primary-color);
}

.hero-section .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
    font-weight: 500;
    color: #F5F5F5 !important;
}

/*hero end*/

/*card start*/

.product-cards .card {
    border: none;
    border-radius: 0;
    height: 100%;
    position: relative;
    background-color: transparent;
}

.product-cards .card-body {
    border: none;
}

.product-cards .card img {
    border-radius: 0;
    object-fit: cover;
    clip-path: var(--card-second-shape);
    padding: 8px;
    border: 1px solid transparent;
    display: block;
    width: 100%;
    height: 450px;

    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-cards .card .primary-btn {
    width: fit-content;
}

.product-cards .article-info-wrapper {
    display: flex;
    align-items: center;
    margin-top: -16px;
}

.product-cards .article-info-wrapper .article-info {
    font-size: 14px;
    color: var(--secondary-color);
    padding-left: 15px;
}

.product-cards .article-info-wrapper .article-info:not(:last-child) {
    border-left: 2px solid var(--primary-bg);
}

.product-cards .article-info-wrapper .article-info:not(:first-child) {
    padding-right: 15px;
}

.product-cards .card-text {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.product-cards .text-title {
    text-align: start;
    line-height: 26px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-cards .article-snippet {
    text-align: start;
    line-height: 2em;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: normal;
}

@media (max-width: 1200px) {
    .product-cards .card-text {
        gap: 10px;
    }

    .product-cards .text-title {
        text-align: center;
        font-size: 14px;
    }

    .product-cards .price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .product-cards .text-price {
        text-align: center;
        font-size: 13px;
    }

    .product-cards .new-price {
        text-align: center;
        font-size: 16px;
    }
}

.product-cards .card:hover img {
    transform: scale(0.98);
    border-color: var(--primary-hover);
}


/*card end*/

/*pagination start*/

.pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 2px 8px;
    clip-path: var(--card-first-shape);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.pagination-btn svg {
    width: 12px;
    stroke: #fff;
    fill: #fff;
}
.pagination-numbers button {
    margin: 0 4px;
    padding: 8px 12px;
    background-color: #f1f1f1;
    border: none;
    clip-path: var(--card-second-shape);
    cursor: pointer;
    line-height: 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

.pagination-btn:hover,
.pagination-numbers button:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

.pagination-numbers button.active {
    background-color: var(--secondary-color);
    color: white;
}


/*pagination end*/

/*hero end*/

.articles-aside {
    position: sticky;
    top: 100px;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.articles-aside .search-container input {
    width: 100%;
    border-radius: 0;
    padding: 10px;
}

.articles-aside .search-container input:focus,
.articles-aside .search-container input:active {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.articles-aside .categories .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.articles-aside .categories .tags .tag {
    padding: 10px;
    flex-grow: 1;
    text-align: center;
    background-color: var(--secondary-hover);
    clip-path: var(--card-first-shape);
    transition: background-color 0.3s ease;
}

.articles-aside .categories .tags .tag:hover {
    background-color: var(--primary-hover);
}

.articles-aside .categories .tags .tag a {
    font-size: 13px;
    color: var(--secondary-color);
}

.articles-aside .latest-articles-items .latest-article-item {
    margin-bottom: 10px;
}

.articles-aside .latest-articles-items .card-image {
    max-height: 100px;
}

.articles-aside .latest-articles-items img {
    height: 100px;
    object-fit: cover;
    clip-path: var(--card-first-shape-no-left);
}

.articles-aside .latest-articles-items .card-body .card-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

.articles-aside .latest-articles-items .card-body .article-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
}