body {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #717171;
    background-color: #EEEEEE;
    margin: 0;
    padding: 0;
    }
header { text-align: center;
    padding: 60px 0; }
.logo { max-width:300px; width:100%; /* Adjust as needed */ }
main { display: flex;
    justify-content: space-around;
    flex-wrap: wrap; }
.product {
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 40px;
    flex: 1 1 calc(50% - 40px); /* flex-grow, flex-shrink, flex-basis */
    max-width: calc(50% - 40px); /* Maximum width of each card */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 20px;
    margin: 20px;
    }
.product-info{
    padding:20px;
}
.product-img {
    width: 100%;
    border-radius: 20px;
    }
.color-swatches {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px; /* Adjust as needed */
}

.color-swatch {
    width: 25px; /* Diameter of the swatch */
    height: 25px; /* Diameter of the swatch */
    border-radius: 50%; /* Makes it a circle */
    border: 3px solid #EEEEEE; /* Stroke */
    margin-right: 5px; /* Space between swatches */
}

.color-swatch:last-child {
    margin-right: 0; /* No margin for the last swatch */
}

h2 {
    font-family: 'Quattrocento Sans', sans-serif;
    text-transform: uppercase;
    color: #1d1d1f;
    font-weight: 600;
    font-size: 1.5rem;
    }
p{
    line-height:1.5;
    margin-bottom: 30px;
    max-width: 600px;
}
.discover-button {
    background-color: #F19E38;
    border: none;
    border-radius: 7px;
    padding: 11px 25px;
    color: white;
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    align-items: center;
    text-decoration:none;
    }
.discover-button img {margin-left: 1px;height: 14px;position: relative;bottom: -6px;}
.slogan { text-align: center;
    font-family: 'Assistant', sans-serif;
    font-size: 44px;
    font-weight: 600;
    margin: 50px 0; }
footer {
    background-color: #FFFFFF; /* Change as needed */
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.about-us {
    flex: 1;
    max-width: 50%; /* About us takes up to 50% of the footer width */
    padding: 20px;
}

.footer-image {
    flex: 1;
    max-width: 50%; /* Image takes up to 50% of the footer width */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
}

.footer-image img {
    width: 100%; /* Adjust as needed */
    max-width: 400px; /* Adjust as needed */
    height: auto;
}

.social-media {
    display: flex;
    flex-direction: column;
}

.social-icons img {
    margin-right: 10px;
    height: 28px;
}

.social-icons {
    margin-bottom: 10px;
}

.handles p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .about-us, .footer-image {
        max-width: 100%; /* Each section takes full width on smaller screens */
    }
    .footer-content {
        flex-direction: column-reverse; /* Image comes first */
    }
}
.handles p { text-align: center;
    font-family: 'Assistant', sans-serif; }
header, .slogan, .about-us, .footer-image { text-align: center; }
.slogan{ color:#1d1d1f;}
.slogan p {
    font-size:2rem;
}
main { display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 40px; }
    @media (max-width: 768px) {
    /* Styles for mobile devices */
    main {
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
    }
    header { text-align: center;
    padding: 30px 0; }
    .logo { max-width:200px; width:100%; /* Adjust as needed */ }

    .product {
        /* Full width for mobile */
        width: calc(100% - 40px); /* Adjusting for padding and margin */
        margin: 10px;
        max-width: 500px; /* Optional: Limit the max width for very large mobile devices */
    }

    .footer-image img {
        width: 100%;
    }
}
.social-icons a {
    display: inline-block; /* Allows you to set margin and padding */
    margin-right: 10px; /* Space between icons or handles */
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Inherits text color from parent */
}

.social-icons a:last-child{
    margin-right: 0; /* No margin for the last icon or handle */
}

.social-icons img {
    vertical-align: middle; /* Aligns image nicely with the text */
}

.handles a {
    margin-bottom: 5px; /* Space between handles */
    display: block; /* Makes each handle appear on a new line */
}
