/* =============================================================
 * LIORA BABY — Custom Stylesheet
 * Bootstrap 5 + Font Awesome 6 üzerine tema katmanı
 * Geliştirici: Proda Medya
 * ============================================================= */

/* ---- CSS Değişkenleri ---- */
:root {
  --lb-cream:        #faf6f1;
  --lb-cream-2:      #f0e6d8;
  --lb-brown:        #6b4c3b;
  --lb-brown-light:  #8a6355;
  --lb-rose:         #c9a89a;
  --lb-rose-light:   #edddd7;
  --lb-gold:         #c9a87a;
  --lb-text:         #3d2b1f;
  --lb-white:        #ffffff;
  --lb-radius:       16px;
  --lb-shadow:       0 4px 24px rgba(107, 76, 59, 0.09);
  --lb-shadow-hover: 0 10px 36px rgba(107, 76, 59, 0.17);
  --lb-transition:   all 0.3s ease;
}

/* ---- Global ---- */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--lb-cream);
  color: var(--lb-text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--lb-brown);
}

img {
  max-width: 100%;
}

/* ---- Section Başlık Sistemi ---- */
.lb-section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lb-rose);
  margin-bottom: 0.6rem;
}

.lb-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--lb-brown);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.lb-section-subtitle {
  font-size: 0.97rem;
  color: #7a6359;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 0.5rem;
}

.lb-divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(to right, var(--lb-rose), var(--lb-gold));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.lb-divider-left {
  margin-left: 0;
  margin-right: auto;
}

/* ---- Duyuru Bandı ---- */
.lb-announcement-bar {
  background-color: var(--lb-brown);
  color: var(--lb-cream);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 9px 0;
  line-height: 1.6;
}

.lb-announcement-bar .separator {
  color: var(--lb-gold);
  margin: 0 0.875rem;
  opacity: 0.7;
}

/* ---- Navbar ---- */
.lb-navbar {
  background-color: var(--lb-white) !important;
  border-bottom: 1px solid rgba(107, 76, 59, 0.08);
  transition: box-shadow 0.3s ease;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.lb-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(107, 76, 59, 0.12);
}

.lb-navbar .navbar-brand img {
  height: 54px;
  width: auto;
}

.lb-navbar .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--lb-text) !important;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: var(--lb-transition);
}

.lb-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background-color: var(--lb-rose);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.lb-navbar .nav-link:hover,
.lb-navbar .nav-link.active {
  color: var(--lb-brown) !important;
}

.lb-navbar .nav-link:hover::after,
.lb-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.lb-navbar-social a {
  color: var(--lb-brown);
  font-size: 1.05rem;
  margin-left: 0.75rem;
  transition: var(--lb-transition);
  text-decoration: none;
}

.lb-navbar-social a:hover {
  color: var(--lb-rose);
  transform: translateY(-1px);
}

/* ---- Butonlar ---- */
.btn-lb-primary {
  background-color: var(--lb-brown);
  color: var(--lb-white) !important;
  border: 2px solid var(--lb-brown);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  display: inline-block;
  transition: var(--lb-transition);
  line-height: 1.5;
}

.btn-lb-primary:hover {
  background-color: var(--lb-brown-light);
  border-color: var(--lb-brown-light);
  transform: translateY(-2px);
  box-shadow: var(--lb-shadow);
}

.btn-lb-outline {
  background-color: transparent;
  color: var(--lb-brown) !important;
  border: 2px solid var(--lb-brown);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  display: inline-block;
  transition: var(--lb-transition);
  line-height: 1.5;
}

.btn-lb-outline:hover {
  background-color: var(--lb-brown);
  color: var(--lb-white) !important;
  transform: translateY(-2px);
}

/* ---- Hero ---- */
.lb-hero {
  background-color: var(--lb-cream);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.lb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--lb-rose-light);
  color: var(--lb-brown);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.lb-hero h1 {
  font-size: 2.9rem;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  color: var(--lb-brown);
}

.lb-hero-desc {
  font-size: 1.02rem;
  color: #7a6359;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}

.lb-hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 76, 59, 0.1);
}

.lb-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #7a6359;
  font-weight: 500;
}

.lb-hero-trust-item i {
  color: var(--lb-gold);
}

/* Hero Görsel Grid */
.lb-hero-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
}

.lb-hero-gallery-item {
  border-radius: var(--lb-radius);
  overflow: hidden;
}

.lb-hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.lb-hero-gallery-item:hover img {
  transform: scale(1.04);
}

.lb-hero-gallery-item.lb-hero-main {
  grid-row: 1 / 3;
}

/* ---- Güven Bandı ---- */
.lb-trust-bar {
  background-color: var(--lb-brown);
  padding: 2.25rem 0;
}

.lb-trust-item {
  text-align: center;
  color: var(--lb-cream);
  padding: 0.75rem 0.5rem;
}

.lb-trust-item i {
  font-size: 1.6rem;
  color: var(--lb-gold);
  display: block;
  margin-bottom: 0.55rem;
}

.lb-trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-family: 'DM Sans', sans-serif;
}

.lb-trust-item small {
  font-size: 0.76rem;
  opacity: 0.7;
  font-family: 'DM Sans', sans-serif;
}

/* ---- Section Genel ---- */
.lb-section {
  padding: 5rem 0;
}

.lb-section-alt {
  background-color: var(--lb-cream-2);
}

/* ---- Kategori Kartları ---- */
.lb-category-card {
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: var(--lb-shadow);
  transition: var(--lb-transition);
  background: var(--lb-white);
}

.lb-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lb-shadow-hover);
}

.lb-category-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.lb-category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.lb-category-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.lb-category-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.lb-category-card-body p {
  font-size: 0.85rem;
  color: #7a6359;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.lb-category-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--lb-brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--lb-transition);
}

.lb-category-link:hover {
  color: var(--lb-rose);
  gap: 0.6rem;
}

/* ---- Ürün Kartları ---- */
.lb-product-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: var(--lb-shadow);
  transition: var(--lb-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lb-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lb-shadow-hover);
}

.lb-product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.lb-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lb-product-card:hover .lb-product-img-wrap img {
  transform: scale(1.05);
}

.lb-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--lb-brown);
  color: var(--lb-cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
}

.lb-product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lb-product-card-body h3 {
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.lb-product-card-body p {
  font-size: 0.83rem;
  color: #7a6359;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.1rem;
}

/* ---- Hakkımızda Görsel ---- */
.lb-about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.lb-about-img-grid img {
  border-radius: var(--lb-radius);
  width: 100%;
  object-fit: cover;
  display: block;
}

.lb-about-img-grid img:first-child {
  height: 360px;
}

.lb-about-img-grid img:last-child {
  height: 275px;
}

/* ---- Galeri ---- */
.lb-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

.lb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lb-gallery-item:hover img {
  transform: scale(1.08);
}

.lb-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 76, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--lb-transition);
}

.lb-gallery-overlay i {
  color: var(--lb-white);
  font-size: 1.4rem;
}

.lb-gallery-item:hover .lb-gallery-overlay {
  opacity: 1;
}

/* ---- Yorum Kartları ---- */
.lb-review-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  padding: 1.75rem;
  border-left: 4px solid var(--lb-rose);
  box-shadow: var(--lb-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lb-review-stars {
  color: var(--lb-gold);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.1em;
}

.lb-review-card blockquote {
  font-size: 0.92rem;
  color: #5a4a43;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 1.1rem 0;
  flex: 1;
  padding: 0;
  border: none;
}

.lb-review-author strong {
  font-size: 0.87rem;
  color: var(--lb-brown);
  font-weight: 600;
  display: block;
}

.lb-review-author span {
  font-size: 0.78rem;
  color: #9a8a83;
}

/* ---- Blog Kartları ---- */
.lb-blog-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: var(--lb-shadow);
  transition: var(--lb-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lb-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-hover);
}

.lb-blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.lb-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lb-blog-card:hover .lb-blog-img-wrap img {
  transform: scale(1.05);
}

.lb-blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lb-blog-tag {
  display: inline-block;
  background-color: var(--lb-rose-light);
  color: var(--lb-brown);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.65rem;
}

.lb-blog-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.lb-blog-card-body p {
  font-size: 0.84rem;
  color: #7a6359;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.lb-blog-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--lb-brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  transition: var(--lb-transition);
}

.lb-blog-link:hover {
  color: var(--lb-rose);
  gap: 0.55rem;
}

/* ---- Instagram CTA ---- */
.lb-instagram-cta {
  background-color: var(--lb-cream-2);
  padding: 5.5rem 0;
  text-align: center;
}

.lb-instagram-cta--rose {
  background-color: var(--lb-brown);
}

.lb-instagram-cta--rose h2,
.lb-instagram-cta--rose p {
  color: var(--lb-cream);
}

.lb-instagram-cta--rose .lb-instagram-handle {
  color: var(--lb-gold);
}

.lb-instagram-cta--rose .btn-lb-primary {
  background-color: var(--lb-cream);
  border-color: var(--lb-cream);
  color: var(--lb-brown) !important;
}

.lb-instagram-cta--rose .btn-lb-primary:hover {
  background-color: var(--lb-gold);
  border-color: var(--lb-gold);
  color: var(--lb-brown) !important;
}

.lb-instagram-cta--rose .btn-lb-outline {
  border-color: rgba(250, 246, 241, 0.55);
  color: var(--lb-cream) !important;
}

.lb-instagram-cta--rose .btn-lb-outline:hover {
  background-color: rgba(250, 246, 241, 0.12);
  border-color: var(--lb-cream);
}

/* Soft pudra pembe — blog (bej) ve footer (kahve) arasında köprü */
.lb-instagram-cta--pink {
  background-color: var(--lb-rose-light);
}

.lb-instagram-cta--pink h2 {
  color: var(--lb-brown);
}

.lb-instagram-cta--pink p {
  color: #7a6359;
}

.lb-instagram-cta--pink .lb-instagram-handle {
  color: var(--lb-brown);
}

.lb-ig-icon {
  font-size: 3rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: inline-block;
}

.lb-instagram-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.lb-instagram-cta p {
  color: #7a6359;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.lb-instagram-handle {
  font-weight: 700;
  color: var(--lb-brown);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 2rem;
}

/* ---- Footer ---- */
.lb-footer {
  background-color: var(--lb-brown);
  color: var(--lb-cream);
  padding: 4.5rem 0 0;
}

.lb-footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--lb-cream);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.lb-footer h5 {
  font-family: 'DM Sans', sans-serif;
  color: var(--lb-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.lb-footer p,
.lb-footer address {
  font-size: 0.88rem;
  color: rgba(250, 246, 241, 0.72);
  line-height: 1.8;
  font-style: normal;
}

.lb-footer-nav a {
  color: rgba(250, 246, 241, 0.7);
  text-decoration: none;
  font-size: 0.87rem;
  transition: var(--lb-transition);
  display: block;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.lb-footer-nav a:hover {
  color: var(--lb-gold);
  padding-left: 5px;
}

.lb-footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lb-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--lb-cream) !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--lb-transition);
}

.lb-footer-social a:hover {
  background-color: var(--lb-rose);
  transform: translateY(-2px);
}

.lb-footer-divider {
  border-color: rgba(250, 246, 241, 0.12);
  margin: 2.5rem 0 1.25rem;
}

.lb-footer-bottom {
  font-size: 0.8rem;
  color: rgba(250, 246, 241, 0.45);
  padding-bottom: 1.5rem;
}

.lb-footer-bottom a {
  color: rgba(250, 246, 241, 0.45);
  text-decoration: none;
  transition: var(--lb-transition);
}

.lb-footer-bottom a:hover {
  color: var(--lb-gold);
}

/* ---- Ürün Kartı: Sepete Ekle + Detay Buton Grubu ---- */
.lb-product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.lb-btn-cart {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.75rem;
  font-size: 0.83rem;
}

.lb-btn-detail,
.btn-lb-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: 2px solid var(--lb-brown);
  color: var(--lb-brown);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--lb-transition);
  flex-shrink: 0;
}

.lb-btn-detail:hover,
.btn-lb-detail:hover {
  background-color: var(--lb-brown);
  color: var(--lb-white);
}

/* ---- Ürün Fiyat Alanı ---- */
.lb-product-price-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.lb-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lb-brown);
}

.lb-price-original {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #b09a90;
  text-decoration: line-through;
  font-weight: 400;
}

.lb-price-discounted {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #b5432a;
}

.lb-discount-badge {
  display: inline-block;
  background-color: #b5432a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
}

/* ---- Sepet Butonu (Navbar) ---- */
.lb-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-brown);
  text-decoration: none;
  font-size: 1.15rem;
  margin-left: 0.85rem;
  transition: var(--lb-transition);
}

.lb-cart-btn:hover {
  color: var(--lb-rose);
  transform: translateY(-1px);
}

.lb-cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  background-color: var(--lb-rose);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  border: 2px solid #fff;
}

/* ---- WhatsApp Floating ---- */
.lb-whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1050;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
  transition: var(--lb-transition);
}

.lb-whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: #ffffff !important;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .lb-hero {
    padding: 3rem 0 3.5rem;
  }

  .lb-hero h1 {
    font-size: 2.15rem;
  }

  .lb-section {
    padding: 3.5rem 0;
  }

  .lb-section-title {
    font-size: 1.7rem;
  }

  .lb-instagram-cta {
    padding: 3.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .lb-hero h1 {
    font-size: 1.85rem;
  }

  .lb-hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .lb-about-img-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lb-about-img-grid img:first-child {
    height: 200px;
  }

  .lb-about-img-grid img:last-child {
    height: 160px;
  }

  .lb-instagram-cta h2 {
    font-size: 1.6rem;
  }

  .lb-section-title {
    font-size: 1.55rem;
  }
}

@media (max-width: 575.98px) {
  .lb-trust-bar .col:nth-child(n+3) .lb-trust-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lb-footer {
    padding-top: 3rem;
  }
}
