/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: gold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: gold;
}

nav ul li a.active {
    color: gold;
}


.icons span {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

/* Products Section */
.products {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.gold {
    color: gold;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    max-width: 200px;
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.product h3 {
    font-size: 18px;
    margin-top: 10px;
}

.price {
    font-weight: bold;
    color: gold;
    margin: 5px 0;
}

.old-price {
    text-decoration: line-through;
    color: gray;
    margin-left: 5px;
}

/* Icons */
.icons button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin: 5px;
    transition: 0.3s;
    background: orange;
}

.icons button:hover {
    transform: scale(1.2);
    
}

/* Footer */
footer {
    text-align: center;
    background: black;
    padding: 10px;
    margin-top: 0px;
}

.highlight {
    color: gold;
}

