body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #313131;
}



a{
    text-decoration: none;
    color: #fff;
}


form {
    align-content: center;
    background-color: #fff;
    width: 500px;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

form.cont {
    width: 800px;
    padding: 50px;
}


form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea, form button, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}


.view-more-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.view-more-button:hover {
    background-color: #0056b3;
}



h2 {
    font-size: 24px;
    margin: 20px 0;
    color: #007bff;
}

.product-category {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    border: 1px solid #ddd;
    color:#333;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.product-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 20px;
}

.product-card p {
    color: #555;
}

.product-card a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    margin-top: 10px;
}

.product-card a:hover {
    text-decoration: underline;
}

/* Product Details */
.product-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-details img {
    max-width: 400px;
    border-radius: 5px;
    flex: 1;
}

.product-details-content {
    flex: 2;
}

.product-details-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-details-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.color-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-options span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: border 0.3s ease;
}

.color-options span:hover {
    border-color: #000;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

button.buy-now {
    background-color: #007bff;
    color: #fff;
}

button.buy-now:hover {
    background-color: #0056b3;
}

button.add-to-cart {
    background-color: #28a745;
    color: #fff;
}

button.add-to-cart:hover {
    background-color: #218838;
}


