/* ============================================================
   BLOWER LIBRARY PAGE STYLING
   ============================================================ */

.blower-library-container,
.blower-series-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    box-sizing: border-box;
}

.blower-library-container h1,
.blower-series-container h1 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 2.52rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    text-align: center;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px var(--shadow-color, rgba(0, 0, 0, 0.6));
}

.library-description {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

/* ============================================================
   SERIES GRID LAYOUT
   ============================================================ */

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.series-card {
    background: var(--background-color4, #f0efef);
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 3px var(--shadow-color, rgba(0, 0, 0, 0.3));
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.series-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px var(--shadow-color, rgba(0, 0, 0, 0.4));
    border-color: var(--primary-color, #1d6316);
}

.series-name {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.575rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 0.5rem 0;
    border-bottom: 1px solid var(--border-color2, #3a8a3493);
    padding-bottom: 0.5rem;
}

.series-description {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.071rem;
    color: var(--text-color, #2b6924);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.models-section {
    flex: 1;
}

.models-section h3 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.197rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.model-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--background-color, #dbdbdb);
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.35rem;
    padding: 0.35rem 0.6rem;
    transition: all 0.15s ease;
}

.model-item:hover {
    background: var(--background-color4, #f0efef);
    border-color: var(--primary-color, #1d6316);
}

.model-link {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.134rem;
    font-weight: 600;
    color: var(--primary-color, #1d6316);
    text-decoration: none;
    transition: color 0.15s ease;
}

.model-link:hover {
    color: var(--highlight-color, #2e8a25);
    text-decoration: underline;
}

.manual-links {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.manual-download-link {
    font-size: 1.26rem;
    text-decoration: none;
    transition: transform 0.15s ease;
    display: inline-block;
    line-height: 1;
    opacity: 0.7;
}

.manual-download-link:hover {
    transform: scale(1.15);
    opacity: 1;
}

.series-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color2, #3a8a3493);
}

.view-all-link {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.071rem;
    color: var(--primary-color, #1d6316);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.view-all-link:hover {
    color: var(--highlight-color, #2e8a25);
    text-decoration: underline;
}

/* ============================================================
   SERIES MODELS LIST (SERIES LIST PAGE)
   ============================================================ */

.series-models-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.blower-model-card {
    background: var(--background-color4, #f0efef);
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px var(--shadow-color, rgba(0, 0, 0, 0.3));
}

.blower-model-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color2, #3a8a3493);
}

.blower-model-number {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.89rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 0.25rem 0;
}

.blower-model-name {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.386rem;
    color: var(--text-color, #2b6924);
    margin: 0;
    font-weight: normal;
}

.blower-model-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.blower-model-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blower-main-image {
    width: 100%;
    background: var(--background-color, #dbdbdb);
    border-radius: 0.5rem;
    overflow: hidden;
}

.blower-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blower-thumbnail-images {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blower-thumbnail-images .thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.25rem;
    border: 1px solid var(--border-color2, #3a8a3493);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.blower-thumbnail-images .thumbnail-img:hover {
    transform: scale(1.1);
}

.blower-model-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blower-model-description h4,
.blower-model-specs h4,
.manuals-section h4 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.386rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 0.75rem 0;
}

.blower-model-description p {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    line-height: 1.6;
    margin: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.134rem;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color2, #3a8a3493);
}

.specs-table td {
    padding: 0.5rem 0.75rem;
}

.specs-table .spec-name {
    width: 40%;
    color: var(--text-color, #2b6924);
}

.specs-table .spec-value {
    color: var(--primary-color, #1d6316);
    font-weight: 600;
}

.blower-model-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.call-for-pricing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        var(--background-color, #dbdbdb) 100%
    );
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.5rem;
}

.call-for-pricing-section .price-label {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.575rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
}

.call-for-pricing-section .btn-call,
.call-for-pricing-section .btn-quote {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.35rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.call-for-pricing-section .btn-call {
    background: var(--primary-color, #1d6316);
    color: white;
    border: 2px solid var(--primary-color, #1d6316);
}

.call-for-pricing-section .btn-call:hover {
    background: var(--highlight-color, #2e8a25);
    border-color: var(--highlight-color, #2e8a25);
    transform: translateY(-2px);
}

.call-for-pricing-section .btn-quote {
    background: transparent;
    color: var(--primary-color, #1d6316);
    border: 2px solid var(--primary-color, #1d6316);
}

.call-for-pricing-section .btn-quote:hover {
    background: var(--primary-color, #1d6316);
    color: white;
    transform: translateY(-2px);
}

.manuals-section {
    padding: 1rem;
    background: var(--background-color, #dbdbdb);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color2, #3a8a3493);
}

.manuals-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manual-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--background-color4, #f0efef);
    border-radius: 0.35rem;
    border: 1px solid var(--border-color2, #3a8a3493);
}

.manual-title {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.134rem;
    color: var(--text-color, #2b6924);
    flex: 1;
}

.btn-download-manual {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.071rem;
    padding: 0.4rem 0.9rem;
    background: var(--primary-color, #1d6316);
    color: white;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-download-manual:hover {
    background: var(--highlight-color, #2e8a25);
    transform: translateY(-1px);
}

/* ============================================================
   BLOWER GRID (OLD - KEEP FOR BACKWARD COMPATIBILITY)
   ============================================================ */

.blower-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blower-card {
    background: var(--background-color4, #f0efef);
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-color, rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blower-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-color, rgba(0, 0, 0, 0.8));
    border-color: var(--primary-color, #1d6316);
}

.blower-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--background-color, #dbdbdb);
}

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

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

.blower-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blower-info h3 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.575rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 0.75rem 0;
}

.blower-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blower-info h3 a:hover {
    color: var(--highlight-color, #2e8a25);
}

.blower-description {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.134rem;
    color: var(--text-color, #2b6924);
    margin: 0 0 1rem 0;
    line-height: 1.5;
    flex: 1;
}

.manual-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.manual-badge {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 0.945rem;
    background: var(--primary-color, #1d6316);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.no-series-message,
.no-models-message {
    text-align: center;
    padding: 3rem 1rem;
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.386rem;
    color: var(--text-color, #2b6924);
}

.back-link {
    margin-top: 2rem;
    text-align: center;
}

.back-link a {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.26rem;
    color: var(--primary-color, #1d6316);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: var(--highlight-color, #2e8a25);
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* ============================================================
   SERIES DETAIL PAGE (NEW LAYOUT)
   ============================================================ */

.series-breadcrumb {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    margin-bottom: 2.5rem;
    padding: 1rem 0 1rem 0;
    border-bottom: 2px solid var(--border-color2, #3a8a3493);
    position: relative;
}

.series-breadcrumb::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, transparent 100%);
}

.series-breadcrumb a {
    color: var(--primary-color, #1d6316);
    text-decoration: none;
    transition: color 0.2s ease;
}

.series-breadcrumb a:hover {
    color: var(--highlight-color, #2e8a25);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-color, #2b6924);
}

.breadcrumb-current {
    color: var(--text-color, #2b6924);
    font-weight: 600;
}

.series-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
    align-content: start;
}

/* ============================================================
   LEFT COLUMN - IMAGES
   ============================================================ */

.series-images-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.series-features-section {
    margin-top: 0;
    padding: 1.75rem;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    box-shadow: 
        0 4px 12px var(--shadow-color, rgba(0, 0, 0, 0.15)),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.series-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, var(--highlight-color, #2e8a25) 100%);
}

.features-title {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.89rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color2, #3a8a3493);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-title::before {
    content: '✓';
    font-size: 1.575rem;
    color: var(--highlight-color, #2e8a25);
    background: rgba(29, 99, 22, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-content {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.26rem;
    color: var(--text-color, #2b6924);
    line-height: 1.8;
    margin: 0;
}

.features-content p {
    margin: 0 0 1rem 0;
    padding-left: 0.5rem;
    position: relative;
}

.features-content p:last-child {
    margin-bottom: 0;
}

.features-content p::before {
    content: '•';
    position: absolute;
    left: -0.75rem;
    color: var(--primary-color, #1d6316);
    font-weight: bold;
    font-size: 1.512rem;
    line-height: 1.8;
}

.features-content p:first-child::before {
    display: none;
}

.features-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-content li {
    margin: 0 0 0.875rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.features-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color, #1d6316);
    font-weight: bold;
}

.series-images-section {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.series-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.series-thumbnails .thumbnail-btn {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.5rem;
    background: linear-gradient(
        135deg,
        var(--background-color4, #f0efef) 0%,
        var(--background-color, #dbdbdb) 100%
    );
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.series-thumbnails .thumbnail-btn:hover {
    border-color: var(--primary-color, #1d6316);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 99, 22, 0.3);
    z-index: 5;
}

.series-thumbnails .thumbnail-btn.active {
    border-color: var(--primary-color, #1d6316);
    border-width: 3px;
    box-shadow: 0 4px 12px rgba(29, 99, 22, 0.4);
    transform: scale(1.05);
}

.series-thumbnails .thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.series-main-image-container {
    flex: 1;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--background-color4, #f0efef) 0%,
        var(--background-color, #dbdbdb) 100%
    );
    border: 3px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 16px var(--shadow-color, rgba(0, 0, 0, 0.2)),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.series-main-image {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.series-no-image {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color4, #f0efef);
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.75rem;
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    color: var(--text-color, #2b6924);
    font-size: 1.386rem;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.89rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #1d6316);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.image-nav-btn:hover {
    background: var(--primary-color, #1d6316);
    color: white;
    border-color: var(--primary-color, #1d6316);
    transform: translateY(-50%) scale(1.1);
}

.image-nav-prev {
    left: 15px;
}

.image-nav-next {
    right: 15px;
}

/* ============================================================
   RIGHT COLUMN - INFORMATION PANEL
   ============================================================ */

.series-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.series-header-card {
    padding: 1.75rem;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    box-shadow: 
        0 4px 12px var(--shadow-color, rgba(0, 0, 0, 0.15)),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.series-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, var(--highlight-color, #2e8a25) 100%);
}

.series-title {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 2.52rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 1.25rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 3px solid var(--border-color2, #3a8a3493);
    line-height: 1.3;
    text-shadow: 2px 2px 4px var(--shadow-color, rgba(0, 0, 0, 0.3));
    letter-spacing: 0.5px;
}

.series-model-numbers {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.323rem;
    color: var(--text-color, #2b6924);
    margin: 0;
    padding: 0;
}

.series-model-numbers strong {
    color: var(--text-color2, #165510);
    margin-right: 0.5rem;
    font-weight: 700;
    font-size: 1.386rem;
}


.series-key-specs {
    padding: 1.75rem;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    box-shadow: 
        0 4px 12px var(--shadow-color, rgba(0, 0, 0, 0.15)),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.series-key-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, var(--highlight-color, #2e8a25) 100%);
}

.series-key-specs h3 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.89rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 1.5rem 0;
    border-bottom: 3px solid var(--border-color2, #3a8a3493);
    padding-bottom: 0.875rem;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.key-spec-item {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.323rem;
    color: var(--text-color, #2b6924);
    margin-bottom: 1rem;
    padding: 0.75rem 1rem 1rem 1.25rem;
    border-left: 4px solid var(--primary-color, #1d6316);
    border-bottom: 1px dashed var(--border-color2, #3a8a3493);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0.375rem 0.375rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.key-spec-item:hover {
    background-color: rgba(29, 99, 22, 0.08);
    border-left-color: var(--highlight-color, #2e8a25);
    border-left-width: 5px;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(29, 99, 22, 0.15);
}

.key-spec-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.key-spec-item strong {
    color: var(--primary-color, #1d6316);
    margin-right: 0.75rem;
    font-weight: 700;
    font-size: 1.386rem;
    letter-spacing: 0.2px;
}

.series-description {
    padding: 1.75rem;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    box-shadow: 
        0 4px 12px var(--shadow-color, rgba(0, 0, 0, 0.15)),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.series-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, var(--highlight-color, #2e8a25) 100%);
}

.series-description h3 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.89rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 1.25rem 0;
    border-bottom: 3px solid var(--border-color2, #3a8a3493);
    padding-bottom: 0.875rem;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.series-description p {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.323rem;
    color: var(--text-color, #2b6924);
    line-height: 1.85;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.2px;
}

.series-description p:last-child {
    margin-bottom: 0;
}

.series-pricing-section {
    padding: 2rem 1.75rem;
    background: linear-gradient(
        135deg,
        var(--background-color4, #f0efef) 0%,
        var(--background-color, #dbdbdb) 50%,
        var(--background-color4, #f0efef) 100%
    );
    border: 3px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    box-shadow: 
        0 6px 20px var(--shadow-color, rgba(0, 0, 0, 0.2)),
        0 3px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.series-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, var(--highlight-color, #2e8a25) 100%);
}

.call-for-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.call-for-pricing .price-label {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.89rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.phone-button,
.quote-button {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.323rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.phone-button {
    background: var(--primary-color, #1d6316);
    color: white;
    border-color: var(--primary-color, #1d6316);
}

.phone-button:hover {
    background: var(--highlight-color, #2e8a25);
    border-color: var(--highlight-color, #2e8a25);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(29, 99, 22, 0.4);
}

.quote-button {
    background: transparent;
    color: var(--primary-color, #1d6316);
    border-color: var(--primary-color, #1d6316);
}

.quote-button:hover {
    background: var(--primary-color, #1d6316);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(29, 99, 22, 0.4);
}

.series-resources-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-color4, #f0efef);
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px var(--shadow-color, rgba(0, 0, 0, 0.3));
}

.series-resources-section h3 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.575rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-item {
    background: var(--background-color, #ffffff);
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.resource-item:hover {
    box-shadow: 0 2px 6px var(--shadow-color, rgba(0, 0, 0, 0.2));
    border-color: var(--primary-color, #1d6316);
}

.resource-download-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-color, #2b6924);
    gap: 1rem;
    transition: all 0.2s ease;
}

.resource-download-link:hover {
    color: var(--primary-color, #1d6316);
}

.resource-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.resource-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.resource-info strong {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.071rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
}

.resource-description {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 0.9rem;
    color: var(--text-color, #2b6924);
    opacity: 0.8;
}

.download-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.resource-download-link:hover .download-icon {
    opacity: 1;
}

.series-manuals-section {
    padding: 1.75rem;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.875rem;
    box-shadow: 
        0 4px 12px var(--shadow-color, rgba(0, 0, 0, 0.15)),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.series-manuals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #1d6316) 0%, var(--highlight-color, #2e8a25) 100%);
}

.series-manuals-section h3 {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.89rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    margin: 0 0 1.5rem 0;
    border-bottom: 3px solid var(--border-color2, #3a8a3493);
    padding-bottom: 0.875rem;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.manuals-dropdown-container {
    margin-bottom: 1rem;
}

.manual-dropdown-label {
    display: block;
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    font-weight: 600;
    color: var(--text-color, #2b6924);
    margin-bottom: 0.5rem;
}

.model-manual-select,
.series-manual-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.323rem;
    color: var(--text-color, #2b6924);
    background: linear-gradient(
        to bottom,
        white 0%,
        #fafafa 100%
    );
    border: 2px solid var(--border-color2, #3a8a3493);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231d6316' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.model-manual-select:hover,
.series-manual-select:hover {
    border-color: var(--primary-color, #1d6316);
    box-shadow: 0 4px 8px rgba(29, 99, 22, 0.15);
    transform: translateY(-1px);
}

.model-manual-select:focus,
.series-manual-select:focus {
    outline: none;
    border-color: var(--primary-color, #1d6316);
    box-shadow: 0 0 0 3px rgba(29, 99, 22, 0.15), 0 4px 8px rgba(29, 99, 22, 0.2);
    transform: translateY(-1px);
}

/* Series Dropdown Wrapper */
.series-dropdown-wrapper {
    position: relative;
    width: 100%;
}

/* Extended Dropdown Styling */
.series-extended-dropdown {
    position: absolute;
    z-index: 1000;
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.98) 100%
    );
    border: 2px solid var(--primary-color, #1d6316);
    border-radius: 0.5rem;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(29, 99, 22, 0.3);
    margin-top: 0.25rem;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.extended-dropdown-header {
    padding: 0.75rem 1rem;
    background: linear-gradient(
        to bottom,
        var(--primary-color, #1d6316) 0%,
        var(--highlight-color, #2e8a25) 100%
    );
    border-bottom: 2px solid var(--border-color2, #3a8a3493);
}

.extended-dropdown-title {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.197rem;
    font-weight: bold;
    color: #ffffffd7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.extended-dropdown-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.extended-dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.extended-dropdown-content::-webkit-scrollbar-track {
    background: var(--background-color, #dbdbdb);
    border-radius: 4px;
}

.extended-dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-color, #1d6316);
    border-radius: 4px;
}

.extended-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--highlight-color, #2e8a25);
}

.extended-dropdown-model-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.26rem;
    font-weight: 600;
    color: var(--text-color, #2b6924);
    background: linear-gradient(
        to bottom,
        white 0%,
        var(--background-color4, #f0efef) 100%
    );
    border: 1px solid var(--border-color2, #3a8a3493);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.extended-dropdown-model-btn:hover {
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border-color: var(--primary-color, #1d6316);
    border-width: 2px;
    color: var(--primary-color, #1d6316);
    transform: translateX(4px);
    box-shadow: 0 3px 6px rgba(29, 99, 22, 0.2);
}

.extended-dropdown-model-btn:active {
    transform: translateX(2px);
    box-shadow: 0 2px 4px rgba(29, 99, 22, 0.15);
}

.manuals-display-area {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color2, #3a8a3493);
    display: none;
}

.manuals-display-area.show,
.manuals-display-area[style*="display: block"] {
    display: block !important;
}

.download-manual-button-container {
    margin: 1rem 0;
    text-align: center;
    display: none; /* Default hidden */
}

.download-manual-button-container[style*="display: block"],
.download-manual-button-container[style*="display: block !important"],
.download-manual-button-container.visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure button itself is visible */
.btn-download-manual-primary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-download-manual-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.4175rem;
    font-weight: bold;
    color: #ffffffd7;
    background: linear-gradient(
        to bottom,
        var(--highlight-color, #2e8a25) 0%,
        var(--primary-color, #1d6316) 100%
    );
    border: 2px solid var(--border-color, #2c6b27);
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-download-manual-primary:hover {
    background: linear-gradient(
        to bottom,
        var(--primary-color, #1d6316) 0%,
        var(--highlight-color, #2e8a25) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(29, 99, 22, 0.4);
    border-color: var(--highlight-color, #2e8a25);
}

.btn-download-manual-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(29, 99, 22, 0.3);
}

.btn-download-manual-primary::before {
    content: '⬇';
    font-size: 1.575rem;
    line-height: 1;
}

.selected-model-info {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.26rem;
    font-weight: 600;
    color: var(--primary-color, #1d6316);
    margin-bottom: 0.75rem;
}

.manuals-for-model {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compact-manual-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(
        to bottom,
        var(--background-color, #dbdbdb) 0%,
        rgba(219, 219, 219, 0.9) 100%
    );
    border-radius: 0.5rem;
    border: 1px solid var(--border-color2, #3a8a3493);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.compact-manual-item:hover {
    background: linear-gradient(
        to bottom,
        var(--background-color4, #f0efef) 0%,
        rgba(240, 239, 239, 0.95) 100%
    );
    border-color: var(--primary-color, #1d6316);
    transform: translateX(4px);
    box-shadow: 0 3px 8px rgba(29, 99, 22, 0.2);
}

.compact-manual-type {
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.134rem;
    font-weight: bold;
    color: var(--primary-color, #1d6316);
    flex-shrink: 0;
    min-width: 120px;
}

.compact-manual-title {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    flex: 1;
}

/* Download Button Styling */
.btn-download-manual-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--main-font-family2, 'Science Gothic', 'Roboto', sans-serif);
    font-size: 1.134rem;
    font-weight: bold;
    color: #ffffffd7;
    background: linear-gradient(
        to bottom,
        var(--highlight-color, #2e8a25) 0%,
        var(--primary-color, #1d6316) 100%
    );
    border: 2px solid var(--border-color, #2c6b27);
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-download-manual-compact:hover {
    background: linear-gradient(
        to bottom,
        var(--primary-color, #1d6316) 0%,
        var(--highlight-color, #2e8a25) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 99, 22, 0.4);
    border-color: var(--highlight-color, #2e8a25);
}

.btn-download-manual-compact:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(29, 99, 22, 0.3);
}

.btn-download-manual-compact::before {
    content: '⬇';
    font-size: 1.26rem;
    line-height: 1;
}

.no-manuals-message {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    font-style: italic;
    padding: 1rem;
    text-align: center;
    background: var(--background-color4, #f0efef);
    border-radius: 0.5rem;
    border: 1px dashed var(--border-color2, #3a8a3493);
}

.compact-manual-type {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.134rem;
    font-weight: 700;
    color: var(--primary-color, #1d6316);
    min-width: 110px;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}

.compact-manual-title {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.1px;
}

.btn-download-manual-compact {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.134rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color, #1d6316);
    color: white;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.2px;
}

.btn-download-manual-compact:hover {
    background: var(--highlight-color, #2e8a25);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 10px rgba(29, 99, 22, 0.35);
}

.no-manuals-message {
    font-family: var(--main-font-family, 'Alumni Sans SC', 'Roboto', sans-serif);
    font-size: 1.197rem;
    color: var(--text-color, #2b6924);
    text-align: center;
    padding: 1rem;
    background: var(--background-color, #dbdbdb);
    border-radius: 0.4rem;
    border: 1px solid var(--border-color2, #3a8a3493);
}

@media (max-width: 1024px) {
    .series-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .series-images-section {
        order: 1;
    }
    
    .series-info-column {
        order: 2;
    }
}

@media (max-width: 768px) {
    .blower-library-container h1,
    .blower-series-container h1 {
        font-size: 2.52rem;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .blower-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .blower-model-content {
        grid-template-columns: 1fr;
    }
    
    .blower-model-images {
        max-width: 100%;
    }
    
    .series-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .series-images-section {
        flex-direction: column;
    }
    
    .series-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .series-thumbnails .thumbnail-btn {
        flex-shrink: 0;
    }
    
    .series-main-image-container {
        min-height: 320px;
    }
    
    .series-main-image {
        max-height: 380px;
    }
    
    .compact-manual-item {
        flex-wrap: wrap;
    }
    
    .compact-manual-type {
        min-width: auto;
        width: 100%;
    }
    
    .compact-manual-title {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .series-title {
        font-size: 2.205rem;
    }
    
    .series-features-section {
        margin-top: 1.25rem;
        padding: 1.25rem;
    }
    
    .features-title {
        font-size: 1.575rem;
    }
    
    .features-title::before {
        width: 28px;
        height: 28px;
        font-size: 1.386rem;
    }
    
    .features-content {
        font-size: 1.197rem;
        line-height: 1.7;
    }
    
    .series-key-specs,
    .series-description,
    .series-pricing-section,
    .series-resources-section {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }

    .series-resources-section h3 {
        font-size: 1.35rem;
    }

    .series-manuals-section {
        padding: 1.25rem;
    }
    
    .series-key-specs h3,
    .series-description h3,
    .series-manuals-section h3 {
        font-size: 1.512rem;
    }
    
    .key-spec-item {
        padding: 0.4rem 0.5rem 0.75rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .blower-library-container,
    .blower-series-container {
        padding: 1rem;
    }
    
    .blower-library-container h1,
    .blower-series-container h1 {
        font-size: 2.205rem;
    }
    
    .series-card {
        padding: 1rem;
    }
    
    .blower-grid {
        grid-template-columns: 1fr;
    }
}

