
body, input, button {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    background-color: #ffffff; 
}

header {
    background-color: #ffffff; 
    padding: 0px 10px
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 5px 20px;
    background-color: #4e2e74;
}

.top-bar a {
    color: white; 
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
        height: auto; 
        width: auto; 
        margin-left: 10px; 
}

.logo-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    margin: 0 auto;
    padding: 8px;
    background-color: #f5f5f5; 
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    outline: none;
    background-color: transparent; 
}

.search-bar button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0 10px;
}

.search-bar input:focus {
    background-color: #eaeaea; 
}

.search-bar button:hover img {
    filter: invert(1); 
}

.user-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.user-icon a {
    margin: 0 10px;
    text-decoration: none;
}

.user-icon img {
    width: auto;
    height: auto;
}


.main-nav, .logo-nav {
    background-color: #4e2e74; 
    padding: 10px 0; 
}

.white-space {
    background-color: #ffffff; 
    height: 10px; 
}


.main-nav ul, .logo-nav ul {
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li, .logo-nav li {
    list-style: none;
    text-align: center;
}

.main-nav a, .logo-nav a {
    text-decoration: none; 
    color: white; 
    font-size: 14px; 
    font-weight: bold; 
    transition: color 0.3s;
} 

.main-nav a:hover {
    color: #ffd700; 
}

.logo-nav img {
    width: 40px; 
    height: auto; 
    margin: 0 10px; 
}

.logo-nav{
    height: 60px;
    border-radius: 12px;
}
.logo-nav > ul{
    height: inherit;
}
.main-nav{
    border-radius: 12px;
}
@media (max-width: 768px) {
    .main-nav ul, .logo-nav ul {
        flex-direction: column; 
        align-items: center; 
    }

    .main-nav a, .logo-nav a {
        font-size: 12px; 
    }

    .logo-nav img {
        width: 30px; 
    }
}

.banner {
    width: 100%; 
    overflow: hidden; 
    padding-top: 10px;
}

.banner img {
    width: 100%; 
    height: auto; 
    display: block; 
}

.new-collections {
    padding: 20px;
    background-color: #f5f5f5;
}

.new-collections h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.collections {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.collections-item {
    text-align: center;
    margin: 10px;
    height: auto;
}

