body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    position: relative;
    background-color: #f8f9fa;
    padding: 20px 0;
}

.header::after {
    content: '';
    display: block;
    height: 10px;
    background-color: #fe602f;
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    /* Space between left and right sections */
    align-items: center;
    /* Vertical alignment */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left section: Logo + Company Name */
.left-section {
    display: flex;
    align-items: center;
}

.company-name {
    font-family: 'Fahkwang', sans-serif !important;
    /* Apply your custom font if needed */
    margin: 0;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.company-name {
    margin: 0 10px 0 10px;
}


.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
}

.menu a:hover {
    color: #fe602f;
}

.hamburger {
    display: none;
    /* Hidden by default, shown on small screens */
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height: 4px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
}

.content {
    padding: 15px 20px;
}

.contact-info {
    background-color: #e6c7eb;
    /* dark background for contrast */
    padding: 15px 0;
    color: #aaa;
}

.contact-info .container {
    background-color: #e6c7eb;
    display: flex;
    justify-content: center;
    gap: 30px;
    /* space between phone and email */
    flex-wrap: wrap;
}

/* Style each contact item */
.contact-item {
    font-size: 1em;
}

.contact-item a {
    color: #aaa;
    text-decoration: underline;
}


.footer {
    background-color: #343a40;
    /* or your preferred color */
    padding: 20px;
    text-align: center;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    /* Horizontal by default */
    justify-content: center;
    flex-wrap: wrap;
    /* Wrap on small screens */
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-links li {
    margin: 0 15px;
}

/* Link styles */
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 tiles on large screens */
    gap: 16px;
    padding: 16px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 tiles on large screens */
    gap: 16px;
    padding: 16px 0;
}

/* Make the image container square and responsive */
.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Ensures square shape in modern browsers */
    overflow: hidden;
    border-radius: 8px;
    /* Optional: Rounded corners */
}

/* Style images to cover the container */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Style for footer text */
.product-footer {
    padding: 8px;
    background-color: #fe602f;
    color: white;
    text-align: center;
    font-size: 0.9em;
    border-radius: 4px;
}

.mail-button,
.buy-now-button {
    display: inline-block;
    /* Needed to style as a button */
    background-color: #fe602f;
    color: white;
    font-size: 1em;
    text-align: center;
    /* Center the text */
    text-decoration: none;
    /* Remove underline */
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-now-button:hover {
    background-color: #fe4e2f;
    /* Darker shade on hover */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger {
        display: flex;
        position: absolute;
        /* Position relative to header */
        top: 20px;
        /* Adjust as needed for spacing */
        right: 20px;
        /* Align to the right edge with some padding */
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        z-index: 1000;
        /* Ensure it stays above other elements */
    }

    /* Hide menu by default on small screens */
    #menu {
        position: absolute;
        top: 70px;
        /* Adjust based on your header height */
        right: 20px;
        background: #f8f9fa;
        flex-direction: column;
        display: none;
        width: 200px;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    #menu ul {
        flex-direction: column;
    }

    #menu li {
        margin: 10px 0;
    }

    /* Show menu when active */
    #menu.show {
        display: flex;
    }

    .contact-info .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        /* Stack vertically */
        align-items: flex-start;
        /* Align links to the left */
        width: 100%;
        /* Take full width for alignment */
    }

    .footer-links li {
        margin: 10px 20px;
        /* Add some spacing between items */
    }

    /* Optional: Keep the text left aligned if needed */
    .footer-links a {
        text-align: left;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 tiles on small screens */
    }

}