/* ================================================================
   KiaKia Livraison - Charte Graphique Custom CSS
   Palette: Or #C8922A | Brun foncé #2C1A0A | Crème #FDF8F0
   ================================================================ */

/* ---- Animations Keyframes ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 146, 42, 0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(200, 146, 42, 0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Global Typography ---- */
body {
  font-family: "Poppins", "Lato", sans-serif !important;
  background: #fff;
  color: #6b5744;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Lato", sans-serif !important;
  color: #2C1A0A;
}

/* ---- Header / Navbar ---- */
header {
  background: #1A0F02 !important;
  border-bottom: 1px solid rgba(200, 146, 42, 0.25);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}
header.sticky-header,
header.header--sticky {
  background: #0D0800 !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}
.navbar-brand img,
.logo img {
  max-height: 50px;
  width: auto;
}
/* Nav links */
header .nav-item a,
header .navbar-nav .nav-link {
  color: rgba(253, 248, 240, 0.85) !important;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}
header .nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}
header .nav-item a:hover::after { width: 100%; }
header .nav-item a:hover { color: #E0B456 !important; }
/* Navbar overrides for dark header */
.navbar-bottom-wrapper .menu li a { color: rgba(253, 248, 240, 0.85) !important; }
.navbar-bottom-wrapper .menu li a:hover,
.navbar-bottom-wrapper .menu li a.active { color: #E0B456 !important; }
.dropdown--btn { color: rgba(253, 248, 240, 0.85) !important; }
.nav-toggle span { background: rgba(253, 248, 240, 0.85) !important; }

/* Header CTA buttons */
.cmn--btn,
.header--btn {
  background: var(--gradient-gold) !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s ease;
}
.cmn--btn:hover,
.header--btn:hover {
  background: linear-gradient(135deg, #E0B456 0%, #C8922A 100%) !important;
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.35);
}

/* ---- Hero / Banner Section ---- */
.banner-section,
.hero-section {
  background: linear-gradient(135deg, #FDF8F0 0%, #fef3e0 50%, #FDF8F0 100%);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.banner-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.banner-section::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224, 180, 86, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.banner-section .banner-content,
.banner-section .hero-content {
  animation: fadeInLeft 0.8s ease both;
}
.banner-section .banner-img,
.banner-section .hero-img {
  animation: scaleIn 0.9s ease both;
}
.banner-section h1,
.banner-section .title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #2C1A0A;
  line-height: 1.2;
}
.banner-section h1 span,
.banner-section .title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner-section .subtitle,
.banner-section .text {
  color: #6b5744;
  font-size: 17px;
  line-height: 1.7;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.7s ease both;
}
.section-header .title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #2C1A0A;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header .title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--gradient-gold);
  border-radius: 4px;
  margin: 14px auto 0;
}
.section-header .text {
  color: #6b5744;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Cards & Items (general) ---- */
.card,
.feature-item,
.module--item,
.category-item {
  border: 1px solid rgba(200, 146, 42, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(44, 26, 10, 0.06);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.card:hover,
.feature-item:hover,
.module--item:hover,
.category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(200, 146, 42, 0.2);
  border-color: rgba(200, 146, 42, 0.3);
}

/* ---- Module Section ---- */
.module-section {
  background: #fff;
  padding: 80px 0;
}
.module--item {
  padding: 30px 24px;
  text-align: center;
}
.module--item .icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(224, 180, 86, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.module--item:hover .icon {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}
.module--item:hover .icon img,
.module--item:hover .icon svg {
  filter: brightness(10);
}
.module--item .title {
  font-size: 17px;
  font-weight: 600;
  color: #2C1A0A;
}

/* ---- Feature Section ---- */
.feature-section {
  background: linear-gradient(160deg, #FDF8F0 0%, #fff 60%);
  padding: 80px 0;
}
.feature-item {
  padding: 28px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-item .icon {
  min-width: 52px; height: 52px;
  background: rgba(200, 146, 42, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.feature-item:hover .icon {
  background: var(--gradient-gold);
  transform: rotate(-8deg) scale(1.08);
}
.feature-item:hover .icon img,
.feature-item:hover .icon svg {
  filter: brightness(10);
}
.feature-item .content .title {
  font-size: 16px;
  font-weight: 600;
  color: #2C1A0A;
  margin-bottom: 6px;
}
.feature-item .content .text {
  font-size: 14px;
  color: #6b5744;
  line-height: 1.6;
}

/* ---- Counter Section ---- */
.counter-section {
  background: var(--gradient-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8922A' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-section .counter-item {
  text-align: center;
  animation: fadeInUp 0.6s ease both;
}
.counter-section .counter-item .count {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.counter-section .counter-item .label {
  color: rgba(253, 248, 240, 0.8);
  font-size: 14px;
  margin-top: 8px;
  font-weight: 400;
}

/* ---- Download App Section ---- */
.download-section,
.app-download-section {
  background: linear-gradient(135deg, #2C1A0A 0%, #4a2f1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.08);
}
.download-section .title,
.app-download-section .title {
  color: #FDF8F0;
  font-size: 2.5rem;
  font-weight: 700;
}
.download-section .text,
.app-download-section .text {
  color: rgba(253, 248, 240, 0.75);
}
.download-section .app-btn-grp a,
.app-download-section .app-btn-grp a {
  border: 2px solid rgba(200, 146, 42, 0.5);
  border-radius: 12px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: rgba(200, 146, 42, 0.08);
}
.download-section .app-btn-grp a:hover,
.app-download-section .app-btn-grp a:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* ---- Testimonial Section ---- */
.testimonial-section {
  background: #FDF8F0;
  padding: 80px 0;
}
.testimonial-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  box-shadow: 0 4px 20px rgba(44, 26, 10, 0.06);
  transition: all 0.3s ease;
}
.testimonial-item:hover {
  box-shadow: 0 12px 36px rgba(200, 146, 42, 0.15);
  transform: translateY(-4px);
}
.testimonial-item .rating i,
.testimonial-item .stars i {
  color: #C8922A;
}
.testimonial-item .author-name {
  color: #2C1A0A;
  font-weight: 600;
}

/* ---- Zone Section ---- */
.zone-section {
  background: #fff;
  padding: 70px 0;
}
.zone-item {
  border-radius: 12px;
  border: 1px solid rgba(200, 146, 42, 0.15);
  padding: 20px;
  transition: all 0.3s ease;
  background: #fff;
}
.zone-item:hover {
  background: linear-gradient(135deg, rgba(200, 146, 42, 0.06), rgba(224, 180, 86, 0.04));
  border-color: #C8922A;
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.12);
}

/* ---- Earn Money / Refer Section ---- */
.earn-money-section,
.refer-section {
  background: linear-gradient(160deg, #FDF8F0 0%, #fef3e0 100%);
  padding: 80px 0;
}
.earn-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.earn-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(44, 26, 10, 0.2);
}

/* ---- Newsletter Section (hidden) ---- */
.newsletter-section {
  display: none !important;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E") center/80px 80px;
}
.newsletter-section .title {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(44, 26, 10, 0.2);
}
.newsletter-section .text {
  color: rgba(255,255,255,0.85);
}
.newsletter-section .input--grp {
  background: rgba(255,255,255,0.95);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44, 26, 10, 0.2);
  padding: 6px 6px 6px 24px;
  display: flex;
  align-items: center;
}
.newsletter-section .input--grp input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 15px;
  color: #2C1A0A;
  outline: none;
  padding: 6px 0;
}
.newsletter-section .input--grp input::placeholder {
  color: #8a7060;
}
.newsletter-section .search-btn {
  background: var(--gradient-gold);
  border: none;
  border-radius: 50px;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-section .search-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.5);
}

/* ---- Footer ---- */
footer {
  background: #2C1A0A;
  color: rgba(253, 248, 240, 0.8);
}
.footer-bottom {
  padding: 60px 0 30px;
}
.footer-widget .subtitle {
  color: #C8922A !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 16px;
}
.footer-widget ul li a {
  color: rgba(253, 248, 240, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}
.footer-widget ul li a:hover {
  color: #E0B456;
  padding-left: 4px;
}
.footer-widget .txt {
  color: rgba(253, 248, 240, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-icon {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.social-icon li a {
  width: 38px; height: 38px;
  background: rgba(200, 146, 42, 0.15);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}
.social-icon li a:hover {
  background: var(--gradient-gold) !important;
  transform: translateY(-3px) scale(1.1) !important;
  padding-left: 0 !important;
}
.copyright {
  color: rgba(253, 248, 240, 0.5);
  font-size: 13px;
  border-top: 1px solid rgba(200, 146, 42, 0.15);
  padding-top: 20px;
  margin-top: 30px;
}
.footer-logo img {
  max-height: 55px;
  filter: brightness(1.1);
  margin-bottom: 16px;
}
.app-btn-grp {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.app-btn-grp a {
  transition: all 0.3s ease;
}
.app-btn-grp a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FDF8F0; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#C8922A, #E0B456);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: #2C1A0A; }

/* ---- Selection ---- */
::selection {
  background: rgba(200, 146, 42, 0.25);
  color: #2C1A0A;
}

/* ---- Buttons general ---- */
.btn-base,
button.cmn--btn,
a.cmn--btn {
  background: var(--gradient-gold) !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
button.cmn--btn:hover,
a.cmn--btn:hover {
  background: linear-gradient(135deg, #E0B456 0%, #C8922A 100%) !important;
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.4);
}

/* ---- Badges & Tags ---- */
.badge-gold {
  background: rgba(200, 146, 42, 0.12);
  color: #C8922A;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(200, 146, 42, 0.3);
}

/* ---- Why Choose Section ---- */
.why-choose-section {
  background: #fff;
  padding: 80px 0;
}
.why-choose-item {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  background: #fff;
  transition: all 0.35s ease;
  height: 100%;
}
.why-choose-item:hover {
  background: linear-gradient(135deg, #FDF8F0, #fff);
  border-color: #C8922A;
  box-shadow: 0 12px 36px rgba(200, 146, 42, 0.15);
  transform: translateY(-6px);
}
.why-choose-item .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(200, 146, 42, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.why-choose-item:hover .icon-wrap {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

/* ---- Contact Section ---- */
.contact-section {
  background: linear-gradient(160deg, #FDF8F0 0%, #fff 100%);
  padding: 80px 0;
}
.contact-form .form-control {
  border: 1.5px solid rgba(200, 146, 42, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #2C1A0A;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form .form-control:focus {
  border-color: #C8922A;
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
  outline: none;
}
.contact-form .form-label {
  color: #2C1A0A;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-form textarea.form-control {
  resize: none;
  min-height: 120px;
}

/* ---- Dropdown menus ---- */
.dropdown-list {
  border: 1px solid rgba(200, 146, 42, 0.15) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(44, 26, 10, 0.12) !important;
  background: #fff !important;
  overflow: hidden;
  animation: slideDown 0.2s ease;
}
.dropdown-list li a {
  color: #2C1A0A !important;
  padding: 10px 18px !important;
  font-size: 14px;
  transition: background 0.2s ease;
}
.dropdown-list li a:hover {
  background: rgba(200, 146, 42, 0.08) !important;
  color: #C8922A !important;
}

/* ---- WOW Animation Overrides ---- */
.wow {
  visibility: hidden;
}
.wow.animated {
  visibility: visible;
}

/* ---- Loading / Preloader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: #FDF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.page-loader::after {
  content: '';
  width: 50px; height: 50px;
  border: 4px solid rgba(200, 146, 42, 0.2);
  border-top-color: #C8922A;
  border-radius: 50%;
  animation: rotateSlow 0.8s linear infinite;
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 991px) {
  header { padding: 12px 0; }
  .banner-section { padding-top: 70px; }
  .section-header { margin-bottom: 36px; }
}
@media (max-width: 767px) {
  .banner-section h1,
  .banner-section .title { font-size: 1.8rem; }
  .counter-section .counter-item .count { font-size: 2.2rem; }
  .newsletter-section .input--grp { flex-direction: column; border-radius: 12px; padding: 12px; }
  .newsletter-section .input--grp input { width: 100%; padding: 6px 0; }
  .newsletter-section .search-btn { width: 100%; border-radius: 8px; height: 42px; }
}

/* ---- Shimmer button effect ---- */
.cmn--btn.shimmer-btn {
  background: var(--gradient-gold) !important;
}

/* ---- Floating CTA decorative dots ---- */
.deco-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: inline-block;
}

/* ===== Professional Footer ===== */
.site-footer {
  background: #0D0800;
  color: rgba(253, 248, 240, 0.75);
}
.footer-main {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}
.footer-brand .footer-logo-img {
  max-height: 55px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-desc {
  color: rgba(253, 248, 240, 0.58);
  font-size: 14px;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 0;
}
.footer-heading {
  color: #E0B456;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li { margin-top: 10px; }
.footer-links li a {
  color: rgba(253, 248, 240, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}
.footer-links li a:hover { color: #E0B456; padding-left: 5px; }
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(253, 248, 240, 0.6);
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a {
  color: rgba(253, 248, 240, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-list li a:hover { color: #E0B456; }
.footer-bar {
  background: #060300;
  padding: 16px 0;
}
.copyright-text {
  color: rgba(253, 248, 240, 0.38);
  font-size: 12px;
}
.footer-bar-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-bar-links a {
  color: rgba(253, 248, 240, 0.4);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bar-links a:hover { color: #E0B456; }
.footer-bar-links .separator { color: rgba(253, 248, 240, 0.2); }
@media (max-width: 991.9px) {
  .navbar-bottom-wrapper .menu {
    background: #1A0F02 !important;
    border-top: 1px solid rgba(200, 146, 42, 0.15) !important;
  }
}
@media (max-width: 575px) {
  .footer-bar .d-flex { flex-direction: column; text-align: center; }
}
