* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


:root {
    --primary: #8DC73F;
    --brown: #693E38;
    --black: #1A1A18;
    --white: #f2f2f2;
}




.container-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
    position: relative;
    /* Add position relative to container */
}

.product-images {
    flex: 1;
    min-width: 300px;
    position: sticky;
    /* Make this sticky */
    top: 70px;
    /* Distance from top of viewport */
    align-self: flex-start;
    /* Ensure it sticks to the top */
    max-height: calc(100vh - 40px);
    /* Maximum height - prevents overflow */
    overflow: hidden;
    /* Prevent overflow */
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.product-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--brown);
}

.product-subtitle {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 500;
}

.eco-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.specifications {
    margin-bottom: 30px;
}

.spec-title {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.spec-list li:before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 20px;
}

.actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.size-selector {
    margin-bottom: 20px;
}

.size-title {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    padding: 8px 12px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option:hover,
.size-option.active {
    background-color: var(--primary);
    color: var(--text-light);
}

.request-quote {
    padding: 12px 24px;
    background-color: var(--brown);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.request-quote:hover {
    background-color: var(--brown);
}

/* UPDATED FEATURES SECTION STYLES */
.features-section {
    margin: 50px 0;
}

.section-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--brown);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.feature-icon i {
    font-size: 40px;
}

.feature-text {
    color: var(--primary);
}

.feature-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

/* END OF UPDATED FEATURES SECTION */

.technical-specs {
    margin: 50px 0;
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tech-specs-table th,
.tech-specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tech-specs-table th {
    background-color: var(--primary);
    color: var(--text-light);
}

.tech-specs-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tech-specs-table tr:hover {
    background-color: #e9e9e9;
}

.other-products {
    margin: 50px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid var(--primary);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card-description {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 15px;
}

.product-card-btn {
    padding: 10px 15px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    /* border-radius: 4px; */
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    /* display: inline-block; */
    width: 50%;
}

.product-card-btn:hover {
    background-color: var(--primary);
}

/* Media Queries */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
    }

    .product-images {
        position: static;
        /* Disable sticky positioning on smaller screens */
        max-height: none;
        overflow: visible;
    }

    .product-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 24px;
    }

    .actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .tech-specs-table {
        font-size: 14px;
    }

    .tech-specs-table th,
    .tech-specs-table td {
        padding: 8px 10px;
    }
}



/* contact us page start */

/* @@@@@@@@@@@@@@@@@@@@@@@@contact us page start@@@@@@@@@@@@@@@@@@@ */

.contact-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.contact-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.contact-header img {
    max-width: 220px;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    margin-right: 30px;
    border-top: 5px solid var(--primary);
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.message-area {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color:var(--primary);
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: var(--primary);
}

.contact-info {
    flex: 1;
    padding-left: 20px;
    min-width: 300px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    font-size: 24px;
}

.info-card p,
.info-card a {
    color: #555;
    margin-bottom: 8px;
}

.info-card a {
    text-decoration: none;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 12px;
    color: var(--primary);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



/* Enhanced Media Queries */
@media screen and (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        min-width: unset;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .info-card {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .contact-header {
        margin-bottom: 20px;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-content {
        margin-top: 30px;
    }

    .form-control {
        padding: 10px 12px;
    }

    .submit-btn {
        padding: 12px 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        margin: 15px auto;
        padding: 0 10px;
    }

    .contact-header h1 {
        font-size: 24px;
    }

    .contact-header h1::after {
        width: 60px;
        margin: 10px auto;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-form {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .form-control {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px 15px;
        font-size: 15px;
    }

    .info-card {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .info-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .info-card p,
    .info-card a {
        font-size: 14px;
    }

    .social-links {
        justify-content: space-between;
        margin-top: 10px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        margin-right: 5px;
    }

    .map-container {
        height: 200px;
        margin-top: 15px;
        border-width: 3px;
    }
}

/* Small Phone Screens */
@media screen and (max-width: 360px) {
    .contact-header h1 {
        font-size: 22px;
    }

    .contact-form h2,
    .info-card h3 {
        font-size: 16px;
    }

    .form-control,
    .info-card p,
    .info-card a {
        font-size: 13px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }
}

/* contact us page start */