/* ==========================================================================
   FlexExt Mega Menu & Mobile Navigation Studio Pro - Stylesheet
   ========================================================================== */

:root {
  --flx-bg: #1e293b;
  --flx-text: #f8fafc;
  --flx-hover-bg: #334155;
  --flx-hover-text: #38bdf8;
  --flx-active: #0284c7;
  --flx-font-size: 15px;
  --flx-font-weight: 600;
  --flx-radius: 0px !important;
  --flx-dropdown-bg: #ffffff;
  --flx-dropdown-text: #1e293b;
  --flx-dropdown-border: rgba(0, 0, 0, 0.08);
  --flx-dropdown-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --flx-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.flx-mega-menu-root {
  position: relative;
  width: 100%;
  font-family: inherit;
  z-index: 1020;
}

/* --------------------------------------------------------------------------
   Desktop Navbar
   -------------------------------------------------------------------------- */
.flx-mega-navbar {
  background-color: var(--flx-bg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-radius: 0 !important;
  position: relative;
}

.flx-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1025;
}

.flx-nav-container {
  padding: 0 15px;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  gap: 0 !important;
}

.flx-navbar-brand {
  flex-shrink: 0 !important;
  margin-right: 18px !important;
  display: flex !important;
  align-items: center !important;
}

.flx-brand-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.flx-header-logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.flx-nav-list {
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap !important;
}

.flx-navbar-extras {
  flex-shrink: 0 !important;
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.flx-nav-item {
  position: relative !important; /* All navbar items are relative so dropdowns anchor directly under their specific row */
  flex-shrink: 0;
}

/* Hover or active item gets high z-index so it and its dropdown physically sit ABOVE subsequent navbar rows */
.flx-nav-item:hover,
.flx-nav-item.flx-open {
  z-index: 1060 !important;
}

.flx-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--flx-text) !important;
  text-decoration: none !important;
  font-size: var(--flx-font-size);
  font-weight: var(--flx-font-weight);
  transition: var(--flx-transition);
  position: relative;
  white-space: nowrap;
}

.flx-nav-link:hover,
.flx-nav-item:hover > .flx-nav-link,
.flx-nav-item.flx-open > .flx-nav-link {
  background-color: var(--flx-hover-bg);
  color: var(--flx-hover-text) !important;
  border-radius: var(--flx-radius, 0px) !important;
}

.flx-nav-icon {
  font-size: 1.1em;
  line-height: 1;
}

.flx-nav-text {
  display: flex;
  flex-direction: column;
}

.flx-nav-title {
  line-height: 1.2;
}

.flx-nav-subtitle {
  font-size: 0.75em;
  opacity: 0.75;
  font-weight: normal;
}

.flx-arrow-indicator {
  font-size: 0.75em;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.flx-nav-item:hover .flx-arrow-indicator,
.flx-nav-item.flx-open .flx-arrow-indicator {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   Badges & Animations
   -------------------------------------------------------------------------- */
.flx-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.flx-badge-pulse {
  animation: flxPulse 2s infinite;
}

@keyframes flxPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.flx-badge-bounce {
  animation: flxBounce 1.5s infinite;
}

@keyframes flxBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.flx-badge-shimmer {
  background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: flxShimmer 2.5s infinite;
}

@keyframes flxShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --------------------------------------------------------------------------
   Dropdown Panels
   -------------------------------------------------------------------------- */
.flx-dropdown-wrapper {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1060 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
  pointer-events: none;
}

/* Invisible hover bridge between navbar item and dropdown */
.flx-dropdown-wrapper::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
  pointer-events: auto;
}

/* When JS is initialized, opening is strictly managed by .flx-open (enables delays, smart hover intent, click mode) */
.flx-mega-navbar.flx-menu-active .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Fallback for environments without JS or before script execution (disabled in click mode) */
.flx-mega-navbar:not(.flx-menu-active):not(.flx-trigger-click) .flx-nav-item:hover > .flx-dropdown-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Horizontal mode positioning for custom / non-container dropdowns */
.flx-orient-horizontal .flx-nav-item:not(.flx-item-width-container):not(.flx-item-width-full) > .flx-dropdown-wrapper {
  left: 0;
  right: auto;
}

/* When dropdown is near the right edge of screen or right-aligned */
.flx-orient-horizontal .flx-nav-item.flx-edge-right > .flx-dropdown-wrapper,
.flx-orient-horizontal .flx-nav-item.flx-align-right > .flx-dropdown-wrapper {
  left: auto !important;
  right: 0 !important;
}

/* --------------------------------------------------------------------------
   Vertical Menu Mode (Sidebar / Department Navigation)
   -------------------------------------------------------------------------- */
.flx-vertical-header {
  background-color: var(--flx-bg);
  color: var(--flx-text);
  padding: 14px 18px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: var(--flx-transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.flx-vertical-header:hover {
  background-color: var(--flx-hover-bg);
  color: var(--flx-hover-text);
}

.flx-vertical-header-title {
  display: flex;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.flx-vertical-toggle-icon {
  transition: transform 0.25s ease;
  font-size: 0.85em;
}

.flx-vertical-collapsed .flx-vertical-toggle-icon {
  transform: rotate(-90deg);
}

.flx-vertical-collapsed .flx-nav-list {
  display: none !important;
}

.flx-orient-vertical,
.flx-vertical-mode,
#column-left .flx-mega-navbar,
#column-right .flx-mega-navbar {
  background-color: transparent !important;
  box-shadow: none !important;
}

.flx-orient-vertical .flx-nav-container,
.flx-vertical-mode .flx-nav-container,
#column-left .flx-mega-navbar .flx-nav-container,
#column-right .flx-mega-navbar .flx-nav-container {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.flx-orient-vertical .flx-nav-list,
.flx-vertical-mode .flx-nav-list,
#column-left .flx-mega-navbar .flx-nav-list,
#column-right .flx-mega-navbar .flx-nav-list {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  background-color: #ffffff;
  border: 1px solid var(--flx-dropdown-border);
  border-top: none;
  border-radius: 0 !important;
  box-shadow: var(--flx-dropdown-shadow);
}

.flx-orient-vertical .flx-nav-item,
.flx-vertical-mode .flx-nav-item,
#column-left .flx-mega-navbar .flx-nav-item,
#column-right .flx-mega-navbar .flx-nav-item {
  position: relative !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.flx-orient-vertical .flx-nav-item:last-child,
.flx-vertical-mode .flx-nav-item:last-child,
#column-left .flx-mega-navbar .flx-nav-item:last-child,
#column-right .flx-mega-navbar .flx-nav-item:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--flx-radius) var(--flx-radius);
}

.flx-orient-vertical .flx-nav-link,
.flx-vertical-mode .flx-nav-link,
#column-left .flx-mega-navbar .flx-nav-link,
#column-right .flx-mega-navbar .flx-nav-link {
  color: #1e293b !important;
  padding: 12px 18px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: var(--flx-transition);
}

.flx-orient-vertical .flx-nav-link:hover,
.flx-orient-vertical .flx-nav-item:hover > .flx-nav-link,
.flx-vertical-mode .flx-nav-link:hover,
.flx-vertical-mode .flx-nav-item:hover > .flx-nav-link,
#column-left .flx-mega-navbar .flx-nav-link:hover,
#column-left .flx-mega-navbar .flx-nav-item:hover > .flx-nav-link,
#column-right .flx-mega-navbar .flx-nav-link:hover,
#column-right .flx-mega-navbar .flx-nav-item:hover > .flx-nav-link {
  background-color: #f1f5f9 !important;
  color: var(--flx-active) !important;
  padding-left: 22px !important;
}

.flx-vert-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.flx-orient-vertical .flx-nav-item:hover > .flx-nav-link .flx-vert-arrow,
.flx-vertical-mode .flx-nav-item:hover > .flx-nav-link .flx-vert-arrow,
#column-left .flx-mega-navbar .flx-nav-item:hover > .flx-nav-link .flx-vert-arrow,
#column-right .flx-mega-navbar .flx-nav-item:hover > .flx-nav-link .flx-vert-arrow {
  transform: translateX(4px);
  color: var(--flx-active);
}

/* Flyout to the Right in Vertical Mode */
.flx-orient-vertical .flx-dropdown-wrapper,
.flx-vertical-mode .flx-dropdown-wrapper,
#column-left .flx-mega-navbar .flx-dropdown-wrapper {
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  right: auto !important;
  width: 780px !important;
  max-width: calc(100vw - 320px) !important;
  min-height: 100% !important;
  margin-left: 0 !important;
  transform: none !important;
  z-index: 1060 !important;
}

.flx-orient-vertical .flx-dropdown-wrapper::before,
.flx-vertical-mode .flx-dropdown-wrapper::before,
#column-left .flx-mega-navbar .flx-dropdown-wrapper::before {
  top: 0 !important;
  bottom: 0 !important;
  left: -20px !important;
  right: auto !important;
  width: 25px !important;
  height: 100% !important;
}

.flx-orient-vertical .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-orient-vertical .flx-nav-item.flx-open > .flx-dropdown-wrapper,
.flx-vertical-mode .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-vertical-mode .flx-nav-item.flx-open > .flx-dropdown-wrapper,
#column-left .flx-mega-navbar .flx-nav-item:hover > .flx-dropdown-wrapper,
#column-left .flx-mega-navbar .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

.flx-orient-vertical .flx-dropdown-inner,
.flx-vertical-mode .flx-dropdown-inner,
#column-left .flx-mega-navbar .flx-dropdown-inner,
#column-right .flx-mega-navbar .flx-dropdown-inner {
  border-radius: var(--flx-radius) !important;
  min-height: 100% !important;
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Right Column: Flyout to the Left */
#column-right .flx-mega-navbar .flx-dropdown-wrapper,
.flx-align-right .flx-dropdown-wrapper {
  left: auto !important;
  right: 100% !important;
  margin-left: 0 !important;
  margin-right: 4px !important;
  transform: translateX(-12px) !important;
}

#column-right .flx-mega-navbar .flx-nav-item:hover > .flx-dropdown-wrapper,
#column-right .flx-mega-navbar .flx-nav-item.flx-open > .flx-dropdown-wrapper,
.flx-align-right .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-align-right .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  transform: translateX(0) !important;
}

.flx-width-full {
  width: 100vw;
  left: 0;
  right: auto;
  transform: none !important;
}
.flx-nav-item:hover > .flx-width-full {
  transform: none !important;
}

.flx-width-container {
  width: 100%;
  left: 0;
  right: 0;
}

.flx-dropdown-inner {
  background-color: var(--flx-dropdown-bg);
  color: var(--flx-dropdown-text);
  border: 1px solid var(--flx-dropdown-border);
  box-shadow: var(--flx-dropdown-shadow);
  border-radius: 0 !important;
  padding: 24px;
}

/* --------------------------------------------------------------------------
   Item Types: Flyout Menu
   -------------------------------------------------------------------------- */
.flx-flyout-container {
  min-width: 250px;
}

.flx-flyout-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flx-flyout-item {
  position: relative;
}

.flx-flyout-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--flx-transition);
}

.flx-flyout-link:hover,
.flx-flyout-item:hover > .flx-flyout-link {
  background-color: #f1f5f9;
  color: #0284c7;
  padding-left: 18px;
}

.flx-cat-thumb {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 8px;
}

.flx-sub-arrow {
  font-size: 0.75rem;
  opacity: 0.5;
}

.flx-flyout-subpanel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 550px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--flx-transition);
  z-index: 1060;
}

.flx-flyout-item:hover > .flx-flyout-subpanel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.flx-subpanel-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.flx-subpanel-heading a {
  color: #0f172a;
  text-decoration: none;
}

.flx-sub-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  padding: 4px 0;
}

.flx-sub-link:hover {
  color: #0284c7;
}

.flx-nested-sub-list {
  list-style: none;
  padding-left: 12px;
  margin: 4px 0 10px 0;
}

.flx-nested-sub-list a {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
  display: block;
  padding: 2px 0;
}

.flx-nested-sub-list a:hover {
  color: #0284c7;
}

/* --------------------------------------------------------------------------
   Item Types: Category + Live Products & Popular Grid
   -------------------------------------------------------------------------- */
.flx-subcat-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 12px;
}

.flx-side-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flx-side-cat-list a {
  display: block;
  padding: 6px 0;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--flx-transition);
}

.flx-side-cat-list a:hover {
  color: #0284c7;
  transform: translateX(4px);
}

.flx-mini-prod-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flx-mini-prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.flx-prod-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}

.flx-prod-img-box {
  text-align: center;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
}

.flx-prod-thumb {
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.flx-mini-prod-card:hover .flx-prod-thumb {
  transform: scale(1.05);
}

.flx-prod-title {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 6px;
  font-weight: 600;
  height: 2.6em;
  overflow: hidden;
}

.flx-prod-title a {
  color: #1e293b;
  text-decoration: none;
}

.flx-prod-title a:hover {
  color: #0284c7;
}

.flx-prod-price-box {
  margin-bottom: 8px;
}

.flx-price-regular,
.flx-price-new {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.flx-price-new {
  color: #ef4444;
}

.flx-price-old {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #94a3b8;
  margin-left: 6px;
}

.flx-btn-add-cart {
  font-size: 0.75rem;
  padding: 4px 8px;
  font-weight: 600;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Item Types: Tabbed Mega Menu
   -------------------------------------------------------------------------- */
.flx-tab-btn {
  text-align: left;
  border-radius: 6px;
  color: #475569;
  font-weight: 600;
  padding: 10px 14px;
  border: none;
  background: transparent;
  width: 100%;
  transition: var(--flx-transition);
}

.flx-tab-btn.active,
.flx-tab-btn:hover {
  background-color: #f1f5f9;
  color: #0284c7;
}

.flx-tab-side-promo {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Item Types: Brands Grid
   -------------------------------------------------------------------------- */
.flx-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  height: 70px;
  text-decoration: none;
  transition: var(--flx-transition);
}

.flx-brand-card:hover {
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.flx-brand-logo {
  max-height: 45px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(80%);
  transition: filter 0.2s ease;
}

.flx-brand-card:hover .flx-brand-logo {
  filter: grayscale(0%);
}

.flx-brand-text-name {
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Item Types: Responsive Video
   -------------------------------------------------------------------------- */
.flx-video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.flx-video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Item Types: Contact Studio (Map, Address, Socials, Message Form)
   -------------------------------------------------------------------------- */
.flx-contact-studio {
  display: grid;
  gap: 24px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
}

.flx-contact-studio.flx-layout-map_left_address_right {
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 1fr);
  align-items: start;
  min-width: min(650px, 92vw);
}

.flx-contact-studio.flx-layout-map_left_form_address_right {
  grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 1.2fr) minmax(240px, 1fr);
  align-items: start;
  min-width: min(880px, 92vw);
}

.flx-contact-studio.flx-layout-form_left_address_right {
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 1fr);
  align-items: start;
  min-width: min(650px, 92vw);
}

.flx-dropdown-wrapper.flx-has-contact-3col,
.flx-dropdown-wrapper:has(.flx-layout-map_left_form_address_right) {
  min-width: min(880px, 92vw) !important;
}

.flx-dropdown-wrapper.flx-has-contact-2col,
.flx-dropdown-wrapper:has(.flx-layout-map_left_address_right),
.flx-dropdown-wrapper:has(.flx-layout-form_left_address_right) {
  min-width: min(650px, 92vw) !important;
}

.flx-contact-studio.flx-layout-address_only,
.flx-contact-studio.flx-layout-map_only {
  grid-template-columns: 1fr;
}

@media (max-width: 991.98px) {
  .flx-contact-studio,
  .flx-contact-studio.flx-layout-map_left_address_right,
  .flx-contact-studio.flx-layout-map_left_form_address_right,
  .flx-contact-studio.flx-layout-form_left_address_right {
    grid-template-columns: 1fr !important;
  }
}

.flx-contact-map-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.flx-contact-map-card iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

.flx-contact-form-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
}

.flx-contact-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.flx-contact-alert {
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.flx-contact-alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.flx-contact-alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.flx-contact-info-box {
  color: #334155;
  padding: 4px;
}

.flx-address-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.flx-address-divider {
  width: 44px;
  height: 3px;
  background: var(--flx-active, #0284c7);
  border-radius: 2px;
  margin-bottom: 16px;
}

.flx-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
}

.flx-info-icon {
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
  color: #64748b;
}

.flx-info-meta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.flx-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #475569;
}

.flx-info-item a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.flx-info-item a:hover {
  color: #0369a1;
  text-decoration: underline;
}

.flx-social-section {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.flx-social-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.flx-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.flx-soc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.flx-soc-btn .flx-soc-svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  display: block;
  pointer-events: none;
}

.flx-soc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.flx-soc-fb { background-color: #1877f2; }
.flx-soc-tw { background-color: #000000; }
.flx-soc-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.flx-soc-yt { background-color: #ff0000; }
.flx-soc-in { background-color: #0a66c2; }
.flx-soc-pin { background-color: #bd081c; }

/* --------------------------------------------------------------------------
   Animations, Delays & Triggers
   -------------------------------------------------------------------------- */
.flx-anim-fade_down .flx-dropdown-wrapper {
  transform: translateY(-8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}
.flx-anim-fade_down .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-anim-fade_down .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  transform: translateY(0);
}

.flx-anim-slide_down .flx-dropdown-wrapper {
  transform: translateY(-20px);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out, visibility 0.28s ease;
}
.flx-anim-slide_down .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-anim-slide_down .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  transform: translateY(0);
}

.flx-anim-zoom_in .flx-dropdown-wrapper {
  transform: scale(0.95);
  transform-origin: top center;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}
.flx-anim-zoom_in .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-anim-zoom_in .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  transform: scale(1);
}

.flx-anim-flip_3d .flx-dropdown-wrapper {
  transform: perspective(800px) rotateX(-15deg);
  transform-origin: top center;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}
.flx-anim-flip_3d .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-anim-flip_3d .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  transform: perspective(800px) rotateX(0deg);
}

.flx-anim-bounce .flx-dropdown-wrapper {
  transform: translateY(-12px);
  transition: opacity 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.38s ease;
}
.flx-anim-bounce .flx-nav-item:hover > .flx-dropdown-wrapper,
.flx-anim-bounce .flx-nav-item.flx-open > .flx-dropdown-wrapper {
  transform: translateY(0);
}

.flx-anim-none .flx-dropdown-wrapper {
  transition: none !important;
  transform: none !important;
}

/* --------------------------------------------------------------------------
   Glassmorphism, Transparency, Floating Navbar & Shrink on Scroll
   -------------------------------------------------------------------------- */
.flx-mega-navbar.flx-bg-glass {
  background-color: rgba(var(--flx-bg-rgb, 30, 41, 59), var(--flx-opacity, 0.70)) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.flx-mega-navbar.flx-bg-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Hero Overlay: positions navbar on top of hero slider/banner */
.flx-mega-menu-root.flx-hero-overlay,
.flx-mega-navbar.flx-hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1030 !important;
  margin-top: 0 !important;
}

.flx-mega-navbar.flx-floating-nav:not(.flx-is-fixed) {
  margin-top: var(--flx-floating-margin, 16px) !important;
  margin-bottom: 16px !important;
  border-radius: var(--flx-radius, 12px) !important;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.flx-sticky-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Bulletproof Fixed Sticky Mode */
.flx-mega-navbar.flx-is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  z-index: 99999 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  animation: flxSlideDownFixed 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes flxSlideDownFixed {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.flx-sticky-nav.flx-navbar-shrunk {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.22), 0 4px 6px -2px rgba(0, 0, 0, 0.1) !important;
}

.flx-sticky-nav.flx-navbar-shrunk .flx-nav-link {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  font-size: calc(var(--flx-font-size, 15px) - 1px) !important;
}

.flx-sticky-nav.flx-navbar-shrunk .flx-navbar-logo-img {
  max-height: calc(var(--flx-logo-height, 36px) * 0.8) !important;
}

/* --------------------------------------------------------------------------
   Integrated Navbar Elements: Logo, Search, Quick Cart
   -------------------------------------------------------------------------- */
.flx-navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.flx-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: var(--flx-text) !important;
}

.flx-navbar-logo-img {
  display: block;
  object-fit: contain;
  transition: max-height 0.3s ease;
}

.flx-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.flx-nav-item-brand {
  display: inline-flex !important;
  align-items: center !important;
  margin-right: 18px !important;
  flex-shrink: 0 !important;
}

.flx-nav-item-action {
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.flx-nav-item-search {
  margin-left: 18px !important;
}

.flx-nav-item-cart {
  margin-left: 10px !important;
}

.flx-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 6px 0;
}

/* Direct Search in Navbar */
.flx-navbar-search {
  position: relative;
}

.flx-navbar-search .flx-search-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--flx-radius, 20px) !important;
  padding: 3px 6px 3px 14px;
  transition: all 0.25s ease;
}

.flx-navbar-search:hover .flx-search-input-wrap,
.flx-navbar-search .flx-search-input-wrap:focus-within {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

.flx-navbar-search .flx-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--flx-text);
  font-size: 13px;
  width: 140px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flx-navbar-search .flx-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.flx-navbar-search.flx-search-expandable .flx-search-input {
  width: 0;
  padding: 0;
  opacity: 0;
}

.flx-navbar-search.flx-search-expandable:hover .flx-search-input,
.flx-navbar-search.flx-search-expandable .flx-search-input:focus {
  width: 180px;
  padding: 0 4px;
  opacity: 1;
}

.flx-navbar-search.flx-search-expanded .flx-search-input:focus {
  width: 200px;
}

.flx-navbar-search .flx-search-btn {
  background: transparent;
  border: none;
  color: var(--flx-text);
  cursor: pointer;
  padding: 4px 6px;
  font-size: 13px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.flx-navbar-search .flx-search-btn:hover {
  opacity: 1;
}

/* Quick Cart in Navbar */
.flx-navbar-cart {
  position: relative;
}

.flx-navbar-cart .flx-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--flx-radius, 20px) !important;
  padding: 6px 14px;
  color: var(--flx-text) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.flx-navbar-cart:hover .flx-cart-btn,
.flx-navbar-cart .flx-cart-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.flx-cart-icon-wrap {
  position: relative;
  display: inline-flex;
  font-size: 15px;
}

.flx-cart-badge {
  position: absolute;
  top: -8px;
  right: -11px;
  background: #ef4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 5px;
  min-width: 17px;
  text-align: center;
  line-height: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover Cart Dropdown Menu */
.flx-cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 380px;
  max-width: 92vw;
  padding-top: 10px; /* Gapless physical connection between button & dropdown */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 1070;
  pointer-events: none;
}

/* Invisible bridge so mouse movement never breaks between cart button and menu */
.flx-cart-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: 25px;
  background: transparent;
  pointer-events: auto;
}

/* Dropdown card container holding shadow, borders, and rounded corners */
.flx-cart-dropdown-inner {
  background: #ffffff;
  border-radius: var(--flx-radius, 12px) !important;
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.18), 0 8px 16px -4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Reveal cart dropdown on hover or when JS class is present */
.flx-navbar-cart:hover .flx-cart-dropdown,
.flx-navbar-cart.flx-cart-open .flx-cart-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.flx-cart-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.flx-cart-dropdown-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
}

.flx-cart-dropdown-count-badge {
  font-size: 11px;
  font-weight: 600;
  background: #e2e8f0;
  color: #475569;
  padding: 2px 8px;
  border-radius: 12px;
}

.flx-cart-dropdown-body {
  padding: 0;
}

.flx-cart-items-list {
  max-height: 280px;
  overflow-y: auto;
  padding: 8px 12px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.flx-cart-items-list::-webkit-scrollbar {
  width: 5px;
}

.flx-cart-items-list::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}

.flx-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.flx-cart-item:last-child {
  border-bottom: none;
}

.flx-cart-item-thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: var(--flx-radius, 6px);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flx-cart-thumb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.flx-cart-item-info {
  flex-grow: 1;
  min-width: 0;
}

.flx-cart-item-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b !important;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  transition: color 0.15s ease;
}

.flx-cart-item-name:hover {
  color: #3b82f6 !important;
}

.flx-cart-item-options {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 3px;
  line-height: 1.2;
}

.flx-cart-opt {
  display: inline-block;
  margin-right: 6px;
}

.flx-cart-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.flx-cart-item-qty {
  color: #64748b;
  font-weight: 500;
}

.flx-cart-item-price {
  color: #0f172a;
  font-weight: 700;
}

.flx-cart-item-remove {
  flex-shrink: 0;
}

.flx-cart-remove-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}

.flx-cart-remove-btn svg {
  display: block;
}

.flx-cart-remove-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: scale(1.1);
}

.flx-cart-dropdown-totals {
  background: #f8fafc;
  padding: 10px 16px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.flx-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #475569;
  margin-bottom: 4px;
}

.flx-cart-total-row:last-child {
  margin-bottom: 0;
}

.flx-cart-grand-total {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  padding-top: 4px;
  border-top: 1px dashed #cbd5e1;
  margin-top: 4px;
}

.flx-cart-dropdown-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: #ffffff;
}

.flx-cart-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--flx-radius, 6px) !important;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.flx-cart-btn-view {
  background: #f1f5f9;
  color: #334155 !important;
  border: 1px solid #cbd5e1;
}

.flx-cart-btn-view:hover {
  background: #e2e8f0;
  color: #0f172a !important;
}

.flx-cart-btn-checkout {
  background: #2563eb;
  color: #ffffff !important;
  border: 1px solid #2563eb;
}

.flx-cart-btn-checkout:hover {
  background: #1d4ed8;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Empty cart state */
.flx-cart-empty-state {
  padding: 32px 16px;
  text-align: center;
}

.flx-cart-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #94a3b8;
}

.flx-cart-empty-text {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 14px;
}

.flx-cart-empty-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.flx-cart-empty-link:hover {
  color: #1d4ed8 !important;
  text-decoration: underline !important;
}

.flx-cart-total {
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* --------------------------------------------------------------------------
   Mobile Header Bar (< 992px)
   -------------------------------------------------------------------------- */
.flx-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--flx-bg);
  padding: 10px 16px;
  border-radius: var(--flx-radius);
  color: var(--flx-text);
}

.flx-mobile-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--flx-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
}

.flx-burger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}

.flx-burger-icon span {
  display: block;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: 0.25s ease;
}

.flx-mobile-quick-search-trigger {
  cursor: pointer;
  padding: 6px 10px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Mobile Off-Canvas Drawer
   -------------------------------------------------------------------------- */
.flx-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.flx-drawer-overlay.flx-active {
  opacity: 1;
  visibility: visible;
}

.flx-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background-color: #ffffff;
  z-index: 2010;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flx-drawer-left {
  left: 0;
  transform: translateX(-100%);
}

.flx-drawer-left.flx-active {
  transform: translateX(0);
}

.flx-drawer-right {
  right: 0;
  transform: translateX(100%);
}

.flx-drawer-right.flx-active {
  transform: translateX(0);
}

.flx-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.flx-drawer-logo {
  max-height: 38px;
  max-width: 160px;
  object-fit: contain;
}

.flx-drawer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.flx-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

.flx-drawer-close:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.flx-drawer-search {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.flx-drawer-search-results {
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 2020;
  max-height: 280px;
  overflow-y: auto;
}

.flx-search-res-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
}

.flx-search-res-item:hover {
  background-color: #f8fafc;
}

.flx-search-res-thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
}

.flx-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.flx-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flx-drawer-item {
  border-bottom: 1px solid #f8fafc;
}

.flx-drawer-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flx-drawer-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
}

.flx-drawer-icon {
  width: 24px;
  font-size: 1.1rem;
  color: #64748b;
  margin-right: 8px;
}

.flx-drawer-arrow {
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.flx-drawer-item.flx-expanded > .flx-drawer-link-wrap .flx-drawer-arrow {
  transform: rotate(90deg);
}

.flx-drawer-sub {
  display: none;
  background-color: #f8fafc;
  padding: 4px 0 8px 0;
}

.flx-drawer-item.flx-expanded > .flx-drawer-sub {
  display: block;
}

.flx-drawer-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flx-drawer-sublist a {
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 32px;
  font-size: 0.9rem;
  color: #475569;
  text-decoration: none;
}

.flx-drawer-sublist a:hover {
  color: #0284c7;
  background-color: #f1f5f9;
}

.flx-drawer-footer {
  padding: 12px 16px;
  border-top: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.flx-footer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  gap: 4px;
  padding: 6px 0;
}

.flx-footer-btn i {
  font-size: 1.1rem;
}

.flx-footer-btn:hover {
  color: #0284c7;
}

/* ==========================================================================
   Horizontal Scrollable Products Strip (Category Products & Showcase)
   ========================================================================== */
.flx-cat-products-container {
  width: 100%;
}

.flx-cat-side-col {
  border-right: 1px solid #f1f5f9;
  padding-right: 20px;
}

.flx-side-subcats {
  min-height: 280px;
}

.flx-subcat-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.flx-side-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flx-side-cat-list li {
  margin-bottom: 8px;
}

.flx-side-cat-list li a {
  display: flex;
  align-items: center;
  color: #334155;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.flx-side-cat-list li a:hover {
  background-color: #f0f9ff;
  color: #0284c7;
  transform: translateX(3px);
}

.flx-cta-btn {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
}

/* Horizontal Scroll Strip */
.flx-scroll-wrapper-rel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.flx-products-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px 4px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.flx-products-scroll-track::-webkit-scrollbar {
  height: 6px;
}

.flx-products-scroll-track::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.flx-products-scroll-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.flx-products-scroll-track::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.flx-scroll-card-item {
  flex: 0 0 220px;
  min-width: 220px;
  max-width: 240px;
  scroll-snap-align: start;
}

.flx-scroll-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1e293b;
  transition: all 0.2s ease;
}

.flx-scroll-arrow-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-50%) scale(1.08);
}

.flx-scroll-prev {
  left: -16px;
}

.flx-scroll-next {
  right: -16px;
}

