.shik-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 5px;
  background: transparent !important
}

.shik-menu-btn .icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shik-menu-btn .icon span {
  height: 2px;
  width: 100%;
  background: #eecc7c;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.shik-menu-btn .label {
  font-size: 16px;
  color: #eecc7c;
  user-select: none;
}

/* حالت فعال – تبدیل همبرگر به ضربدر */
.shik-menu-btn.active .icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: #fff;
}
.shik-menu-btn.active .icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.shik-menu-btn.active .icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #fff;
}

/* تغییر رنگ متن هنگام فعال بودن */
.shik-menu-btn.active .label {
  color: #fff;
}

#shik-fullscreen-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: var(--shik-bg, linear-gradient(90deg,#000,#333));
  transition: height 0.6s ease;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#shik-fullscreen-menu.active {
  height: 100vh
}
.shik-menu-list {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
}
.shik-menu-list li {
  margin: 20px 0;
}
.shik-menu-list a {
  color: var(--shik-text, #eecc7c);
  font-size: var(--shik-font, 22px);
  text-decoration: none;
  transition: color 0.3s;
}
.shik-menu-list a:hover {
  color: #fff;
}

/* چیدمان محصولات و منو */
.shik-menu-content {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-top: 150px
}

.shik-left-section {
  flex: 1;
  padding-right: 40px;
  order: 2;
  width: 75%;
}

.shik-menu-section {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 1;
  width: 25%;
}

/* استایل‌های ستون سمت چپ */
.shik-left-section {
  color: #fff;
}

.shik-left-section h1,
.shik-left-section h2,
.shik-left-section h3,
.shik-left-section h4,
.shik-left-section h5,
.shik-left-section h6 {
  color: var(--shik-text, #eecc7c);
}

.shik-left-section a {
  color: var(--shik-text, #eecc7c);
  text-decoration: none;
  transition: color 0.3s ease;
}

.shik-left-section a:hover {
  color: #fff;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .shik-menu-content {
    flex-direction: column;
    padding: 20px 10px;
  }
  
  .shik-left-section {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    order: 2;
	width: 100%
  }
  
  .shik-menu-section {
    order: 1;
	width: 100%
  }
}