
@font-face {
  font-family: 'Cairo';
  src: url('/products/assets/fonts/Cairo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root{
  --site-header-h: 80px;
  --brand: #b52b2b;
  --maxw: 460px;
}

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

html, body{
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Cairo", sans-serif;
  background: #ffffff;
}

body{
  text-align: center;
  padding-top: var(--site-header-h);
  padding-bottom: 110px;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--site-header-h);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.logo{
  height: 58px;
  max-width: 90%;
  object-fit: contain;
}

.selector-page{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px;
}

.selector-box{
  width: 100%;
  max-width: var(--maxw);
}

.home-title{
  color: var(--brand);
  font-size: var(--fs-desktop, 24px);
  line-height: 1.5;
  margin-bottom: 8px;
}

.home-desc{
  color: #444;
  font-size: var(--fs-desktop, 15px);
  line-height: 1.7;
  margin-bottom: 18px;
}

.products-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-card{
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid #eed0d0;
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  overflow: hidden;
}

.product-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}

.product-image{
  width: 100%;
  display: block;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-name{
  color: var(--brand);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.product-desc{
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.product-btn{
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.empty-msg{
  color: #777;
  font-size: 14px;
  padding: 20px 0;
}

@media (max-width: 767px){
  .home-title{
    font-size: var(--fs-mobile, 20px);
  }

  .home-desc{
    font-size: var(--fs-mobile, 13px);
  }
}

.home-footer{
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1300;
  background: #ffffff;
  border-top: 1px solid #e7caca;
  box-shadow: 0 -4px 14px rgba(0,0,0,.05);
  padding: 10px 12px;
}

.footer-inner{
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.footer-text{
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-btn{
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.whatsapp-btn{
  background: #25D366;
}

.facebook-btn{
  background: #1877F2;
}