﻿.outlet-banner {
  background: #0a0a0a;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.outlet-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -10px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

.outlet-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 70px;
  align-items: center;
}

.outlet-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.outlet-number {
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  color: white;
}

.outlet-pct {
  font-size: 64px;
  vertical-align: super;
  font-weight: 900;
}

.outlet-stock {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.outlet-divider {
  width: 1px;
  height: 220px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.outlet-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: white;
  letter-spacing: -0.5px;
}

.outlet-body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 420px;
}

.outlet-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: black;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-bottom: 24px;
  display: flex;
  width: fit-content;
}

.outlet-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.12);
}

.outlet-btn svg {
  transition: transform 0.3s ease;
}
.outlet-btn:hover svg {
  transform: translateX(4px);
}

.outlet-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-weight: 500;
}

@media (max-width: 900px) {
  .outlet-banner { padding: 80px 0; }
  .outlet-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .outlet-divider { display: none; }
  .outlet-number { font-size: 88px; }
  .outlet-pct { font-size: 44px; }
  .outlet-headline { font-size: 32px; }
  .outlet-body { margin: 0 auto 36px; }
  .outlet-btn { margin: 0 auto 24px; }
  .outlet-guarantee { justify-content: center; }
  .outlet-watermark { font-size: 160px; letter-spacing: -4px; }
}

