/* ===============================
   GLOBAL
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

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

/* ===============================
   HEADER
================================= */

.main-header{
    position:sticky;
    top:0;
    z-index:1000;

    background:white;

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

    padding:18px 40px;

    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

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

.logo-link{
    text-decoration:none;
    color:#b46b32;
    font-size:32px;
    font-weight:bold;
}

.logo small{
    color:#888;
    margin-top:3px;
}

/* ===============================
   NAVIGATION
================================= */

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

.main-nav a{

    text-decoration:none;

    color:#444;

    font-weight:bold;

    transition:.2s;

    padding:8px 0;

}

.main-nav a:hover{

    color:#b46b32;

}

/* ===============================
   HERO
================================= */

.hero{

    background:#f7efe6;

    text-align:center;

    padding:90px 30px;

}

.hero h1{

    font-size:52px;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    color:#666;

    margin-bottom:30px;

}

/* ===============================
   BUTTON
================================= */

button{

    background:#b46b32;

    color:white;

    border:none;

    border-radius:8px;

    padding:14px 24px;

    cursor:pointer;

    font-size:16px;

    transition:
        background .25s,
        transform .2s;

}

button:hover{

    background:#965523;

    transform:translateY(-2px);

}

/* ===============================
   PRODUCTS
================================= */

.products{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));

    gap:25px;

    padding:40px;

}

.card{

    background:white;

    border-radius:14px;

    padding:20px;

    text-align:center;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    transition:.2s;

}

.card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.product-image{

    width:100%;

    height:210px;

    object-fit:contain;

}

.card h3{

    margin:15px 0;

    font-size:18px;

    min-height:50px;

}

.price{

    color:#b46b32;

    font-size:26px;

    font-weight:bold;

    margin-bottom:15px;

}

/* ===============================
   PRODUCT PAGE
================================= */

.product-page{

    display:flex;

    gap:60px;

    padding:50px;

}

.product-left{

    width:45%;

}

.product-right{

    width:55%;

}

.product-large{

    width:100%;

    border-radius:15px;

}

.product-right h1{

    margin-bottom:20px;

}

.product-right button{

    margin-right:10px;

}

/* ===============================
   FOOTER
================================= */

.site-footer{

    margin-top:70px;

    background:#222;

    color:white;

    padding:50px 40px 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

}

.footer-grid h3,
.footer-grid h4{

    margin-bottom:15px;

}

.footer-grid p{

    margin:8px 0;

}

.footer-grid a{

    color:#ddd;

    text-decoration:none;

}

.footer-grid a:hover{

    color:white;

}

.site-footer hr{

    margin:30px 0;

    border:none;

    border-top:1px solid #444;

}

.copyright{

    text-align:center;

    color:#bbb;

}

/* ===============================
   MOBILE
================================= */

@media(max-width:900px){

    .main-header{

        flex-direction:column;

        gap:20px;

    }

    .main-nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero{

        padding:60px 20px;

    }

    .hero h1{

        font-size:36px;

    }

    .product-page{

        flex-direction:column;

        padding:25px;

    }

    .product-left,
    .product-right{

        width:100%;

    }

}
/* ===============================
   Mobile Bottom Navigation
   =============================== */

.mobile-bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,.08);
}

.mobile-bottom-nav .nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    width: 25%;
    height: 100%;
}

.mobile-bottom-nav .nav-item i{
    font-size: 22px;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active{
    color: #8B4513;
}

@media (max-width:768px){

    .mobile-bottom-nav{
        display: flex;
    }

    body{
        padding-bottom: 75px;
    }
}
