/* BASIC css start */
<style>
.ttd-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.ttd-hero {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.ttd-hero-fadebox {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.8;
  overflow: hidden;
}

.fade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeSlide 12s infinite;
  opacity: 0;
}
.img1 { animation-delay: 0s; }
.img2 { animation-delay: 4s; }
.img3 { animation-delay: 8s; }

@keyframes fadeSlide {
  0% { opacity: 0; }
  8% { opacity: 1; }
  30% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.ttd-hero-text {
  position: absolute;
  max-width: 90%;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
  text-align: center;
  padding: 0 10px;
  margin-top: 15px;
}

.ttd-hero-text h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ttd-hero-text p {
  font-size: 1.0rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.ttd-coupon img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

.ttd-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.ttd-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.ttd-product {
  width: calc(50% - 5px);
  margin-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ttd-product img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}
.ttd-product img:hover {
  transform: scale(1.04);
}

.ttd-name {
  font-size: 0.8rem;
  font-weight: 400;
  color: #111;
  text-align: center;
}

.ttd-caption {
  font-size: 0.8rem;
  font-weight: 300;
  color: #444;
  text-align: center;
  line-height: 1.3;
  margin-top: 12px;
}
</style>

/* BASIC css end */

