/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:white;
    padding: 15px 20px;
    color: black;
    position: relative;
}

.logo img {
    width: 120px;
    height: auto;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    gap: 20px;
    list-style: none;
}

.desktop-nav a {
    text-decoration: none;
    color:black;
    padding: 10px;
    transition: 0.3s;
}

.desktop-nav a:hover {
    background: gray;
    border-radius: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 40px;
    left: 0;
    width: 180px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dropdown-menu a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #555;
}

.dropdown-menu a:hover {
    background:#898787;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.language-icons {
    display: flex;
    gap: 10px;
}

.language-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background:white;
    text-align: center;
    padding: 10px 0;
}

.mobile-links a {
    padding: 15px;
    display: block;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #555;
}

.mobile-links a:hover {
    background:white;
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
    display: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-links.active {
        display: flex;
    }
}

/* Category Title */
.category-title {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-bottom: 20px;
}

.category-title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Product Section */
.product-section {
    padding: 40px 0;
}

.product-section .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Image */
.product-section img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #1e4423;
    color: white;
    padding: 40px 0;
}

.footer h5 {
    font-weight: bold;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 5px 0;
}

.footer ul li a {
    color: white;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a:hover {
    opacity: 0.8;
}
