body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

header {
    text-align: center;
    background-color: #ff69b4;
    color: white;
    padding: 10px 0;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.categories a {
    padding: 10px 20px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.categories a:hover {
    background-color: #ff85b4;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
}

.product-detail-info {
    max-width: 600px;
    margin-left: 20px;
}

.btn {
    background: #ff69b4;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background: #ff85b4;
}
