body {
    font-family: 'Open Sans', sans-serif;
    background-color: #D21885;
    margin: 0;
    padding: 0;
}

#headerunder { background-color: #ffffff; }

.header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header img {
    height: auto;
    max-height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center; 
    justify-content: center;
}

.nav a {
    font-size: 16px;
    text-decoration: none;
    color: #D21885;
    font-weight: bold;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #D21885;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 2px solid #CF388D;
    padding: 5px;
    border-radius: 25px;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 25px;
    flex: 1;
}

.search-bar i {
    color: #D21885;
}

.search-bar button {
    border: none;
    background: none;
    cursor: pointer;
}

.golden-line {
    height: 5px;
    background-color: #d4af37;
    margin: 0;
}

.banner {
    text-align: center;
    padding: 20px 0;
    background-color: #D21885;
    color: #fff;
    font-size: 24px;
}

.banner h1 {
    font-weight: bold;
}

.container {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card1 {
    text-align: center;
    color: #fff;
    background-color: #f071ac;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card1 img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.card1 h1 {
    margin: 20px 0 10px;
    font-size: 24px;
    font-weight: bold;
}

.card1 p {
    margin: 10px 0;
    padding: 0 20px;
    font-size: 16px;
}

.card1 button {
    background-color: #fff;
    color: #f071ac;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.card1 button:hover {
    background-color: #f9f9f9;
}

.tabs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.tab {
    background-color: #fff;
    color: #f071ac;
    border: 1px solid #f071ac;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.tab:hover {
    background-color: #f071ac;
    color: #fff;
}

.tab.active {
    background-color: #f071ac;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
}

.back-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
}

.back-icon:hover {
    color: #C49F24;
}

.back-icon i {
    margin-right: 10px;
}

/* Footer styles start here */

.pink-line {
    height: 4px;
    background-color: #D21885;
    margin: 0;
}

.footer {
    background-color: #fff;
    color: #D21885;
    padding: 10px 0;
    text-align: center;
    border-top: 4px solid #D21885;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
}

.footer .container div {
    flex: 1;
    margin: 20px;
    padding-bottom: 20px;
    min-width: 200px;
    text-align: left;
}

.footer .shop-now h3,
.footer .sitemap h3,
.footer .join-pack h3 {
    font-weight: bolder;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.footer .shop-now img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 40px;
    padding: 5px;
}

.footer .sitemap ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer .sitemap ul li {
    margin: 10px 0;
}

.footer .sitemap ul li a {
    color: #D21885;
    text-decoration: none;
    text-align: center;
}

.footer .sitemap ul li a:hover {
    text-decoration: underline;
}

.footer .join-pack p {
    font-size: 14px;
    color: #D21885;
    margin: 10px 0;
    text-align: justify;
}

.footer .join-pack input {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    max-width: 350px;
    border: 1px solid #D21885;
    color: #D21885;
    box-sizing: border-box;
    justify-content: center;
}

.footer .join-pack button {
    padding: 10px;
    width: 100%;
    max-width: 350px;
    background-color: #D21885;
    color: #fff;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    justify-content: center;
}

.footer .bottom {
    background-color: #D21885;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
    text-align: center;
    margin: 0;
}

.footer .bottom a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons {
    margin: 5px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.social-icons i {
    font-size: 30px;
    margin: 0 10px;
    color: #D21885;
}

.golden-line-footer {
    height: 4px;
    background-color: #C49F24;
    margin: 0;
    padding: 0;
}

.golden-line {
    height: 4px;
    background-color: #C49F24;
    margin: 0;
    opacity: 100%;
}

.golden-section {
    background: linear-gradient(to right, #CEAE37, #FFE3B3);
    padding: 20px 0;
    height: 0;
}

/* Media Queries for responsiveness */
@media (min-width: 1024px) {
    .header img {
        margin-left: 10px;
        max-height: 43px;
    }
    .search-bar {
        width: 18%;
    }
    .nav {
        flex-direction: row;
        gap: 25px;
    }
    .nav a {
        font-size: 26px;
        margin: 0 15px;
    }
    .dropdown {
        position: relative;
        margin-right: 100px;
    }
    .dropdown-content {
        position: absolute;
        left: 0;
        margin-left: 0;
    }
    .content img {
        width: 100%;
    }
    .products {
        justify-content: center;
        gap: 20px;
    }
    
    .card1 {
        width: 100%;
    }
    
    .card1 img {
        width: 50%;
    }
}

@media (max-width: 1023px) {
.nav {
flex-direction: column;
gap: 10px;
}
.dropdown {
position: relative;
margin-right: 0;
}
.dropdown-content {
position: absolute;
left: 0;
margin-left: 0;
}
.search-bar {
width: 80%;
}
.container {
width: 90%;
margin: 20px auto;
}
}

@media (max-width: 768px) {
.header {
flex-direction: column;
gap: 10px;
padding: 10px;
}
.header img {
margin-left: 0;
}
.nav {
flex-direction: column;
gap: 15px;
}
.search-bar {
width: 100%;
}
.container {
width: 95%;
margin: 10px auto;
}
.tabs {
flex-direction: column;
gap: 10px;
}
.footer .container {
flex-direction: column;
align-items: center;
}
.footer .container div {
margin: 10px 0;
}
}

@media (max-width: 480px) {
.header img {
max-height: 30px;
}
.nav a {
font-size: 14px;
margin: 0 5px;
}
.dropdown-content a {
font-size: 12px;
}
.search-bar input {
padding: 5px;
}
.banner h1 {
font-size: 18px;
}
.card1 h1 {
font-size: 18px;
}
.card1 p {
font-size: 14px;
}
.footer .shop-now img {
height: 30px;
}
.footer .join-pack input,
.footer .join-pack button {
max-width: 100%;
}
.social-icons i {
font-size: 24px;
}
}