main {
  padding: 0;        
}

.hero-video {
  position: relative;
  width: 100vw;          
  height: 90vh;
  min-height: 560px;
  margin: 0;             
  padding: 0;
  overflow: hidden;
  background: #000;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 8%,
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0.85) 92%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #ffffff;
}

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hero-btn:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

.home-intro {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 3vw;
  text-align: center;
}

.home-intro h2 {
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111827;
}

.home-intro p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.hero-scroll{
  margin-top: 18px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hero-scroll:hover{
  opacity: 1;
  transform: translateY(-2px);
}

.hero-scroll-text{
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-scroll-icon{
  width: 22px;
  height: 22px;
  animation: heroScrollBounce 1.25s infinite;
}

@keyframes heroScrollBounce{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* Hide it once you’ve scrolled a bit */
.hero-scroll.is-hidden{
  opacity: 0;
  pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .hero-video {
    height: 75vh;
    min-height: 420px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .hero-media {
    height: 260px;
  }
  .home-sale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-media {
    height: 220px;
  }
  .home-sale-grid {
    grid-template-columns: 1fr;
  }
}

.home-sale-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.home-sale-header h2 {
  font-size: 32px;
  margin-bottom: 6px;
  font-weight: 700;
}

.home-sale-header p {
  font-size: 15px;
  color: #d1d1d1;
  margin-bottom: 40px;
}

.home-sale-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.home-sale-image {
  height: 230px;      
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.home-sale-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  display: block;
}

.home-sale-noimg {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,0,0,0.25);
}

.home-sale-body {
  margin-top: auto;
  padding-top: 6px;
}

.home-sale-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 8px 0 0;
}

.home-sale-size-pill {
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  opacity: 0.95;
}

.home-sale-size-pill.is-soldout {
  opacity: 0.35;
  text-decoration: line-through;
}

.home-sale-prices {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: baseline;
}

.home-sale-price.sale {
  color: #ff2b2b; 
  font-weight: 800;
}

.home-sale-compare {
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 700;
}

.home-sale-tag.save-tag {
  background: linear-gradient(90deg, #ff0000, #ff3b3b);
}

.home-sale-soldout {
  position: absolute;
  top: 34px; 
  left: 10px;
  right: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,0,0,0.35);
  color: #fff;
  text-transform: uppercase;
}

.home-sale-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1600px;
  margin: 0 auto 40px auto;
}

@media (max-width: 1200px) {
  .home-sale-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .home-sale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .home-sale-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}


.home-sale-card {
  background: #0a0a0a;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  transition: 0.2s ease;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.25);
  border: 1px solid rgba(255, 0, 0, 0.25);
  position: relative;      
}

.home-sale-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 4px 0;
  background: linear-gradient(90deg, #ff0000, #ff5a5a);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 12px 12px 0 0;
}
.home-sale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 26px rgba(255, 0, 0, 0.45);
  border-color: rgba(255, 0, 0, 0.45);
}

.home-sale-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.home-sale-title {
  font-size: 14px;
  font-weight: 700;
  margin: 12px 0 6px 0;
  color: #fff;
}

.home-sale-desc {
  font-size: 12px;
  color: #cfcfcf;
  min-height: 38px;
}

.home-sale-price {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 700;
  color: #ff4444;
}


.home-sale-footer {
  margin-top: 15px;
}

.home-sale-view-all {
  padding: 12px 30px;
  background: #0a0a0a;
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 0, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
  text-decoration: none;
  transition: 0.25s ease;
  font-weight: 600;
}

.home-sale-view-all:hover {
  background: #150000;
  color: #ff4444;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.65);
  border-color: rgba(255, 0, 0, 0.65);
}


.strip-video {
  position: relative;
  width: 100vw;
  height: 40vh;
  min-height: 260px;
  margin: 0;              
  overflow: hidden;
  background: #000;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.strip-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.strip-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,     
    rgba(0, 0, 0, 0.85) 4%,
    rgba(0, 0, 0, 0.35) 9%,
    rgba(0, 0, 0, 0.0) 14%,  
    rgba(0, 0, 0, 0.0) 86%,  
    rgba(0, 0, 0, 0.35) 91%,
    rgba(0, 0, 0, 0.85) 96%,
    rgba(0, 0, 0, 1) 100%    
  );
}

.strip-fade-out {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;              
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,      
    rgba(0, 0, 0, 0.0) 45%,
    #eeeeee 100%  
  );
}



.why-choose {
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 40px 16px 0;
  text-align: center;
  background: #eeeeee;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  color: #2f7fdc;
}

.why-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #2f7fdc;
}

.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 28px 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon img {
  max-width: 42px;
  max-height: 42px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

/* Phone layout */
@media (max-width: 700px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }

  .why-card {
    padding: 14px;
  }
}


.home-news {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 16px;
  text-align: center;
}

.home-news h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  color: #2f7fdc;
}
.home-news {
  max-width: 1300px;
  margin: 80px auto 0;
  padding: 0 16px 80px;  
  text-align: center;
  background: #eeeeee;
}

.home-news {
  position: relative;
  z-index: 2;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.news-thumb {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.news-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.news-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.news-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.news-title {
  margin: 10px 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  text-align: center;
}


@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }

  .news-thumb img {
    height: 140px; 
  }

  .news-title {
    font-size: 12px;
  }
}

.site-terms-bar {
  background: #0a0a0a;
  color: #aaa;
  font-size: 12px;
  text-align: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-terms-bar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.site-terms-bar a:hover {
  text-decoration: underline;
}
