*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f7f7;
    color:#333;
}


/* HEADER */
.header{

    width:100%;
    background:#ff7a00;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:12px 30px;

}


.logo img{

    width:60px;

}


nav a{

    color:white;

    text-decoration:none;

    font-weight:bold;

    padding:8px 12px;

}


nav a:hover{

    background:white;

    color:#ff7a00;

    border-radius:20px;

}



@media(max-width:700px){

.header{

    flex-direction:column;

    gap:15px;

}


nav{

    justify-content:center;

    flex-wrap:wrap;

}


nav a{

    color:white;

    font-size:14px;

}

}


/* HERO */

.hero{
    background:white;
    padding:55px 20px;
}


.hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}


.hero h1{
    margin:0;
    font-size:38px;
    color:#222;
}


.hero p{
    color:#777;
    font-size:18px;
    line-height:1.5;
}


.search-box input{

    width:100%;
    max-width:550px;

    padding:16px 25px;

    border-radius:30px;

    border:1px solid #ddd;

    font-size:16px;

    outline:none;

}


/* LOCATION */

.location-card{

    margin:25px auto 0;

    max-width:400px;

    background:#fff;

    padding:20px;

    border-radius:18px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}


.location-card a{

    display:block;

    margin-top:10px;

    color:#ff7a00;

    text-decoration:none;

    font-weight:bold;

}



/* CATEGORIES */


.categories-section{

    max-width:1200px;

    margin:40px auto;

    padding:0 20px;

}


.categories-section h2,
.stores-section h2{

    font-size:28px;

    margin-bottom:25px;

}


.categories{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}


.categories a{

    text-decoration:none;

}



.category-card{

    height:140px;

    background:white;

    border-radius:22px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    font-size:40px;

    box-shadow:0 5px 20px rgba(0,0,0,.07);

}


.category-card span{

    margin-top:10px;

    font-size:16px;

    color:#333;

}



/* STORES */


.stores-section{

    max-width:1200px;

    margin:40px auto;

    padding:0 20px;

}


.stores{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.store-card{

    background:white;

    border-radius:20px;

    padding:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}



.store-image{

    height:150px;

    background:#fafafa;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:65px;

}



.store-info h3{

    margin:20px 0 10px;

}


.store-description{

    color:#777;

    min-height:40px;

}


.store-address{

    color:#666;

}



.store-meta{

    margin:15px 0;

}



.store-button{

    display:block;

    background:#ff7a00;

    color:white;

    text-align:center;

    padding:14px;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

}



/* FOOTER */


footer{

    background:#222;

    color:white;

    margin-top:50px;

    padding:40px 20px;

}


.footer-content{

    display:flex;

    justify-content:space-between;

}



/* MOBILE */

@media(max-width:700px){


.header{

    flex-direction:column;

    gap:15px;

    padding:15px;

}


.logo img{

    width:55px;

}


nav{

    width:100%;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

}


nav a{

    font-size:13px;

}



.hero{

    padding:35px 15px;

}


.hero h1{

    font-size:28px;

}



.categories{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}


.category-card{

    height:120px;

}



.stores{

    grid-template-columns:1fr;

}



.footer-content{

    flex-direction:column;

    gap:20px;

}

}
.search-button{

    background:#ff7a00 !important;

    color:white !important;

    border:none !important;

    padding:10px 22px;

    border-radius:25px;

    font-weight:bold;

    font-size:15px;

    cursor:pointer;

    width:auto;

}


.search-button:hover{

    background:#e66d00 !important;

}
.partner-container{

    max-width:500px;
    margin:50px auto;
    padding:20px;

}


.partner-card{

    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}


.partner-card input{

    width:100%;
    padding:14px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:12px;

}


.partner-card button{

    width:100%;
    padding:14px;

    background:#ff7a00;

    color:white;

    border:none;

    border-radius:25px;

    font-weight:bold;

}
.welcome-message{

    background:white;

    color:#ff7a00;

    padding:15px 25px;

    border-radius:25px;

    font-weight:bold;

    text-align:center;

    max-width:400px;

    margin:20px auto;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

}