/* 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);
}

/* Hero Section */
.products-hero {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #34331C;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #34331C;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Button Styles */
.cta-button, .newsletter-btn, .discover-btn, .subscribe-btn {
    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;
}

.cta-button:hover, .newsletter-btn:hover, .discover-btn:hover, .subscribe-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

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

.products-header {
    margin-bottom: 40px;
    text-align: left;
}

.products-header-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 8px;
}

.products-header-text p {
    font-size: 16px;
    color: #666;
    max-width: 300px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-link:hover .product-card {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card {
    background-color: #E0E0E0;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.product-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 5px;
}

.product-card .variant {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.product-card .price {
    font-size: 16px;
    font-weight: 700;
    color: #34331C;
}

/* Discover Section */
.discover-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.discover-content {
    flex: 1;
    text-align: left;
}

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

.discover-content p {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

.discover-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.discover-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #34331C;
    transition: transform 0.3s ease;
}

.discover-benefits li i {
    font-size: 24px;
    color: #21871E;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.discover-benefits li p {
    margin: 0;
    line-height: 1.5;
}

.discover-image {
    flex: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 300px;
    border-radius: 5px;
    overflow: hidden;
}

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

/* Protection Section */
.protection-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.protection-image {
    flex: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 300px;
    border-radius: 5px;
    overflow: hidden;
}

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

.protection-content {
    flex: 1;
    text-align: left;
}

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

.protection-content p {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

.protection-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.protection-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #34331C;
    transition: transform 0.3s ease;
}

.protection-benefits li i {
    font-size: 24px;
    color: #21871E;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.protection-benefits li p {
    margin: 0;
    line-height: 1.5;
}

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

/* Connect Section */
.connect-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.connect-content p {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

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

.connect-image {
    width: 100%;
    aspect-ratio: 4 / 1;
    max-width: 800px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}

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

/* Footer Styles */
footer {
    background-color: #FFFFFF;
    color: #34331C;
    padding: 40px 20px;
}

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

.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-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;
    color: #34331C;
}

.newsletter-form input[type="email"]::placeholder {
    color: #666;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px 0;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.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;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Products */
    .products-header {
        text-align: center;
    }

    .products-header-text p {
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Discover & Protection */
    .discover-section, .protection-section {
        flex-direction: column;
        text-align: center;
    }

    .discover-content, .protection-content {
        padding: 0;
    }

    .discover-benefits li, .protection-benefits li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .discover-image, .protection-image {
        max-width: 100%;
    }

    /* Connect */
    .connect-buttons {
        flex-direction: column;
    }

    .connect-image {
        aspect-ratio: 2 / 1;
    }

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

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

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

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

    .newsletter-form input[type="email"] {
        width: 100%;
    }

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

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .discover-section, .protection-section {
        flex-direction: column;
        text-align: center;
    }

    .discover-content, .protection-content {
        padding: 0;
    }

    .discover-image, .protection-image {
        max-width: 50%;
    }
}