/* Category Hero Section - Styles moved to category-hero.css */

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B361F;
    margin-bottom: 3rem;
}

.products-main {
    padding: 2rem 0;
}

.filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    flex-wrap: wrap;
}

.filter-group, .search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #1B361F;
}

.filter-group select, .search-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
}

.product-info {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1B361F;
    text-align: center;
    line-height: 1.3;
}

.product-category {
    color: #83AB46;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}



.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

.page-btn:hover {
    background: #f8f9fa;
    border-color: #83AB46;
    color: #83AB46;
}

.page-btn.active {
    background: #83AB46;
    color: white;
    border-color: #83AB46;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination span {
    padding: 0.5rem;
    color: #666;
}

.no-products {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-size: 1.1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 2rem 0;
}





/* Product Detail Page Styles */
.product-detail {
    padding: 2rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.breadcrumb a {
    color: #83AB46;
    text-decoration: none;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 100%;
}

.thumbnail-gallery img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    background: #f8f9fa;
    padding: 0.5rem;
}

.thumbnail-gallery img:hover {
    border-color: #83AB46;
}

.product-details h1 {
    color: #1B361F;
    margin-bottom: 1rem;
}

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

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-specs table,
.specifications table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-specs td,
.specifications td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.product-specs td:first-child,
.specifications td:first-child {
    font-weight: 600;
    color: #1B361F;
    width: 40%;
    background: #f8f9fa;
}

.specifications tr:last-child td {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn, .download-btn, .back-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn {
    background: #83AB46;
    color: white;
}

.download-btn {
    background: #1B361F;
    color: white;
}

.back-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    
    .products-section h2 {
        font-size: 2rem;
    }
    
    .filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group select, .search-group input {
        min-width: auto;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .thumbnail {
        height: 80px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .contact-btn, .download-btn, .back-btn {
        width: 100%;
    }
}

/* Missing Product Page Classes */

/* Main Content Classes */
.product-page {
    padding: 2rem 0;
    min-height: 100vh;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Product Information Classes */
.product-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #1B361F 0%, #83AB46 100%);
    color: white;
    border-radius: 10px;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #83AB46;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-specifications {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-installation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-applications {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-highlights {
    background: linear-gradient(135deg, #1B361F 0%, #83AB46 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-usage {
    padding: 2rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

.product-compatibility {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Gallery Classes */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* thumbnail classes moved to product-layout-fix.css */

/* Specification Classes */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 5px;
    border-left: 4px solid #83AB46;
}

.spec-label {
    font-weight: 600;
    color: #1B361F;
    flex: 1;
}

.spec-value {
    color: #666;
    flex: 2;
    text-align: right;
}

.spec-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* specifications moved to product-layout-fix.css */

/* Feature Classes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

/* key-features moved to product-layout-fix.css */

.key-specs {
    background: linear-gradient(135deg, #1B361F 0%, #83AB46 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Installation Classes */
.installation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.installation-option {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.installation-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.installation-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 4px solid #83AB46;
}

/* Compatibility Classes */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.compatibility-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.configuration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.configuration-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Button Classes */
.btn-primary {
    background: #83AB46;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #6d8f3a;
}

.btn-secondary {
    background: #1B361F;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #2d5a33;
}

.cta-button {
    background: #83AB46;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #6d8f3a;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #1B361F;
}

.cta-button.secondary:hover {
    background: #2d5a33;
}

/* Award Classes */
.awards {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.awards-section {
    text-align: center;
    margin: 3rem 0;
}

.award {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-section {
    background: linear-gradient(135deg, #1B361F 0%, #83AB46 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.award-icon {
    width: 60px;
    height: 60px;
    background: #83AB46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Advantage Classes */
.advantages {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantage-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    border-left: 4px solid #83AB46;
}

/* Service Classes */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.service-process {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Additional Classes */
.app-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.app-item:hover {
    transform: translateY(-5px);
}

.benefit {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spec-grid,
    .features-grid,
    .installation-options,
    .compatibility-grid,
    .configuration-grid,
    .award-grid,
    .advantages-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-header,
    .product-specifications,
    .product-installation,
    .product-applications,
    .product-benefits,
    .product-highlights,
    .product-compatibility {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    /* thumbnail responsive moved to product-layout-fix.css */
}

/* Product Layout Fix CSS */





/* Unique classes not in other CSS files */

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail-images img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 0.5rem;
}

.thumbnail-images img:hover {
    border-color: #83AB46;
    box-shadow: 0 0 10px rgba(131, 171, 70, 0.3);
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 0.5rem;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #83AB46;
    box-shadow: 0 0 10px rgba(131, 171, 70, 0.3);
}

.key-features {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.key-features h2 {
    color: #1B361F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #83AB46;
    padding-bottom: 0.5rem;
}

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

.key-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.key-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #83AB46;
    font-weight: bold;
}

.specifications {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.specifications h2 {
    color: #1B361F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #83AB46;
    padding-bottom: 0.5rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Search Overlay Styles */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
}

.search-modal {
    background: white;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.search-modal-header h2 {
    margin: 0;
    color: #1B361F;
    font-size: 1.5rem;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: #e9ecef;
    color: #333;
}

.search-results {
    padding: 2rem;
}

.search-header {
    margin-bottom: 1.5rem;
}

.search-header h3 {
    color: #1B361F;
    margin: 0;
    font-size: 1.3rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    color: #83AB46;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: #1B361F;
    margin-bottom: 0.5rem;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.search-result-item:hover {
    border-color: #83AB46;
    box-shadow: 0 2px 10px rgba(131, 171, 70, 0.1);
}

.result-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    background: #f8f9fa;
    padding: 0.5rem;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-content h4 {
    margin: 0;
    color: #1B361F;
    font-size: 1.1rem;
    line-height: 1.3;
}

.result-category {
    color: #83AB46;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.result-link {
    color: #83AB46;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.result-link:hover {
    border-bottom-color: #83AB46;
}

/* Search Input Enhancement */

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #83AB46;
}

#searchInput {
    padding-right: 2.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-modal {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .search-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .search-results {
        padding: 1rem;
    }
    
    .search-result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .result-image {
        align-self: center;
        width: 100px;
        height: 100px;
    }
    
    .result-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .search-modal {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
        border-radius: 5px;
    }
    
    .search-modal-header {
        padding: 1rem;
    }
    
    .search-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .search-results {
        padding: 1rem;
    }
    
    .result-image {
        width: 80px;
        height: 80px;
    }
}

/* Additional Product Detail Sections */
.why-use-section,
.quick-release-section,
.rotation-section,
.mechanical-springs-section,
.installation-options-section,
.curved-monitor-section,
.portability-section,
.height-guide-section,
.advantages-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-use-section h2,
.quick-release-section h2,
.rotation-section h2,
.mechanical-springs-section h2,
.installation-options-section h2,
.curved-monitor-section h2,
.portability-section h2,
.height-guide-section h2,
.advantages-section h2 {
    color: #1B361F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #83AB46;
    padding-bottom: 0.5rem;
}

.installation-options-section h3 {
    color: #83AB46;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.height-guide-section ul,
.advantages-section ul {
    list-style: none;
    padding: 0;
}

.height-guide-section li,
.advantages-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.height-guide-section li:before,
.advantages-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #83AB46;
    font-weight: bold;
}

.why-use-section p,
.quick-release-section p,
.rotation-section p,
.mechanical-springs-section p,
.curved-monitor-section p,
.portability-section p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-use-section,
    .quick-release-section,
    .rotation-section,
    .mechanical-springs-section,
    .installation-options-section,
    .curved-monitor-section,
    .portability-section,
    .height-guide-section,
    .advantages-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .why-use-section h2,
    .quick-release-section h2,
    .rotation-section h2,
    .mechanical-springs-section h2,
    .installation-options-section h2,
    .curved-monitor-section h2,
    .portability-section h2,
    .height-guide-section h2,
    .advantages-section h2 {
        font-size: 1.2rem;
    }
}

/* Product Gallery - Main Image + Thumbnail Strip */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}

.main-image-container {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
}

.thumbnail-strip {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 1;
    border-color: #83AB46;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(131, 171, 70, 0.2);
}

.thumbnail-item.active {
    opacity: 1;
    border-color: #83AB46;
    box-shadow: 0 0 0 2px rgba(131, 171, 70, 0.25);
}

/* Legacy thumbnail support */
.thumbnail-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    border-color: #83AB46;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(131, 171, 70, 0.2);
}

.thumbnail.active {
    opacity: 1;
    border-color: #83AB46;
    box-shadow: 0 0 0 2px rgba(131, 171, 70, 0.25);
}

.thumbnail:focus {
    outline: none;
    border-color: #83AB46;
    box-shadow: 0 0 0 3px rgba(131, 171, 70, 0.25);
}

/* Product Details Sections */
.product-details {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.detail-section {
    margin-bottom: 35px;
}

.detail-section h2 {
    font-size: 1.4rem;
    color: #1B361F;
    margin-bottom: 15px;
    position: relative;
}

.detail-section h2:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #83AB46;
}

.detail-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.detail-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #83AB46;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #83AB46;
}

.service-item h3 {
    color: #1B361F;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Markets Grid */
.markets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.market-tag {
    background: #83AB46;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Solutions List */
.solutions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.solutions-list li {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 3px solid #28a745;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .product-gallery {
        max-width: 100%;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .thumbnail-strip {
        justify-content: center;
        gap: 6px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .main-image {
        height: 250px;
    }
}

/* Quote Form Styles */
.product-actions {
    display: flex !important;
    gap: 15px !important;
    margin-top: 25px !important;
    flex-wrap: wrap !important;
}

.quote-btn, .brochure-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    min-width: 160px !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.quote-btn {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    color: white !important;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3) !important;
}

.brochure-btn {
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
    color: white !important;
}

.brochure-btn:hover {
    background: linear-gradient(135deg, #1e7e34, #155724) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: #000;
    background-color: #f0f0f0;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    padding-right: 40px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Quote Form */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .quote-btn, .brochure-btn {
        width: 100%;
    }
    
    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        padding: 20px;
    }
    
    .modal-content h2 {
        font-size: 20px;
    }
}