:root {
  --dark-green: #0e2311;
  --accent-green: #128c4b;
  --light-green: #e9faf0;
  --white: #fff;
  --glass: rgba(49, 83, 61, 0.36);
  --shadow: 0 2px 24px rgba(16, 44, 23, 0.15);
}
html {
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--light-green);
  color: var(--dark-green);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
header {
  background: linear-gradient(120deg, var(--dark-green) 75%, var(--accent-green) 100%);
  color: var(--white);
  padding: 0 0 2rem 0;
  box-shadow: var(--shadow);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}
.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 3px solid #fff;
  background: #fff;
  animation: fadein 2s;
}
.brand-name {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
  margin-bottom: 1.5rem;
  animation: fadein 2s 0.3s backwards;
}
.halal-badge {
  background: var(--accent-green);
  color: #fff;
  padding: 0.38em 1.1em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px rgba(23,153,58,0.13);
  border: 2px solid #fff;
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transition: all 0.7s cubic-bezier(.59,.07,.17,.97);
}
.halal-badge.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-text {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  padding: 1rem 0 0.5rem 0;
}
.animated-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #fff 70%, #44d362 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slide-in 1.2s cubic-bezier(.34,1.56,.64,1) 0.4s backwards;
}
.hero-text p {
  font-size: 1.07rem;
  color: #d9f5e3;
  font-weight: 500;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
  animation: fadein 1.5s 0.5s backwards;
}
main {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.contact-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.2rem 0 1.3rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(.59,.07,.17,.97);
  flex-wrap: wrap;
}
.contact-cta.in-view {
  opacity: 1;
  transform: translateY(0);
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.82rem 1.5rem;
  border-radius: 30px;
  font-size: 1.03rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent-green);
  transition: background 0.22s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(23,153,58,0.10);
  letter-spacing: 0.01em;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cta .icon-btn {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}
.cta.whatsapp {
  background: #25d366;
  color: #fff;
}
.cta.phone {
  background: #128c4b;
  color: #fff;
}
.cta.email {
  background: #128c4b;
  color: #fff;
}
.cta.whatsapp:hover, .cta.phone:hover, .cta.email:hover {
  background: #1bab53;
  transform: scale(1.04);
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 2rem auto 1.5rem auto;
  padding: 0 1rem;
}
.about-section, .info-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(16,44,23,0.07);
  padding: 1.1rem 1.4rem 1rem 1.4rem;
}
.about-section h2, .info-section h2 {
  color: #128c4b;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}
.hours-list li {
  margin-bottom: 0.2em;
}
.product-gallery {
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
}
.product-gallery h2 {
  color: var(--dark-green);
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.2rem 1rem;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
}
.product.card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 0;
  text-align: center;
  width: 100%;
  max-width: 420px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  margin: 0 auto 1.2rem auto;
}
.product.card:not(.in-view) {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
}
.product.card a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  flex: 1;
  width: 100%;
  height: 100%;
}
.img-box {
  width: 100%;
  height: 210px;
  display: flex;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #f4f4f4;
}
.product.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  margin: 0;
  box-shadow: none;
  border: none;
  display: block;
}
.product.card:hover img {
  filter: brightness(0.96) saturate(1.05);
}
.product.card span {
  display: block;
  margin: 0.7rem 0 0.3rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: 0.01em;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.18s;
  text-align: center;
  background: none;
}
.product.card:hover span {
  color: var(--accent-green);
}
/* Social section with app colors */
.social-section {
  background: #fff;
  margin: 2.2rem auto 1.2rem auto;
  max-width: 700px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(16,44,23,0.07);
  padding: 1.4rem 2rem;
  text-align: center;
}
.social-section h2 {
  color: #128c4b;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.6rem;
  justify-content: center;
}
.social-icons a img[alt="Facebook"] { filter: none; background: none; }
.social-icons a img[alt="Instagram"] { filter: none; background: none; }
.social-icons a img[alt="X"] { filter: none; background: none; }
.social-icons a img[alt="LinkedIn"] { filter: none; background: none; }
.social-icons a img[alt="Developer"] { filter: none; background: none; }
.social-icons a:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}
.dev-icon {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}
.dev-icon a {
  display: inline-block;
  transition: transform 0.18s;
}
.dev-icon a:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}
.dev-icon img {
  width: 32px;
  height: 32px;
}
#loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  height: 100vh;
  width: 100vw;
  background: #fff5f0;
  font-family: 'Segoe UI', sans-serif;
  transition: opacity 0.4s;
}
.meat-spinner {
  font-size: 60px;
  animation: rotateMeat 1s linear infinite;
}
.loading-text {
  margin-top: 12px;
  font-size: 18px;
  color: #c0392b;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px #f2d6d0;
}
@keyframes rotateMeat {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
footer {
  background: var(--dark-green);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  margin-top: 1.5rem;
}
@keyframes fadein {
  0% { opacity: 0;}
  100% { opacity: 1;}
}
@keyframes card-fadeup {
  0% {opacity: 0; transform: translateY(40px) scale(0.97);}
  70% {opacity: 1;}
  100% {opacity: 1; transform: translateY(0) scale(1.01);}
}
@keyframes slide-in {
  0% { opacity: 0; transform: translateY(32px);}
  100% { opacity: 1; transform: translateY(0);}
}
@keyframes pulse {
  0% {box-shadow: 0 0 0 0 rgba(23,153,58,0.19);}
  70% {box-shadow: 0 0 0 16px rgba(23,153,58,0);}
  100% {box-shadow: 0 0 0 0 rgba(23,153,58,0);}
}
.fade-in, .fade-up, .slide-in {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.44,.67,.45,1.15), transform 0.8s cubic-bezier(.44,.67,.45,1.15);
}
.fade-in.in-view, .fade-up.in-view, .slide-in.in-view {
  opacity: 1;
  transform: none;
}
.fade-up {
  transform: translateY(40px);
}
.fade-up.in-view {
  transform: translateY(0);
}
.slide-in {
  transform: translateY(-18px) scale(0.98);
}
.slide-in.in-view {
  transform: translateY(0) scale(1);
}
@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 99vw;
  }
  .product.card {
    max-width: 99vw;
    min-height: 160px;
  }
  .img-box {
    height: 220px; /* Increased from 140px */
  }
}
@media (max-width: 600px) {
  .logo {
    width: 90px;
    height: 90px;
  }
  .brand-name {
    width: 200px;
    margin-bottom: 1rem;
  }
  .product.card {
    min-height: 150px;
    max-width: 99vw;
    border-radius: 14px;
  }
  .img-box {
    height: 220px; /* Increased from 120px */
    border-radius: 14px 14px 0 0;
  }
  .product.card img {
    border-radius: 14px 14px 0 0;
  }
  .product.card span {
    font-size: 1.15rem;
    margin: 0.45rem 0 0.3rem 0;
  }
}
@media (max-width: 400px) {
  .logo {
    width: 70px;
    height: 70px;
  }
  .brand-name {
    width: 150px;
  }
  .img-box {
    height: 160px; /* Increased from 80px */
    border-radius: 10px 10px 0 0;
  }
  .product.card {
    min-height: 90px;
    border-radius: 10px;
  }
  .product.card img {
    border-radius: 10px 10px 0 0;
  }
}
