/**
 * Estilos Principales - TUKO Shopify App
 * Estilos base y layout principal
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f6f6f7;
  color: #202223;
  overflow: hidden;
  height: 100vh;
}

/* Layout principal: Sidebar + Content */
.tuko-admin-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Sidebar izquierdo (igual que WooCommerce) */
.tuko-sidebar {
  width: 16rem;
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.tuko-sidebar-logo {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.tuko-sidebar-logo svg {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 0.25rem;
}

.tuko-sidebar-logo img {
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.tuko-sidebar-logo h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.tuko-sidebar-logo p {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.tuko-sidebar-nav {
  flex: 1;
}

.tuko-sidebar-group-header {
  padding: 0 1.5rem;
  margin-top: 1.125rem;
  margin-bottom: 0.25rem;
}

.tuko-sidebar-group-header p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.tuko-sidebar-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: transparent;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  text-align: left;
}

.tuko-sidebar-button:hover {
  background-color: #f9fafb;
}

.tuko-sidebar-button.active {
  background-color: #eff6ff;
  color: #3D50F2;
  font-weight: 600;
  border-left-color: #3D50F2;
}

.tuko-sidebar-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tuko-sidebar-footer {
  padding: 0 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.tuko-sidebar-footer p {
  margin: 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Contenido principal */
.tuko-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: #f6f6f7;
}

/* Header del dashboard */
.tuko-dashboard-header {
  margin-bottom: 2rem;
}

.tuko-dashboard-header h1 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}

.tuko-dashboard-header p {
  margin: 0;
  margin-bottom: 2rem;
  color: #4b5563;
}

/* Ocultar tabs no activos */
.tuko-tab-content {
  display: none;
}

.tuko-tab-content.active {
  display: block;
}

