/* ===== Featured Section Wrapper ===== */
.custom-featured-section {
  background: #0f0f0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.custom-featured-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  z-index: 0;
  transform: rotate(15deg);
}

/* ===== Section Header ===== */
.custom-section-header {
  position: relative;
  z-index: 1;
}

.custom-section-subtitle {
  color: #d10024;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom-section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: inline-block;
}

.custom-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d10024;
  border-radius: 2px;
}

/* ===== Featured Cards ===== */
.custom-featured-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  margin: 10px;
  position: relative;
}

.custom-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(209, 0, 36, 0.4);
}

/* ===== Image Wrapper ===== */
.custom-featured-img-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.custom-featured-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.custom-featured-card:hover .custom-featured-img {
  transform: scale(1.1);
  filter: brightness(1.15);
}

/* ===== Category Title ===== */
.custom-featured-title {
  background: #121212;
  padding: 12px 0;
}

.custom-featured-link {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.custom-featured-link:hover {
  color: #d10024;
  letter-spacing: 1px;
}

/* ===== Carousel Adjustments ===== */
.custom-featured-carousel .owl-nav button {
  background: #d10024;
  color: #fff !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.custom-featured-carousel .owl-nav button:hover {
  background: #ff2e47;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .custom-section-title {
    font-size: 1.6rem;
  }

  .custom-featured-img {
    height: 160px;
  }

  .custom-featured-card {
    margin: 5px;
  }
}

/* ===== Section Wrapper ===== */
.custom-product-section {
  background: #0f0f0f;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* ===== Section Header ===== */
.custom-section-header {
  position: relative;
}

.custom-section-subtitle {
  color: #d10024;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1rem;
}

.custom-section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  position: relative;
}

.custom-section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #d10024;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ===== Product Card ===== */
.custom-product-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(209, 0, 36, 0.4);
}

/* ===== Image Wrapper ===== */
.custom-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Keeps square consistency */
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* For browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
  .custom-product-image {
    height: 260px;
  }
}

/* Image Handling */
.custom-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* This keeps image proportions perfect */
  transition: transform 0.4s ease, filter 0.3s ease;
}

.custom-product-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* ===== Discount Badge ===== */
.custom-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d10024;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* ===== Hover Actions ===== */
.custom-hover-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
}

.custom-hover-actions a {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-hover-actions a:hover {
  background: #d10024;
}

.custom-product-card:hover .custom-hover-actions {
  opacity: 1;
  visibility: visible;
}

/* ===== Product Info ===== */
.custom-product-info {
  padding: 18px 15px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.custom-product-title a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  min-height: 40px;
}

.custom-product-title a:hover {
  color: #d10024;
}

/* ===== Pricing ===== */
.custom-product-pricing {
  margin: 10px 0;
}

.price-new {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 6px;
}

.price-old {
  color: #888;
  font-size: 0.9rem;
  text-decoration: line-through;
}

/* ===== Rating ===== */
.custom-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stars-outer {
  position: relative;
  display: inline-block;
  color: #444;
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #ffc107;
}

/* ===== Seller Info ===== */
.custom-seller-info {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 12px;
}

.custom-seller-info a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-seller-info a:hover {
  color: #d10024;
}

/* ===== Add to Cart Button ===== */
.custom-add-cart-btn {
  background: #d10024;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  padding: 10px 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.custom-add-cart-btn:hover {
  background: #ff2e47;
  transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .custom-product-image {
    aspect-ratio: 4 / 3;
  }

  .custom-section-title {
    font-size: 1.6rem;
  }

  .custom-product-title a {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .custom-product-info {
    padding: 14px;
  }

  .custom-product-title a {
    min-height: unset;
  }
}

/* ===== ROOT FOOTER WRAPPER ===== */
.custom-footer-wrapper {
  background-size: cover;
  background-position: center;
  background-color: #0f0f0f;
  color: #fff;
  padding-top: 70px;
  position: relative;
}

.custom-footer-wrapper h5 {
  color: #ffffff !important;
}

.custom-footer-wrapper p {
  color: #ffffff !important;
}

/* ===== OVERLAY EFFECT ===== */
.custom-footer-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(2px);
}

/* Ensure content stays above overlay */
.custom-footer-wrapper>* {
  position: relative;
  z-index: 2;
}

/* ===== MIDDLE SECTION ===== */
.custom-footer-middle {
  padding-bottom: 50px;
}

.custom-footer-container {
  max-width: 100% !important;
}

/* ===== FOOTER TITLES ===== */
.custom-footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.custom-footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #d10024;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

/* ===== TEXT ===== */
.custom-footer-text {
  color: #bbb;
  line-height: 1.6;
}

/* ===== LOGO ===== */
.custom-footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
}

/* ===== SOCIAL MEDIA ===== */
.custom-footer-social ul,
.custom-footer-social li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer-social a {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.custom-footer-social a:hover {
  color: #d10024;
}

/* ===== CONTACT SECTION ===== */
.custom-footer-contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.custom-footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.custom-footer-icon {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  border-radius: 8px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  color: #fff;
  transition: background 0.3s ease;
}

.custom-footer-contact-item:hover .custom-footer-icon {
  background: #d10024;
}

/* ===== QUICK LINKS ===== */
.custom-footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.custom-footer-links li a {
  color: #bbb;
  display: block;
  padding: 6px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-footer-links li a:hover {
  color: #d10024;
  padding-left: 5px;
}

/* ===== NEWSLETTER ===== */
.custom-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-footer-input {
  background: #e6c9c9;
  border: 1px solid #333;
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 8px;
}

.custom-footer-btn {
  background: #d10024;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
}

.custom-footer-btn:hover {
  background: #ff2e47;
}

/* ===== FOOTER BOTTOM ===== */
.custom-footer-bottom {
  background: #0a0a0a;
  padding: 15px 0;
  border-top: 1px solid #222;
}

.custom-footer-copy {
  color: #888;
  font-size: 0.9rem;
}

.custom-footer-payment img {
  max-height: 32px;
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .custom-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .custom-footer-title {
    text-align: center;
  }

  .custom-footer-widget {
    text-align: center;
  }

  .custom-footer-contact-item {
    justify-content: center;
  }
}

/* =================================================================================
   DEALS SECTION WRAPPER
================================================================================= */
.custom-deals-wrapper {
  background: #0f0f0f !important;
  padding: 70px 0;
  color: #fff;
  position: relative;
}

.custom-deals-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 0, 36, 0.05), transparent 70%);
  pointer-events: none;
}

/* =================================================================================
   SECTION TITLES
================================================================================= */
.custom-deals-subtitle {
  color: #d10024;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-deals-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.custom-deals-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d10024;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* =================================================================================
   DEAL BANNER (LEFT SIDE)
================================================================================= */
.custom-deals-banner {
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.custom-deals-banner:hover {
  transform: translateY(-5px);
}

.custom-deals-banner-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.custom-deals-banner-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.custom-deals-btn {
  background: #d10024;
  padding: 8px 15px;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.25s ease;
}

.custom-deals-btn:hover {
  background: #ff2e47;
}

/* =================================================================================
   DEAL PRODUCT CARD
================================================================================= */
.custom-deals-card {
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  padding-bottom: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  position: relative;
}

.custom-deals-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(209, 0, 36, 0.35);
}

/* =================================================================================
   IMAGE AREA
================================================================================= */
.custom-deals-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-deals-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: 0.4s ease;
}

.custom-deals-card:hover .custom-deals-image {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* =================================================================================
   DISCOUNT BADGE
================================================================================= */
.custom-deals-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d10024;
  padding: 5px 10px;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* =================================================================================
   🔥 NEW COUNTDOWN STYLE (SUPER CLEAN & MODERN)
================================================================================= */
.custom-deals-countdown {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(209, 0, 36, 0.3);
}

.custom-deals-countdown div {
  display: flex;
  gap: 6px;
}

/* Timer Box */
.custom-deals-countdown div span {
  background: #1a1a1a;
  border: 1px solid #333;
  min-width: 42px;
  padding: 6px 6px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.78rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.1;
}

.custom-deals-countdown small {
  display: block;
  font-size: 0.6rem;
  margin-top: 2px;
}

/* =================================================================================
   CUSTOM HORIZONTAL CARD (NEW DESIGN)
================================================================================= */
.custom-horizontal-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  /* Horizontal layout */
  align-items: stretch;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #2a2a2a;
}

.custom-horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(209, 0, 36, 0.25);
  border-color: #d10024;
}

/* --- Left Side: Image --- */
.custom-horizontal-image {
  width: 40%;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.custom-horizontal-image a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-horizontal-image img {
  max-width: 100%;
  max-height: 140px;
  /* Constrain height */
  object-fit: contain;
  transition: transform 0.4s ease;
}

.custom-horizontal-card:hover .custom-horizontal-image img {
  transform: scale(1.1);
}

/* Small Discount Badge */
.custom-small-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #d10024;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}

/* --- Right Side: Info --- */
.custom-horizontal-info {
  width: 60%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Brand */
.custom-h-brand {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

/* Title */
.custom-h-title {
  margin: 0 0 8px;
  line-height: 1.3;
}

.custom-h-title a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom-h-title a:hover {
  color: #d10024;
}

/* Price */
.custom-h-price {
  margin-bottom: 12px;
}

.h-price-new {
  color: #d10024;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 8px;
}

.h-price-old {
  color: #666;
  font-size: 0.85rem;
  text-decoration: line-through;
}

/* Action Button */
.custom-h-action {
  margin-top: auto;
  /* Push to bottom if content is short */
}

.custom-h-btn {
  background: transparent;
  border: 1px solid #d10024;
  color: #d10024;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-h-btn:hover {
  background: #d10024;
  color: #fff;
  box-shadow: 0 4px 10px rgba(209, 0, 36, 0.4);
}

/* Responsive Tweak */
@media (max-width: 400px) {
  .custom-horizontal-card {
    flex-direction: column;
  }

  .custom-horizontal-image,
  .custom-horizontal-info {
    width: 100%;
  }

  .custom-horizontal-image img {
    max-height: 180px;
  }
}

/* =================================================================================
   PRODUCT TITLE
================================================================================= */
.custom-deals-title-text {
  text-align: center;
  font-size: 1rem;
  margin-top: 12px;
  font-weight: 600;
}

.custom-deals-title-text a {
  color: #fff;
}

.custom-deals-title-text a:hover {
  color: #d10024;
}

/* =================================================================================
   RATING
================================================================================= */
.custom-deals-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* =================================================================================
   SELLER NAME
================================================================================= */
.custom-deals-seller {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 5px;
  color: #aaa;
}

.custom-deals-seller a {
  color: #fff;
  font-weight: 600;
}

.custom-deals-seller a:hover {
  color: #d10024;
}

/* =================================================================================
   PRICE SECTION
================================================================================= */
.custom-deals-prices {
  text-align: center;
  margin: 12px 0;
}

.custom-deals-prices .price-new {
  font-size: 1.2rem;
  font-weight: 700;
}

.custom-deals-prices .price-old {
  font-size: 0.9rem;
  color: #777;
  text-decoration: line-through;
  margin-left: 5px;
}

/* =================================================================================
   ADD TO CART + ICONS
================================================================================= */
.custom-deals-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.custom-deals-addcart {
  background: #d10024;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.25s ease;
}

.custom-deals-addcart:hover {
  background: #ff2e47;
}

.custom-deals-icons {
  display: flex;
  gap: 10px;
}

.custom-deals-icons a {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease;
}

.custom-deals-icons a:hover {
  background: #d10024;
}

/* =================================================================================
   RESPONSIVE
================================================================================= */
@media (max-width: 768px) {
  .custom-deals-title {
    font-size: 1.6rem;
  }

  .custom-deals-countdown div span {
    min-width: 35px;
    font-size: 0.7rem;
  }
}

/* =====================================
   BRAND SECTION WRAPPER
===================================== */
.custom-brand-section {
  background: #0f0f0f;
  position: relative;
}

.custom-brand-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.custom-brand-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d10024;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* =====================================
   5 COLUMN LAYOUT
===================================== */
.custom-brand-col {
  width: 20%;
}

@media (max-width: 991px) {
  .custom-brand-col {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .custom-brand-col {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .custom-brand-col {
    width: 100%;
  }
}

/* =====================================
   LINK RESET (VERY IMPORTANT)
===================================== */
.custom-brand-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* Remove anchor inline behaviour */
.custom-brand-link:focus,
.custom-brand-link:hover {
  text-decoration: none;
  color: inherit;
}

/* =====================================
   BRAND CARD
===================================== */
.custom-brand-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
  border: 1px solid #222;
  height: 100%;
}

.custom-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(209, 0, 36, 0.3);
  border-color: #d10024;
}

/* =====================================
   IMAGE & NAME
===================================== */

.custom-brand-img {
  width: 48px;
  height: 48px;
  background: #111;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-brand-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-brand-name {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  flex: 1;
}