.banner-slide{
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.banner-content h3{
  color: #f5a623;
}

.product-card{
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.active-product{
  border: 2px solid orange;
}

.service-box{
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.service-box i{
  font-size: 35px;
  color: #a84a00;
}

.footer{
  background: #111;
}

.order-btn{
  border: 1px solid black;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.1s ease;
  border-radius: 20px;
}

.order-btn:hover{
  background-color: #f5a623;   /* theme yellow */
  border-color: #f5a623;
  color: #000;
}

.grid-img{
  object-fit: cover;
  width: 100%;
}

.half-img{
  height: calc(50% - 6px);
}

@media (max-width: 768px){
  .half-img,
  .grid-img{
    height: auto;
  }
}

.footer-img{
  position: relative;
  background: url('https://waffy-demo.myshopify.com/cdn/shop/files/footer_1.jpg?v=1621853780')
              center/cover no-repeat;
  color: #ddd;
}

.footer-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}

.footer-title{
  color: #f5a623;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links li{
  margin-bottom: 6px;
  cursor: pointer;
}

.footer-links li:hover{
  color: #f5a623;
}

.footer-read{
  color: #f5a623;
  text-decoration: none;
  font-weight: 500;
}

.footer-read:hover{
  text-decoration: underline;
}

.footer-line{
  border-color: rgba(255,255,255,0.2);
}

.promo-section{
  position: relative;
  background: url('https://waffy-demo.myshopify.com/cdn/shop/files/parallax2.jpg?v=1614285054')
              center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.promo-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.promo-title{
  font-size: 42px;
  font-weight: 700;
}

.promo-title span{
  color: #f5a623; /* theme yellow */
}

@media (max-width: 768px){
  .promo-title{
    font-size: 30px;
  }
}

/* Navbar hover effect */
.navbar-nav .nav-link {
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f5a623;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active link highlight */
.nav-link.active {
  color: #f5a623 !important;
}

/* Mobile menu styling */
@media (max-width: 768px) {

  .navbar-collapse {
    background: #000;
    padding: 15px;
    border-radius: 10px;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }
}

.navbar {
  backdrop-filter: blur(10px);
}