/* Container styles */
.color-tabs-container-e4985eef {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Tabs navigation bar */
.tabs-navigation-e4985eef {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

/* Tab button */
.tab-btn-e4985eef {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f2f6;
  border: 1px solid #dfe6e9;
  border-radius: 30px;
  cursor: pointer;
  color: #2d3436;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

/* Custom individual tab accent dot */
.tab-accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tab-accent, #3498db);
  transition: transform 0.3s ease;
}

/* Active tab style */
.tab-btn-e4985eef.active {
  background-color: var(--tab-accent, #3498db);
  border-color: var(--tab-accent, #3498db);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tab-btn-e4985eef.active .tab-accent-dot {
  background-color: #ffffff;
  transform: scale(1.4);
}

/* Hover effect */
.tab-btn-e4985eef:hover:not(.active) {
  background-color: #ffffff;
  border-color: var(--tab-accent, #3498db);
  color: var(--tab-accent, #3498db);
  transform: translateY(-1px);
}

/* Tab content layout */
.tab-content-wrapper-e4985eef {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f2f6;
  position: relative;
  overflow: hidden;
}

/* Pane grid layout */
.tab-grid-e4985eef {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .tab-grid-e4985eef {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Pane Content elements */
.tab-pane-content-e4985eef {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-heading-e4985eef {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.tab-desc-e4985eef {
  font-size: 1.05rem;
  line-height: 1.6;
}

.tab-btn-wrapper-e4985eef {
  margin-top: 10px;
}

.tab-btn-link-e4985eef {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tab-btn-link-e4985eef:hover {
  transform: translateY(-2px);
}

/* Pane image */
.tab-pane-image-e4985eef img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.5s ease;
}

.tab-pane-image-e4985eef:hover img {
  transform: scale(1.03);
}

/* Beautiful Entrance Animation & Motion Effects */
.tab-pane-e4985eef.active {
  animation: tabFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
