.main-sec {
    margin: 20px 0px 40px 0px;
}
.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px; /* Space between cards */
}
.main-sec h1.product-title {
    text-align: center;
    padding: 10px 0px 30px 0px;
    font-weight: 700;
    font-family: serif;
    text-transform: uppercase;
}
.product-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px; /* Fixed width for cards */
    text-align: center;
}

.product-name {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-image {
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.2em;
    color: #28a745; /* Green color for price */
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between color circles */
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-circle:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.size-options {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between size boxes */
    margin: 12px 0px 0px 0px;
}

.size-box {
    width: 60px;
    height: 40px;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.size-box:hover {
    background-color: #f0f0f0; /* Change background on hover */
}

/* Styles for selected options */
.selected {
    border: 2px solid #007cba; /* Highlight border for selected items */
    box-shadow: 0 0 5px rgba(0, 123, 188, 0.5); /* Optional shadow effect */
}