/* ============================================================
   BABY FASHION — Premium Redesign CSS
   Color Palette:
     --bf-blue:   #0505cc
     --bf-orange: #f16722
     --bf-yellow: #f4d207
     --bf-red:    #d61a36
     --bf-green:  #6abc45
   ============================================================ */

:root {
  --bf-blue:        #0505cc;
  --bf-blue-light:  #1a1ae0;
  --bf-blue-dark:   #0404aa;
  --bf-orange:      #f16722;
  --bf-orange-dark: #d95510;
  --bf-yellow:      #f4d207;
  --bf-red:         #d61a36;
  --bf-green:       #6abc45;
  --bf-white:       #ffffff;
  --bf-soft-bg:     #f8f9ff;
  --bf-soft-pink:   #fff5f7;
  --bf-text-dark:   #1a1a2e;
  --bf-text-mid:    #444;
  --bf-text-light:  #888;
  --bf-radius:      14px;
  --bf-radius-sm:   8px;
  --bf-shadow-sm:   0 2px 12px rgba(5,5,204,.08);
  --bf-shadow-md:   0 8px 32px rgba(5,5,204,.13);
  --bf-shadow-hover:0 16px 48px rgba(5,5,204,.18);
  --bf-transition:  all .35s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   GLOBAL RESETS / TYPOGRAPHY
   ============================================================ */
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bf-soft-bg);
  color: var(--bf-text-dark);
}

a, button { transition: var(--bf-transition); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  background: linear-gradient(135deg, #0505cc 0%, #1a1ae0 50%, #f16722 100%);
}
.loader {
  background:
    radial-gradient(farthest-side, var(--bf-orange) 94%, transparent) top/9px 9px no-repeat,
    conic-gradient(transparent 30%, var(--bf-white));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 0);
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-to-top {
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-orange));
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 16px rgba(5,5,204,.3);
}
.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--bf-orange), var(--bf-blue));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(5,5,204,.4);
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.bf-topbar {
  background: linear-gradient(90deg, var(--bf-blue) 0%, #1a1ae0 50%, var(--bf-blue-dark) 100%);
  padding: 8px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bf-topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.04) 40px,
    rgba(255,255,255,.04) 80px
  );
}
.bf-topbar p {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--bf-white);
  letter-spacing: .5px;
  line-height: 1;
  position: relative;
}
.bf-topbar p strong { color: var(--bf-yellow); }

/* ============================================================
   HEADER — base (sticky handled purely by script.js .sticky-menu)
   ============================================================ */
.header_area {
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header_area .middle_header_area {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(5,5,204,.08);
}
.header_area .middle_header_area .middle_header_main .left_area .logo img {
  width: 80px;
  transition: transform .3s ease;
}
.header_area .middle_header_area .middle_header_main .left_area .logo img:hover {
  transform: scale(1.04);
}

/* Search bar */
.header_area .middle_header_area .middle_header_main .left_area .other_options .search_area_ .input_groups {
  width: 420px;
}
.header_area .middle_header_area .middle_header_main .left_area .other_options .search_area_ .input_groups input {
  height: 44px;
  border: 2px solid rgba(5,5,204,.15);
  border-radius: 22px;
  padding: 0 48px 0 20px;
  font-size: 14px;
  background: var(--bf-soft-bg);
  transition: var(--bf-transition);
}
.header_area .middle_header_area .middle_header_main .left_area .other_options .search_area_ .input_groups input:focus {
  border-color: var(--bf-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(5,5,204,.08);
}
.header_area .middle_header_area .middle_header_main .left_area .other_options .search_area_ .input_groups button {
  right: 14px;
  color: var(--bf-blue);
  font-size: 15px;
}
.header_area .middle_header_area .middle_header_main .left_area .other_options .search_area_ .input_groups button:hover {
  color: var(--bf-orange);
}

/* Cart & Profile icons */
.header_area .right_area .cart_ .cart_btn {
  color: var(--bf-text-dark);
  position: relative;
  padding: 6px 10px;
  border-radius: var(--bf-radius-sm);
}
.header_area .right_area .cart_ .cart_btn:hover {
  color: var(--bf-blue);
  background: rgba(5,5,204,.06);
}
.header_area .right_area .cart_ i { font-size: 20px; }
.header_area .right_area .cart_ span { font-size: 12px; font-weight: 600; }
.header_area .right_area .cart_ .badge {
  background: var(--bf-red) !important;
  width: 20px; height: 20px;
  font-size: 10px;
  top: -6px; right: -4px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
}
.header_area .right_area .profile_ button {
  color: var(--bf-text-dark);
  padding: 6px 10px;
  border-radius: var(--bf-radius-sm);
}
.header_area .right_area .profile_ button:hover { color: var(--bf-blue); background: rgba(5,5,204,.06); }
.header_area .right_area .profile_ button i { font-size: 20px; }
.header_area .right_area .profile_ button span { font-size: 12px; font-weight: 600; }

/* Cart dropdown */
.header_area .right_area .cart_ .cart_options_ {
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow-md);
  border: 1px solid rgba(5,5,204,.08);
}
.header_area .right_area .cart_ .cart_options_ .button_groups .btn {
  background: linear-gradient(135deg, var(--bf-red), #b51428);
  border-radius: var(--bf-radius-sm);
}
.header_area .right_area .cart_ .cart_options_ .button_groups .btn:hover {
  background: linear-gradient(135deg, var(--bf-orange), var(--bf-orange-dark));
}

/* ============================================================
   HEADER — NAVIGATION BAR
   ============================================================ */
.header_area .menu_area {
  background: linear-gradient(90deg, var(--bf-blue) 0%, var(--bf-blue-light) 100%);
  position: relative;
}
.header_area .menu_area::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bf-yellow), var(--bf-orange), var(--bf-red), var(--bf-green), var(--bf-yellow));
  background-size: 300% 100%;
  animation: bf-nav-shimmer 4s linear infinite;
}
@keyframes bf-nav-shimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}
.header_area .menu_area ul li a {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  line-height: 50px;
  padding: 0 18px;
  position: relative;
  transition: var(--bf-transition);
}
.header_area .menu_area ul li a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 18px; right: 18px;
  height: 2px;
  background: var(--bf-yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.header_area .menu_area ul li:hover > a,
.header_area .menu_area ul li.active > a {
  color: var(--bf-yellow);
  background: transparent;
}
.header_area .menu_area ul li:hover > a::after,
.header_area .menu_area ul li.active > a::after {
  transform: scaleX(1);
}
/* Dropdown */
.header_area .menu_area ul li ul {
  background: #fff;
  border-radius: 0 0 var(--bf-radius) var(--bf-radius);
  box-shadow: var(--bf-shadow-md);
  border-top: 3px solid var(--bf-orange);
  visibility: hidden; opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.header_area .menu_area ul li:hover ul {
  visibility: visible; opacity: 1; transform: translateY(0);
}
.header_area .menu_area ul li ul li a {
  color: var(--bf-text-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  letter-spacing: 0;
}
.header_area .menu_area ul li ul li a::after { display: none; }
.header_area .menu_area ul li ul li a:hover {
  color: var(--bf-blue);
  background: rgba(5,5,204,.04);
  padding-left: 24px;
}

/* ============================================================
   MOBILE HEADER — white theme so logo colours are not clashed
   ============================================================ */
.mobile-menu-area .mobile-topbar {
  background: #ffffff !important;
  border-bottom: 3px solid var(--bf-orange);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 8px 0;
}
/* Hamburger icon */
.mobile-menu-area .mobile-topbar .bars i {
  color: var(--bf-blue) !important;
  font-size: 22px;
}
/* Cart & profile icons — dark on white */
.mobile-menu-area .mobile-topbar .right_area .cart_btn {
  color: var(--bf-text-dark) !important;
}
.mobile-menu-area .mobile-topbar .right_area .profile_ button {
  color: var(--bf-text-dark) !important;
}
.mobile-menu-area .mobile-topbar .right_area .cart_ span,
.mobile-menu-area .mobile-topbar .right_area .profile_ button span {
  color: var(--bf-text-mid) !important;
  font-size: 11px;
  font-weight: 600;
}
.mobile-menu-area .mobile-topbar .right_area .cart_ i,
.mobile-menu-area .mobile-topbar .right_area .profile_ button i {
  color: var(--bf-blue) !important;
  font-size: 20px;
}
/* Cart badge stays red */
.mobile-menu-area .mobile-topbar .right_area .cart_ .badge {
  background: var(--bf-red) !important;
}
/* Mobile slide drawer */
.mobile-menu-main {
  background: #fff;
  border-right: 3px solid var(--bf-blue);
}
.mobile-menu-main .menu-list ul li a {
  color: var(--bf-text-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--bf-transition);
}
.mobile-menu-main .menu-list ul li a:hover {
  color: var(--bf-blue);
  background: rgba(5,5,204,.04);
  padding-left: 28px;
}
.mobile-menu-main .menu-body .menu-list ul li a:hover {
  color: var(--bf-blue) !important;
  background: rgba(5,5,204,.04);
}
.mobile-menu-main .close-mobile-menu i {
  color: var(--bf-red);
}

/* Mobile search bar */
.mobile_search {
  background: #fff;
  border-top: 2px solid rgba(5,5,204,.1);
  padding: 10px 0;
}
.mobile_search .input_groups input {
  border: 2px solid rgba(5,5,204,.15);
  border-radius: 22px;
  padding: 0 45px;
  height: 44px;
  background: var(--bf-soft-bg);
}
.mobile_search .input_groups input:focus {
  border-color: var(--bf-blue);
  background: #fff;
}
.mobile_search .input_groups .search { color: var(--bf-blue); }
.mobile_search .input_groups .close { color: var(--bf-red); }

/* ============================================================
   MOBILE BOTTOM NAV (footer_menu_area)
   ============================================================ */
.footer_menu_area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--bf-blue), var(--bf-orange), var(--bf-green), var(--bf-red)) 1;
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
  z-index: 998;
  border-radius: 18px 18px 0 0;
  padding: 0 8px;
}
.footer_menu_area .container {
  padding: 0 8px;
}
.footer_menu_area ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
}
.footer_menu_area ul li {
  flex: 1;
  display: flex;
  justify-content: center;
}
.footer_menu_area ul li a,
.footer_menu_area ul li button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 10px;
  font-weight: 600;
  padding: 10px 4px 8px;
  gap: 3px;
  width: 100%;
  background: transparent;
  border: 0;
  letter-spacing: .2px;
  transition: color .2s ease, transform .2s ease;
  position: relative;
}
.footer_menu_area ul li a i,
.footer_menu_area ul li button i {
  font-size: 20px;
  display: block;
  line-height: 1;
  transition: transform .2s ease;
}
.footer_menu_area ul li a span,
.footer_menu_area ul li button span {
  display: block;
  font-size: 10px;
  line-height: 1;
}
/* Active state */
.footer_menu_area ul li.active a,
.footer_menu_area ul li.active button {
  color: var(--bf-blue);
}
.footer_menu_area ul li.active a i,
.footer_menu_area ul li.active button i {
  transform: translateY(-3px);
}
/* Active indicator dot */
.footer_menu_area ul li.active a::after,
.footer_menu_area ul li.active button::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bf-blue);
}
/* Hover */
.footer_menu_area ul li a:hover,
.footer_menu_area ul li button:hover {
  color: var(--bf-orange);
}
.footer_menu_area ul li a:hover i,
.footer_menu_area ul li button:hover i {
  transform: translateY(-3px);
}
/* Extra bottom spacing so content isn't hidden behind this bar */
body { padding-bottom: 64px; }
@media (min-width: 992px) {
  body { padding-bottom: 0; }
}

/* ============================================================
   STICKY HEADER — full header visible, topbar hides, smooth entry
   ============================================================ */
.sticky-menu {
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.10) !important;
  animation: bf-fadeInDown .3s ease !important;
}
@keyframes bf-fadeInDown {
  from { opacity: .8; transform: translateY(-6px); }
  to   { opacity: 1;  transform: translateY(0); }
}
/* Show logo+search bar even when sticky (override style.css display:none) */
.sticky-menu .middle_header_area {
  display: flex !important;
  padding: 6px 0 !important;
}
/* Topbar hides when sticky — body class added by JS */
body.is-sticky .bf-topbar {
  display: none !important;
}
#header-fixed-height.active-height {
  height: 114px !important;
}

/* ============================================================
   PRODUCT CARD — PREMIUM REDESIGN
   ============================================================ */
.bf-product-card {
  background: #fff;
  border-radius: var(--bf-radius);
  overflow: hidden;
  border: 1.5px solid transparent;
  box-shadow: var(--bf-shadow-sm);
  transition: var(--bf-transition);
  cursor: pointer;
  position: relative;
}
.bf-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--bf-radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-orange), var(--bf-green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
  pointer-events: none;
}
.bf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bf-shadow-hover);
}
.bf-product-card:hover::before { opacity: 1; }

/* Image wrapper — uses dynamic logo as placeholder via CSS var */
.bf-product-card .bf-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f0f2ff var(--img-placeholder-logo) no-repeat center center;
  background-size: 40% auto;
}

/* All images inside the card — start hidden, fade in on load */
.bf-product-card .bf-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform .4s ease, opacity .35s ease;
  position: relative;
  z-index: 1;
  background: transparent;
}
/* Visible once loaded */
.bf-product-card .bf-card-image img.bf-img-visible {
  opacity: 1;
}
/* Already-cached images (complete before JS runs) */
.bf-product-card .bf-card-image img:not([src=""]):not(.bf-img-secondary) {
  /* progressive enhancement: script handles this, CSS fallback below */
}

/* Lightweight shimmer overlay while loading */
.bf-product-card .bf-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.45) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: bf-card-shimmer 1.8s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  transition: opacity .3s ease;
}
/* Hide shimmer once primary image loaded */
.bf-product-card .bf-card-image:has(.bf-img-primary.bf-img-visible)::after {
  opacity: 0;
}
@keyframes bf-card-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Primary image zoom on hover */
.bf-product-card:hover .bf-card-image .bf-img-primary {
  transform: scale(1.06);
}

/* Secondary image fade-in on hover */
.bf-product-card .bf-card-image .bf-img-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 3;
}
.bf-product-card:hover .bf-card-image .bf-img-secondary {
  opacity: 1;
}

/* Discount badge */
.bf-product-card .bf-discount-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--bf-red), #b51428);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(214,26,54,.35);
  animation: bf-badge-pop .3s ease;
}
@keyframes bf-badge-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  80%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

/* New badge */
.bf-product-card .bf-new-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--bf-green), #4ea332);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 5;
  letter-spacing: .3px;
}

/* Hover action buttons overlay */
.bf-product-card .bf-card-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(0deg, rgba(5,5,204,.6) 0%, rgba(5,5,204,.15) 60%, transparent 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.bf-product-card:hover .bf-card-actions {
  transform: translateY(0);
  opacity: 1;
}
.bf-card-actions .bf-btn-buy,
.bf-mobile-action .bf-btn-buy {
  flex: 1;
  text-align: center;
  padding: 9px 14px;
  background: linear-gradient(135deg, var(--bf-orange), var(--bf-orange-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 22px;
  letter-spacing: .4px;
  box-shadow: 0 4px 12px rgba(241,103,34,.4);
  transition: var(--bf-transition);
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.bf-card-actions .bf-btn-buy:hover,
.bf-mobile-action .bf-btn-buy:hover {
  background: linear-gradient(135deg, #e8520d, var(--bf-orange));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(241,103,34,.5);
  color: #fff;
}

/* Card body */
.bf-product-card .bf-card-body {
  padding: 14px 16px 16px;
  background: #fff;
}
.bf-product-card .bf-card-body .bf-product-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bf-text-dark);
  line-height: 1.45;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.bf-product-card .bf-card-body .bf-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bf-product-card .bf-card-body .bf-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--bf-blue);
}
.bf-product-card .bf-card-body .bf-price-original {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--bf-text-light);
  text-decoration: line-through;
}

/* Rating stars */
.bf-product-card .bf-card-body .bf-stars {
  display: flex;
  gap: 2px;
  margin-top: 6px;
}
.bf-product-card .bf-card-body .bf-stars i {
  font-size: 11px;
  color: var(--bf-yellow);
}

/* ============================================================
   CATEGORY SECTION TITLE
   ============================================================ */
.category_title .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--bf-text-dark);
  position: relative;
}
.category_title .title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--bf-blue), var(--bf-orange));
  border-radius: 2px;
  margin-top: 6px;
}
.category_title .view_btn {
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-blue-light));
  border-radius: 22px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}
.category_title .view_btn:hover {
  background: linear-gradient(135deg, var(--bf-orange), var(--bf-orange-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(241,103,34,.35);
}

/* ============================================================
   FOOTER — PREMIUM REDESIGN
   ============================================================ */
.footer_area {
  background: linear-gradient(160deg, #0b0b3d 0%, #0505cc 40%, #0a0a60 100%);
  padding: 60px 0 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.footer_area::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,103,34,.2) 0%, transparent 70%);
  pointer-events: none;
}
.footer_area::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,188,69,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer top accent stripe */
.footer_area .bf-footer-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--bf-yellow), var(--bf-orange), var(--bf-red), var(--bf-green), var(--bf-blue), var(--bf-yellow));
  background-size: 300% 100%;
  animation: bf-nav-shimmer 5s linear infinite;
  margin-bottom: 48px;
  border-radius: 2px;
}

/* Footer info text */
.footer_area .footer_main .left_info .info_item .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bf-yellow);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
  position: relative;
}
.footer_area .footer_main .left_info .info_item .title::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--bf-orange);
  border-radius: 2px;
  margin-top: 6px;
}
.footer_area .footer_main .left_info .info_item div,
.footer_area .footer_main .left_info .info_item p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  line-height: 26px;
}
.footer_area .footer_main .left_info .info_item ul li { margin-bottom: 8px; }
.footer_area .footer_main .left_info .info_item ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  position: relative;
  padding-left: 0;
  transition: var(--bf-transition);
}
.footer_area .footer_main .left_info .info_item ul li a::before {
  content: '›';
  color: var(--bf-orange);
  margin-right: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  display: inline-block;
  transform: translateX(-8px);
}
.footer_area .footer_main .left_info .info_item ul li a:hover {
  color: var(--bf-yellow);
  padding-left: 14px;
}
.footer_area .footer_main .left_info .info_item ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Newsletter form */
.footer_area .footer_main .right_info .input_groups label {
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-yellow);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
.footer_area .footer_main .right_info .input_groups small {
  color: rgba(255,255,255,.55);
  font-size: 11.5px;
}
.footer_area .footer_main .right_info .input_groups .input_field input {
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 22px;
  padding: 0 110px 0 44px;
  height: 46px;
  font-size: 13px;
  transition: var(--bf-transition);
}
.footer_area .footer_main .right_info .input_groups .input_field input::placeholder {
  color: rgba(255,255,255,.45);
}
.footer_area .footer_main .right_info .input_groups .input_field input:focus {
  border-color: var(--bf-orange);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 4px rgba(241,103,34,.15);
  outline: none;
}
.footer_area .footer_main .right_info .input_groups .input_field .email_icon i {
  color: rgba(255,255,255,.6);
}
.footer_area .footer_main .right_info .input_groups .input_field button {
  background: linear-gradient(135deg, var(--bf-orange), var(--bf-orange-dark));
  border-radius: 0 22px 22px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  height: 46px;
  padding: 6px 18px;
}
.footer_area .footer_main .right_info .input_groups .input_field button:hover {
  background: linear-gradient(135deg, var(--bf-yellow), #d4b500);
  color: var(--bf-text-dark);
}

/* Footer bottom bar */
.footer_area .footer_btm {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  margin-top: 48px;
  backdrop-filter: blur(6px);
}
.footer_area .footer_btm .left p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.footer_area .footer_btm .middle span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.footer_area .footer_btm .middle a {
  width: 34px; height: 34px;
  line-height: 34px;
  border-radius: 50%;
  transition: var(--bf-transition);
  color: #fff;
  font-size: 14px;
}
.footer_area .footer_btm .middle a:nth-child(1) { background: #3b5998; }
.footer_area .footer_btm .middle a:nth-child(2) { background: #1da1f2; }
.footer_area .footer_btm .middle a:nth-child(3) { background: #bd081c; }
.footer_area .footer_btm .middle a:nth-child(4) {
  background: linear-gradient(45deg, #405de6, #833ab4, #c13584, #fd1d1d);
}
.footer_area .footer_btm .middle a:hover {
  transform: translateY(-3px) scale(1.12);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .header_area .middle_header_area .middle_header_main .left_area .other_options .search_area_ .input_groups {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .footer_area .footer_main .left_info { column-gap: 40px; }
}
@media (max-width: 767px) {
  .footer_area .footer_main .left_info { flex-direction: column; gap: 32px; }
  .footer_area .footer_main .right_info { max-width: 100%; }
  .bf-topbar p { font-size: 11px; }
}
@media (max-width: 575px) {
  .bf-product-card .bf-card-body .bf-price { font-size: 14px; }
  .bf-product-card .bf-card-body .bf-product-name { font-size: 12.5px; }
}
