body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

header .logo {
    font-size: 45px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.featured {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.featured-watch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.featured-watch img {
    max-width: 300px;
}

.watch-info {
    max-width: 400px;
    text-align: left;
}

.watch-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.watch-info p {
    margin-bottom: 20px;
}

.watch-info button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.products {
    padding: 50px 20px;
    text-align: center;
}

.products .product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.products .product {
    border: 1px solid #ddd;
    padding: 20px;
    max-width: 200px;
    text-align: center;
}

.products .product img {
    max-width: 100%;
    height: auto;
}

.products .product h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.products .product p {
    margin-bottom: 20px;
}

.products .product button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
