/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Base styling for menu links */
/* 🔸 Ensure menu items look clean */
.hfe-nav-menu a.hfe-menu-item {
  color: #000 !important;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

/* 🔸 Remove Elementor green hover underline/border */
.hfe-nav-menu a.hfe-menu-item:hover {
  border: none !important;
  box-shadow: none !important;
  color: #000 !important;
}

/* Fix Elementor hover border */
.hfe-nav-menu a.hfe-menu-item:hover {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Ensure custom underline still shows */
.hfe-nav-menu a.hfe-menu-item::after {
  background-color: #bfa45a !important; /* remove semicolon from inside */
}

/* 🔸 Underline animation (gold) */
.hfe-nav-menu a.hfe-menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #bfa45a; !important;
  transition: width 0.3s ease;
}
.hfe-nav-menu a.hfe-menu-item:hover::after,
.hfe-nav-menu li.current-menu-item > a.hfe-menu-item::after,
.hfe-nav-menu li.current_page_item > a.hfe-menu-item::after {
  width: 100%;
}

/* 🔸 Submenu items default color */
.hfe-submenu-container li a.hfe-menu-item {
  color: #000 !important;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s;
}

/* 🔸 Gold hover for submenu */
.hfe-submenu-container li a.hfe-menu-item:hover {
  color: #bfa45a !important;
  background: #f8f8f8;
}

/* 🔸 Replace Elementor's missing icon with ▼ arrow inline */
.hfe-menu-toggle .fa::before {
  content: "▼";
  font-size: 11px;
  color: #000;
  display: inline-block;
  transform: translateY(-1px);
}

a.hfe-sub-menu-item.hfe-sub-menu-item-active {
  color: #bfa45a !important;
}
a.hfe-sub-menu-item.hfe-sub-menu-item-active:hover {
  background-color: #f8f8f8 !important;
}

a.hfe-sub-menu-item:hover,
.hfe-sub-menu-item:hover {
  color: #bfa45a !important;
}

/* Active submenu in gold */
a.hfe-sub-menu-item.hfe-sub-menu-item-active {
  color: #bfa45a !important;
}

/* Optional: add matching hover bg */
a.hfe-sub-menu-item.hfe-sub-menu-item-active:hover {
  background-color: #f8f8f8 !important;
}

/* ///////////////////////////////////////////////////////////////// */
.owp-floating-bar {
  display: none !important;
}

/* ✅ Breadcrumb and Title */
.custom-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}


/* Responsive fallback */
@media screen and (max-width: 768px) {
  ul.products li.product {
    width: 45%;
  }
}

.woocommerce-breadcrumb {
  position: relative !important;
  float: none !important;
  text-align: left;
  margin-bottom: 10px;
  padding: 0;
  color: #777;
  font-size: 14px;
}
.product-archive-header {
  padding: 40px 20px;
  background: #fff;
}

.product-archive-header .woocommerce-breadcrumb {
  margin-bottom: 10px;
}

.product-archive-header h1 {
  margin-top: 0;
  font-size: 28px;
}
.site-breadcrumbs.woocommerce-breadcrumb.clr {
  position: static !important;
  right: auto !important;
  top: auto !important;
  max-width: none !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  height: auto !important;
  white-space: normal !important;
  overflow: visible !important;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}
.site-breadcrumbs {
  position: static !important;
  margin-bottom: 10px;
  display: block;
}

/* 🔹 Shared layout box for header and grid */
.product-category-header-wrapper
{
  padding: 48px 7.2vw 0px ;
  box-sizing: border-box;
}
.custom-product-grid-wrapper {
  padding-left: 7.2vw;
  padding-right: 7.2vw;
  box-sizing: border-box;
}

/*____________________________________ */

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0 8px !important; /* add spacing between bullets */
    background: #888; /* optional: better contrast */
}

.swiper-pagination-bullet-active {
    background: #000; /* stronger contrast */
}
/*____________________________________ */
#top-bar-wrap,
#site-header {
  position: sticky;
  z-index: 9999;
  background: white;
}

#top-bar-wrap {
  top: 0;
  transition: transform 0.3s ease;
}

#site-header {
  top: 90.75px; /* Default, when top bar is visible */
  transition: top 0.3s ease;
}

#top-bar-wrap.hide-on-scroll {
  transform: translateY(-100%);
}

#site-header.header-at-top {
  top: 0; /* When top bar is hidden */
}

body {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}