* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F3F4F6;
    color: #111827;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 50;
    padding: 12px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-placeholder {
    width: 120px;
    height: 50px;
    background: transparent;
}

nav {
    display: flex;
    gap: 32px;
    font-size: 1rem;
    font-weight: 500;
    flex-wrap: wrap;
    align-items: center;
}

nav a, .dropdown-button {
    color: #1F2937;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
    background: none;
    white-space: nowrap;
}

nav a:hover, .dropdown-button:hover {
    color: #3b82f6;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    z-index: 50;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 6px 12px;
    color: #374151;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-content a:hover {
    color: #3b82f6;
    background: #F9FAFB;
}

.header-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-icons svg {
    width: 24px;
    height: 24px;
    color: #4b5563;
    cursor: pointer;
    transition: color 0.2s ease;
}

.header-icons svg:hover {
    color: #3b82f6;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 50;
    width: 100%;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a, .mobile-menu .dropdown-button {
    display: block;
    padding: 10px 0;
    color: #1F2937;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.mobile-menu .dropdown-content {
    position: static;
    box-shadow: none;
    padding: 8px 16px;
    background: #F9FAFB;
    transform: none;
}

.mobile-menu .dropdown-content a {
    font-size: 0.9rem;
    padding: 6px 12px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Slider */
.slider-container {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slider-slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 480px;
    position: relative;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
}

.product-image-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.product-image-hover {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image {
    opacity: 0;
}

.product-card:hover .product-image-hover {
    opacity: 1;
}

.product-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    text-align: center;
}

.product-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
}

.product-card-content p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-content a {
    display: inline-block;
    background: linear-gradient(to right, #3b82f6, #7c3aed);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-card-content a:hover {
    background: linear-gradient(to right, #2563eb, #6b21a8);
}

/* Sections */
section {
    padding: 40px 0;
}

section.bg-white {
    background: white;
}

section.bg-gray {
    background: #F3F4F6;
}

section.bg-gradient {
    background: linear-gradient(to right, #3b82f6, #a855f7);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cols-3, .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .grid-cols-2, .grid-cols-3, .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Filter Panel */
.filter-panel {
    background: white;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.filter-group {
    margin-bottom: 12px;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
}

.filter-checkbox input {
    accent-color: #3b82f6;
    width: 14px;
    height: 14px;
}

.filter-panel button {
    width: 100%;
    background: #4b5563;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-panel button:hover {
    background: #1f2937;
}

/* Customization Section */
.customization-panel {
    background: #F9FAFB;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.customization-panel h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.customization-panel select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: white;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.customization-panel select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.customization-panel button {
    background: #3b82f6;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.customization-panel button:hover {
    background: #2563eb;
}

.customization-output {
    background: #F9FAFB;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.customization-output img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 12px;
}

.customization-output p {
    color: #4b5563;
    font-size: 1rem;
}

/* Mid Banner */
.mid-banner {
    position: relative;
    padding: 42px 0;
    color: white;
    text-align: center;
    background: linear-gradient(to right, #7c3aed, #3b82f6);
}

.mid-banner .container {
    max-width: 800px;
}

.mid-banner h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.mid-banner p {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.mid-banner a {
    display: inline-block;
    background: white;
    color: #3b82f6;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mid-banner a:hover {
    background: #E5E7EB;
}

@media (max-width: 768px) {
    .mid-banner {
        padding: 32px 0;
    }

    .mid-banner h2 {
        font-size: 1.75rem;
    }

    .mid-banner p {
        font-size: 1rem;
    }
}

/* --- Блок "Попробуйте другие форм-факторы" --- */
@media (max-width: 768px) {
    .feature-card-link img {
        max-height: 120px;
    }
}

@media (max-width: 640px) {
    .feature-card-link img {
        max-height: 100px;
    }
}

.feature-card-link {
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.feature-card-link:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.feature-card-link img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
    filter: brightness(1);
}

.feature-card-link h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card-link a {
    display: inline-block;
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
    padding: 6px 12px;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature-card-link a:hover {
    background: #3b82f6;
    color: white;
}

/* Why Royal Kludge */
.feature-card {
    background: white;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.feature-card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: #3b82f6;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 40px 0;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3b82f6;
}

footer .social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

footer .social-icons a:hover {
    filter: brightness(1.25);
}

footer .social-icons img {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: linear-gradient(to right, #3b82f6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Noscript Fallback */
.noscript {
    text-align: center;
    padding: 20px;
    background: #00ff00;
    color: #000;
}

ul.pagination {
    display: inline-flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}
ul.pagination li span {
    display: none;
}
ul.pagination li.active span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-weight: 600;
}
ul.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #111827;
    text-decoration: none;
    transition: border-color 0.3s ease;
}
.pagination a:hover {
    border-color: #3b82f6;
}

.pagination a:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}


/* --- НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ТОВАРА --- */

.product-page {
    padding: 40px 0;
    background: #FFF;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: zoom-in;
}

.gallery-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
}

.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s ease;
}

.gallery-thumbnails img.active {
    border: 2px solid #3b82f6;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
}

.modal-content {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: scale-down;
    border-radius: 8px;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    max-width: 100%;
}

.modal-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
}

.modal-thumbnails img.active {
    border: 2px solid #3b82f6;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #111;
    font-size: 30px;
    cursor: pointer;
    background: #f3f4f6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #111827;
}

.product-info p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-variants {
    margin: 24px 0;
}

.variant-group {
    margin-bottom: 16px;
}

.variant-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #111827;
}

.variant-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.variant-option {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-option:hover, .variant-option.selected {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.buy-button {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #3b82f6, #7c3aed);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    margin-top: 24px;
    transition: background 0.3s ease;
}

.buy-button:hover {
    background: linear-gradient(to right, #2563eb, #6b21a8);
}

.specs-table {
    margin: 24px 0;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.specs-table th {
    text-align: left;
    padding: 10px 12px;
    background: #F9FAFB;
    font-weight: 600;
    width: 30%;
    border-bottom: 1px solid #e5e7eb;
}

.specs-table td {
    padding: 10px 12px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.where-to-buy {
    margin-top: 60px;
    padding: 40px 0;
    background: #F9FAFB;
    border-radius: 8px;
}

.where-to-buy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.marketplace-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.marketplace-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.marketplace-link:hover {
    transform: translateY(-2px);
}

.marketplace-link img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.software-section {
    margin-top: 40px;
    padding: 40px 0;
    background: #FFF;
}

.software-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
}

.software-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.software-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
}

.software-link img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}


/* --- search --- */
#searchToggleBtn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}
.search-submit-btn {
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 22px;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-submit-btn:hover {
    background: #374151;
}
.search-submit-btn:active {
    background: #111827;
}
#searchBarContainer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    background: #F3F4F6;
    z-index: 40;
    position: relative;
}
#searchBarContainer .container {
    padding: 16px 0;
    display: flex;
    justify-content: center;
}
#searchBarContainer form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 720px;
}
#searchBarContainer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}
/* --- search (end) --- */


/* --- contact --- */
.container.contact .outer {
    gap: 40px;
    margin-top: 24px;
    align-items: start;
}
.container.contact .inner {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
.container.contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.container.contact form {
    line-height: 1.6;
}
.container.contact form div {
    margin-bottom: 16px;
}
.container.contact form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1f2937;
}
.container.contact form input,
.container.contact form textarea,
.container.contact form select
{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
}
.container.contact form textarea {
    resize: vertical;
}
.container.contact form button {
    background: linear-gradient(to right, #3b82f6, #7c3aed);
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}
/* --- contact (end) --- */


/* --- custom --- */
#overlay2 {
    display: none;
    position: fixed;
    z-index: 990;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url('../images/ajax-loader.gif');
    background-repeat: no-repeat;
    background-position: center center;
}

a.logo {
    display: block;
    width: 120px;
    height: 50px;
}
.logo-placeholder {
    background: transparent;
}
.pathway {
    /*display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;*/
    font-size: 0.95rem;
    color: #4b5563;
}
.pathway a {
    color: #3b82f6;
}
.pathway span.sep {
    padding: 0 6px;
}
/*.pathway span {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    flex-shrink: 1 !important;
}*/
.feature-card-link ul {
    text-align: left;
    font-size: 0.85rem;
    color: #4b5563;
    margin: 8px 0;
    padding-left: 16px;
    line-height: 1.4;
}

ul.pagination {
    display: flex;
    flex-wrap: wrap;
}

a.show-all {
    display: inline-block;
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 24px;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    background: transparent;
    transition: color 0.2s ease;
}