/* ================= FOOTER – FLEX LAYOUT ================= */

html, body {
height: 100%;
}

body {
display: flex;
flex-direction: column;
}
.main-footer{
width:100%;
background:#0f3d2e;
color:#fff;

padding:16px 30px;

display:flex;
align-items:center;
justify-content:space-between;

box-sizing:border-box;

margin-top:auto;
}

/* main page content grows */
.page-wrapper,
.page-content,
main{
flex:1;
}

/* ================= FOOTER ================= */

.store-footer{
background:#0f3d2e;
color:#e6f4ee;
padding:12px 20px;
font-size:14px;
width:100%;
}
.footer-left{
display:flex;
gap:25px;
align-items:center;
}

.footer-right{
display:flex;
align-items:center;
gap:10px;
}

/* hide top footer */
.footer-inner{
display:none;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom{

max-width:1200px;
margin:0 auto;

display:flex;
align-items:center;
justify-content:space-between;

gap:12px;
flex-wrap:wrap;

font-size:13px;
opacity:0.9;

}

/* LEFT ICONS */

.footer-bottom::before{

content:"🏠 ✉️";

font-size:16px;

display:flex;
align-items:center;
gap:10px;

}
.powered{
background:#fff;
color:#0f3d2e;
padding:6px 12px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}

.powered:hover{
background:#e5e5e5;
}

/* ================= LARGE SCREENS ================= */

@media (min-width:1400px){

.footer-bottom{

max-width:1400px;

}

}

/* ================= LAPTOP ================= */

@media (max-width:1100px){

.footer-bottom{

padding:6px 10px;

}

}

/* ================= TABLET ================= */

@media (max-width:768px){

.footer-bottom{

justify-content:center;
text-align:center;

}

}

/* ================= MOBILE ================= */

@media (max-width:600px){

.store-footer{

padding:12px 14px;

}

.footer-bottom{

flex-direction:column;

gap:12px;

font-size:12px;

}

.footer-bottom::before{

font-size:15px;
margin-bottom: 5px;

}

.footer-bottom::after{

font-size:11px;
padding:5px 10px;

}

.footer-left, .footer-right {
  width: 100%;
  justify-content: center;
  text-align: center;
}

}

/* ================= SMALL PHONES ================= */

@media (max-width:400px){

.footer-bottom{

font-size:11px;

}

.footer-bottom::after{

font-size:10px;

}

.footer-left {
  flex-direction: column;
  gap: 10px;
}

}

/* ================= ULTRA SMALL ================= */

@media (max-width:320px){

.footer-bottom::before{

font-size:14px;

}

.footer-bottom::after{

padding:4px 8px;

}

}