body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    max-height: 30px;
}

.left {
    display: flex;
    gap: 25px;
    margin-left: 200px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-right:200px ;
}

.menu li a {
    text-decoration: none;
    color: black;
}


.navbar-b {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    margin-left: 200px;
    margin-right: 200px;
}

.logo {
    height: 50px;
}

.search-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 15px;
    border: 2px solid black;
    border-radius: 30px;
    overflow: hidden;
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.category-dropdown {
    border: none;
    /* padding: 10px; */
    outline: none;
}

.search-button {
    background-color: #3460E9;
    color: white;
    padding: 10px 50px;
    border: 1px solid #3460E9;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}
.search-button:hover{
    background-color: #3628E5;
}

.advanced-search {
    color: #898989;
    text-decoration: none;
    font-size: 13px;
}

.advanced-search:hover{
    color: #3460E9;
}

/* Sort by category style */
.category-btn {
    background: white;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #898989;
}

.category-btn:hover {
    background: #f3f3f3;
}

.category-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    gap: 50px;
    width: 600px;
    top: 100%;
    left: 0;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.column {
    flex: 1;
    min-width: 150px;
    padding: 10px;
}

.column h4 {
    margin: 5px 0;
    font-size: 16px;
}

.column p {
    margin: 5px 0;
    font-size: 13px;
    color: #898989;
    cursor: pointer;
}

.column p:hover {
    text-decoration: underline;
}

/* Show dropdown on hover */
.category-dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.search-input {
    flex-grow: 1;
    padding: 10px;
    margin-left: 20px;
    font-size: 14px;
}
hr{
    opacity: 70%;
    margin-top: 0;
}

/* Main body content */
.body-category {
    display: flex;
    list-style: none;
    gap: 15px;
    justify-content: center;
    font-size: 13px;
}

.body-category li a {
    text-decoration: none;
    color: #6b6b6b;
    padding: 10px;
    padding-top: 0;
    display: block;
}

/* banner css */
.banner {
    display: flex;
    background: #F7F7F7;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1800px;
    padding-left: 100px;
    padding-top:0;
    padding-bottom: 0;
    align-items: center;
    gap: 20px;
    margin-left: 100px;
    margin-right: 100px;
    
}

.banner-content {
    flex: 1;
    min-width: 400px;
}

.banner-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.shop-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
}

.shop-btn:hover{
    background-color: #F7F7F7;
    border: 0.5px solid #555;
    color: black;
}

.terms a {
    color: #898989;
    font-size: 12px;
    align-items: baseline;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    height:auto;
    border-radius: 10px;
}
/* explore popular category */
.heading{
    margin-left: 105px;
}

.box5{
    height: 200px;
    display: flex;
    gap: 20px;
    margin-left:100px ;
}

.circle{
    height: 200px;
    width: 200px;
    border-radius: 100px;
    background-color: #F7F7F7;
}
.circle p{
    margin-left: 20px;
    font-weight: bold;
    font-size: 14px;
    color: rgb(81, 81, 81)
}
.circle:hover{
    background-color: #cbcbcb;
}

/* css for parent-fav */
.parent-fav{
    display: flex;
    justify-content: space-between;
    margin: 60px auto;
    background-color: #F7F7F7;
    border-radius: 25px;
    padding: 20px;
    max-width: 1470px;
    margin-left: 100px;
    margin-right: 100px;
}
.fav{
    width: 60%;
    padding-left: 30px;
}
.btn-fav{
    width: 40%;
    text-align: right;
    padding-top: 30px;
    padding-right: 30px;
}

.btn1 button{
    background: black;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
}
.btn1 button:hover{
    background-color: #F7F7F7;
    border: 1px solid #555;
    color: black;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* footer */
footer {
    border-top: 1px solid #b3b3b3;
    background: #f7f7f7;
    padding: 40px 60px;
    font-family: Arial, sans-serif;
}

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

.footer-column {
    width: 20%;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 14px;
    color: #222;
    margin-bottom: 10px;
    text-decoration: underline;
}
.footer-column h3:hover{
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    text-decoration: underline;
    color: black;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #777;
}

.footer-bottom a {
    color: #0073e6;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Country Selector */
.country-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.country-selector img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}




/* responsive design for top header */
@media (max-width: 768px) {
    .navbar-t {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .left {
        flex-wrap: wrap;
        gap: 10px;
        margin-left: 0;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


/* Responsive for seacbar navbar*/
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        align-items: center;
    }

    .search-container {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }
}

/* body top Responsiveness*/
@media (max-width: 768px) {
    .body-category {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .body-category li {
        width: 100%;
    }
}

/* Banner Responsiveness */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .banner-image img {
        width: 100%;
    }
}


/* Responsive Design for Explorepopular category */
@media screen and (max-width: 1024px) {
    .box5 {
        gap: 15px;
    }
    .circle {
        height: 180px;
        width: 180px;
    }
}

@media screen and (max-width: 768px) {
    .circle {
        height: 160px;
        width: 160px;
    }
    .circle img {
        height: 120px;
    }
    .circle p {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .box5 {
        flex-direction: column;
        align-items: center;
    }
    .circle {
        height: 140px;
        width: 140px;
    }
    .circle img {
        height: 100px;
    }
    .circle p {
        font-size: 10px;
    }
}


/* Responsive Design for Parent-fav */
@media screen and (max-width: 768px) {
    .parent-fav {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .fav, .btn-fav {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .btn-fav {
        padding-top: 10px;
    }

    .btn1 button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .fav h1 {
        font-size: 20px;
    }

    .fav p {
        font-size: 14px;
    }

    .btn1 button {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Responsive Design for footer */
@media screen and (max-width: 1024px) {
    .footer-column {
        width: 30%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 30px;
    }
}

