/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #34331C;
    line-height: 1.6;
}

/* Navbar Styles (Copied from Homepage) */
header {
    background-color: #FFFFFF;
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 40px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Replace color transition with a subtle transform */
}

.logo:hover .logo-image {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #34331C;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #34331C;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a.active {
    background-color: #21871E;
    color: #FFFFFF;
}

.nav-links a:hover {
    color: #FFFFFF;
    background-color: #21871E;
}

.apply-btn {
    background-color: #21871E;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.apply-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: white;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-content {
    font-size: 14px;
    color: #666;
}

.breadcrumb-content a {
    font-family: 'Syne', sans-serif;
    color: #34331C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: #21871E;
}

.breadcrumb-content span {
    font-family: 'Syne', sans-serif;
    color: #34331C;
}


/* Product Details Section */
.product-details {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
}

.product-image {
    flex: 1;
    aspect-ratio: 1 / 1;
    background-color: #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.reviews {
    font-size: 14px;
    color: #666;
}

.product-description {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

.product-options, .product-quantity {
    margin-bottom: 20px;
}

.product-options label, .product-quantity label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 5px;
}

.product-options select, .product-quantity input {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-size: 14px;
    color: #34331C;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.add-to-cart, .buy-now, .learn-more {
    background-color: #34331C;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-to-cart:hover, .buy-now:hover, .learn-more:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.buy-now {
    background-color: #21871E;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.loading-bar {
    width: 100%;
    height: 5px;
    background-color: #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #21871E;
    animation: loading 3s linear forwards;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.modal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

.fb-button {
    display: inline-block;
    background-color: #1877F2; /* Facebook blue */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.fb-button:hover {
    background-color: #145dbf;
    transform: scale(1.05);
}

/* Additional Information Section */
.additional-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.tab {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.tab.active {
    color: #34331C;
    border-bottom: 2px solid #21871E;
}

.info-content {
    font-size: 16px;
    color: #34331C;
}

/* Testimonial Section */
.testimonial {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 24px;
    font-style: italic;
    color: #34331C;
    margin-bottom: 20px;
}

.testimonial footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author {
    font-weight: 700;
    color: #34331C;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #34331C;
}

/* Call-to-Action Section */
.cta-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 0;
    flex: 1;
}

.cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin: 0;
    flex: 2;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.buy-now, .learn-more {
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buy-now {
    background-color: #34331C;
    color: #FFFFFF;
    border: none;
}

.buy-now:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.learn-more {
    background-color: #FFFFFF;
    color: #34331C;
    border: 1px solid #34331C;
}

.learn-more:hover {
    background-color: #F5F5F5;
    transform: scale(1.05);
}

/* Custom Quote Form */
.quote-form {
    background-color: #34331C;
    color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
}

.quote-form h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-form p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.quote-form form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quote-form input {
    padding: 12px;
    width: 300px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #34331C;
}

.quote-form button {
    background-color: #FFFFFF;
    color: #34331C;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.quote-form button:hover {
    background-color: #21871E;
    color: #FFFFFF;
    transform: scale(1.05);
}

.quote-form .privacy-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.quote-form .privacy-text a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.quote-form .privacy-text a:hover {
    color: #21871E;
}

/* Footer Styles (Copied from Homepage) */
footer {
    background-color: #FFFFFF;
    color: #34331C;
    width: 100%;
    padding: 40px 0;
    margin: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 40px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #34331C;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #21871E;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    width: 200px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    color: #34331C;
}

.subscribe-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #065401;
}

.privacy-text {
    font-size: 12px;
    color: #34331C;
}

.privacy-text a {
    color: #21871E;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.bottom-left {
    display: flex;
    gap: 15px;
}

.bottom-left a {
    color: #34331C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-left a:hover {
    color: #21871E;
}

.bottom-right {
    color: #34331C;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Navbar */
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #E0E0E0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .apply-btn {
        width: 100%;
        margin-top: 10px;
        padding: 10px 20px;
    }

    /* Product Details */
    .product-details {
        flex-direction: column;
        gap: 20px;
    }

    .product-info h1 {
        font-size: 28px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-buttons {
        flex-direction: column;
    }

    /* Additional Info */
    .info-tabs {
        flex-direction: column;
        gap: 10px;
    }

    /* Testimonial */
    .testimonial blockquote {
        font-size: 18px;
    }

    /* CTA */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .quote-form h2 {
        font-size: 28px;
    }

    .quote-form form {
        flex-direction: column;
    }

    .quote-form input {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .product-details {
        flex-direction: column;
        gap: 20px;
    }

    .product-info h1 {
        font-size: 32px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-buttons {
        justify-content: center;
    }
}