/* Filter Toolbar Spacer */
.filter-toolbar-spacer {
    flex: 1 1 0;
}

/* Filter Toolbar */
.filter-toolbar {
    padding: 0 20px;
    background: #f8f9fa;
}

.filter-toolbar-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
}

/* Search Bar */
.search-bar {
    flex: 0 0 auto;
}

.filter-toolbar-row .tag-filter-bar {
    flex: 0 0 auto;
}

.search-wrapper {
    width: 400px;
}


/* Product Tags */
.product-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-tag:hover {
    background: #003545;
    color: white;
}

.product-tag.active {
    background: #003545;
    color: white;
}

.product-tag.hidden-tag {
    display: none;
}

.product-meta.tags-expanded .product-tag.hidden-tag {
    display: inline-block;
}

.more-tags-btn {
    cursor: pointer;
    opacity: 0.7;
}

.more-tags-btn:hover {
    opacity: 1;
}

/* Tag Tooltip */
.tag-tooltip {
    position: fixed;
    background: #003545;
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 6px;
    max-width: 350px;
    text-align: center;
    line-height: 1.4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 9999;
}

.tag-tooltip.visible {
    opacity: 1;
}

/* Category Section */
.category-section {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
}

.category-section:first-child {
    margin-top: 10px;
}

/* Filter Summary */
.filter-summary {
    text-align: center;
    font-size: 1rem;
    color: #6c757d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.filter-summary.visible {
    max-height: 40px;
    padding: 8px 24px;
}

/* Show More Button */
.show-more-btn {
    display: block;
    margin: 25px auto 0;
    background: none;
    border: 2px solid #003545;
    color: #003545;
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #003545;
    color: white;
}

.product-card.hidden-card-collapsed {
    display: none !important;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #003545;
}

.product-card.expanded:hover {
    transform: none;
    box-shadow: none;
    border-color: inherit;
}

/* Sponsor Badge - Corner Ribbon */
.sponsor-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    overflow: hidden;
    font-size: 0;
    color: transparent;
    cursor: default;
}

.sponsor-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 42px 42px 0;
    border-color: transparent transparent transparent transparent;
    border-top-right-radius: 7px;
}

.sponsor-badge::after {
    content: attr(data-tier-letter);
    position: absolute;
    top: 6px;
    right: 9px;
    font-size: 12px;
    font-weight: 900;
    color: #333;
    line-height: 1;
}

/* Contributor Badge */
.contributor-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    overflow: hidden;
    font-size: 0;
    color: transparent;
    cursor: default;
}

.contributor-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-style: solid;
    border-width: 42px 42px 0 0;
    border-color: #4CAF50 transparent transparent transparent;
    border-top-left-radius: 7px;
}

.contributor-badge::after {
    content: '</>';
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Sponsor tier ribbon colors */
.sponsor-tier-silver .sponsor-badge::before  { border-color: transparent #A0A0A0 transparent transparent; }
.sponsor-tier-gold .sponsor-badge::before    { border-color: transparent #D4AC0D transparent transparent; }
.sponsor-tier-platinum .sponsor-badge::before { border-color: transparent #8AB4CC transparent transparent; }
.sponsor-tier-titanium .sponsor-badge::before { border-color: transparent #636870 transparent transparent; }
.sponsor-tier-diamond .sponsor-badge::before  { border-color: transparent #4FC3F7 transparent transparent; }

/* Sponsor tier letter colors */
.sponsor-tier-silver .sponsor-badge::after   { color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.sponsor-tier-gold .sponsor-badge::after     { color: #333;  text-shadow: 0 1px 2px rgba(255,255,255,0.6); }
.sponsor-tier-platinum .sponsor-badge::after { color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.sponsor-tier-titanium .sponsor-badge::after { color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.sponsor-tier-diamond .sponsor-badge::after  { color: #333;  text-shadow: 0 1px 2px rgba(255,255,255,0.6); }

/* Sponsor tier card borders */
.sponsor-card.sponsor-tier-silver   { border-color: #A0A0A0; }
.sponsor-card.sponsor-tier-gold     { border-color: #D4AC0D; }
.sponsor-card.sponsor-tier-platinum { border-color: #8AB4CC; }
.sponsor-card.sponsor-tier-titanium { border-color: #636870; }
.sponsor-card.sponsor-tier-diamond  { border-color: #4FC3F7; }

/* Sponsor tier card hover */
.sponsor-card.sponsor-tier-silver:hover   { border-color: #808080; box-shadow: 0 10px 30px rgba(160, 160, 160, 0.2); }
.sponsor-card.sponsor-tier-gold:hover     { border-color: #B8940B; box-shadow: 0 10px 30px rgba(212, 172, 13, 0.2); }
.sponsor-card.sponsor-tier-platinum:hover { border-color: #6A94AC; box-shadow: 0 10px 30px rgba(138, 180, 204, 0.2); }
.sponsor-card.sponsor-tier-titanium:hover { border-color: #434750; box-shadow: 0 10px 30px rgba(99, 104, 112, 0.2); }
.sponsor-card.sponsor-tier-diamond:hover  { border-color: #29A3D7; box-shadow: 0 10px 30px rgba(79, 195, 247, 0.2); }

/* Stack Ref */
.stack-ref {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.stack-ref a {
    color: #003545;
    font-weight: 600;
    text-decoration: none;
}

.stack-ref a:hover {
    text-decoration: underline;
}

/* Stack Cards */
.stack-card {
    border: 2px solid #003545;
    background: linear-gradient(180deg, #f0f7fa 0%, white 40%);
}

.stack-card:hover {
    border-color: #005570;
    box-shadow: 0 10px 30px rgba(0, 53, 69, 0.15);
}

.stack-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.stack-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    border: 1px solid #e9ecef;
    padding: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stack-logo-link:hover {
    border-color: #003545;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stack-logo-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Stack expanded view */
.stack-products-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stack-product-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.stack-product-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.stack-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stack-product-name {
    font-weight: 600;
    color: #003545;
    text-decoration: none;
    font-size: 0.95rem;
}

.stack-product-name:hover {
    text-decoration: underline;
}

.stack-product-role {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Product Card Elements */
.product-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #212529;
}

.product-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.product-link {
    color: #003545;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #005570;
    text-decoration: underline;
}

.details-btn {
    background: #003545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
    font-family: inherit;
}

.details-btn:hover {
    background: #005570;
}

/* Expanded Product Details */
.product-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.product-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #212529;
}

.product-details h4:first-child {
    margin-top: 0;
}

.product-details p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-details ul {
    margin: 10px 0 15px 20px;
    color: #495057;
}

.product-details li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-links a {
    color: #003545;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #003545;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-links a:hover {
    background: #003545;
    color: white;
}

/* Detail Modal */
.detail-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: white;
    border: 1px solid #003545;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.detail-modal.active {
    display: block;
}

.detail-modal.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.detail-modal-close {
    position: sticky;
    top: 10px;
    float: right;
    background: #003545;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.detail-modal-close:hover {
    background: #005570;
}

.detail-modal-header {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 15px;
    row-gap: 8px;
    align-items: start;
    margin-bottom: 15px;
}

.detail-modal-logo {
    grid-column: 1;
    grid-row: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.detail-modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-modal-badges {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}

.detail-modal-sponsor {
    background: linear-gradient(135deg, #FFD700 0%, #D4AC0D 100%);
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    max-width: calc(100% - 45px);
    text-align: center;
}

.detail-modal-sponsor.sponsor-tier-silver   { background: linear-gradient(135deg, #C0C0C0 0%, #909090 100%); color: #333; }
.detail-modal-sponsor.sponsor-tier-gold     { background: linear-gradient(135deg, #FFD700 0%, #D4AC0D 100%); color: #333; }
.detail-modal-sponsor.sponsor-tier-platinum { background: linear-gradient(135deg, #A8C8E0 0%, #6A94AC 100%); color: white; }
.detail-modal-sponsor.sponsor-tier-titanium { background: linear-gradient(135deg, #7A8088 0%, #434750 100%); color: white; }
.detail-modal-sponsor.sponsor-tier-diamond  { background: linear-gradient(135deg, #7FE0F7 0%, #29A3D7 100%); color: #333; }

.detail-modal-contributor {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
}

.detail-modal-name {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.detail-modal-tags {
    grid-column: 1 / -1;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Plugin Filter Strip */
.plugin-filter-strip {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.plugin-filter-strip.active {
    grid-template-rows: 1fr;
}

.plugin-filter-strip-inner {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 24px;
    transition: padding 0.3s ease;
}

.plugin-filter-strip.active .plugin-filter-strip-inner {
    padding-top: 10px;
    padding-bottom: 14px;
}

.plugin-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.plugin-filter-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.plugin-filter-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.plugin-filter-chip {
    background: white;
    border: 1.5px solid #dee2e6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #495057;
    font-family: inherit;
    transition: all 0.2s ease;
}

.plugin-filter-chip:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.plugin-filter-chip.active {
    background: #003545;
    color: white;
    border-color: #003545;
}

/* Detail Modal Plugin Meta */
.detail-modal-plugin-meta {
    grid-column: 1 / -1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #555;
}

.detail-modal-plugin-meta strong {
    color: #212529;
    margin-right: 3px;
}

/* Detail Modal Content */
.detail-modal-content .product-link {
    color: #003545;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.detail-modal-content .product-link:hover {
    color: #005570;
    text-decoration: underline;
}

.detail-modal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    color: #212529;
}

.detail-modal-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.detail-modal-content ul {
    margin: 10px 0 15px 20px;
    color: #495057;
}

.detail-modal-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.detail-modal-content .product-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.detail-modal-content .product-links a {
    color: #003545;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #003545;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.detail-modal-content .product-links a:hover {
    background: #003545;
    color: white;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.modal-overlay.active {
    display: block;
}

/* Image Overlay */
.image-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 1100;
    cursor: zoom-out;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-overlay.active {
    display: flex;
}

.image-overlay-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.image-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.image-overlay-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.image-overlay-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 12px;
    max-width: 90vw;
}

.image-overlay-caption:empty {
    display: none;
}

/* Stack Diagrams */
.stack-diagrams {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.stack-diagram {
    display: block;
    max-height: 120px;
    max-width: 100%;
    width: auto;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    cursor: zoom-in;
    transition: opacity 0.15s ease;
}

.stack-diagram:hover {
    opacity: 0.85;
}

/* Stack Code */
.stack-code-details {
    margin-bottom: 20px;
}

.stack-code-details .stack-code {
    margin-bottom: 0;
    border-radius: 0 0 6px 6px;
}

.stack-code-summary {
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stack-code-summary::before {
    content: '▶';
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.stack-code-details[open] .stack-code-summary {
    border-radius: 6px 6px 0 0;
}

.stack-code-details[open] .stack-code-summary::before {
    transform: rotate(90deg);
}

.stack-code-error {
    color: #868e96;
    font-style: italic;
}

.stack-code {
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 16px 20px;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 20px;
    white-space: pre;
}

/* Mobile */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .stack-products-list {
        grid-template-columns: 1fr;
    }

    .product-actions {
        display: none;
    }

    .detail-modal-header {
        grid-template-columns: 50px 1fr;
        column-gap: 10px;
    }

    .detail-modal-logo {
        width: 50px;
        height: 50px;
    }

    .detail-modal-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    .product-card {
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto;
        column-gap: 15px;
    }

    .product-logo {
        grid-row: 1;
        grid-column: 1;
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        align-self: center;
    }

    .product-name {
        grid-column: 2;
        margin-bottom: 15px;
        align-self: center;
    }

    .product-description,
    .product-meta,
    .product-actions,
    .product-details {
        grid-column: 1 / -1;
    }

    .stack-logos {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .stack-card .product-name {
        grid-column: 1 / -1;
        text-align: left;
    }

    .stack-card .product-actions {
        justify-content: flex-end;
    }

    .filter-toolbar-spacer {
        display: none;
    }

    .filter-toolbar-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding-top: 12px;
    }

    .search-bar {
        width: 100%;
        order: 1;
    }

    .search-wrapper {
        width: 100%;
    }

    .filter-toolbar-row .sponsors-btn {
        order: 2;
    }

    .filter-toolbar-row .tag-filter-bar {
        order: 2;
    }

    .tag-filter-container {
        flex-wrap: wrap;
        gap: 6px;
    }

    .tag-filter-wrapper.open .tag-filter-container {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #adb5bd transparent;
        max-height: calc(3.5 * (30px + 6px));
        padding: 8px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        background: rgba(233, 236, 239, 0.3);
    }

    .tag-filter-container::-webkit-scrollbar {
        width: 4px;
    }

    .tag-filter-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .tag-filter-container::-webkit-scrollbar-thumb {
        background: #adb5bd;
        border-radius: 2px;
    }

    .tag-filter-btn {
        flex-shrink: 0;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .tag-filter-clear {
        flex-shrink: 0;
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .page-breadcrumb-inner {
        flex-wrap: wrap;
        row-gap: 4px;
        padding: 6px 0;
    }

    .breadcrumb-get-involved-link {
        order: -1;
        width: 100%;
        margin-left: 0;
    }
}
