body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.navbar {
  position: fixed;
  left: 20px;
  right: 20px;
  top: 20px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
} 

.section {
  width: 100%;
}

.section-limit {
  max-width: 1920px;
  margin: auto;
}

.section-margin {
  margin-left: 10px;
  margin-right: 10px;
}

#section-1 {
  height: 100vh;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 round 0);
  transition: clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: #111;
}

#section-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 1;
}

#section-1.scrolled {
  clip-path: inset(10px round 35px);
  height: 800px;
}

.bg-video {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.section-1-company {
  position: absolute;
  left: 40px;
  top: 120px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: fadeInLeft 0.6s 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.section-1-tagline {
  position: absolute;
  left: 40px;
  top: 160px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  animation: fadeInRight 0.6s 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.section-1-title-p {
  position: absolute;
  left: 40px;
  bottom: 60px;
  font-size: 90px;
  color: #ffffff;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  overflow: hidden;
  white-space: nowrap;
  transition: left 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              bottom 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              font-size 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.letter {
  display: inline-block;
  animation: slideUp 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════ SECTIONS ═══════ */

.section-block {
  border-radius: 30px;
  margin: 10px;
  padding: 90px 80px;
}

.section-block-light {
  background-color: #f5f5f5;
  color: #222;
}

.section-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  line-height: 1.25;
}

.section-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.55;
}

.section-text {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 28px;
}

/* ═══════ STORE CARDS ═══════ */

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.store-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.store-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
}

.store-badge--sale {
  background: #e53935;
}

.store-card-body {
  padding: 22px 24px 24px;
}

.store-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.store-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.store-rating {
  font-size: 13px;
  color: #f5a623;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.store-rating span {
  color: #888;
  font-weight: 600;
  margin-left: 6px;
}

.store-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.store-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.store-price {
  font-size: 13px;
  color: #888;
}

.store-price strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.store-btn {
  background: #111;
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-btn:hover {
  background: #333;
  transform: scale(1.04);
}

/* ═══════ REVEAL ═══════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.42s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

