@charset "UTF-8";
.top-header {
  background: #fff;
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 999;
  position: sticky;
  top: 0;
  padding: 12px;
  /* Mobile Menu Toggle */
  /* Mobile Menu */
}
.top-header .logo img {
  width: auto;
  height: 70px;
}
@media screen and (max-width: 1200px) {
  .top-header .call-box-wrapper {
    display: none !important;
  }
}
.top-header .call-box {
  font-size: 16px;
  color: #EF4123;
  font-weight: 600;
}
.top-header .call-box a {
  text-decoration: none;
  color: inherit;
}
.top-header .call-box a strong {
  display: block;
  color: #1f4c8f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.top-header .free-sheep {
  height: 80px;
}
@media screen and (max-width: 1170px) {
  .top-header .free-sheep {
    height: 60px;
  }
}
.top-header .search-box {
  position: relative;
  width: 100%;
  max-width: 80%;
}
.top-header .search-box input {
  padding-right: 35px;
  border-radius: 25px;
  min-height: 40px;
  font-size: 16px;
  border: 1px solid #ddd;
}
.top-header .search-box input:focus {
  border-color: #1f4c8f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 76, 143, 0.1);
}
.top-header .search-box .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}
.top-header .search-box .icon:hover {
  color: #1f4c8f;
}
@media screen and (max-width: 1500px) {
  .top-header .search-box {
    max-width: 60%;
  }
}
.top-header ul.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  gap: 1rem !important;
}
@media screen and (max-width: 1170px) {
  .top-header ul.nav {
    gap: 0.6rem !important;
  }
}
.top-header ul.nav li {
  margin: 0;
}
.top-header ul.nav li a {
  font-size: 16px;
  text-decoration: none;
  color: #4b4b4b;
  transition: color 0.2s ease;
  padding: 6px 0;
  display: inline-block;
  font-weight: 500;
}
.top-header ul.nav li a:hover {
  color: #1f4c8f;
}
.top-header ul.nav li a.icon {
  font-size: 18px;
  color: #41B65B;
  padding: 0;
}
.top-header ul.nav li a.icon:hover {
  color: #2d8a3f;
}
.top-header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
}
.top-header .mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.top-header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 3px);
}
.top-header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.top-header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px);
}
.top-header .mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99;
  max-height: calc(100vh - 75px);
  overflow-y: auto;
}
.top-header .mobile-menu.active {
  display: block;
}
.top-header .mobile-menu .mobile-menu-content {
  padding: 15px 0;
}
.top-header .mobile-menu .mobile-menu-content .mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-header .mobile-menu .mobile-menu-content .mobile-nav li {
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
}
.top-header .mobile-menu .mobile-menu-content .mobile-nav li:last-child {
  border-bottom: none;
}
.top-header .mobile-menu .mobile-menu-content .mobile-nav li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.top-header .mobile-menu .mobile-menu-content .mobile-nav li a:hover {
  background: #f8f8f8;
  color: #1f4c8f;
  padding-left: 25px;
}

/* Responsive */
@media (max-width: 991px) {
  .top-header .call-box,
  .top-header .shipping-badge {
    display: none !important;
  }
  .top-header .search-box {
    display: none;
  }
  .top-header .logo img {
    max-height: 50px;
  }
}
@media (max-width: 768px) {
  .top-header {
    padding: 10px 0;
  }
  .top-header .logo img {
    max-height: 45px;
  }
  .top-header ul.nav {
    display: none;
  }
  .top-header .mobile-menu-toggle {
    display: flex !important;
    margin-left: auto;
  }
  .top-header .mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    border-top: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 480px) {
  .top-header {
    padding: 8px 0;
  }
  .top-header .logo img {
    max-height: 40px;
  }
  .top-header .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
  .top-header .mobile-menu .mobile-menu-content {
    padding: 10px 0;
  }
  .top-header .mobile-menu .mobile-menu-content .mobile-nav li a {
    padding: 10px 15px;
    font-size: 13px;
  }
  .top-header .mobile-menu .mobile-menu-content .mobile-nav li a:hover {
    padding-left: 20px;
  }
}
/* Products Navigation Bar */
.products-nav-bar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
}

.products-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 12px 15px;
  transition: all 0.3s ease;
}
.products-nav-toggle:hover {
  color: #1f4c8f;
}
.products-nav-toggle.active i {
  color: #1f4c8f;
}

.products-nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
  justify-content: center;
}
.products-nav::-webkit-scrollbar {
  height: 4px;
}
.products-nav::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.products-nav::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 2px;
}
.products-nav::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.products-nav-item {
  margin: 0;
  padding: 0;
}

.products-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 16px;
  background: none;
  border: none;
  text-decoration: none;
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.products-nav-link:hover {
  color: #1f4c8f;
  background: #f8f8f8;
}
.products-nav-link i {
  font-size: 12px;
}

/* Badge */
.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #41B65B;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
  white-space: nowrap;
}

/* Products Dropdown */
.products-dropdown {
  position: relative;
}

.products-dropdown-toggle.active {
  color: #1f4c8f;
  background: #f8f8f8;
}
.products-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.products-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}
.products-dropdown-menu.show {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.products-dropdown-link {
  display: block;
  padding: 11px 16px;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.products-dropdown-link:last-child {
  border-bottom: none;
}
.products-dropdown-link:hover {
  color: #1f4c8f;
  background: #f8f8f8;
  padding-left: 20px;
}

/* Mega Products Dropdown */
.products-mega-dropdown .products-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mega-products-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  width: calc(100vw - 40px);
  max-width: 1400px;
  z-index: 1002;
}
.mega-products-dropdown-menu.show {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.mega-dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  background: #fff;
}

.mega-dropdown-column {
  min-width: 150px;
}

.mega-category-item h6 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f4c8f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1f4c8f;
}

.mega-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-category-list li {
  margin: 0;
  padding: 0;
}
.mega-category-list li a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.mega-category-list li a:hover {
  color: #1f4c8f;
  padding-left: 5px;
  font-weight: 500;
}

/* Tablet Breakpoint */
@media screen and (max-width: 1024px) {
  .products-nav {
    justify-content: flex-start;
    padding: 0 10px;
  }
  .products-nav-link {
    padding: 12px 5px;
    font-size: 11px;
    flex-shrink: 0;
  }
  .mega-dropdown-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 15px;
  }
  .mega-products-dropdown-menu {
    max-height: 500px;
  }
}
/* Mobile Hamburger Menu Breakpoint */
@media screen and (max-width: 991px) {
  .products-nav-toggle {
    display: block;
  }
  .products-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    gap: 0;
    padding: 0;
    justify-content: flex-start;
    width: 100%;
    z-index: 1000;
  }
  .products-nav.show {
    min-height: calc(100dvh - 40px);
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }
  .products-nav-item {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
  .products-nav-link {
    padding: 12px 15px;
    width: 100%;
    justify-content: space-between;
    border-radius: 0;
    white-space: normal;
  }
  .mega-products-dropdown-menu {
    position: static;
    width: 100%;
    max-width: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    max-height: 400px;
  }
  .products-dropdown-menu {
    position: static;
    width: 100%;
    max-width: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    max-height: auto;
  }
  .products-dropdown-menu.show {
    display: block;
  }
  .products-dropdown-link {
    padding: 10px 15px;
    padding-left: 30px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }
}
/* Small Tablet Breakpoint */
@media screen and (max-width: 768px) {
  .products-nav-bar {
    border-bottom: 1px solid #e5e5e5;
  }
  .products-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 8px;
    gap: 0;
  }
  .products-nav-item {
    flex-shrink: 0;
  }
  .products-nav-link {
    padding: 10px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .badge-new {
    font-size: 9px;
    padding: 2px 5px;
    margin-left: 3px;
  }
  .mega-dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px 10px;
  }
  .mega-dropdown-column {
    min-width: auto;
  }
  .mega-products-dropdown-menu {
    width: calc(100vw - 20px);
    max-width: 500px;
    max-height: 400px;
    left: 10px;
    right: 10px;
    margin: 0 auto;
  }
  .mega-category-item h6 {
    margin: 0 0 10px 0;
    font-size: 12px;
    padding-bottom: 8px;
  }
  .mega-category-list li a {
    padding: 6px 0;
    font-size: 12px;
  }
  .products-dropdown-menu {
    min-width: 180px;
    max-height: 300px;
  }
  .products-dropdown-link {
    padding: 9px 12px;
    font-size: 12px;
  }
  .products-dropdown-link:hover {
    padding-left: 15px;
  }
}
/* Mobile Breakpoint */
@media screen and (max-width: 576px) {
  .products-nav-bar {
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
  }
  .products-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 5px;
    gap: 0;
    scroll-snap-type: x mandatory;
  }
  .products-nav::-webkit-scrollbar {
    height: 3px;
  }
  .products-nav-item {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .products-nav-link {
    padding: 12px 10px;
    font-size: 14px;
    white-space: nowrap;
    color: #4b4b4b;
    border-radius: 0;
  }
  .products-nav-link:hover {
    background: #f5f5f5;
  }
  .badge-new {
    font-size: 8px;
    padding: 1px 4px;
    margin-left: 2px;
  }
  .mega-dropdown-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 10px;
  }
  .mega-products-dropdown-menu {
    width: calc(100vw - 10px);
    max-width: none;
    max-height: 350px;
    left: 5px;
    right: 5px;
    margin: 0;
    border-radius: 4px;
  }
  .mega-dropdown-column {
    min-width: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
  }
  .mega-dropdown-column:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .mega-category-item h6 {
    margin: 0 0 8px 0;
    font-size: 11px;
    padding-bottom: 6px;
    text-transform: uppercase;
  }
  .mega-category-list li a {
    padding: 5px 0;
    font-size: 11px;
    line-height: 1.4;
  }
  .mega-category-list li:hover a {
    padding-left: 3px;
  }
  .products-dropdown-menu {
    min-width: 150px;
    max-height: 250px;
    border-radius: 4px;
  }
  .products-dropdown-link {
    padding: 8px 10px;
    font-size: 12px;
    border-bottom: 1px solid #f5f5f5;
  }
  .products-dropdown-link:hover {
    padding-left: 12px;
  }
  .products-dropdown-toggle {
    font-size: 14px;
    padding: 12px 10px;
  }
  .products-dropdown-toggle i {
    font-size: 10px;
  }
}
/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .products-nav-link {
    padding: 10px 8px;
    font-size: 10px;
  }
  .mega-products-dropdown-menu {
    width: calc(100vw - 6px);
    max-height: 300px;
    left: 3px;
    right: 3px;
  }
  .mega-dropdown-content {
    padding: 10px 8px;
    gap: 8px;
  }
  .mega-category-item h6 {
    font-size: 10px;
    margin: 0 0 6px 0;
  }
  .mega-category-list li a {
    padding: 4px 0;
    font-size: 10px;
  }
}
/* Category Dropdown Navigation */
.category-dropdown-nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 100;
}

.category-dropdown-container {
  display: flex;
  align-items: center;
  position: relative;
}

.category-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #4b4b4b;
  font-size: 16px;
  transition: all 0.3s ease;
  min-width: 200px;
}
.category-dropdown-toggle:hover {
  background: #eee;
  border-color: #1f4c8f;
  color: #1f4c8f;
}
.category-dropdown-toggle.active {
  background: #1f4c8f;
  color: #fff;
  border-color: #1f4c8f;
}
.category-dropdown-toggle.active .fa-chevron-down {
  transform: rotate(180deg);
}
.category-dropdown-toggle i:first-child {
  font-size: 18px;
}
.category-dropdown-toggle i:last-child {
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Mega Dropdown Menu */
.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  min-width: 100%;
  width: calc(100vw - 40px);
  max-width: 1400px;
  z-index: 1000;
}
.mega-dropdown-menu.show {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.mega-dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  background: #fff;
}

.mega-dropdown-column {
  min-width: 150px;
}

.mega-category-item h6 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f4c8f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1f4c8f;
}

.mega-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-category-list li {
  margin: 0;
  padding: 0;
}
.mega-category-list li a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.mega-category-list li a:hover {
  color: #1f4c8f;
  padding-left: 5px;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .mega-dropdown-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  .mega-dropdown-menu {
    display: none;
  }
  .category-dropdown-nav {
    display: none;
  }
  .mega-dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    padding: 12px 8px;
  }
  .mega-products-dropdown-menu, .products-dropdown-menu {
    display: none;
  }
  .mega-products-dropdown-menu.show, .products-dropdown-menu.show {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .mega-dropdown-menu {
    display: none;
  }
  .category-dropdown-nav {
    display: none;
  }
}
.category-sidebar {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 0;
  border: 1px solid #e0e0e0;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1019607843);
  /* Show sub-categories by default */
}
.category-sidebar .sidebar-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  padding: 12px 15px;
  color: #222;
  border-bottom: 1px solid #e8e8e8;
}
.category-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-sidebar .category-list > li.category-parent {
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  border-bottom: 1px solid #e8e8e8;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.category-sidebar .category-list > li.category-parent:hover {
  background: #f8f8f8;
}
.category-sidebar .category-list > li.category-parent .category-name {
  flex: 1;
}
.category-sidebar .category-list > li.category-parent i {
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}
.category-sidebar .category-list > .category-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
}
.category-sidebar .category-list > .category-sub li {
  padding: 10px 15px 10px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.category-sidebar .category-list > .category-sub li:last-child {
  border-bottom: none;
}
.category-sidebar .category-list > .category-sub li:hover {
  background: #f0f0f0;
  color: #1f4c8f;
}
.category-sidebar .category-list > .category-sub li .badge-new {
  background: #1abc9c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  flex-shrink: 0;
}
.category-sidebar .category-list > .category-sub li i {
  color: #bbb;
  font-size: 11px;
  margin-left: 8px;
  flex-shrink: 0;
}
.category-sidebar .category-list > .category-sub li span {
  text-align: left;
}
.category-sidebar .category-list > .category-sub li span.badge-new {
  background-color: #ef4123;
}
.category-sidebar .category-sub {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .category-sidebar .sidebar-title {
    font-size: 12px;
    padding: 10px 12px;
  }
  .category-sidebar .category-list > li.category-parent {
    padding: 10px 12px;
    font-size: 13px;
  }
  .category-sidebar .category-list > .category-sub li {
    padding: 8px 12px 8px 25px;
    font-size: 14px;
  }
}
.section {
  margin-bottom: 35px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.section-header h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1f4c8f;
  margin-bottom: 0;
}
.section-header a {
  font-size: 14px;
  color: #1f4c8f;
  text-decoration: none;
}

.product-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  justify-content: flex-start;
}
.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: 0.2s ease-in-out;
  min-width: 220px;
  scroll-snap-align: start;
  padding: 10px;
  text-align: center;
}
.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.product-card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}
.product-card h6 {
  font-size: 14px;
  margin: 0;
  color: #212529;
}

/* Footer */
.product-footer {
  display: flex;
  margin-top: auto;
  padding: 20px;
}
.product-footer .product-cta {
  width: 100%;
}

.footer-icon {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-icon:last-child {
  border-right: none;
}

.footer-icon i {
  font-size: 16px;
  color: #1f4c8f;
}

.footer-icon:hover {
  background: #f7f7f7;
}

.footer-icon:hover i {
  color: #000;
}

.product-price {
  font-size: 15px;
}

.product-price strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.product-price .ex-tax {
  font-size: 13px;
}

/* Category Header Banner */
.category-header-banner {
  background: linear-gradient(135deg, #5f5f5f 0%, #1a1a1a 100%);
  color: #fff;
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.category-header-banner .banner-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.category-header-banner .banner-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.category-header-banner .banner-cutoff {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  opacity: 0.85;
}

/* Category Header */
.category-header {
  text-align: center;
  margin-bottom: 40px;
}
.category-header .category-title {
  font-size: 32px;
  font-weight: 700;
  color: #41B65B;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.category-header .category-description {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.products-grid.products-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.product-card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transform: translateY(-4px);
}
.product-card .product-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 4/4;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.product-card .product-figure .product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-card .product-figure:hover .product-image {
  transform: scale(1.05);
}
.product-card .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.product-card .product-badge.best-seller {
  background: #ff6b35;
  color: #fff;
}
.product-card .product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.product-card .product-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.4;
}
.product-card .product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.product-card .product-features li {
  padding: 3px 0 3px 16px;
  position: relative;
}
.product-card .product-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f4c8f;
  font-weight: bold;
}
.product-card .product-price-label {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  border-top: dashed 1px #cccccc;
  padding-top: 10px;
}
.product-card .product-cta {
  display: inline-block;
  padding: 12px 20px;
  background: #1f4c8f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}
.product-card .product-cta:hover {
  background: #153a6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 76, 143, 0.3);
}
.product-card .product-cta:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .category-header-banner {
    padding: 50px 30px;
  }
  .category-header-banner .banner-title {
    font-size: 40px;
  }
  .category-header-banner .banner-cutoff {
    font-size: 16px;
  }
  .category-header .category-title {
    font-size: 28px;
  }
  .category-header .category-description {
    font-size: 14px;
  }
  .products-grid {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .products-grid.products-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .category-header-banner {
    padding: 40px 24px;
    margin-bottom: 30px;
  }
  .category-header-banner .banner-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .category-header-banner .banner-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .category-header-banner .banner-cutoff {
    font-size: 14px;
  }
  .category-header {
    margin-bottom: 30px;
  }
  .category-header .category-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .category-header .category-description {
    font-size: 13px;
  }
  .products-grid {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid.products-grid-2col {
    grid-template-columns: 1fr;
  }
  .product-card .product-body {
    padding: 16px;
  }
  .product-card .product-title {
    font-size: 14px;
  }
  .product-card .product-features {
    font-size: 12px;
  }
  .product-card .product-features li {
    padding: 3px 0 3px 14px;
  }
  .product-card .product-cta {
    padding: 10px 16px;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .category-header-banner {
    padding: 30px 16px;
    margin-bottom: 25px;
  }
  .category-header-banner .banner-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .category-header-banner .banner-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .category-header-banner .banner-cutoff {
    font-size: 12px;
  }
  .category-header {
    margin-bottom: 24px;
  }
  .category-header .category-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .category-header .category-description {
    font-size: 12px;
  }
  .products-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .products-grid.products-grid-2col {
    grid-template-columns: 1fr;
  }
  .product-card .product-body {
    padding: 14px;
  }
  .product-card .product-title {
    font-size: 13px;
  }
  .product-card .product-features {
    font-size: 11px;
  }
  .product-card .product-price-label {
    font-size: 11px;
  }
  .product-card .product-cta {
    padding: 9px 14px;
    font-size: 11px;
  }
  .product-card .product-figure {
    aspect-ratio: 4/4;
  }
}
/* Product Detail Section */
.product-detail-section {
  padding: 10px 0;
}

/* Product Image Container */
.product-image-container {
  margin-bottom: 30px;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  margin: 0;
  padding: 0;
}
.product-image-wrapper .main-product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Zoom Preview */
.zoom-preview {
  position: absolute;
  top: 0px;
  left: 106%;
  width: 555px;
  height: 500px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.zoom-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .zoom-preview {
    display: none !important;
  }
}

/* Thumbnails */
.product-thumbnails {
  margin-top: 15px;
  position: relative;
}
.product-thumbnails .thumbnail-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.product-thumbnails .thumbnails-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 0;
  flex: 1;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-thumbnails .thumbnails-scroll::-webkit-scrollbar {
  display: none;
}
.product-thumbnails .thumbnails-scroll::-webkit-scrollbar-track {
  display: none;
}
.product-thumbnails .thumbnails-scroll::-webkit-scrollbar-thumb {
  display: none;
}
.product-thumbnails .thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
}
.product-thumbnails .thumbnail:hover {
  border-color: #1f4c8f;
}
.product-thumbnails .thumbnail.active {
  border-color: #1f4c8f;
  box-shadow: 0 0 0 2px rgba(79, 117, 170, 0.3);
  filter: none !important;
}
.product-thumbnails .thumbnail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1f4c8f;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.product-thumbnails .thumbnail-nav:hover {
  background: rgb(21.9137931034, 53.724137931, 101.0862068966);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.product-thumbnails .thumbnail-nav i {
  font-size: 14px;
}
.product-thumbnails .thumbnail-nav.thumbnail-prev {
  left: 8px;
}
.product-thumbnails .thumbnail-nav.thumbnail-next {
  right: 8px;
}
.product-thumbnails:hover .thumbnail-nav {
  opacity: 1;
  visibility: visible;
}

/* Product Features Section */
.product-features-section {
  margin-top: 25px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.product-features-section .features-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-features-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-features-section .features-list li {
  padding: 8px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.product-features-section .features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f4c8f;
  font-weight: bold;
  font-size: 18px;
}
.product-features-section .features-list li:last-child {
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
  font-size: 13px;
}
.breadcrumb .breadcrumb-item {
  color: #666;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item.active {
  color: #333;
}
.breadcrumb .breadcrumb-item a {
  color: #1f4c8f;
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: rgb(21.9137931034, 53.724137931, 101.0862068966);
}

/* Product Info Card */
.product-info-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Product Title */
.product-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

/* Price Section */
.product-price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.product-price-section .price-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.product-price-section .product-price {
  font-size: 30px;
  font-weight: 700;
  color: #41B65B;
}

/* Product Options Form */
.product-options-form .form-group {
  margin-bottom: 20px;
}
.product-options-form .form-group:last-of-type {
  margin-bottom: 0;
}
.product-options-form .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.product-options-form .form-select,
.product-options-form .form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.product-options-form .form-select:focus,
.product-options-form .form-control:focus {
  outline: none;
  border-color: #1f4c8f;
  box-shadow: 0 0 0 3px rgba(31, 76, 143, 0.1);
}
.product-options-form .form-text {
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}

/* File Upload Section */
.file-upload-section {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
.file-upload-section .form-label {
  margin-bottom: 12px;
}
.file-upload-section .file-formats {
  font-size: 12px;
  color: #999;
  margin: 0 0 15px 0;
}
.file-upload-section .upload-options {
  display: flex;
  gap: 20px;
}
.file-upload-section .radio-option {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.file-upload-section .radio-option input[type=radio] {
  margin-right: 8px;
  cursor: pointer;
}
.file-upload-section .radio-option span {
  cursor: pointer;
}
.file-upload-section .btn-outline-secondary {
  border-color: #d0d0d0;
  color: #333;
  background: #fff;
}
.file-upload-section .btn-outline-secondary:hover {
  background: #f5f5f5;
  border-color: #999;
}
.file-upload-section #fileNameDisplay {
  margin-top: 12px;
  transition: all 0.3s ease;
}
.file-upload-section #fileNameDisplay.file-selected {
  color: #1f4c8f;
  font-weight: 500;
}

/* Action Buttons */
.product-actions .btn {
  font-weight: 600;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-actions .btn.btn-primary {
  background: #1f4c8f;
  border-color: #1f4c8f;
  color: #fff;
}
.product-actions .btn.btn-primary:hover {
  background: rgb(21.9137931034, 53.724137931, 101.0862068966);
  border-color: rgb(21.9137931034, 53.724137931, 101.0862068966);
}
.product-actions .btn.btn-danger {
  background: #ef4123;
  border-color: #ef4123;
  color: #fff;
}
.product-actions .btn.btn-danger:hover {
  background: rgb(207.8813559322, 43.4661016949, 15.1186440678);
  border-color: rgb(207.8813559322, 43.4661016949, 15.1186440678);
}

/* Tabs Section */
.product-tabs-section .nav-tabs {
  border-bottom: 2px solid #e8e8e8;
  gap: 40px;
}
.product-tabs-section .nav-tabs .nav-link {
  border: none;
  color: #666;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.product-tabs-section .nav-tabs .nav-link:hover {
  color: #1f4c8f;
  border-bottom-color: #e8e8e8;
}
.product-tabs-section .nav-tabs .nav-link.active {
  color: #1f4c8f;
  border-bottom-color: #1f4c8f;
  background: none;
}
.product-tabs-section .tab-content {
  padding-top: 30px;
}
.product-tabs-section .tab-content-wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.product-tabs-section .tab-content-wrapper p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.product-tabs-section .tab-content-wrapper p:last-child {
  margin-bottom: 0;
}
.product-tabs-section .tab-content-wrapper .specs-list,
.product-tabs-section .tab-content-wrapper .setup-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-tabs-section .tab-content-wrapper .specs-list li,
.product-tabs-section .tab-content-wrapper .setup-list li {
  padding: 10px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}
.product-tabs-section .tab-content-wrapper .specs-list li:last-child,
.product-tabs-section .tab-content-wrapper .setup-list li:last-child {
  border-bottom: none;
}
.product-tabs-section .tab-content-wrapper .specs-list li:before,
.product-tabs-section .tab-content-wrapper .setup-list li:before {
  content: "✓";
  color: #41B65B;
  font-weight: bold;
  margin-right: 10px;
}

/* Templates Grid */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.template-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.template-item:hover {
  border-color: #1f4c8f;
  box-shadow: 0 4px 12px rgba(31, 76, 143, 0.1);
}
.template-item .template-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.template-item .template-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f4c8f;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}
.template-item .template-link:hover {
  color: rgb(21.9137931034, 53.724137931, 101.0862068966);
  gap: 12px;
}
.template-item .template-link i {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-info-card {
    padding: 24px;
  }
  .product-detail-title {
    font-size: 28px;
  }
  .product-price-section .product-price {
    font-size: 32px;
  }
  .zoom-preview {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .product-detail-section {
    padding: 15px 0;
  }
  .product-info-card {
    padding: 20px;
  }
  .product-detail-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .product-price-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .product-price-section .product-price {
    font-size: 28px;
  }
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .product-thumbnails .thumbnail {
    width: 70px;
    height: 70px;
  }
  .product-tabs-section .nav-tabs {
    gap: 20px;
  }
  .product-tabs-section .nav-tabs .nav-link {
    font-size: 13px;
    padding: 12px 0;
  }
  .product-tabs-section .tab-content {
    padding-top: 20px;
  }
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .product-image-wrapper {
    aspect-ratio: 3/4;
  }
  .product-detail-title {
    font-size: 20px;
  }
  .product-price-section .product-price {
    font-size: 24px;
  }
  .product-info-card {
    padding: 16px;
  }
  .breadcrumb {
    font-size: 11px;
  }
  .product-thumbnails .thumbnail {
    width: 60px;
    height: 60px;
    border-width: 1px;
  }
  .product-thumbnails .thumbnail-nav {
    width: 32px;
    height: 32px;
  }
  .file-upload-section {
    padding: 15px;
  }
  .product-tabs-section .nav-tabs {
    gap: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-tabs-section .nav-tabs .nav-link {
    font-size: 12px;
    padding: 10px 0;
    white-space: nowrap;
  }
  .product-tabs-section .tab-content-wrapper h3 {
    font-size: 16px;
  }
  .product-tabs-section .tab-content-wrapper p {
    font-size: 13px;
  }
  .templates-grid {
    grid-template-columns: 1fr;
  }
}
footer.footer {
  background: linear-gradient(135deg, #d4dde8 0%, #c8d4e0 100%);
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #c0cfe0;
}
footer.footer .container {
  max-width: 1200px;
}
footer.footer .row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
footer.footer .footer-column {
  width: -moz-min-content;
  width: min-content;
  min-width: 136px;
}
footer.footer .footer-column:first-child {
  min-width: 430px;
}
@media (max-width: 768px) {
  footer.footer .footer-column {
    min-width: 100% !important;
    margin-bottom: 20px;
  }
}
footer.footer .footer-section h5 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  padding: 0;
}
footer.footer .footer-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 12px 0;
}
footer.footer .footer-section p a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.footer .footer-section p a:hover {
  color: #1f4c8f;
}
footer.footer .footer-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}
footer.footer .text-center {
  text-align: center;
}
footer.footer .footer-logo {
  margin: 20px 0;
}
footer.footer .footer-logo img {
  width: 260px;
}
footer.footer .footer-domain {
  font-size: 12px;
  color: #1f4c8f;
  font-weight: 600;
  margin: 8px 0 0 0;
}
footer.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.footer .footer-links ul li {
  margin: 6px 0;
}
footer.footer .footer-links ul li a {
  font-size: 16px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.footer .footer-links ul li a:hover {
  color: #1f4c8f;
}
footer.footer .email-link {
  color: #555;
  text-decoration: none;
}
footer.footer .email-link:hover {
  color: #1f4c8f;
}

/* Responsive */
@media (max-width: 992px) {
  footer.footer {
    padding: 35px 0;
  }
  footer.footer .row {
    gap: 25px;
  }
  footer.footer .footer-section h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  footer.footer .footer-section p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  footer.footer {
    padding: 30px 0;
  }
  footer.footer .row {
    flex-direction: column;
    gap: 30px;
  }
  footer.footer .footer-column {
    width: 100%;
    margin-bottom: 0;
  }
  footer.footer .footer-section h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  footer.footer .footer-section p {
    font-size: 14px;
    line-height: 1.6;
  }
  footer.footer .text-center {
    text-align: left;
  }
  footer.footer .footer-logo {
    text-align: left;
    margin: 15px 0;
  }
}
@media (max-width: 480px) {
  footer.footer {
    padding: 25px 0;
  }
  footer.footer .btn-goto {
    font-size: 11px;
    padding: 6px 12px;
  }
  footer.footer .footer-links ul li {
    margin: 5px 0;
  }
  footer.footer .footer-links ul li a {
    font-size: 13px;
  }
}
.goto-btn {
  display: inline-block;
  background-color: #1f4c8f;
  color: #fff;
  padding: 7px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-left: auto;
}
.goto-btn i {
  margin-left: 6px;
}
.goto-btn:hover {
  background-color: #41B65B;
}

.min-w-300 {
  min-width: 300px;
}

/* Store Info Wrapper */
.store-info-wrapper {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.store-info {
  flex: 1;
  min-width: 150px;
}

.store-map {
  flex-shrink: 0;
  right: 0;
}
.store-map iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .store-info-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .store-map iframe {
    width: 170px !important;
    height: 150px !important;
  }
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #6f7070;
  font-family: 16px;
  font-weight: 400;
}

/* Image Slider */
.image-slider {
  width: 100%;
  background: #d4d4d4;
  overflow: hidden;
  margin-top: 0px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  top: 0;
  left: 0;
}
.slider-item.active {
  opacity: 1;
}
.slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease;
  z-index: 10;
}
.slider-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  padding: 0;
}
.dot.active {
  background: rgb(255, 255, 255);
  transform: scale(1.2);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 991px) {
  .call-box,
  .shipping-badge {
    display: none;
  }
}
@media (max-width: 768px) {
  .slider-container {
    height: 350px;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .slider-prev {
    left: 12px;
  }
  .slider-next {
    right: 12px;
  }
  .slider-dots {
    bottom: 15px;
    gap: 10px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .slider-container {
    height: 250px;
  }
  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .slider-prev {
    left: 8px;
  }
  .slider-next {
    right: 8px;
  }
  .slider-dots {
    bottom: 10px;
    gap: 8px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
}
/* Product Slider */
.product-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 5px 0;
  flex: 1;
  scroll-snap-type: x mandatory;
}
.product-slider::-webkit-scrollbar {
  height: 6px;
}
.product-slider::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.product-slider::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 3px;
}
.product-slider::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.product-card {
  flex: 0 0 calc(33% - 10px);
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.product-card img {
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-card h6 {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin: 10px 0;
  padding: 0 8px;
  line-height: 1.4;
}

/* Product Slider Navigation */
.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 5;
  opacity: 1;
  transition: opacity 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.product-nav:hover {
  background: transparent;
  color: rgba(0, 0, 0, 0.85);
}
.product-nav.hidden {
  display: none;
}

.product-nav-prev {
  left: -26px;
}

.product-nav-next {
  right: -26px;
}

@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc(33% - 12px);
    min-width: 180px;
  }
  .product-card img {
    height: 230px;
  }
}
@media (max-width: 992px) {
  .product-card {
    flex: 0 0 calc(50% - 11px);
    min-width: 160px;
  }
  .product-card img {
    height: 160px;
  }
  .product-card h6 {
    font-size: 12px;
  }
  .product-nav {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(49% - 8px);
    min-width: 140px;
  }
  .product-card img {
    height: 160px;
  }
  .product-card h6 {
    font-size: 11px;
    margin: 8px 0;
  }
  .product-nav {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .product-card {
    flex: 0 0 calc(49.5% - 8px);
    min-width: 120px;
  }
  .product-card img {
    height: 120px;
  }
  .product-card h6 {
    margin: 6px 0;
  }
  .product-nav {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .product-slider-wrapper {
    gap: 8px;
  }
  .product-slider-wrapper .product-nav {
    display: none;
  }
}
/* Carousel in main content area */
main .image-slider {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
main .slider-container {
  height: 450px; /* 75% of original 600px */
}/*# sourceMappingURL=style.css.map */

/* custom css by sandeep */
.container{
	
	padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important;
}
.breadcrumb{display:none;}
.carousel-indicators{display:none;}
.welcome-title {
  font-size: 28px;  
  font-weight: 600;
 
  margin-bottom: 10px;
}
 
.welcome-list {
  padding-left: 18px;
  margin: 0;
}
.welcome-list  {
   list-style:none;
}
.welcome-list li {
  font-size: 16px;
 
  color: #555;
  margin-bottom: 6px;
}


/Sidebar/
.category-sidebar .category-list{
border-radius: 4px ;
}
.category-sidebar .category-list .list-group-item{
    padding: 10px 15px 10px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}
.category-sidebar .category-list .list-group-item.active{
    font-size: 14px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    /*border-bottom: 1px solid #e8e8e8;*/
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    background-color: white;
}

.category-sidebar .category-list .list-group-item.active:before {
    content: "\f054";
    color: #999;
    font-size: 12px;
    margin-left: 8px;
    font-family: "Font Awesome 6 Free";
    position : absolute;
    right : 12px;
}

#product-info .product-card .product-features{display:none !important;}
#product-info .product-card .product-price-label{display:none !important;}