/*
 * Archive Styles - Product and Blog Archives
 * @package Soeteck
 */

/* Page Header */
.page-header {
    padding: 40px 0;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.page-title {
    font-family: var(--soeteck-font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.page-description {
    font-family: var(--soeteck-font-body);
    font-size: 1rem;
    color: #666;
    max-width: 600px;
}

.woocommerce-result-count {
    font-family: var(--soeteck-font-ui);
    font-size: 0.875rem;
    color: #666;
}

.woocommerce-ordering select {
    padding: 8px 16px;
    font-family: var(--soeteck-font-ui);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    background-color: #fff;
}

/* Product Grid */
ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.products li.product {
    margin: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

ul.products li.product a {
    display: block;
}

ul.products li.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

ul.products li.product .woocommerce-loop-product__link {
    padding: 16px;
}

ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--soeteck-font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #1a1a1a;
}

ul.products li.product .price {
    font-size: 1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0;
}

ul.products li.product .price del {
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

ul.products li.product .button {
    display: block;
    font-family: var(--soeteck-font-ui);
    width: 100%;
    padding: 10px 16px;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
    font-size: 0.875rem;
    font-weight: 500;
    border-top: 1px solid #eee;
    transition: all 0.2s ease;
}

ul.products li.product .button:hover {
    background-color: #0066cc;
    color: #fff;
}

/* Sale Badge */
ul.products li.product .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background-color: #dc3545;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 10;
}

/* Category Grid */
.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

.product-category-card:hover img {
    transform: scale(1.05);
}

.product-category-card .category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

.product-category-card .category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-category-card .category-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-post-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
}

.blog-post-card .post-thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-card .post-content {
    padding: 20px;
}

.blog-post-card .post-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-post-card .post-title {
    font-family: var(--soeteck-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post-card .post-title a {
    color: #1a1a1a;
}

.blog-post-card .post-title a:hover {
    color: #0066cc;
}

.blog-post-card .post-excerpt {
    font-family: var(--soeteck-font-body);
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-post-card .post-meta {
    font-size: 0.8125rem;
    color: #999;
    display: flex;
    gap: 16px;
}

/* Blog Single */
.soeteck-single-post {
    --soeteck-single-post-content: 1200px;
    --soeteck-single-post-gutter: 20px;
    background: var(--soeteck-white);
}

.soeteck-single-post .container {
    width: min(var(--soeteck-single-post-content), calc(100% - (var(--soeteck-single-post-gutter) * 2)));
    max-width: none;
    padding-inline: 0;
}

.soeteck-single-post__container {
    padding-top: 0;
}

.soeteck-single-post__hero {
    padding: clamp(16px, 3vw, 38px) 0 clamp(24px, 3vw, 40px);
}

.soeteck-single-post__kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-bottom: 28px;
    font-family: var(--soeteck-font-ui);
    color: var(--soeteck-muted);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
}

.soeteck-single-post__category {
    color: var(--soeteck-primary);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.soeteck-single-post__category:hover {
    color: var(--soeteck-primary-dark);
}

.soeteck-single-post__date,
.soeteck-single-post__author {
    display: inline-flex;
    align-items: center;
}

.soeteck-single-post__date::before,
.soeteck-single-post__author::before {
    content: '';
    width: 4px;
    height: 4px;
    margin-right: 16px;
    border-radius: 999px;
    background: var(--soeteck-border);
}

.soeteck-single-post__title {
    margin: 0;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(2.25rem, 5vw, 4.75rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.soeteck-single-post__featured-media {
    margin: 0 0 clamp(38px, 5vw, 72px);
    overflow: hidden;
    border-radius: var(--soeteck-radius-lg);
    background: var(--soeteck-media-bg);
}

.soeteck-single-post__featured-image {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
}

.soeteck-single-post__body-shell {
    position: relative;
    padding-bottom: clamp(56px, 7vw, 96px);
}

.soeteck-single-post__content-wrap {
    max-width: var(--soeteck-single-content-width, 100%);
}

.soeteck-single-post__content {
    color: var(--soeteck-text-soft);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.82;
}

.soeteck-single-post__content > * {
    scroll-margin-top: 110px;
}

.soeteck-single-post__content > * + * {
    margin-top: 1.2rem;
}

.soeteck-single-post__content h2 {
    margin-top: clamp(42px, 5vw, 68px);
    margin-bottom: 18px;
    color: var(--soeteck-text);
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.soeteck-single-post__content h3 {
    margin-top: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
    color: var(--soeteck-text);
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    line-height: 1.22;
}

.soeteck-single-post__content p {
    margin-bottom: 0;
}

.soeteck-single-post__content ul,
.soeteck-single-post__content ol {
    padding-left: 1.4rem;
    list-style-position: outside;
}

.soeteck-single-post__content li + li {
    margin-top: 0.55rem;
}

.soeteck-single-post__content a {
    color: var(--soeteck-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.soeteck-single-post__content a:hover {
    color: var(--soeteck-primary-dark);
}

.soeteck-single-post__content img,
.soeteck-single-post__content figure {
    border-radius: var(--soeteck-radius);
}

.soeteck-article-toc {
    display: none;
}

.soeteck-article-toc.is-ready {
    display: block;
}

.soeteck-article-toc__toggle {
    display: none;
}

.soeteck-article-toc__panel {
    border-left: 2px solid var(--soeteck-border-soft);
}

.soeteck-article-toc__title {
    margin: 0 0 12px;
    padding-left: 14px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-bold);
}

.soeteck-article-toc__nav {
    max-height: min(58vh, 580px);
    overflow-y: auto;
    padding-right: 8px;
}

.soeteck-article-toc__list,
.soeteck-article-toc__children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.soeteck-article-toc__item {
    margin: 0;
}

.soeteck-article-toc__children {
    display: none;
    padding: 6px 0 8px 15px;
}

.soeteck-article-toc__item.is-active > .soeteck-article-toc__children {
    display: block;
}

.soeteck-article-toc__link {
    display: block;
    padding: 6px 14px 6px 14px;
    color: var(--soeteck-muted);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
    line-height: 1.45;
    text-decoration: none;
    border-left: 2px solid transparent;
    transform: translateX(-2px);
    transition: color var(--soeteck-transition-fast), background-color var(--soeteck-transition-fast), border-color var(--soeteck-transition-fast);
}

.soeteck-article-toc__link:hover,
.soeteck-article-toc__link.is-active {
    color: var(--soeteck-primary);
    background: var(--soeteck-primary-soft);
    border-left-color: var(--soeteck-primary);
}

.soeteck-article-toc__link--child {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: var(--soeteck-text-xs);
    line-height: 1.4;
}

.soeteck-single-post__footer {
    margin-top: clamp(46px, 6vw, 80px);
    padding-top: 80px;
    border-top: 1px solid var(--soeteck-border-soft);
}

.soeteck-single-post__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.soeteck-single-post__tags-label {
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-bold);
}

.soeteck-single-post__tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    color: var(--soeteck-primary);
    background: var(--soeteck-primary-soft);
    border-radius: 999px;
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-semibold);
    text-decoration: none;
}

.soeteck-single-post__tag:hover {
    color: var(--soeteck-white);
    background: var(--soeteck-primary);
}

.soeteck-single-post__author-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: clamp(20px, 3vw, 28px);
    background: var(--soeteck-surface);
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
}

.soeteck-single-post__author-avatar {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 999px;
}

.soeteck-single-post__author-label {
    margin: 0 0 4px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soeteck-single-post__author-name {
    margin: 0 0 8px;
    color: var(--soeteck-text);
    font-size: var(--soeteck-text-xl);
    line-height: 1.25;
}

.soeteck-single-post__author-description {
    margin: 0;
    color: var(--soeteck-muted);
    line-height: 1.65;
}

.soeteck-single-post__extension-slot {
    display: none;
}

.soeteck-single-post__related {
    padding: clamp(54px, 7vw, 92px) 0;
    background: var(--soeteck-surface);
}

.soeteck-single-post__related-header {
    margin-bottom: clamp(24px, 3vw, 34px);
}

.soeteck-single-post__related-title {
    margin: 0;
    color: var(--soeteck-text);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.soeteck-single-post__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--soeteck-card-gap);
}

.soeteck-single-post__related-card {
    overflow: hidden;
    background: var(--soeteck-white);
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
    box-shadow: var(--soeteck-shadow);
    transition: transform var(--soeteck-transition-fast), box-shadow var(--soeteck-transition-fast), border-color var(--soeteck-transition-fast);
}

.soeteck-single-post__related-card:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 133, 229, 0.28);
    box-shadow: var(--soeteck-shadow-card);
}

.soeteck-single-post__related-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.soeteck-single-post__related-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--soeteck-media-bg);
}

.soeteck-single-post__related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soeteck-single-post__related-body {
    display: block;
    padding: 20px;
}

.soeteck-single-post__related-date {
    display: block;
    margin-bottom: 10px;
    color: var(--soeteck-muted);
    font-size: var(--soeteck-text-sm);
}

.soeteck-single-post__related-card-title {
    display: block;
    color: var(--soeteck-text);
    font-size: var(--soeteck-text-lg);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.35;
}

@media (min-width: 1820px) {
    .soeteck-single-post.single-post--blogs .soeteck-article-toc.is-ready {
        position: fixed;
        top: 180px;
        left: max(32px, calc((100vw - var(--soeteck-container)) / 2 - 300px));
        z-index: 5;
        width: 250px;
    }

    .soeteck-single-post.single-post--blogs .soeteck-article-toc.is-docked {
        position: absolute;
        top: var(--soeteck-toc-dock-top);
        left: var(--soeteck-toc-dock-left);
    }
}

@media (max-width: 1819px) {
    .soeteck-article-toc.is-ready {
        margin-bottom: 28px;
    }

    .soeteck-article-toc__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        color: var(--soeteck-text);
        background: var(--soeteck-surface);
        border: 1px solid var(--soeteck-border-soft);
        border-radius: var(--soeteck-radius);
        font-family: var(--soeteck-font-ui);
        font-weight: var(--soeteck-weight-bold);
    }

    .soeteck-article-toc__toggle::after {
        content: '';
        width: 9px;
        height: 9px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        transition: transform var(--soeteck-transition-medium);
    }

    .soeteck-article-toc.is-open .soeteck-article-toc__toggle::after {
        transform: rotate(225deg) translate(-2px, -1px);
    }

    .soeteck-article-toc__panel {
        display: none;
        margin-top: 10px;
        padding: 16px;
        background: var(--soeteck-white);
        border: 1px solid var(--soeteck-border-soft);
        border-radius: var(--soeteck-radius);
    }

    .soeteck-article-toc__title {
        display: none;
    }

    .soeteck-article-toc.is-open .soeteck-article-toc__panel {
        display: block;
    }

    .soeteck-article-toc__nav {
        max-height: 42vh;
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .soeteck-single-post__related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .soeteck-single-post {
        --soeteck-single-post-gutter: 16px;
    }

    .soeteck-product-category-archive {
        --soeteck-product-content-gutter: 16px;
    }

    .soeteck-single-post__hero {
        padding-top: 24px;
    }

    .soeteck-single-post__title {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: -0.03em;
    }

    .soeteck-single-post__featured-media {
        border-radius: var(--soeteck-radius);
    }

    .soeteck-single-post__content {
        font-size: 1rem;
        line-height: 1.78;
    }

    .soeteck-single-post__footer {
        padding-top: 56px;
    }

    .soeteck-single-post__author-card {
        flex-direction: column;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.pagination a {
    background-color: #f8f9fa;
    color: #333;
}

.pagination a:hover {
    background-color: #0066cc;
    color: #fff;
}

.pagination .current {
    background-color: #0066cc;
    color: #fff;
    font-weight: 600;
}

.pagination .dots {
    color: #999;
}

/* WooCommerce Pagination */
.woocommerce-pagination {
    margin-top: 44px;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 5px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f4f6f8;
    list-style: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 26px rgba(15, 23, 42, 0.08);
}

.woocommerce-pagination ul.page-numbers li {
    position: relative;
    margin: 0;
}

.woocommerce-pagination ul.page-numbers li + li::before {
    content: '';
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 0;
    width: 1px;
    background: rgba(15, 23, 42, 0.1);
}

.woocommerce-pagination ul.page-numbers li:has(.current)::before,
.woocommerce-pagination ul.page-numbers li:has(.current) + li::before,
.woocommerce-pagination ul.page-numbers li:has(a:hover)::before,
.woocommerce-pagination ul.page-numbers li:has(a:hover) + li::before {
    opacity: 0;
}

.woocommerce-pagination ul.page-numbers > li > .page-numbers {
    position: relative;
    font-family: var(--soeteck-font-ui);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 13px;
    font-weight: var(--soeteck-weight-semibold);
    line-height: 1;
    text-decoration: none;
    transition: border-color var(--soeteck-transition-fast), background var(--soeteck-transition-fast), color var(--soeteck-transition-fast), box-shadow var(--soeteck-transition-fast), transform 120ms ease;
}

.woocommerce-pagination a.page-numbers:hover {
    border-color: rgba(30, 144, 255, 0.35);
    background: var(--soeteck-white);
    color: var(--soeteck-primary-dark);
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.12);
}

.woocommerce-pagination a.page-numbers:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.16);
}

.woocommerce-pagination ul.page-numbers > li > .page-numbers.current {
    border-color: var(--soeteck-primary);
    background: linear-gradient(135deg, var(--soeteck-primary), #0f6fcb);
    color: var(--soeteck-white);
    font-weight: var(--soeteck-weight-bold);
    box-shadow: 0 8px 18px rgba(30, 144, 255, 0.22);
}

.woocommerce-pagination ul.page-numbers > li > .page-numbers.dots {
    min-width: 34px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: #94a3b8;
}

/* Responsive Archives */
@media (max-width: 1200px) {
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
        margin-bottom: 24px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    ul.products {
        gap: 12px;
    }

    ul.products li.product .woocommerce-loop-product__link {
        padding: 12px;
    }

    .product-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    ul.products {
        grid-template-columns: 1fr;
    }

    .soeteck-product-cat-hero__lead {
        display: none;
    }

    .soeteck-product-toolbar__select {
        width: 68px;
        min-width: 68px;
    }

    .woocommerce-pagination ul.page-numbers {
        padding: 4px;
    }

    .woocommerce-pagination ul.page-numbers > li > .page-numbers {
        width: 32px;
        min-width: 32px;
        height: 32px;
        padding: 0;
        font-size: 12px;
    }

    .woocommerce-pagination ul.page-numbers li + li::before {
        top: 8px;
        bottom: 8px;
    }
}

.soeteck-product-category-archive {
    --soeteck-product-content-width: 1200px;
    --soeteck-product-content-gutter: 20px;
    background: var(--soeteck-white);
}

.soeteck-product-cat-hero__breadcrumbs,
.soeteck-product-cat-hero__content,
.soeteck-product-category-layout {
    width: min(var(--soeteck-product-content-width), calc(100% - (var(--soeteck-product-content-gutter) * 2)));
    max-width: none;
    padding-inline: 0;
}

.soeteck-product-cat-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 480px;
    overflow: hidden;
    background-color: var(--soeteck-dark);
    color: var(--soeteck-white);
}

.soeteck-product-cat-hero > .soeteck-product-cat-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

.soeteck-product-cat-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 31, 58, 0.84), rgba(11, 31, 58, 0.42), rgba(11, 31, 58, 0.12));
}

.soeteck-product-cat-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 72px;
}

.soeteck-product-cat-hero__breadcrumbs {
    position: absolute;
    top: 15px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

@media (min-width: 481px) {
    .soeteck-product-cat-hero__breadcrumbs {
        top: 20px;
    }
}

.soeteck-product-cat-hero__breadcrumbs .soeteck-breadcrumbs--hero {
    margin: 0;
}

.soeteck-product-cat-hero .soeteck-eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.soeteck-product-cat-hero__title {
    font-family: var(--soeteck-font-heading);
    margin: 0;
    color: var(--soeteck-white);
    font-size: var(--soeteck-heading-lg);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.08;
}

.soeteck-product-cat-hero__lead {
    font-family: var(--soeteck-font-body);
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--soeteck-text-lg);
    line-height: 1.65;
}

.soeteck-product-category-body {
    padding-block: 110px 80px;
    background: var(--soeteck-white);
}

.soeteck-product-category-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.soeteck-product-filters {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 140px);
    min-height: 0;
}

body.has-mobile-product-filters-open {
    overflow: hidden;
}

.soeteck-product-filters__mobile-bar,
.soeteck-product-filters__panel-header,
.soeteck-product-filters__overlay {
    display: none;
}

.soeteck-product-category-switcher {
    position: relative;
}

.soeteck-product-category-switcher__toggle {
    display: flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #a8aeb5;
    border-radius: 0;
    background: var(--soeteck-white);
    color: var(--soeteck-text);
    font-size: 13px;
    font-weight: var(--soeteck-weight-regular);
    text-align: left;
    cursor: pointer;
}

.soeteck-product-category-switcher__toggle[aria-expanded="true"] {
    border-color: #565c62;
    background: #565c62;
    color: var(--soeteck-white);
    font-weight: var(--soeteck-weight-semibold);
}

.soeteck-product-category-switcher__chevron {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--soeteck-transition-fast);
}

.soeteck-product-category-switcher__toggle[aria-expanded="true"] .soeteck-product-category-switcher__chevron {
    transform: translateY(2px) rotate(225deg);
}

.soeteck-product-category-switcher__panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 20;
    display: grid;
    gap: 3px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease;
}

.soeteck-product-category-switcher.is-open .soeteck-product-category-switcher__panel {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.soeteck-product-category-switcher__item {
    display: flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    background: #565c62;
    color: var(--soeteck-white);
    font-size: 13px;
    font-weight: var(--soeteck-weight-semibold);
    line-height: 1.2;
    text-decoration: none;
}

.soeteck-product-category-switcher__item:hover {
    background: var(--soeteck-primary);
    color: var(--soeteck-white);
}

.soeteck-product-category-switcher__item.is-current {
    background: #4d5359;
    color: var(--soeteck-white);
}

.soeteck-product-filters__clear,
.soeteck-active-filters__clear {
    display: inline-flex;
    color: var(--soeteck-primary);
    font-size: 13px;
    font-weight: var(--soeteck-weight-medium);
    text-decoration: none;
    transition: color var(--soeteck-transition-fast), opacity 160ms ease, transform 160ms ease;
}

.soeteck-active-filters__clear:active,
.soeteck-active-filters__clear.is-removing {
    opacity: 0.72;
    transform: scale(0.97);
}

.soeteck-product-filters__form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding-top: 10px;
}

.soeteck-product-filters__groups {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 20px;
}

.soeteck-filter-group {
    margin: 0 0 6px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.12);
    border-radius: 4px;
    background: var(--soeteck-white);
}

.soeteck-filter-group__toggle {
    display: flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 32px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: #e7e7e7;
    color: var(--soeteck-text);
    font: inherit;
    cursor: pointer;
}

.soeteck-filter-group__toggle:hover,
.soeteck-filter-group.has-active .soeteck-filter-group__toggle {
    background: #ddeeff;
}

.soeteck-filter-group__label {
    font-size: 13px;
    font-weight: var(--soeteck-weight-semibold);
    line-height: 1.2;
}

.soeteck-filter-group__chevron {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--soeteck-transition-fast);
}

.soeteck-filter-group.is-open .soeteck-filter-group__chevron {
    transform: translateY(2px) rotate(225deg);
}

.soeteck-filter-group__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
}

.soeteck-filter-group.is-open .soeteck-filter-group__panel {
    max-height: 420px;
}

.soeteck-filter-group__options {
    min-height: 0;
    overflow: hidden;
    padding: 5px 6px 8px;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.soeteck-filter-group.is-open.is-long .soeteck-filter-group__options {
    padding-right: 8px;
}

.soeteck-filter-option {
    display: flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    gap: 6px;
    min-height: 25px;
    padding: 2px 4px;
    border-radius: 3px;
    color: var(--soeteck-text);
    font-size: 13px;
    line-height: 1.25;
    cursor: pointer;
    transition: background var(--soeteck-transition-fast), color var(--soeteck-transition-fast);
}

.soeteck-filter-option:hover,
.soeteck-filter-option.is-checked {
    background: rgba(30, 144, 255, 0.08);
    color: var(--soeteck-primary-dark);
}

.soeteck-filter-option input {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    accent-color: var(--soeteck-primary);
}

.soeteck-product-filters__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: max-height 220ms ease, margin-top 220ms ease, opacity 160ms ease, transform 200ms ease;
}

.soeteck-product-filters.has-active-filters .soeteck-product-filters__actions,
.soeteck-product-filters.has-pending-filters .soeteck-product-filters__actions {
    max-height: 48px;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.soeteck-product-filters__clear-action {
    display: inline-flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 6px;
    background: #e8eef5;
    color: #1f2937;
    font-size: 14px;
    font-weight: var(--soeteck-weight-medium);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--soeteck-transition-fast), color var(--soeteck-transition-fast), box-shadow var(--soeteck-transition-fast), transform 120ms ease;
}

.soeteck-product-filters__clear-action:hover {
    background: #dbe5ef;
    color: #0f172a;
    text-decoration: none;
}

.soeteck-product-filters__clear-action:active,
.soeteck-product-filters.is-resetting .soeteck-product-filters__clear-action {
    background: #cbd8e6;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.18);
    transform: translateY(1px);
}

.soeteck-product-filters__submit {
    min-height: 38px;
    font-family: var(--soeteck-font-ui);
    border-radius: 0;
    background-clip: padding-box;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--soeteck-transition-fast), color var(--soeteck-transition-fast), box-shadow var(--soeteck-transition-fast), transform 120ms ease;
}

.soeteck-product-filters__submit:hover {
    transform: none;
}

.soeteck-product-filters__submit:active {
    background: var(--soeteck-primary-dark);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.2);
    transform: translateY(1px);
}

.soeteck-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.soeteck-active-filter {
    display: inline-flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--soeteck-primary-soft);
    color: var(--soeteck-primary-dark);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
    text-decoration: none;
    transition: background var(--soeteck-transition-fast), color var(--soeteck-transition-fast), opacity 160ms ease, transform 160ms ease;
}

.soeteck-active-filter:hover {
    background: var(--soeteck-primary);
    color: var(--soeteck-white);
}

.soeteck-active-filter.is-removing {
    background: #fee2e2;
    color: #991b1b;
    opacity: 0.9;
    transform: scale(0.97);
}

.soeteck-active-filter:active,
.soeteck-active-filter.is-removing:hover {
    background: #dc2626;
    color: var(--soeteck-white);
}

.soeteck-product-results__intro {
    margin: 0 0 25px;
}

.soeteck-product-results__intro p {
    margin: 0;
    font-family: var(--soeteck-font-body);
    color: var(--soeteck-text);
    font-size: 16px;
    line-height: 1.5;
}

.soeteck-product-results__intro strong {
    font-weight: var(--soeteck-weight-bold);
}

.soeteck-product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    margin-bottom: 18px;
}

.soeteck-product-toolbar__count .woocommerce-result-count,
.soeteck-product-toolbar__count p {
    margin: 0;
    color: var(--soeteck-text);
    font-size: 14px;
}

.soeteck-product-toolbar__form,
.soeteck-product-toolbar__controls {
    display: flex;
    align-items: end;
    gap: 8px;
}

.soeteck-product-toolbar__label {
    display: block;
    font-family: var(--soeteck-font-ui);
    color: var(--soeteck-text);
    font-size: 14px;
    line-height: 1.2;
}

.soeteck-product-toolbar__select {
    min-width: 146px;
    font-family: var(--soeteck-font-ui);
    min-height: 36px;
    padding: 0 40px 0 12px;
    border: 1px solid rgba(16, 24, 40, 0.16);
    border-radius: 3px;
    appearance: none;
    background-color: var(--soeteck-white);
    background-image: linear-gradient(45deg, transparent 50%, #1f2937 50%), linear-gradient(135deg, #1f2937 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    color: var(--soeteck-text);
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
}

.soeteck-product-toolbar__select:hover {
    border-color: rgba(16, 24, 40, 0.34);
}

.soeteck-product-toolbar__select option:disabled {
    color: #64748b;
    font-weight: var(--soeteck-weight-semibold);
}

.soeteck-product-toolbar__submit {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.soeteck-product-list {
    display: grid;
    gap: 18px;
}

.soeteck-product-list-item {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid #aeb4bb;
    background: #f7f7f7;
    box-shadow: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.soeteck-product-list-item:hover,
.soeteck-product-list-item:focus-within {
    border-color: var(--soeteck-primary);
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.22);
}

.soeteck-product-list-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 172px;
    align-items: center;
    min-height: 245px;
    background: #f7f7f7;
}

.soeteck-product-list-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 245px;
    padding: 30px 14px 42px;
    overflow: visible;
    background: transparent;
    cursor: grab;
    user-select: none;
}

.soeteck-product-list-card__media.is-dragging {
    cursor: grabbing;
}

.soeteck-product-list-card__gallery-viewport {
    display: block;
    width: calc(100% - 28px);
    overflow: hidden;
}

.soeteck-product-list-card__gallery-track {
    display: flex;
    width: 100%;
    height: 150px;
    transform: translateX(calc((var(--gallery-index, 0) * -100%) + var(--gallery-drag-offset, 0px)));
    transition: transform 220ms ease;
}

.soeteck-product-list-card__media.is-dragging .soeteck-product-list-card__gallery-track {
    transition: none;
}

.soeteck-product-list-card__gallery.is-looping-forward .soeteck-product-list-card__gallery-track {
    transition-duration: 286ms;
}

.soeteck-product-list-card__gallery-slide {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.soeteck-product-list-card__media img {
    display: block;
    width: auto;
    max-width: 205px;
    max-height: 155px;
    object-fit: contain;
    pointer-events: none;
}

.soeteck-product-list-card__media-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transform: translateX(-50%);
}

.soeteck-product-list-card__media-dots button {
    position: relative;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.soeteck-product-list-card__media-dots button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8b8b8;
    transform: translate(-50%, -50%);
}

.soeteck-product-list-card__media-dots button.is-active::before,
.soeteck-product-list-card__media-dots button:hover::before {
    background: #000;
}

.soeteck-product-list-card__content {
    min-width: 0;
    padding: 46px 10px 44px 0;
}

.soeteck-product-list-card__title {
    margin: 0;
    font-family: var(--soeteck-font-heading);
    color: var(--soeteck-text);
    font-size: 18px;
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.35;
}

.soeteck-product-list-card__title a {
    color: inherit;
    text-decoration: none;
}

.soeteck-product-list-card__title a:hover {
    color: var(--soeteck-primary);
}

.soeteck-product-list-card__excerpt {
    display: -webkit-box;
    margin: 16px 0 0;
    overflow: hidden;
    font-family: var(--soeteck-font-body);
    color: var(--soeteck-text);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.soeteck-product-list-card__actions {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 170px;
    padding: 24px 16px;
    background: #d7d7d7;
}

.soeteck-product-list-card__button {
    display: inline-flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: var(--soeteck-primary);
    color: var(--soeteck-white);
    font-size: 13px;
    font-weight: var(--soeteck-weight-semibold);
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.soeteck-product-list-card__button:hover {
    background: var(--soeteck-primary-dark);
    color: var(--soeteck-white);
}

.soeteck-product-list-item__models {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    overflow: hidden;
    overflow-y: hidden;
    padding: 0 10px;
    border-top: 1px solid transparent;
    background: var(--soeteck-white);
    opacity: 0;
    transform: translateY(-6px);
    transition:
        grid-template-rows 260ms ease,
        padding 260ms ease,
        border-color 260ms ease,
        opacity 180ms ease,
        transform 260ms ease;
}

.soeteck-product-list-item__models.show {
    grid-template-rows: 1fr;
    padding: 10px 10px 0;
    border-top-color: rgba(16, 24, 40, 0.14);
    opacity: 1;
    transform: translateY(0);
}

.soeteck-product-list-card__button.show-variations::after {
    content: '';
    display: block;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-right: 1.35px solid currentColor;
    border-bottom: 1.35px solid currentColor;
    transform: translateX(-1px) rotate(-45deg);
    transform-origin: center;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.soeteck-product-list-card__button.show-variations[aria-expanded="true"]::after,
.soeteck-product-list-card__button.show-variations.is-expanded::after {
    transform: translateY(-2px) rotate(45deg);
}

.soeteck-product-list-card__button.show-variations i {
    display: none;
}

.soeteck-product-list-item__models .variations-table {
    overflow-x: auto;
    overflow-y: hidden;
    min-height: 0;
    max-width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(16, 24, 40, 0.14);
    background: var(--soeteck-white);
}

.soeteck-product-list-item__models table {
    width: max-content;
    font-family: var(--soeteck-font-ui);
    min-width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    color: var(--soeteck-text);
}

.soeteck-product-list-item__models th,
.soeteck-product-list-item__models td,
.soeteck-product-list-item__models .variations-table th,
.soeteck-product-list-item__models .variations-table td {
    padding: 6px 10px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.1);
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.soeteck-product-list-item__models th,
.soeteck-product-list-item__models .variations-table th {
    background: #e8eef5;
    color: #1f2937;
    font-weight: var(--soeteck-weight-semibold);
}

.soeteck-product-list-item__models td:first-child,
.soeteck-product-list-item__models .variations-table td:first-child {
    color: #0f172a;
    font-weight: var(--soeteck-weight-semibold);
}

.soeteck-product-list-item__models tbody tr:hover td {
    background: rgba(232, 238, 245, 0.55);
}

.soeteck-product-list-item__models .variation-row--extra {
    display: none;
}

.soeteck-product-list-item__models .variations-table.is-expanded .variation-row--extra {
    display: table-row;
}

.soeteck-product-list-item__models .toggle-variations-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0 22px 0;
    background: var(--soeteck-white);
}

.soeteck-product-list-item__models .toggle-variations {
    display: inline-flex;
    font-family: var(--soeteck-font-ui);
    align-items: center;
    gap: 6px;
    min-height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--soeteck-primary);
    font-size: 12px;
    font-weight: var(--soeteck-weight-medium);
    cursor: pointer;
}

.soeteck-product-list-item__models .toggle-variations::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--soeteck-transition-fast);
}

.soeteck-product-list-item__models .toggle-variations.is-expanded::after {
    transform: translateY(2px) rotate(225deg);
}

.soeteck-product-list-item__models .toggle-variations:hover {
    color: var(--soeteck-primary-dark);
}

@media (prefers-reduced-motion: reduce) {
    .soeteck-product-list-item__models,
    .soeteck-product-category-switcher__panel,
    .soeteck-product-filters__panel,
    .soeteck-product-filters__overlay,
    .soeteck-product-filters__actions,
    .soeteck-filter-group__panel,
    .soeteck-filter-group__chevron,
    .soeteck-product-list-card__gallery-slide,
    .soeteck-product-list-card__gallery-track {
        transition: none;
    }
}

.soeteck-product-results .woocommerce-pagination {
    margin-top: 80px;
}

@media (max-width: 1200px) {
    .soeteck-product-category-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 22px;
    }

    .soeteck-product-list-card {
        grid-template-columns: 210px minmax(0, 1fr) 164px;
    }

    .soeteck-product-list-card__media img {
        max-width: 188px;
    }
}

@media (max-width: 991px) {
    .soeteck-product-cat-hero {
        min-height: 420px;
    }

    .soeteck-product-category-body {
        padding-top: 80px;
    }

    .soeteck-product-category-layout {
        grid-template-columns: minmax(0, 1fr);
        min-width: 0;
    }

    .soeteck-product-results,
    .soeteck-product-list,
    .soeteck-product-list-item,
    .soeteck-product-list-card {
        min-width: 0;
        max-width: 100%;
    }

    .soeteck-product-filters {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        max-height: none;
    }

    .soeteck-product-filters__mobile-bar {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .soeteck-product-category-switcher {
        grid-column: 1;
        grid-row: 1;
    }

    .soeteck-product-filters__mobile-toggle {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        min-height: 42px;
        padding: 0;
        border: 1px solid var(--soeteck-primary);
        background: var(--soeteck-primary);
        color: var(--soeteck-white);
        font-size: 0;
        cursor: pointer;
    }

    .soeteck-product-filters__mobile-toggle::before,
    .soeteck-product-filters__mobile-toggle::after {
        content: '';
        position: absolute;
        left: 10px;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .soeteck-product-filters__mobile-toggle::before {
        top: 12px;
        box-shadow: 0 14px 0 currentColor;
    }

    .soeteck-product-filters__mobile-toggle::after {
        top: 19px;
        width: 14px;
    }

    .soeteck-product-filters__panel {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: min(82vh, 680px);
        padding: 16px 16px 0;
        border-radius: 18px 18px 0 0;
        background: var(--soeteck-white);
        box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.22);
        transform: translateY(105%);
        transition: transform 280ms ease;
    }

    .soeteck-product-filters.is-mobile-open .soeteck-product-filters__panel {
        transform: translateY(0);
    }

    .soeteck-product-filters__panel-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 14px;
        padding-top: 12px;
        color: var(--soeteck-text);
        font-size: 18px;
        font-weight: var(--soeteck-weight-bold);
    }

    .soeteck-product-filters__panel-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 42px;
        height: 4px;
        border-radius: 999px;
        background: #cbd5e1;
        transform: translateX(-50%);
    }

    .soeteck-product-filters__panel-close {
        position: relative;
        width: 34px;
        height: 34px;
        padding: 0;
        border: 1px solid rgba(16, 24, 40, 0.14);
        background: #f8fafc;
        cursor: pointer;
    }

    .soeteck-product-filters__panel-close::before,
    .soeteck-product-filters__panel-close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 1.5px;
        background: #1f2937;
    }

    .soeteck-product-filters__panel-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .soeteck-product-filters__panel-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .soeteck-product-filters__form {
        display: flex;
        flex: 1 1 auto;
        min-height: 0;
        padding: 0 0 74px;
    }

    .soeteck-product-filters__groups {
        overflow-y: auto;
        margin-inline: -4px;
        padding: 6px 4px 20px;
    }

    .soeteck-filter-group {
        background: var(--soeteck-white);
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    }

    .soeteck-filter-group:last-child {
        margin-bottom: 0;
    }

    .soeteck-product-filters__actions {
        position: sticky;
        bottom: 0;
        z-index: 2;
        flex: 0 0 auto;
        order: 2;
        max-height: none;
        margin: 12px -16px 0;
        padding: 12px 16px max(12px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(16, 24, 40, 0.12);
        background: var(--soeteck-white);
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .soeteck-product-filters.has-active-filters .soeteck-product-filters__actions,
    .soeteck-product-filters.has-pending-filters .soeteck-product-filters__actions {
        max-height: none;
        margin-top: 12px;
    }

    .soeteck-product-filters__overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        width: 100%;
        height: 100%;
        border: 0;
        background: rgba(15, 23, 42, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }

    .soeteck-product-filters.is-mobile-open .soeteck-product-filters__overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .soeteck-product-list-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .soeteck-product-list-card__actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 16px;
    }

    .soeteck-product-list-item__models {
        padding-inline: 0;
    }

    .soeteck-product-list-item__models .variations-table {
        max-width: 100%;
        overflow-x: auto;
    }

    .soeteck-product-results .woocommerce-pagination {
        max-width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 640px) {
    .soeteck-product-cat-hero {
        min-height: 380px;
    }

    .soeteck-product-cat-hero__content {
        padding-block: 56px;
    }

    .soeteck-product-cat-hero__lead {
        font-size: var(--soeteck-text-md);
    }

    .soeteck-product-list-card__excerpt {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin-top: 12px;
    }

    .soeteck-product-list-card__actions {
        background: transparent;
        min-height: 0;
        padding: 0 20px 20px;
    }

    .soeteck-product-list-card__actions .soeteck-product-list-card__button:not(.show-variations) {
        display: none;
    }

    .soeteck-product-list-card__actions .show-variations {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        white-space: normal;
    }

    .soeteck-product-toolbar {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        min-width: 0;
        min-height: 40px;
    }

    .soeteck-product-toolbar__count {
        flex: 1 1 auto;
        min-width: 0;
    }

    .soeteck-product-toolbar__count .woocommerce-result-count,
    .soeteck-product-toolbar__count p {
        overflow: hidden;
        font-size: 12px;
        line-height: 1.3;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .soeteck-product-toolbar__controls,
    .soeteck-product-toolbar__form {
        flex: 0 1 auto;
        align-items: center;
        flex-direction: row;
        gap: 4px;
        min-width: 0;
        width: auto;
    }

    .soeteck-product-toolbar__label {
        min-width: 0;
    }

    .soeteck-product-toolbar__select {
        min-width: 72px;
        width: 72px;
        min-height: 34px;
        padding: 0 20px 0 6px;
        background-position: calc(100% - 11px) 50%, calc(100% - 6px) 50%;
        font-size: 11px;
    }

    .soeteck-product-list {
        justify-items: center;
    }

    .soeteck-product-list-item {
        width: 100%;
        box-shadow: none;
    }

    .soeteck-product-list-item:hover,
    .soeteck-product-list-item:focus-within {
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    }

    .soeteck-product-list-card {
        grid-template-columns: minmax(0, 1fr);
        min-width: 0;
        min-height: 0;
    }

    .soeteck-product-list-card__content,
    .soeteck-product-list-card__actions {
        min-width: 0;
        max-width: 100%;
    }

    .soeteck-product-list-card__title,
    .soeteck-product-list-card__excerpt,
    .soeteck-product-list-card__button {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .soeteck-product-list-card__media {
        min-height: 190px;
        padding: 24px 24px 40px;
        touch-action: pan-y;
    }

    .soeteck-product-list-card__gallery-track {
        height: 130px;
    }

    .soeteck-product-list-card__media-dots {
        bottom: 22px;
    }

    .soeteck-product-list-card__content {
        padding: 0 20px 20px;
    }

    .soeteck-product-list-card__actions {
        grid-template-columns: 1fr;
    }

    .soeteck-product-list-item__models.show {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Article Archives */
.soeteck-article-archive {
    --soeteck-article-width: 1200px;
    --soeteck-article-gutter: 20px;
    background: var(--soeteck-white);
}

.soeteck-article-archive .container {
    width: min(var(--soeteck-article-width), calc(100% - (var(--soeteck-article-gutter) * 2)));
    max-width: none;
    padding-inline: 0;
}

.soeteck-article-archive__container {
    padding-top: clamp(42px, 5vw, 72px);
    padding-bottom: clamp(64px, 8vw, 112px);
}

.soeteck-article-archive__hero {
}

.soeteck-article-archive__hero-inner {
    position: relative;
    padding-top: 150px;
    padding-bottom: clamp(34px, 5vw, 72px);
}

.soeteck-article-archive__breadcrumbs {
    position: absolute;
    top: 15px;
    left: 0;
    margin: 0;
}

@media (min-width: 481px) {
    .soeteck-article-archive__breadcrumbs {
        top: 20px;
    }
}

.soeteck-article-archive__eyebrow,
.soeteck-article-archive__featured-label,
.soeteck-article-archive__cta-eyebrow {
    margin: 0 0 14px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soeteck-article-archive__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
}

.soeteck-article-archive__hero-copy {
    max-width: 780px;
}

.soeteck-article-archive__title {
    margin: 0;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5.25rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.soeteck-article-archive__description {
    margin: 22px 0 0;
    color: var(--soeteck-text-soft);
    font-size: clamp(1rem, 1.25vw, 1.1875rem);
    line-height: 1.7;
}

.soeteck-article-archive__section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.soeteck-article-archive__section-heading h2 {
    margin: 0;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.soeteck-article-archive__section-eyebrow {
    margin: 0 0 8px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soeteck-featured-slider,
.soeteck-news-gateways,
.soeteck-news-latest {
    margin-bottom: clamp(42px, 6vw, 84px);
}

.soeteck-featured-slider {
    position: relative;
}

.soeteck-featured-slider__viewport {
    position: relative;
    min-height: clamp(380px, 44vw, 580px);
    overflow: hidden;
    border-radius: var(--soeteck-radius-lg);
    background: #0e1624;
    box-shadow: var(--soeteck-shadow-lg);
}

.soeteck-featured-slider__pane {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms ease;
}

.soeteck-featured-slider__pane.is-active {
    opacity: 1;
    pointer-events: auto;
}

.soeteck-featured-slider__image-link,
.soeteck-featured-slider__overlay,
.soeteck-featured-slider__image,
.soeteck-featured-slider__image--placeholder {
    position: absolute;
    inset: 0;
}

.soeteck-featured-slider__image-link {
    display: block;
    overflow: hidden;
}

.soeteck-featured-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 5200ms linear;
}

.soeteck-featured-slider__image--placeholder {
    display: block;
    background: linear-gradient(135deg, #0e1624, #263d5c);
}

.soeteck-featured-slider__pane.is-active .soeteck-featured-slider__image {
    transform: scale(1.055);
}

.soeteck-featured-slider__overlay {
    background: linear-gradient(90deg, rgba(4, 10, 18, 0.86), rgba(4, 10, 18, 0.48) 58%, rgba(4, 10, 18, 0.28));
    pointer-events: none;
}

.soeteck-featured-slider__content {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 96px));
    margin-left: clamp(24px, 5vw, 64px);
    padding: clamp(36px, 7vw, 76px) 0 clamp(72px, 9vw, 110px);
    color: var(--soeteck-white);
}

.soeteck-featured-slider__badge {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 13px;
    background: #ef1738;
    color: var(--soeteck-white);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.05em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.soeteck-featured-slider__title {
    margin: 0;
    color: var(--soeteck-white);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(2rem, 4vw, 3.65rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.soeteck-featured-slider__title a {
    color: var(--soeteck-white);
    text-decoration: none;
}

.soeteck-featured-slider__excerpt {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: var(--soeteck-text-md);
    line-height: 1.7;
}

.soeteck-featured-slider__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 14px 28px;
    border-radius: var(--soeteck-radius-sm);
    background: #ef1738;
    color: var(--soeteck-white);
    font-family: var(--soeteck-font-ui);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.soeteck-featured-slider__nav {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 5vw, 64px);
    bottom: clamp(26px, 4vw, 44px);
    left: clamp(24px, 5vw, 64px);
    display: grid;
    grid-template-columns: repeat(var(--soeteck-featured-slider-count, 5), minmax(0, 1fr));
    gap: 12px;
}

.soeteck-featured-slider__nav-item {
    display: block;
    width: 100%;
    height: 18px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.soeteck-featured-slider__track {
    display: block;
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.32);
}

.soeteck-featured-slider__progress {
    display: block;
    width: 0;
    height: 100%;
    background: #ef1738;
}

.soeteck-news-gateways__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.soeteck-news-gateways__card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
    background: linear-gradient(180deg, var(--soeteck-white), var(--soeteck-surface));
    color: inherit;
    text-decoration: none;
    transition: border-color var(--soeteck-transition-fast), box-shadow var(--soeteck-transition-fast), transform var(--soeteck-transition-fast);
}

.soeteck-news-gateways__card:hover {
    border-color: var(--soeteck-primary);
    box-shadow: var(--soeteck-shadow-md);
    transform: translateY(-2px);
}

.soeteck-news-gateways__eyebrow,
.soeteck-news-gateways__meta {
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soeteck-news-gateways__title {
    margin-top: 18px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.16;
}

.soeteck-news-gateways__description {
    margin-top: 14px;
    color: var(--soeteck-text-soft);
    line-height: 1.65;
}

.soeteck-news-gateways__meta {
    margin-top: auto;
    padding-top: 28px;
    color: var(--soeteck-muted);
}

.soeteck-news-gateways__cta {
    margin-top: 16px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-weight: var(--soeteck-weight-bold);
}

.soeteck-news-latest {
    margin-bottom: 0;
}

.soeteck-news-latest__heading {
    align-items: flex-start;
}

.soeteck-news-latest__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.soeteck-news-latest__tab {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--soeteck-border-soft);
    border-radius: 999px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
    text-decoration: none;
}

.soeteck-news-latest__tab.is-active,
.soeteck-news-latest__tab:hover {
    border-color: var(--soeteck-primary);
    background: var(--soeteck-primary);
    color: var(--soeteck-white);
}

@media (prefers-reduced-motion: reduce) {
    .soeteck-featured-slider__pane,
    .soeteck-featured-slider__image,
    .soeteck-news-gateways__card {
        transition: none;
    }

    .soeteck-featured-slider__pane.is-active .soeteck-featured-slider__image {
        transform: none;
    }
}

.soeteck-article-archive__hero-panel {
    align-self: end;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
    background: linear-gradient(180deg, var(--soeteck-white), var(--soeteck-surface));
    box-shadow: 0 18px 44px rgba(15, 35, 70, 0.06);
}

.soeteck-article-archive__hero-panel-label {
    margin: 0 0 18px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.soeteck-article-archive__hero-panel-list {
    display: grid;
    gap: 12px;
}

.soeteck-article-archive__hero-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.45;
    text-decoration: none;
}

.soeteck-article-archive__hero-panel-item::before {
    content: '';
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--soeteck-primary);
}

.soeteck-article-archive__hero-panel-item[href]:hover {
    color: var(--soeteck-primary);
}

/* Standard Article Archive Card */
.soeteck-article-card {
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
    background: var(--soeteck-white);
    transition: border-color var(--soeteck-transition-fast), box-shadow var(--soeteck-transition-fast), transform var(--soeteck-transition-fast);
}

.soeteck-article-card:hover {
    border-color: var(--soeteck-primary);
    box-shadow: 0 12px 24px rgba(15, 35, 70, 0.08);
    transform: translateY(-2px);
}

.soeteck-article-card__link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.soeteck-article-card__media {
    display: block;
    overflow: hidden;
    border-radius: var(--soeteck-radius-lg) var(--soeteck-radius-lg) 0 0;
    background: var(--soeteck-media-bg);
    aspect-ratio: 16 / 10;
}

.soeteck-article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--soeteck-transition);
}

.soeteck-article-card__link:hover .soeteck-article-card__image {
    transform: scale(1.03);
}

.soeteck-article-card__body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.soeteck-article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soeteck-article-card__category {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--soeteck-primary);
    border-radius: 999px;
    color: var(--soeteck-primary);
    line-height: 1;
}

.soeteck-article-card__date {
    color: var(--soeteck-muted);
    font-weight: var(--soeteck-weight-medium);
    text-transform: none;
    letter-spacing: 0;
}

.soeteck-article-card__title {
    margin-bottom: 14px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.24;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.soeteck-article-card__excerpt {
    color: var(--soeteck-text-soft);
    font-size: var(--soeteck-text-sm);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.soeteck-article-card__divider {
    width: 100%;
    height: 1px;
    margin-top: 22px;
    margin-bottom: 16px;
    background: var(--soeteck-border-soft);
}

.soeteck-article-card__source {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: var(--soeteck-muted);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
}

.soeteck-article-card__avatar img {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 999px;
}

.soeteck-article-card__source-body {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.soeteck-article-card__source-label {
    color: var(--soeteck-text-soft);
}

.soeteck-article-card__source-detail {
    color: var(--soeteck-muted);
    font-size: var(--soeteck-text-xs);
    line-height: 1.35;
}

.soeteck-article-archive__featured {
    margin-bottom: clamp(34px, 5vw, 72px);
}

.soeteck-article-archive__featured-card,
.soeteck-article-archive__card,
.soeteck-article-archive__row,
.soeteck-article-archive__cta,
.soeteck-article-archive__empty {
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
    background: var(--soeteck-white);
}

.soeteck-article-archive__featured-link,
.soeteck-article-archive__card-link {
    display: grid;
    color: inherit;
    text-decoration: none;
}

.soeteck-article-archive__featured-link {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    min-height: 390px;
}

.soeteck-article-archive--news .soeteck-article-archive__featured-link {
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
}

.soeteck-article-archive__featured-media,
.soeteck-article-archive__card-media {
    display: block;
    overflow: hidden;
    background: var(--soeteck-media-bg);
}

.soeteck-article-archive__featured-image,
.soeteck-article-archive__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--soeteck-transition);
}

.soeteck-article-archive__featured-link:hover .soeteck-article-archive__featured-image,
.soeteck-article-archive__card-link:hover .soeteck-article-archive__card-image {
    transform: scale(1.035);
}

.soeteck-article-archive__featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
}

.soeteck-article-archive__date,
.soeteck-article-archive__meta {
    color: var(--soeteck-muted);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
}

.soeteck-article-archive__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 14px;
}

.soeteck-article-archive__category {
    color: var(--soeteck-primary);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.soeteck-article-archive__featured-title {
    margin-top: 16px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.soeteck-article-archive__featured-excerpt,
.soeteck-article-archive__card-excerpt,
.soeteck-article-archive__row-excerpt {
    color: var(--soeteck-text-soft);
    line-height: 1.65;
}

.soeteck-article-archive__featured-excerpt {
    margin-top: 18px;
    font-size: var(--soeteck-text-md);
}

.soeteck-article-archive__read-more,
.soeteck-article-archive__card-action,
.soeteck-article-archive__row-action {
    margin-top: 24px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-weight: var(--soeteck-weight-bold);
}

.soeteck-article-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.soeteck-article-archive__grid--cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soeteck-article-archive__card-link {
    height: 100%;
    grid-template-rows: auto 1fr;
}

.soeteck-article-archive__card-media {
    aspect-ratio: 16 / 10;
    border-radius: var(--soeteck-radius-lg) var(--soeteck-radius-lg) 0 0;
}

.soeteck-article-archive__card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.soeteck-article-archive__card-title {
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: var(--soeteck-weight-bold);
    line-height: 1.24;
}

.soeteck-article-archive__card-excerpt {
    margin-top: 14px;
    font-size: var(--soeteck-text-sm);
}

.soeteck-article-archive__card-action {
    margin-top: auto;
    padding-top: 22px;
}

.soeteck-article-archive__news-list {
    display: grid;
    gap: 14px;
}

.soeteck-article-archive__row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 22px 24px;
}

.soeteck-article-archive__row-date {
    display: grid;
    justify-items: center;
    padding: 12px;
    border-radius: var(--soeteck-radius);
    background: var(--soeteck-surface);
    color: var(--soeteck-muted);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    text-transform: uppercase;
}

.soeteck-article-archive__row-date strong {
    color: var(--soeteck-text);
    font-size: 1.75rem;
    line-height: 1;
}

.soeteck-article-archive__row-title {
    margin: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.24;
}

.soeteck-article-archive__row-title a {
    color: var(--soeteck-text);
    text-decoration: none;
}

.soeteck-article-archive__row-title a:hover {
    color: var(--soeteck-primary);
}

.soeteck-article-archive__row-excerpt {
    margin: 8px 0 0;
}

.soeteck-newsroom-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.soeteck-newsroom-layout__main {
    min-width: 0;
}

.soeteck-newsroom-featured .soeteck-article-archive__featured-card {
    border-color: rgba(0, 86, 179, 0.18);
    box-shadow: 0 18px 44px rgba(15, 35, 70, 0.08);
}

.soeteck-newsroom-featured .soeteck-article-archive__featured-label {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 86, 179, 0.08);
    color: var(--soeteck-primary);
}

.soeteck-newsroom-featured__meta-rail {
    display: none;
}

.soeteck-newsroom-featured-slider {
    margin-bottom: clamp(34px, 5vw, 80px);
}

.soeteck-newsroom-featured-slider__heading {
    margin-bottom: 18px;
}

.soeteck-newsroom-featured-slider__heading h2 {
    margin: 0;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.18;
}

.soeteck-newsroom-featured-slider__viewport {
    min-height: 520px;
    border-radius: var(--soeteck-radius-lg);
}

.soeteck-newsroom-featured-slider__overlay {
    background: linear-gradient(90deg, rgba(4, 10, 18, 0.74), rgba(4, 10, 18, 0.28));
}

.soeteck-newsroom-featured-slider__pane {
    align-items: flex-end;
}

.soeteck-newsroom-featured-slider__content {
    width: min(680px, calc(100% - 96px));
    margin-left: 32px;
    padding: clamp(28px, 5vw, 52px) 0 80px;
}

.soeteck-newsroom-featured-slider__badge {
    width: fit-content;
    margin-bottom: 10px;
    background: #ef1738;
    color: var(--soeteck-white);
}

.soeteck-newsroom-featured-slider__date {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
}

.soeteck-newsroom-featured-slider__title {
    font-size: clamp(1.45rem, 2.45vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.soeteck-newsroom-featured-slider__excerpt {
    max-width: 620px;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.soeteck-newsroom-featured-slider__cta {
    min-height: 38px;
    margin-top: 16px;
    padding: 10px 18px;
}

.soeteck-newsroom-featured-slider__nav {
    right: 32px;
    bottom: 28px;
    left: 32px;
}

.soeteck-newsroom-featured--bulletin .soeteck-article-archive__featured-link {
    grid-template-columns: 1fr;
    min-height: 0;
}

.soeteck-newsroom-featured--bulletin .soeteck-article-archive__featured-media {
    display: none;
}

.soeteck-newsroom-featured--bulletin .soeteck-article-archive__featured-card {
    background: linear-gradient(135deg, var(--soeteck-white), var(--soeteck-surface));
    box-shadow: 0 12px 32px rgba(15, 35, 70, 0.06);
}

.soeteck-newsroom-featured--bulletin .soeteck-article-archive__featured-body {
    max-width: 780px;
    padding: clamp(32px, 5vw, 56px);
}

.soeteck-newsroom-featured--bulletin .soeteck-article-archive__featured-title {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-card {
    overflow: hidden;
    background: var(--soeteck-text);
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-link {
    position: relative;
    display: flex;
    min-height: 520px;
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border-radius: 0;
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 10, 18, 0.84), rgba(4, 10, 18, 0.42));
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-image {
    height: 100%;
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-body {
    position: relative;
    z-index: 1;
    max-width: 720px;
    align-self: flex-end;
    color: var(--soeteck-white);
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__date,
.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-title,
.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-excerpt {
    color: var(--soeteck-white);
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-excerpt {
    opacity: 0.86;
}

.soeteck-newsroom-featured--magazine .soeteck-article-archive__read-more {
    color: var(--soeteck-white);
}

.soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-link {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

.soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-media {
    display: none;
}

.soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
    column-gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-label,
.soeteck-newsroom-featured--metadata .soeteck-article-archive__date,
.soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-title,
.soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-excerpt,
.soeteck-newsroom-featured--metadata .soeteck-article-archive__read-more {
    grid-column: 1;
}

.soeteck-newsroom-featured--metadata .soeteck-newsroom-featured__meta-rail {
    display: grid;
    grid-column: 2;
    grid-row: 1 / span 5;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius);
    background: var(--soeteck-surface);
}

.soeteck-newsroom-featured--metadata .soeteck-newsroom-featured__meta-rail span {
    display: grid;
    gap: 4px;
    color: var(--soeteck-text-soft);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
}

.soeteck-newsroom-featured--metadata .soeteck-newsroom-featured__meta-rail strong {
    color: var(--soeteck-muted);
    font-size: var(--soeteck-text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soeteck-newsroom-section-heading {
    margin-bottom: 18px;
}

.soeteck-newsroom-section-heading__eyebrow,
.soeteck-newsroom-sidebar__label {
    margin: 0 0 8px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.soeteck-newsroom-section-heading h2 {
    margin: 0;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.18;
}

.soeteck-newsroom-press-list .soeteck-article-archive__row {
    position: relative;
    border-radius: var(--soeteck-radius);
    box-shadow: none;
}

.soeteck-newsroom-press-list .soeteck-article-archive__row::before {
    content: '';
    position: absolute;
    left: 72px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--soeteck-border-soft);
}

.soeteck-newsroom-press-list .soeteck-article-archive__row-date {
    position: relative;
    z-index: 1;
    border: 1px solid var(--soeteck-border-soft);
    background: var(--soeteck-white);
}

.soeteck-newsroom-press-list .soeteck-article-archive__row:hover {
    border-color: rgba(0, 86, 179, 0.24);
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.03), var(--soeteck-white));
}

.soeteck-newsroom-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.soeteck-newsroom-sidebar__card {
    padding: 24px;
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-lg);
    background: var(--soeteck-white);
    box-shadow: 0 12px 28px rgba(15, 35, 70, 0.05);
}

.soeteck-newsroom-sidebar__card--contact {
    background: linear-gradient(180deg, var(--soeteck-white), var(--soeteck-surface));
}

.soeteck-newsroom-sidebar__card h2 {
    margin: 0 0 12px;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-heading);
    font-size: 1.25rem;
    line-height: 1.25;
}

.soeteck-newsroom-sidebar__card p:not(.soeteck-newsroom-sidebar__label) {
    margin: 0 0 18px;
    color: var(--soeteck-text-soft);
    font-size: var(--soeteck-text-sm);
    line-height: 1.65;
}

.soeteck-newsroom-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.soeteck-newsroom-topics span {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(0, 86, 179, 0.18);
    border-radius: 999px;
    color: var(--soeteck-primary);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-xs);
    font-weight: var(--soeteck-weight-bold);
}

.soeteck-newsroom-sidebar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--soeteck-primary);
    color: var(--soeteck-white);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-bold);
    text-decoration: none;
}

.soeteck-newsroom-sidebar__link:hover {
    background: var(--soeteck-primary-dark);
    color: var(--soeteck-white);
}

.soeteck-newsroom-facts {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.soeteck-newsroom-facts li {
    display: flex;
    gap: 10px;
    color: var(--soeteck-text-soft);
    font-size: var(--soeteck-text-sm);
    line-height: 1.45;
}

.soeteck-newsroom-facts li::before {
    content: '';
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--soeteck-primary);
}

.soeteck-article-archive__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(40px, 6vw, 80px);
    padding: clamp(28px, 4vw, 48px);
    background: var(--soeteck-text);
    color: var(--soeteck-white);
}

.soeteck-article-archive__cta h2 {
    margin: 0;
    max-width: 720px;
    color: inherit;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.14;
}

.soeteck-article-archive__empty {
    padding: clamp(40px, 6vw, 72px);
    text-align: center;
}

.soeteck-article-archive__empty h2 {
    margin: 0 0 12px;
}

.soeteck-article-archive__empty p {
    margin: 0;
    color: var(--soeteck-text-soft);
}

.soeteck-pagination,
.soeteck-product-results .woocommerce-pagination {
    margin-top: clamp(40px, 6vw, 72px);
}

.soeteck-pagination .nav-links,
.soeteck-product-results .woocommerce-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.soeteck-product-results .woocommerce-pagination ul.page-numbers {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    list-style: none;
}

.soeteck-product-results .woocommerce-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.soeteck-product-results .woocommerce-pagination ul.page-numbers li::before,
.soeteck-product-results .woocommerce-pagination ul.page-numbers li::after,
.soeteck-product-results .woocommerce-pagination ul.page-numbers li + li::before {
    display: none;
    content: none;
}

.soeteck-pagination .page-numbers,
.soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border: 1px solid var(--soeteck-border-soft);
    border-radius: var(--soeteck-radius-sm);
    background: transparent;
    box-shadow: none;
    color: var(--soeteck-text);
    font-family: var(--soeteck-font-ui);
    font-size: var(--soeteck-text-sm);
    font-weight: var(--soeteck-weight-medium);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: border-color var(--soeteck-transition-fast), background-color var(--soeteck-transition-fast), color var(--soeteck-transition-fast);
}

.soeteck-pagination .prev,
.soeteck-pagination .next,
.soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .prev,
.soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .next {
    font-size: 16px;
}

.soeteck-pagination .page-numbers.current,
.soeteck-pagination .page-numbers:hover,
.soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .page-numbers.current,
.soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .page-numbers:hover {
    border-color: var(--soeteck-primary);
    background: var(--soeteck-primary);
    box-shadow: none;
    color: var(--soeteck-white);
}

.soeteck-pagination .page-numbers.dots,
.soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    color: var(--soeteck-muted);
}

@media (max-width: 991px) {
    .soeteck-article-archive__section-heading,
    .soeteck-news-latest__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .soeteck-featured-slider__content {
        width: min(720px, calc(100% - 48px));
        margin-left: 24px;
    }

    .soeteck-news-gateways__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .soeteck-news-latest__tabs {
        justify-content: flex-start;
    }

    .soeteck-article-archive__hero-grid,
    .soeteck-article-archive__featured-link,
    .soeteck-article-archive--news .soeteck-article-archive__featured-link {
        grid-template-columns: 1fr;
    }

    .soeteck-article-archive__featured-link {
        min-height: 0;
    }

    .soeteck-newsroom-layout {
        grid-template-columns: 1fr;
    }

    .soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-link,
    .soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-body {
        grid-template-columns: 1fr;
    }

    .soeteck-newsroom-featured--metadata .soeteck-newsroom-featured__meta-rail {
        grid-column: 1;
        grid-row: auto;
    }

    .soeteck-newsroom-featured-slider__viewport {
        min-height: 500px;
    }

    .soeteck-newsroom-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .soeteck-article-archive__featured-media {
        aspect-ratio: 16 / 9;
    }

    .soeteck-article-archive__grid,
    .soeteck-article-archive__grid--cases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .soeteck-article-archive__row {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .soeteck-article-archive__row-action {
        grid-column: 2;
        margin-top: 0;
    }

    .soeteck-article-archive__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .soeteck-article-archive {
        --soeteck-article-gutter: 16px;
    }

    .soeteck-featured-slider__viewport {
        min-height: 520px;
    }

    .soeteck-featured-slider__overlay {
        background: linear-gradient(180deg, rgba(4, 10, 18, 0.52), rgba(4, 10, 18, 0.9));
    }

    .soeteck-featured-slider__content {
        align-self: flex-end;
        padding-bottom: 84px;
    }

    .soeteck-featured-slider__nav {
        gap: 8px;
    }

    .soeteck-news-gateways__grid {
        grid-template-columns: 1fr;
    }

    .soeteck-article-archive__grid,
    .soeteck-article-archive__grid--cases {
        grid-template-columns: 1fr;
    }

    .soeteck-newsroom-sidebar {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .soeteck-featured-slider__viewport {
        min-height: 580px;
        border-radius: var(--soeteck-radius);
    }

    .soeteck-featured-slider__content {
        width: calc(100% - 36px);
        margin-left: 18px;
        padding-bottom: 78px;
    }

    .soeteck-featured-slider__badge {
        margin-bottom: 16px;
    }

    .soeteck-featured-slider__cta {
        width: 100%;
    }

    .soeteck-featured-slider__nav {
        right: 18px;
        bottom: 26px;
        left: 18px;
        gap: 6px;
    }

    .soeteck-news-gateways__card {
        min-height: 220px;
    }

    .soeteck-article-archive__hero-panel {
        padding: 18px;
        border-radius: var(--soeteck-radius);
    }

    .soeteck-article-archive__hero-panel-list {
        gap: 10px;
    }

    .soeteck-article-archive__featured-body,
    .soeteck-article-archive__card-body {
        padding: 20px;
    }

    .soeteck-article-card__body {
        padding: 20px;
    }

    .soeteck-article-card__title {
        -webkit-line-clamp: 2;
    }

    .soeteck-newsroom-featured--magazine .soeteck-article-archive__featured-link {
        min-height: 480px;
    }

    .soeteck-newsroom-featured-slider__viewport {
        min-height: 500px;
        border-radius: var(--soeteck-radius);
    }

    .soeteck-newsroom-featured-slider__content {
        width: calc(100% - 36px);
        margin-left: 18px;
        padding-bottom: 80px;
    }

    .soeteck-newsroom-featured-slider__nav {
        right: 18px;
        bottom: 26px;
        left: 18px;
    }

    .soeteck-newsroom-featured--bulletin .soeteck-article-archive__featured-body,
    .soeteck-newsroom-featured--metadata .soeteck-article-archive__featured-body {
        padding: 24px;
    }

    .soeteck-article-archive__row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .soeteck-newsroom-press-list .soeteck-article-archive__row::before {
        display: none;
    }

    .soeteck-article-archive__row-date {
        justify-items: start;
        grid-template-columns: auto auto auto;
        gap: 6px;
        width: fit-content;
    }

    .soeteck-article-archive__row-date strong {
        font-size: inherit;
    }

    .soeteck-article-archive__row-action {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .soeteck-pagination .page-numbers,
    .soeteck-product-results .woocommerce-pagination ul.page-numbers > li > .page-numbers {
        width: 38px;
        min-width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        font-size: 12px;
    }
}
