/* HERO */
.hero {
  top: -25px;
  position: relative;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}


.gall img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 5px;
}

.supplier img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 5px;
}

/* overlay */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 20px;
  color: white;
  max-width: 600px;
  z-index: 2;
  padding: 0, 10px, 10px;

}

.hero-content h1 {
  font-size: 48px;
  color: white;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px black;
}

.hero-content p {
  font-size: 16px;
  color: white;
  opacity: 0.9;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px black;
}

/* STATS */
.stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat {
  text-align: left;
}

.stat h3 {
  font-size: 20px;
}

.stat span {
  font-size: 12px;
  opacity: 0.8;
}

/* PRICE BADGE */
.price-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #361515;
  color: #ffffff;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  z-index: 2;
  border: 1px solid #fff;
}

.offer-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  z-index: 2;
}

.offer-badge img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero img {
    height: 500px;
  }

  .hero-content {
    position: absolute;
    bottom: 100px;
    left: 20px;
    color: white;
    max-width: 600px;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 1px;
  }

  .hero-content p {
    font-size: 16px;
    text-align: center;
  }

  .stats {
    flex-wrap: wrap;
  }

  .gall img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 5px;
  }


}

/* Responsive */
@media screen and (max-width: 768px) {
  .hide {
    display: none;
    /* Hide on mobile */
  }
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .hide2 {
    display: none;
    /* Hide on mobile */
  }
}
/* Hero */

/* =========================
   SPACCOR TRUST SECTION
========================= */

.spaccor-trust-section {
  padding: 30px 80px;
  margin-top: 10px;
  background-color:#361515;
}

.spaccor-trust-section .t-container {
  max-width: 100%;
  margin: auto;
  text-align: center;
}

.trust-title {
  font-size: 30px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
}

.trust-line {
  width: 140px;
  height: 5px;
  background: #dd0000;
  border-radius: 50px;
  margin: 0 auto 50px;
}

.trust-box {
  background: #fff;
  border-radius: 25px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.trust-item {
  flex: 1;
  text-align: center;
}

.icon {
  font-size: 42px;
  color: #d79b2c;
  margin-bottom: 3px;
}

.icon img {
  width: 50px;
  color: #d79b2c;
}

.stars {
  font-size: 34px;
  color: #d79b2c;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.stars img{
  width: 50px;
}

.trust-item h3 {
  font-size: 18px;
  color: #723434;
  font-weight: 500;
  margin: 0;
}

.divider {
  width: 1px;
  height: 120px;
  background: #e5e7eb;
}

/* =========================
             MOBILE RESPONSIVE
========================= */

@media(max-width:768px) {

  .spaccor-trust-section {
    padding: 10px 10px;
  }

  .spaccor-trust-section .t-container {
    max-width: 100%;
    margin: auto;
    text-align: center;
  }

  .trust-title {
    font-size: 24px;
    font-weight: 500;
  }

  .trust-box {
    flex-direction: row;
    border-radius: 15px;
    padding: 10px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }

  .trust-line {
    width: 140px;
    height: 3px;
    background: #000000;
    border-radius: 50px;
    margin: 0 auto 50px;
  }

  .divider {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
  }

  .trust-item h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #723434;
  }

  .icon,
  .stars {
    font-size: 16px;
  }

  .icon img {
    width: 30px;
    color: #d79b2c;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spaccor-title h2 {
  font-size: 30px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: center;
  top: 5px;
}



.spaccor-title p{
  font-size: 18px;
  color: #723434;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

.spaccor-title-left {
  font-size: 30px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 30px;
}



.spaccor-title-left p{
  font-size: 18px;
  color: #723434;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

@media(max-width:768px) {
  .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spaccor-title {
  font-size: 16px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: center;
}



.spaccor-title p{
  font-size: 12px;
  color: #723434;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

.spaccor-title-left {
  font-size: 16px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: left;
}



.spaccor-title-left p{
  font-size: 12px;
  color: #723434;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

}