body {
    background: #f6f8fa;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
}

.products-page {
    background: #f6f8fa;
    padding: 70px 0 60px 0;
    min-height: 100vh;
}

.products-heading {
    text-align: center;
    color: #43b843;
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 12px rgba(67, 184, 67, 0.08);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(67, 184, 67, 0.10);
    padding: 2.5rem 1.2rem 2.2rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
    border: 1.5px solid #e6f5e6;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 12px 36px rgba(67, 184, 67, 0.18);
    transform: translateY(-8px) scale(1.035);
    border-color: #43b843;
    z-index: 2;
}

.product-card-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1.3rem;
    border-radius: 12px;
    background: #f4fff4;
    box-shadow: 0 2px 12px rgba(67, 184, 67, 0.10);
    transition: box-shadow 0.22s, transform 0.22s;
    aspect-ratio: 1 / 1;
}

.product-card:hover > .product-card-img {
    box-shadow: 0 6px 24px rgba(67, 184, 67, 0.18);
    transform: scale(1.07) rotate(-2deg);
}

.image-carousel {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.3rem auto;
    aspect-ratio: 1 / 1;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    background: #f4fff4;
    box-shadow: 0 2px 12px rgba(67, 184, 67, 0.10);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.carousel-img.active {
    opacity: 1;
    z-index: 2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(67, 184, 67, 0.9);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(56, 142, 60, 1);
}

.carousel-btn-left {
    left: -18px;
}

.carousel-btn-right {
    right: -18px;
}

.product-card h3 {
    color: #43b843;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

.product-card p {
    color: #444;
    font-size: 1.08rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    min-height: 48px;
}

.product-price {
    color: #222;
    background: #eaffea;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.3rem 1.1rem;
    margin-bottom: 1.1rem;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(67, 184, 67, 0.08);
}

.add-to-cart-btn {
    background: #43b843;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(67, 184, 67, 0.10);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover,
.add-to-cart-btn:focus {
    background: #388e3c;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(67, 184, 67, 0.18);
}

.see-all-btn {
    background: #43b843;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(67, 184, 67, 0.10);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.see-all-btn:hover,
.see-all-btn:focus {
    background: #388e3c;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(67, 184, 67, 0.18);
}

.learn-more-btn {
    background: #43b843;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(67, 184, 67, 0.10);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.learn-more-btn:hover,
.learn-more-btn:focus {
    background: #388e3c;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(67, 184, 67, 0.18);
    text-decoration: none;
}

.solatube-card {
    position: relative;
}

.new-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.video-modal-close:hover {
    color: #43b843;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 35px;
    }
    
    .new-product-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        top: 10px;
        right: 10px;
    }
}

.footer {
    background: #343a40;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-section .slogan {
    font-style: italic;
    color: var(--light-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--gray);
}

@media (max-width: 480px) {
    /* Empty media query - possibly for future styles */
}

.slogan-container {
    position: relative;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.7rem 2.2rem;
    margin-top: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(46, 139, 87, 0.08);
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .slogan-container {
        font-size: 1.1rem;
        padding: 0.5rem 1.2rem;
    }
    
    .tagline-relocated {
        font-size: 0.8rem;
        right: 1rem;
        bottom: -0.6rem;
        padding: 0.15rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .slogan-container {
        font-size: 0.95rem;
        padding: 0.4rem 0.7rem;
    }
    
    .tagline-relocated {
        font-size: 0.7rem;
        right: 0.7rem;
        bottom: -0.5rem;
        padding: 0.1rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .slogan-container {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
    }
    
    .tagline-relocated {
        font-size: 0.6rem;
        right: 0.4rem;
        bottom: -0.4rem;
        padding: 0.1rem 0.3rem;
    }
}

.see-more-products {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    padding: 80px 0;
    margin-top: 40px;
}

.see-more-heading {
    text-align: center;
    color: #43b843;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 12px rgba(67, 184, 67, 0.08);
}

.featured-product {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.featured-card {
    max-width: 400px;
    background: linear-gradient(135deg, #fff 0%, #f9fff9 100%);
    border: 2px solid #43b843;
    box-shadow: 0 8px 32px rgba(67, 184, 67, 0.15);
}

.featured-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 16px 48px rgba(67, 184, 67, 0.25);
}

.heat-extractors-section {
    margin-top: 3rem;
}

.catalogue-link-container {
    text-align: center;
    margin-bottom: 1rem;
}

.catalogue-link {
    display: inline-block;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.catalogue-link:hover {
    color: #43b843;
    border-color: #43b843;
    background: #f4fff4;
    text-decoration: none;
    transform: translateY(-1px);
}

.section-subtitle {
    text-align: center;
    color: #2e7d32;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #43b843, #2e7d32);
    border-radius: 2px;
}

.heat-extractors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.heat-extractors-grid .product-card {
    background: linear-gradient(135deg, #fff 0%, #f4fff4 100%);
    border: 1.5px solid #c8e6c9;
    transition: all 0.3s ease;
}

.heat-extractors-grid .product-card:hover {
    border-color: #43b843;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px rgba(67, 184, 67, 0.2);
}

.heat-extractors-grid .product-card h4 {
    color: #2e7d32;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .see-more-products {
        padding: 60px 0;
    }
    
    .see-more-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .featured-product {
        margin-bottom: 3rem;
    }
    
    .heat-extractors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .see-more-products {
        padding: 40px 0;
    }
    
    .see-more-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-card {
        margin: 0 1rem;
    }
}