header.navbar.navbar-top {
  background-color: #337ab7 !important;
  border: none !important;
}
header.navbar.navbar-top .nav > li > a {
  color: #fff !important;
}
header.navbar.navbar-top .nav > li > a:hover {
  color: #b0e1ef !important;
  background: transparent !important;
}
.navbar-default {
  background: #fff !important;
  border: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}
.navbar-default .nav > li > a {
  color: #337ab7 !important;
}
.navbar-default .nav > li > a:hover {
  color: #2d6da3 !important;
}
.navbar-default .navbar-nav.navbar-right > li > a {
  font-size: 16px !important;
}
.navbar-default .navbar-brand img {
  border-radius: 50% !important;
  border: 2px solid #337ab7 !important;
  padding: 2px !important;
}
#hero {
  margin-bottom: 30px;
  padding: 30px 0;
  background: #fff;
  color: #333;
  text-align: center;
}
#hero .carousel {
  min-height: 400px;
  width: 100%;
}
#hero .slick-list,
#hero .slick-track {
  min-height: 400px;
}
#hero img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
#hero .slick-dots li button:before {
  color: #337ab7;
}
.product-sections {
  margin: 40px 0;
}
.product-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.product-container img {
  width: 30%;
  /* 3 per row on desktop */
  max-width: 250px;
  /* keeps them from getting too large */
  aspect-ratio: 1/1;
  /* ensures square thumbnails */
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.product-container img:hover {
  transform: scale(1.05);
}
.categories-points {
  margin: 20px 0;
}
.category-point {
  display: inline-block;
  background-color: #222;
  /* replace with your @primary-color */
  color: #fff;
  /* replace with your @white */
  padding: 8px 16px;
  border-radius: 20px;
  margin: 0 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.category-point:hover {
  background-color: #444;
  /* slightly lighter hover color */
  transform: scale(1.05);
}
.category-page {
  margin-top: 40px;
}
.category-page .categories-panel {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}
.category-page .categories-panel ul {
  list-style: none;
  padding: 0;
}
.category-page .categories-panel ul li {
  margin-bottom: 10px;
}
.category-page .categories-panel ul li a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.category-page .categories-panel ul li a:hover {
  color: #337ab7;
}
.category-page .products-panel .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.category-page .products-panel .product-grid .product {
  width: calc(33.333% - 10px);
  cursor: pointer;
}
.category-page .products-panel .product-grid .product img {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-page .products-panel .product-grid .product img:hover,
.category-page .products-panel .product-grid .product img:active,
.category-page .products-panel .product-grid .product img:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .category-page .products-panel .product-grid .product {
    width: 48%;
  }
  .category-page .categories-panel {
    margin-bottom: 20px;
  }
}
#slider-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
#slider-widget #slider-left {
  width: 36%;
  background: linear-gradient(90deg, #285f8f 0%, #5bc0de 100%);
  color: #fff;
  border-radius: 12px 0 0 12px;
  padding: 24px;
  position: relative;
}
#slider-widget #slider-left h4 {
  font-size: 28px;
  margin-bottom: 16px;
}
#slider-widget #slider-left ul {
  list-style: none;
  padding-left: 16px;
}
#slider-widget #slider-left ul li {
  margin: 12px 0;
  font-size: 16px;
}
#slider-widget #slider-left #slider-left-arrow {
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #5bc0de;
}
#slider-widget #slider-right-column {
  display: flex;
  flex-direction: column;
  width: 36%;
  margin-left: 10%;
  gap: 20px;
}
#slider-widget #slider-right-column #slider-mid {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar {
  position: relative;
  width: 100%;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar .spectacledcoder-search-bar-input {
  width: 100%;
  padding: 10px 40px;
  border-radius: 25px;
  border: none;
  background-color: #f6f6f6;
  color: #333;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar #searchicon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: gray;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar .spectacledcoder-dropdown {
  position: absolute;
  top: 48px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #f6f6f6;
  border-radius: 0 0 12px 12px;
  transition: 0.3s;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar .spectacledcoder-dropdown ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar .spectacledcoder-dropdown ul li {
  padding: 8px 16px;
  cursor: pointer;
  color: #333;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar .spectacledcoder-dropdown ul li:hover {
  background: #dddddd;
}
#slider-widget #slider-right-column #slider-mid .spectacledcoder-search-bar:hover .spectacledcoder-dropdown {
  max-height: 200px;
}
#slider-widget #slider-right-column #slider-right {
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(36, 28, 21, 0.12);
}
#slider-widget #slider-right-column #slider-right #slider-cta-block {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
#slider-widget #slider-right-column #slider-right #slider-cta-block .slider-cta {
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-weight: 500;
}
#slider-widget #slider-right-column #slider-right #slider-cta-block .slider-cta#slider-primary {
  background: #ff8000;
  color: #fff;
}
#slider-widget #slider-right-column #slider-right #slider-cta-block .slider-cta#slider-secondary {
  background: #fff;
  border: 2px solid #393A3D;
  color: #393A3D;
}
@media (max-width: 992px) {
  #slider-left,
  #slider-right-column {
    width: 100%;
    margin-left: 0;
  }
  #slider-widget {
    flex-direction: column;
    gap: 20px;
  }
  .product-container img {
    width: 80%;
    max-height: 400px;
  }
}
.bony-page,
.category-page {
  margin-top: 40px;
}
.bony-page .categories-panel,
.category-page .categories-panel {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}
.bony-page .categories-panel ul,
.category-page .categories-panel ul {
  list-style: none;
  padding: 0;
}
.bony-page .categories-panel ul li,
.category-page .categories-panel ul li {
  margin-bottom: 10px;
}
.bony-page .categories-panel ul li a,
.category-page .categories-panel ul li a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.bony-page .categories-panel ul li a:hover,
.category-page .categories-panel ul li a:hover {
  color: #337ab7;
}
.bony-page .products-panel .product-grid,
.category-page .products-panel .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.bony-page .products-panel .product-grid .product,
.category-page .products-panel .product-grid .product {
  width: calc(33.333% - 10px);
  cursor: pointer;
  text-align: center;
}
.bony-page .products-panel .product-grid .product img,
.category-page .products-panel .product-grid .product img {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bony-page .products-panel .product-grid .product img:hover,
.category-page .products-panel .product-grid .product img:hover,
.bony-page .products-panel .product-grid .product img:active,
.category-page .products-panel .product-grid .product img:active,
.bony-page .products-panel .product-grid .product img:focus,
.category-page .products-panel .product-grid .product img:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.bony-page .products-panel .product-grid .product .product-title,
.category-page .products-panel .product-grid .product .product-title {
  margin: 8px 0 4px 0;
  font-weight: bold;
}
.bony-page .products-panel .product-grid .product .product-desc,
.category-page .products-panel .product-grid .product .product-desc {
  font-size: 14px;
  color: #666;
}
@media (max-width: 768px) {
  .bony-page .products-panel .product-grid .product,
  .category-page .products-panel .product-grid .product {
    width: 48%;
  }
  .bony-page .categories-panel,
  .category-page .categories-panel {
    margin-bottom: 20px;
  }
}
footer {
  padding: 60px 0 40px 0;
  background-color: #f6f6f6;
  color: #333;
  font-size: 14px;
  margin-top: 40px;
}
footer ul {
  padding: 0;
  list-style: none;
  margin: 0 0 15px 0;
  text-align: center;
}
footer ul li {
  display: inline-block;
  margin: 0 10px;
}
footer ul li a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}
footer ul li a:hover {
  opacity: 1;
}
footer .social {
  text-align: center;
  margin-bottom: 20px;
}
footer .social a {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 5px;
  color: inherit;
  opacity: 0.75;
  transition: all 0.3s ease;
}
footer .social a:hover {
  opacity: 0.9;
  transform: scale(1.1);
}
footer .footer-break {
  border: 0;
  height: 2px;
  background-color: #ccc;
  margin: 20px 0;
}
footer .copyright {
  margin: 0;
  font-size: 12px;
  color: #666;
}
@media (max-width: 992px) {
  footer {
    padding: 50px 20px;
  }
}
@media (max-width: 992px) {
  .navbar-default .container {
    flex-direction: column;
    align-items: center;
    /* center content horizontally */
    gap: 10px;
    /* spacing between brand, nav, icons */
  }
  .navbar-header {
    margin-bottom: 8px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .navbar-nav li {
    margin: 6px 0;
    text-align: center;
  }
  .navbar-nav.navbar-right {
    flex-direction: row;
    /* icons in a row */
    justify-content: center;
    width: 100%;
    gap: 12px;
  }
}
/* Extra small devices (phones) */
@media (max-width: 576px) {
  .navbar-default .navbar-nav li a {
    font-size: 14px;
    padding: 6px 8px;
  }
  .navbar-brand img {
    width: 50px;
    height: 50px;
  }
}
/* _responsive.less */
@media (max-width: 992px) {
  header.navbar.navbar-top .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ✅ centers horizontally */
    text-align: center;
    /* ✅ text also centered */
    gap: 8px;
  }
  header.navbar.navbar-top .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ✅ centers nav items */
    width: 100%;
  }
  header.navbar.navbar-top .nav > li {
    width: auto;
    /* don’t stretch full width */
  }
  header.navbar.navbar-top .nav > li > a {
    display: inline-block;
    /* inline buttons instead of full row */
    padding: 10px 0;
    font-size: 16px;
    border: none;
    /* remove divider line */
  }
  /* move right-nav below first nav, still centered */
  header.navbar.navbar-top .navbar-right {
    margin-top: 8px;
    align-self: center;
  }
}
@media (max-width: 576px) {
  header.navbar.navbar-top .container {
    gap: 6px;
  }
  header.navbar.navbar-top .nav > li > a {
    font-size: 14px;
    padding: 8px 0;
  }
}
@media (max-width: 992px) {
  #slider-widget {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  #slider-left,
  #slider-right-column {
    width: 100%;
    margin-left: 0;
  }
  /* make sure search bar goes on top */
  #slider-right-column {
    display: flex;
    flex-direction: column;
  }
  #slider-right-column #slider-mid {
    order: -1;
    /* move search to top */
    width: 100%;
    z-index: 3;
    position: relative;
  }
  #slider-left {
    order: 0;
    /* stays under search */
  }
  #slider-right-column #slider-right {
    order: 1;
    /* last element */
    margin-top: 12px;
  }
  /* mobile scaling */
  .product-container img {
    width: 80%;
    max-height: 400px;
  }
}
/* Hide all sections by default */
.page-section {
  display: none;
}
/* Show only the active section */
.page-section.active {
  display: block;
}
