/* Global Reset & Base */


/* Wrapper Block */
#row-1904599397 {
  display: flex;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
#col-1238422174 {
  flex-grow: 1;
  overflow: hidden;
  background-color: #eee;
  position: relative;
}

/* Vertical Menu */
.my-vertical-menu {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 20;
  flex-shrink: 0;
}
.my-vertical-menu .vertical-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-vertical-menu .menu-item {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
 .my-vertical-menu .menu-item:last-child {
  border-bottom: none;
}
 .my-vertical-menu .menu-item > a {
  display: flex;
  align-items: center;
  padding: 3px 18px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background: transparent;
  transition: color 0.3s ease;
}
.my-vertical-menu .menu-icon {
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
  transition: color 0.3s ease;
}
.my-vertical-menu .menu-text {
  flex: 1;
  font-size: 14px;
}
.my-vertical-menu .arrow {
  font-size: 12px;
  color: #999;
  transition: color 0.3s ease, transform 0.3s ease;
}
.menu-item:hover > a,
.menu-item:hover > a .menu-icon,
.menu-item:hover > a .arrow {
  color: #d0021b;
}
.menu-item:hover > a .arrow {
  transform: rotate(90deg);
}

/* Submenu Panel */
.submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: calc(2.5 * 240px);
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
  padding: 15px;
  overflow-y: auto;
  z-index: 25;
  display: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.submenu-panel.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.submenu-panel::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -8px;
  border: 8px solid transparent;
  border-right-color: #fff;
}
.submenu-title {
  margin-bottom: 8px;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #d0021b;
  border-bottom: 1px solid #f0f0f0;
}

/* Submenu Items */
.submenu-panel ul li {
  position: relative;
  padding-left: 16px;
}
.submenu-panel ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #d0021b;
  font-size: 12px;
}
.submenu-panel ul li a {
  color: #555;
  display: block;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.submenu-panel ul li a:hover {
  color: #007bff;
  padding-left: 20px;
  background: transparent;
}

/* Submenu Column Layout */
.submenu-content-columns {
  display: flex;
  gap: 20px;
  height: calc(100% - 30px);
}
.submenu-column {
  flex: 1;
  min-width: 0;
  padding: 0 10px;
  border-right: 1px solid #f0f0f0;
  overflow-y: auto;
}
.submenu-column:last-child {
  border-right: none;
}

/* Slider */
.slider-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slider-inner .slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.slider-inner .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease;
}
.slider-nav .dot.active {
  background-color: #d0021b;
}

/* Responsive */
@media (max-width: 991px) {
  #row-1904599397 {
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
  }
  #col-274845840,
  #col-1238422174 {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  #col-1238422174 {
    height: 300px;
  }
  .submenu-panel {
    position: static;
    width: 100%;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    transform: none !important;
    opacity: 1 !important;
    display: block !important;
  }
  .submenu-panel::before {
    display: none;
  }
  .submenu-content-columns {
    flex-direction: column;
    gap: 0;
    height: auto;
  }
  .submenu-column {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
  }
  .submenu-column:last-child {
    border-bottom: none;
  }
}
