:root {
  /* Brand Colors */
  --bg-dark: #0B0B0B;
  --bg-card: rgba(20, 20, 20, 0.7);
  --accent-gold: #D4AF37;
  --accent-amber: #b26a00;
  --text-main: #F4F4F5;
  --text-muted: #A1A1AA;
  
  /* Utilities */
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.3);
  --gold-glow-hover: 0 0 25px rgba(212, 175, 55, 0.6);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-md: 12px;
  --radius-lg: 20px;
  --section-h-size: clamp(2.2rem, 8vw, 3.5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  background: transparent;
}

nav.scrolled {
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: var(--glass-border);
  padding: 1rem 5%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.logo:hover {
  opacity: 0.8;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: var(--gold-glow);
}

.btn-gold:hover {
  background: #f0c94f;
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-hover);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: var(--gold-glow);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05); /* Slight zoom for parallax */
  animation: subtleZoom 20s infinite alternate;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11,11,11,0.6) 0%, var(--bg-dark) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    padding: 0 10%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

.mobile-cta {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: var(--gold-glow); }
  50% { transform: scale(1.02); box-shadow: var(--gold-glow-hover); }
  100% { transform: scale(1); box-shadow: var(--gold-glow); }
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.badge i {
  color: var(--accent-gold);
}

/* Sections */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Grid Layouts */
.grid-cols-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Category Cards */
.category-card {
  position: relative;
  background: #050505;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.2);
}

.category-card h3 {
  font-size: 1.5rem;
  color: white;
}

/* Product Cards */
.product-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.product-image {
  height: 250px;
  background: #0b0b0b;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.product-image img {
  max-height: 85%;
  width: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), var(--gold-glow);
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-size {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.product-card .btn {
  width: 100%;
}

/* How It Works */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent-gold);
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--glass-border);
  z-index: 1;
}

.step:last-child .step-line {
  display: none;
}

@media (max-width: 768px) {
  .step-line { display: none; }
}

/* Delivery Area */
.delivery-area {
  background: radial-gradient(circle at center, rgba(30,30,30,0.8) 0%, var(--bg-dark) 100%);
  border-top: var(--glass-border);
  border-bottom: var(--glass-border);
}

.delivery-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.area-tag {
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: var(--glass-border);
  color: var(--text-main);
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--text-muted);
  font-weight: 600;
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Premium Kenyan Flag Badge - Top Right */
.kenyan-flag-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-gold);
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), var(--gold-glow);
    animation: badgePulse 2s infinite alternate;
}

.kenyan-flag-img {
    width: 25px !important;
    height: auto;
    border-radius: 2px;
    margin-bottom: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.badg-text {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes badgePulse {
    from { transform: scale(1); border-color: var(--accent-gold); }
    to { transform: scale(1.05); border-color: #fff; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

/* Delivery Coverage Map */
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-info {
    text-align: left;
}

.delivery-map {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: var(--gold-glow);
    position: relative;
    background: var(--bg-card);
}

.delivery-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9);
}

@media (max-width: 900px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .delivery-info {
        text-align: center;
    }
}

/* Age Verification Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0B0B;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.6s ease-out, visibility 0.6s;
}

.age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-modal {
    background: var(--bg-card);
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), var(--gold-glow);
    border-top: 2px solid var(--accent-gold);
}

.age-gate-logo {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.age-gate-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-modal p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.age-gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 500px) {
    .age-gate-btns {
        flex-direction: column;
    }
    .age-gate-modal {
        padding: 2.5rem 1.5rem;
    }
}
/* Footer */
footer {
  padding: 4rem 5% 2rem;
  background: #050505;
  border-top: var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold) !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--bg-black) !important;
  transform: translateY(-5px) !important;
}

/* Blog Hub Styling */
.blog-hub {
  padding: 10rem 5% 4rem;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.blog-filter-btn {
  background: var(--bg-card);
  border: var(--glass-border);
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: var(--gold-glow);
}

.blog-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), var(--gold-glow);
}

.blog-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.blog-card .category-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

/* Utility to reveal elements on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-muted);
  border: var(--glass-border);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.search-input {
    width: 100%;
    background: rgba(20, 20, 20, 0.7);
    border: var(--glass-border);
    border-radius: 50px;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: var(--gold-glow);
    background: rgba(30, 30, 30, 0.9);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

#no-products-message {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
    display: none;
}

#no-products-message i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Global Collections Section */
.global-collections {
    background: linear-gradient(to bottom, #0B0B0B 0%, #050505 100%);
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.country-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.country-tab {
    background: rgba(20, 20, 20, 0.6);
    border: var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-muted);
    font-weight: 500;
}

.country-tab.active {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: var(--gold-glow);
    border-color: var(--accent-gold);
}

.collection-display {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    opacity: 0.08;
    pointer-events: none;
    transition: all 1s ease;
}

.collection-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    z-index: 2;
    padding: 2rem 0;
}

.collection-group {
    display: none;
    animation: fadeIn 0.8s ease-out forwards;
    width: 100%;
}

.collection-group.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.collection-grid .product-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
}

/* Infinite Scroll Loader */
.scroll-sentinel {
    grid-column: 1 / -1;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.loader-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

#no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

/* Kenyan Flag Badge Overlay */
.product-image {
    position: relative;
}

.kenyan-flag-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.kenyan-flag-img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.kenyan-flag-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
