
* {
    margin: 0;
    padding: 0;
    font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}


header {
    display: flex;
    background: linear-gradient(90deg, #ffffff, #f5f5f6);
    height: 80px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
}

.myntra_home {
    height: 45px;
    transition: transform 0.3s ease;
}
.myntra_home:hover {
    transform: scale(1.1);
}

.logo_container {
    margin-left: 4%;
}

.action_bar {
    margin-right: 4%;
}


.nav_bar {
    display: flex;
    min-width: 500px;
    justify-content: space-evenly;
}

.nav_bar a {
    font-size: 15px;
    letter-spacing: .5px;
    color: #282c3f;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 28px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav_bar a:hover {
    color: #ff3f6c;
    border-bottom: 3px solid #ff3f6c;
}

.nav_bar a sup {
    color: #ff3f6c;
    font-size: 10px;
}


.search_bar {
    height: 40px;
    min-width: 200px;
    width: 30%;
    display: flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.search_icon {
    box-sizing: content-box;
    height: 20px;
    padding: 10px;
    background-color: #f5f5f6;
    color: #282c3f;
    font-weight: 300;
}

.search_input {
    color: #696e79;
    background-color: #f5f5f6;
    flex-grow: 1;
    height: 40px;
    border: 0;
    padding: 0 10px;
    font-size: 14px;
}


.action_bar {
    display: flex;
    min-width: 200px;
    justify-content: space-evenly;
}

.action_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.action_container:hover {
    transform: scale(1.1);
}


.banner_container {
    margin: 40px 0;
    position: relative;
}

.banner_image {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}
.banner_image:hover {
    transform: scale(1.03);
}


.category_heading {
    text-transform: uppercase;
    color: #3e4152;
    letter-spacing: .15em;
    font-size: 1.8em;
    margin: 50px 0 20px 30px;
    font-weight: 700;
    position: relative;
}

.category_heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ff3f6c;
    margin-top: 5px;
    border-radius: 2px;
}


.category_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.sale_item {
    width: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sale_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.sale_item img {
    width: 100%;
    transition: transform 0.3s ease;
}

.sale_item:hover img {
    transform: scale(1.05);
}

.footer_container {
    padding: 40px 0px;
    background: #FAFBFC;
    display: flex;
    justify-content: space-evenly;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.footer_column {
    display: flex;
    flex-direction: column;
}

.footer_column h3 {
    color: #282c3f;
    font-size: 15px;
    margin-bottom: 25px;
    position: relative;
}

.footer_column h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff3f6c;
    display: block;
    margin-top: 5px;
}

.footer_column a {
    color: #696b79;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer_column a:hover {
    color: #ff3f6c;
}

.copyright {
    color: #94969f;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    background: #f1f1f1;
}
