
html, body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

* { 
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}

html { 
  scroll-behavior: auto;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: .75rem;
  font-weight: 600;
}

.btn-primary {
  background: #da6f0d;
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(.93);
}

.hidden {
  display: none !important;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efece2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 120px;
  height: 120px;
  background-image: url('https://i.postimg.cc/vBjDkrGd/logo-wafricastore.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.header-cart-icon {
  background: none;
  border: none;
  padding: 0.5rem;
  margin: 0;
  cursor: pointer;
  color: #001830;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  position: relative;
  text-decoration: none;
}

.header-cart-icon:hover {
  color: #da6f0d;
}

.header-icon-text {
  display: none; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.5px; margin-left: 6px; color: #001830;
}

@media (min-width: 640px) {
  .header-icon-text { display: inline; }
}

.header-cart-icon i {
  font-size: 1.5rem;
}

#cart-count-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background-color: #da6f0d;
  border-radius: 9999px;
  border: 2px solid white;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  padding: 0 3px;
  transform: translate(10%, -10%);
}

#cart-count-badge.show {
  display: flex;
}

.hamburger-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #001830;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger-btn:hover {
  color: #da6f0d;
}

.hamburger-btn .header-icon-text {
  display: none; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.5px; margin-left: 6px; color: #001830;
}

@media (min-width: 640px) {
  .hamburger-btn .header-icon-text { display: inline; }
}

#hamburger-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background-color: #ef4444;
  border-radius: 50%;
  border: 2px solid white;
  display: none;
  pointer-events: none;
  animation: badgePulse 2s ease-in-out infinite;
  color: white;
  font-size: 10px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#hamburger-badge.show {
  display: flex;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: .8; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  text-align: left;
  transition: background-color .2s ease;
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu a:hover {
  background-color: rgba(255, 255, 255, .1);
}

.mobile-menu a.menu-active {
  color: #da6f0d !important;
}

.mobile-menu a.menu-active i {
  color: #da6f0d !important;
}
.mobile-menu .has-dropdown { position: relative; }
.mobile-menu .has-dropdown > a { justify-content: space-between; }
.mobile-menu .dropdown-arrow { font-size: 0.7rem; margin-left: auto; transition: transform 0.3s ease; }
.mobile-menu #favori-menu-link { justify-content: flex-start; position: relative; }
.mobile-menu #favori-menu-link .favori-badge {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: linear-gradient(135deg, #da6f0d 0%, #f59e0b 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(218, 111, 13, 0.5);
  animation: favoriPopIn 0.3s ease-out;
}
.mobile-menu #favori-menu-link .favori-badge::before {
  display: none;
}
.mobile-menu #favori-menu-link .favori-badge.animate {
  animation: favoriPulse 0.4s ease-out;
}
.mobile-menu .has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.mobile-menu .dropdown-menu { display: none; background: rgba(255,255,255,0.05); }
.mobile-menu .has-dropdown.open .dropdown-menu { display: block; }
.mobile-menu .dropdown-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu .dropdown-menu a { padding-left: 2.5rem; font-size: 1rem; }
.mobile-menu a.menu-inactive,
.mobile-menu a.menu-inactive i {
  color: #6b7280 !important;
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
}
.mobile-menu-version {
  margin-top: auto;
  padding: 1.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  width: 100%;
}

.user-profile-section {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  width: 100%;
  box-sizing: border-box;
}

.user-profile-section .profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.user-profile-section .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-profile-section .user-info {
  flex: 1;
}

.user-profile-section .user-name {
  font-weight: 600;
  color: white;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.user-profile-section .user-fullname {
  color: #da6f0d;
  font-size: .9rem;
  font-weight: 500;
  margin: .2rem 0 0 0;
  line-height: 1.3;
  display: none;
}

.user-profile-section .user-fullname.is-visible {
  display: block;
}

.user-profile-section .user-id {
  background-color: #da6f0d;
  color: white;
  padding: .15rem .4rem;
  border-radius: .375rem;
  font-weight: 500;
  font-size: .85rem;
}

.user-profile-section .user-detail {
  color: #cbd5e1;
  font-size: .85rem;
  margin: .25rem 0;
  line-height: 1.3;
}

.user-profile-section .balance {
  font-weight: 600;
  color: #da6f0d;
}

.user-profile-section .view-profile-btn {
  display: block;
  width: 100%;
  padding: .8rem;
  background-color: #da6f0d;
  color: white;
  border: none;
  border-radius: .5rem;
  font-weight: 500;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color .2s ease;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.user-profile-section .view-profile-btn:hover {
  background-color: #c2630c;
}

.user-profile-section .logout-btn {
  display: block;
  width: 100%;
  padding: .8rem;
  background-color: #3f3f46;
  color: white;
  border: none;
  border-radius: .5rem;
  font-weight: 500;
  margin-top: .5rem;
  cursor: pointer;
  transition: background-color .2s ease;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.user-profile-section .logout-btn:hover {
  background-color: #52525b;
}

.user-profile-section .login-btn {
  display: block;
  width: 100%;
  padding: .8rem;
  background-color: #da6f0d;
  color: white;
  border: none;
  border-radius: .5rem;
  font-weight: 500;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color .2s ease;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.user-profile-section .login-btn:hover {
  background-color: #c2630c;
}

.user-profile-section .not-connected-section p {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

#countryPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 70;
  justify-content: center;
  align-items: center;
}

#countryPopup.show {
  display: flex;
}

#countryPopup .popup-container {
  background-color: white;
  border-radius: .5rem;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
  padding: 2rem;
}

#countryPopup .close-btn {
  position: absolute;
  top: .5rem;
  right: .5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9ca3af;
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color .2s ease;
}

#countryPopup .close-btn:hover {
  background-color: #f3f4f6;
  color: #ef4444;
}

#countryPopup .popup-header {
  text-align: center;
  margin-bottom: 1rem;
}

#countryPopup .popup-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 .75rem 0;
}

#countryPopup .popup-search-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

#countryPopup .popup-search-wrap i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.85rem;
  pointer-events: none;
  line-height: 1;
}

#countryPopup .popup-search {
  width: 100%;
  padding: 0.6rem 0.75rem 0.6rem 2.25rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  line-height: 1.4;
  transition: border-color 0.2s ease;
}

#countryPopup .popup-search:focus {
  outline: none;
  border-color: #da6f0d;
  box-shadow: 0 0 0 3px rgba(218, 111, 13, 0.2);
}

#countryPopup .popup-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.country-option {
  display: block;
  padding: .75rem 1rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: .375rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease;
  cursor: pointer;
}

.country-option:hover {
  background-color: #e5e7eb;
  border-color: #d1d5db;
}

.country-option.active {
  background-color: #da6f0d;
  color: white;
  border-color: #da6f0d;
}

.country-option.hidden-option {
  display: none;
}

#countryNoResults {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

#countryNoResults.show {
  display: block;
}

#countryNoResults i {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: block;
  color: #d1d5db;
}

#countryNoResults p {
  font-size: .875rem;
  color: #9ca3af;
  line-height: 1.5;
}

.nav-secondary {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  z-index: 48;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  height: 3rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
}

.nav-secondary::-webkit-scrollbar {
  display: none;
}

.nav-secondary ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: .25rem 0;
  justify-content: center;
  min-width: max-content;
  align-items: center;
  height: 100%;
}

.nav-secondary li {
  margin: 0 .5rem;
}

.nav-secondary a {
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .75rem;
  border-radius: .375rem;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  line-height: 1;
}

.nav-secondary a.active {
  color: #da6f0d !important;
}

.nav-secondary a:not(.active) {
  color: #001830 !important;
}

.nav-secondary a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.nav-secondary .hamburger-menu-btn {
  margin-right: .25rem;
  color: #001830;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: .375rem;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-secondary .hamburger-menu-btn:hover {
  color: #da6f0d;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.original-price {
  text-decoration: line-through;
  color: #718096;
  font-size: .875rem;
  margin-bottom: .25rem;
}

.promo-price {
  color: #e53e3e;
  font-weight: bold;
  font-size: 1.125rem;
}

.global-container {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 4rem);
  align-items: stretch;
}

.sidebar {
  width: 160px;
  min-height: 100%;
  display: none;
  background-color: #da6f0d;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 1;
}

.sidebar-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.main-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .sidebar {
    display: block;
  }
  .main-content {
    max-width: calc(100% - 320px);
  }
}

.sidebar.color-5 {
  background-color: #da6f0d;
}

.fav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
}

.fav-section-header {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.fav-section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.fav-count-badge {
  background: #f3f4f6;
  color: #6b7280;
  font-size: .8rem;
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-weight: 500;
}

.fav-country-indicator {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff3e8;
  color: #da6f0d;
  border: 1px solid #fde8d0;
  font-size: .78rem;
  font-weight: 600;
  padding: .2rem .75rem;
  border-radius: 9999px;
}

.fav-country-indicator-hidden {
  display: none !important;
}

.fav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 480px) {
  .fav-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 640px) {
  .fav-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .fav-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .fav-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.fav-item-card {
  width: 100%;
  background-color: white;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .05);
  transition: box-shadow .25s ease, border-color .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.fav-item-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.fav-item-card .card-img-spacer {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: #f3f4f6;
}

.fav-item-card .card-img-spacer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fav-item-card .card-body {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-badge-card {
  position: absolute;
  top: .4rem;
  right: .4rem;
  background: #e53e3e;
  color: white;
  padding: .1rem .4rem;
  border-radius: 9999px;
  font-size: .6rem;
  font-weight: 700;
  z-index: 10;
}

.remove-btn {
  position: absolute;
  top: .5rem;
  left: .5rem;
  background-color: rgba(255, 255, 255, .88);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ef4444;
  font-size: .9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
  transition: background-color .2s ease, transform .1s ease;
  z-index: 20;
}

.remove-btn:hover {
  background-color: rgba(239, 68, 68, .12);
  transform: scale(1.1);
}

.fav-item-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: .3rem;
  font-size: .82rem;
  line-height: 1.35;
}

.fav-item-card .price-normal {
  color: #da6f0d;
  font-weight: 700;
  font-size: .85rem;
  margin-top: .1rem;
}

.fav-item-card .original-price {
  font-size: .74rem;
}

.fav-item-card .promo-price {
  font-size: .85rem;
}

.fav-item-card .location-info {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: #6b7280;
  margin-top: .3rem;
}

.fav-item-card .location-info i {
  color: #da6f0d;
  font-size: .65rem;
  flex-shrink: 0;
}

.fav-item-card .location-info span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  overflow: hidden;
}

.fav-item-card .vendor-info {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: #6b7280;
  margin-top: .2rem;
}

.fav-item-card .vendor-info i {
  color: #da6f0d;
  font-size: .65rem;
  flex-shrink: 0;
}

.fav-item-card .qty-info {
  font-size: .72rem;
  color: #6b7280;
  margin-top: .2rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.fav-item-card .qty-info i {
  color: #da6f0d;
  font-size: .65rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .fav-item-card h3             { font-size: .88rem; }
  .fav-item-card .price-normal,
  .fav-item-card .promo-price   { font-size: .92rem; }
  .fav-item-card .original-price{ font-size: .78rem; }
  .fav-item-card .location-info,
  .fav-item-card .vendor-info,
  .fav-item-card .qty-info      { font-size: .76rem; }
}

@media (min-width: 768px) {
  .fav-item-card h3             { font-size: .92rem; }
  .fav-item-card .price-normal,
  .fav-item-card .promo-price   { font-size: .98rem; }
  .fav-item-card .original-price{ font-size: .82rem; }
  .fav-item-card .location-info,
  .fav-item-card .vendor-info,
  .fav-item-card .qty-info      { font-size: .78rem; }
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #6b7280;
  width: 100%;
  max-width: 420px;
}

.empty-state-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3e8 0%, #ffe0c0 100%);
  margin-bottom: 1rem;
  animation: pulseRing 2.2s ease-in-out infinite;
}

.empty-state-icon-wrap i {
  font-size: 2.2rem;
  color: #da6f0d;
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(218, 111, 13, .35); }
  60%  { box-shadow: 0 0 0 16px rgba(218, 111, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 111, 13, 0); }
}

.empty-state h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: #1f2937;
  font-weight: 600;
}

.empty-state p {
  font-size: .875rem;
  margin: 0 0 1.25rem 0;
  line-height: 1.6;
}

.empty-state .btn-explorer {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.3rem;
  background: #da6f0d;
  color: white;
  border-radius: .6rem;
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  transition: background .2s ease;
  font-family: 'Poppins', sans-serif;
}

.empty-state .btn-explorer:hover {
  background: #b85d0a;
}

#lp-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1f2937;
  color: white;
  padding: .65rem 1.25rem;
  border-radius: 2rem;
  font-size: .875rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  gap: .5rem;
}

#lp-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#lp-toast i {
  font-size: 1rem;
}

#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #da6f0d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .2s ease;
  z-index: 1000;
}

#backToTop:hover {
  background-color: #b85d0a;
  transform: translateY(-2px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

footer {
  background-color: #001830;
  color: #9ca3af;
  z-index: 1;
}

footer p {
  font-size: .875rem;
  margin: 0;
}

.header-spacer {
  height: 7rem;
}

.fav-header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.favori-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: linear-gradient(135deg, #da6f0d 0%, #f59e0b 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 11px;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(218, 111, 13, 0.4);
  animation: favoriPopIn 0.3s ease-out;
  position: relative;
}

.favori-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.favori-badge.animate {
  animation: favoriPulse 0.4s ease-out;
}

@keyframes favoriPopIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes favoriPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}