/* 🎨 SMOKER'S CLUB WEBSITE STYLESHEET */
/* Color Palette Implementation */
:root {
  --primary-black: #000000;
  --mint-vapor-green: #8BF1D1;
  --chrome-silver: #D1D5D7;
  --dark-gray: #0a0a0a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--primary-black);
 overflow-x: hidden;
}

/* Typography Stack */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
 font-weight: 900;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.2;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.4;
  margin-bottom: 1rem;
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
}

/* Bebas Neue for hero tagline */
.bebas-neue {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
 letter-spacing: 0.1em;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Verification Gate */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-in-out;
}

.age-gate-card {
  background: linear-gradient(145deg, #000000, #0a0a0a);
  border: 2px solid var(--mint-vapor-green);
  border-radius: 8px;
 padding: 2rem;
  text-align: center;
  box-shadow: 0 20px rgba(139, 241, 209, 0.3);
  max-width: 400px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 241, 209, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.age-gate-card:hover::before {
  opacity: 1;
}

.age-gate-card h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(24px, 4vw, 28px);
}

.age-gate-card p {
  color: var(--chrome-silver);
  margin-bottom: 1.5rem;
  font-size: clamp(14px, 2vw, 16px);
}

.age-btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 0.5rem 0;
  border: none;
  border-radius: 4px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
 cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.age-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.age-btn:hover::after {
  width: 300px;
  height: 300px;
}

.age-enter-btn {
  background: linear-gradient(135deg, #8BF1D1 0%, #6DD4B5 100%);
  color: var(--primary-black);
}

.age-enter-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #d1d5d7 10%);
  color: var(--mint-vapor-green);
  box-shadow: 0 0 15px rgba(139, 241, 209, 0.5);
}

.age-exit-btn {
  background: linear-gradient(135deg, #D1D5D7 0%, #a8a8a8 100%);
  color: var(--primary-black);
}

.age-exit-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #d1d5d7 100%);
  color: var(--chrome-silver);
  box-shadow: 0 0 15px rgba(209, 213, 215, 0.5);
}

.age-footer {
  color: var(--chrome-silver);
  font-size: clamp(12px, 2vw, 14px);
  margin-top: 1rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-black);
 padding: 1rem 0;
 z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}

header.hidden {
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  padding: 0 20px;
}

.logo {
  height: 80px; /* Larger logo in header */
  width: auto;
}

/* Main Content */
main {
 margin-top: 0; /* Adjusted for fixed header */
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  background-size: 200% 200%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Subtle animated gradient background */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
 z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.logo-container {
  margin-bottom: 2rem;
}

.hero-logo {
  height: 120px; /* 20X bigger than before */
  width: auto;
}

.hero-headline {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(139, 241, 209, 0.3);
}

.hero-subhead {
  font-size: clamp(18px, 3vw, 20px);
  color: var(--chrome-silver);
  font-weight: 600;
  margin-bottom: 2rem;
}

.cta-button {
  background: linear-gradient(135deg, #8BF1D1 0%, #6DD4B5 100%);
  color: var(--primary-black);
 border: none;
 padding: 16px 32px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(139, 241, 209, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
 top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::after {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  color: var(--primary-black);
  box-shadow: 0 0 20px rgba(139, 241, 209, 0.5);
  transform: translateY(-2px);
}

.hours-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8BF1D1 0%, #6DD4B5 100%);
  color: var(--primary-black);
 padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0.15);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(139, 241, 209, 0.4); }
 70% { box-shadow: 0 0 0 10px rgba(139, 241, 209, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 241, 209, 0); }
}

.hours-badge.closed {
  background: linear-gradient(135deg, #D1D5D7 0%, #a8a8a8 100%);
  color: var(--primary-black);
}

.scroll-indicator {
 position: absolute;
 bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

/* Location & Contact Section */
.location-section {
  background-color: var(--primary-black);
  padding: 5rem 0;
  border-top: 1px solid var(--chrome-silver);
  border-bottom: 1px solid var(--chrome-silver);
}

.location-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.address-block a {
 color: var(--white);
  text-decoration: none;
  display: block;
}

.address-block a:hover {
  color: var(--mint-vapor-green);
  text-decoration: underline;
}

.phone-number a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  display: block;
  margin: 1rem 0;
}

.phone-number a:hover {
  color: var(--mint-vapor-green);
}

.hours-list {
  color: var(--chrome-silver);
}

.hours-list p {
  margin: 0.5rem 0;
}

.trust-elements {
  margin-top: 1.5rem;
 padding-top: 1.5rem;
  border-top: 1px solid var(--chrome-silver);
}

.trust-elements p {
  color: var(--chrome-silver);
  font-style: italic;
}

.location-map {
  height: 400px;
  border-radius: 8px;
 overflow: hidden;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.location-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 241, 209, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.location-map:hover::before {
  opacity: 1;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Product Categories Section */
.products-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
  padding: 5rem 0;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: linear-gradient(145deg, #000000, #0a0a0a);
  border: 2px solid transparent;
 border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 280px;
 display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 241, 209, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--mint-vapor-green);
  box-shadow: 0 12px 30px rgba(139, 241, 209, 0.3);
  background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
}

.category-icon {
  margin-bottom: 1rem;
}

.product-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--chrome-silver);
  font-size: clamp(14px, 2vw, 16px);
}

/* Benefits Section */
.benefits-section {
  background-color: var(--primary-black);
  padding: 5rem 0;
}

.benefits-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-block {
  background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
  border-top: 4px solid var(--mint-vapor-green);
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-block:hover {
 transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.benefit-block h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.benefit-block p {
 color: var(--chrome-silver);
}

/* Social Proof Section */
.social-proof-section {
  background: linear-gradient(135deg, #0a0a 0%, #0f0f0f 100%);
  padding: 5rem 0;
}

.social-proof-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.review-display {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.star-rating {
  margin-bottom: 1rem;
}

.stars {
  font-size: 32px;
  color: var(--mint-vapor-green);
 margin-right: 0.5rem;
}

.rating-text {
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
}

.review-count {
  color: var(--chrome-silver);
  font-size: 18px;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-quote {
  background: linear-gradient(145deg, #000000, #0a0a0a);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--mint-vapor-green);
  position: relative;
  overflow: hidden;
}

.review-quote::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 241, 209, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.review-quote:hover::before {
  opacity: 1;
}

.review-quote p {
  font-style: italic;
  color: var(--chrome-silver);
  margin-bottom: 1rem;
}

.review-attribution {
  text-align: right;
  color: var(--mint-vapor-green);
  font-weight: 600;
}

.review-cta {
  margin-top: 2rem;
}

.review-button {
  display: inline-block;
 background: linear-gradient(135deg, #8BF1D1 0%, #6DD4B5 100%);
  color: var(--primary-black);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 241, 209, 0.3);
}

.review-button::after {
 content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.review-button:hover::after {
  width: 300px;
  height: 300px;
}

.review-button:hover {
  color: var(--primary-black);
  box-shadow: 0 0 20px rgba(139, 241, 209, 0.5);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-black);
  padding: 5rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
 background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
  color: var(--white);
  margin-bottom: 1rem;
  cursor: pointer;
}

.faq-item p {
  color: var(--chrome-silver);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active p {
  max-height: 500px;
  padding-top: 1rem;
}

/* Product Detail Sections */
.product-detail-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
  padding: 5rem 0;
}

.product-detail-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
 position: relative;
 display: block;
  width: 100%;
}

.product-detail-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--mint-vapor-green);
 border-radius: 2px;
}

.product-detail-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.product-detail-content p {
  color: var(--chrome-silver);
  margin-bottom: 1.5rem;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
}

/* Drive-Thru Section */
.drive-thru-section {
  background-color: var(--primary-black);
  padding: 5rem 0;
  border-top: 1px solid var(--chrome-silver);
  border-bottom: 1px solid var(--chrome-silver);
}

.drive-thru-section h2 {
  text-align: center;
  margin-bottom: 3rem;
 color: var(--white);
  position: relative;
  display: block;
  width: 100%;
}

.drive-thru-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--mint-vapor-green);
  border-radius: 2px;
}

.drive-thru-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.drive-thru-content p {
  color: var(--chrome-silver);
  margin-bottom: 1.5rem;
 font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
}

/* Footer */
.footer {
  background-color: var(--primary-black);
  border-top: 1px solid var(--mint-vapor-green);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--chrome-silver);
  font-style: italic;
  margin-bottom: 1rem;
}

.copyright {
  color: var(--chrome-silver);
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.license {
  color: var(--chrome-silver);
  font-size: 12px;
  margin-bottom: 1rem;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
 color: var(--chrome-silver);
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--mint-vapor-green);
  text-decoration: underline;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  color: var(--mint-vapor-green);
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-bar {
  display: none; /* Hidden by default, shown on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-black);
  border-top: 2px solid var(--mint-vapor-green);
  display: flex;
 z-index: 1000;
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 20px; /* Increased from 16px for better touch target */
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
 font-size: 18px;
  transition: background-color 0.3s ease;
  min-height: 60px; /* Ensures 48px+ touch target */
}

.call-btn {
  background: linear-gradient(135deg, #8BF1D1 0%, #6DD4B5 100%);
  color: var(--primary-black);
}

.call-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #d1d5d7 100%);
  color: var(--mint-vapor-green);
  box-shadow: 0 0 15px rgba(139, 241, 209, 0.5);
}

.directions-btn {
  background: linear-gradient(135deg, #D1D5D7 0%, #a8a8a8 100%);
  color: var(--primary-black);
}

.directions-btn:hover {
 background: linear-gradient(135deg, #ffffff 0%, #d1d5d7 100%);
  color: var(--chrome-silver);
  box-shadow: 0 0 15px rgba(209, 213, 215, 0.5);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: clamp(32px, 6vw, 40px);
  }
  
  h2 {
    font-size: clamp(24px, 5vw, 32px);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(28px, 6vw, 32px);
  }
  
  h2 {
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .hero-headline {
    font-size: clamp(24px, 6vw, 32px);
 }
  
  .hero-subhead {
    font-size: clamp(16px, 3vw, 18px);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
 .mobile-sticky-bar {
    display: flex;
  }
  
  .hours-badge {
    position: static;
    display: inline-block;
    margin: 1rem auto;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .location-section,
  .products-section,
  .benefits-section,
  .social-proof-section,
  .faq-section {
    padding: 3rem 0;
  }
  
  .sticky-btn {
    padding: 20px; /* Increased padding for better touch targets */
    font-size: 18px;
    min-height: 60px;
  }
  
  .cta-button {
    padding: 18px 36px; /* Increased padding for better touch targets */
    font-size: 18px;
    min-width: 200px;
  }
  
  .product-card {
    min-height: 200px; /* Easier to tap */
    padding: 2rem;
  }
}

/* Accessibility & WCAG 2.1 AA Compliance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-reveal {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus indicators for keyboard navigation */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--mint-vapor-green);
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--mint-vapor-green);
  color: var(--primary-black);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}
