/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* Global Styles */
/* Agregar Bootstrap */
@import "admin_panel.css";
@import "bootstrap.css";
@import "form.css";
@import "header.css";
@import "signup.css";
@import "studio.css";

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.source-sans-3{
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: #0B0E13;
    font-family: "Source Sans 3", sans-serif;
    color: #e0e0e0;            /* Texto claro */
    font-size: 16px;
    line-height: 1.5;
    background: linear-gradient(90deg, #0B0E13 0%, #111827 40%);

  }

  .app-main {
    min-height: calc(100vh - 80px);
  }

  .app-footer {
    border-top: 1px solid #1F2937;
    background: radial-gradient(circle at top, #111827 0, #020617 60%);
    padding: 12px 24px;
    color: #9ca3af;
    font-size: 0.85rem;
  }

  .app-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  @media (max-width: 640px) {
    .app-footer__inner {
      flex-direction: column;
      text-align: center;
    }
  }

  .app-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    gap: 24px;
    padding: 0 24px 0 0; /* sin margen arriba/abajo para que el sidebar colinde con header y footer */
    min-height: calc(100vh - 80px); /* asegura que el sidebar llegue del header al footer */
  }

  .app-shell__content {
    flex: 1;
    min-width: 0;
  }

  .tattooer-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: radial-gradient(circle at top, #111827 0, #020617 60%);
    border-radius: 0 12px 12px 0; /* pegado al borde izquierdo (header/footer) */
    padding: 16px 14px;
    border: 1px solid #1f2937;
    /* altura controlada por el contenedor flex (app-shell) */
  }

  .tattooer-sidebar__header {
    margin-bottom: 12px;
  }

  .tattooer-sidebar__title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
  }

  .tattooer-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
  }

  .tattooer-sidebar__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .tattooer-sidebar__link:hover {
    background-color: #111827;
    color: #22d3ee;
  }

  .tattooer-sidebar__link--active {
    background: linear-gradient(90deg, #22d3ee, #0ea5e9);
    color: #020617;
  }

  .tattooer-sidebar__icon {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
  }

  .tattooer-sidebar__label {
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .app-shell {
      flex-direction: row;
      padding: 0;
    }

    .tattooer-sidebar {
      width: 64px;
      padding-inline: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .tattooer-sidebar__nav {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .tattooer-sidebar__link {
      justify-content: center;
      font-size: 0.8rem;
      padding: 6px;
    }

    .tattooer-sidebar__label {
      display: none; /* En móvil sólo iconos */
    }
  }

  form {
    flex-direction: column;
  }
  
  /* Estilo del header */
  .header {
    background-color: #1F2937;  /* Fondo oscuro */
  font-family: "Poppins", sans-serif;
    padding: 10px 0;
    text-align: center;

  }
  
  .header h1 {
    color: #ffffff;
    font-size: 2rem;
  }
  
  .nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
  }
  
  .nav a:hover {
    color:#22D3EE;  /* Cambiar a un color turquesa */
  }
  
.nav  .head-title {
  text-align: center;
  color: #22D3EE;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  }

  .nav  .head-title:hover {
  color: #368c99;

  }
  /* Fondo de las tarjetas de formularios */
  .card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
  }
  
  .card h3 {
    color: #ffffff;
  }
  
  .card p {
    color: #bbbbbb;
  }

  


  .btn-danger {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    background: #22D3EE;
    
  }
  
  .btn-danger:hover {
    color: #F3F4F6;
    background-color: #22D3EE;
  }

  .raleway-400{
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }





/* Checkbox and Radio Styles */
input[type="checkbox"],
input[type="radio"] {
  margin-right: 0.5rem;
}

div.question {
  margin-bottom: 1.5rem;
}



button:active,
input[type="submit"]:active {
  transform: scale(1);
}

.password-strength {
  margin-top: 0.5rem;
}

.password-strength__bar {
  height: 6px;
  border-radius: 999px;
  background: #1f2937;
  max-width: 200px;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.password-strength__bar[data-level="weak"] {
  background: #ef4444; /* rojo */
}

.password-strength__bar[data-level="medium"] {
  background: #facc15; /* amarillo */
}

.password-strength__bar[data-level="strong"] {
  background: #22c55e; /* verde */
}

/* Owner tattooers filters layout */
.admin-ui__card--with-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-ui__filters {
  width: 100%;
}

.admin-ui__table {
  width: 100%;
}

@media (min-width: 1024px) {
  .admin-ui__card--with-filters {
    flex-direction: row;
    align-items: flex-start;
  }

  .admin-ui__filters {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .admin-ui__table {
    flex: 1 1 0%;
    min-width: 0;
  }
}

.password-strength__label {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.password-requirements {
  margin-top: 0.5rem;
  margin-left: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
  list-style: disc;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field .home-input {
  padding-right: 2.5rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: #e5e7eb;
}

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.admin-modal {
  background: #020617;
  border-radius: 10px;
  padding: 20px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid #1f2937;
}

.admin-modal h2 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.admin-modal p {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 16px;
}

.admin-modal__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.appointment-ref-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.appointment-ref-images__item {
  max-width: 180px;
}

.appointment-ref-images__caption {
  margin-top: 4px;
}

.appointment-ref-images__download {
  font-size: 0.8rem;
  color: #22d3ee;
  text-decoration: none;
}

.appointment-ref-images__download:hover {
  text-decoration: underline;
}

.appointment-ref-images__thumb {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #1f2937;
  object-fit: cover;
}

/* Responsive Layout */
@media (max-width: 768px) {

}

.switch-checkbox .form-check-input {
  display: none;
}

.switch-checkbox .form-check-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  height: 20px;
  width: 50px;
  background-color: #ddd;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.switch-checkbox .switch-toggle {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.3s;
}

.switch-checkbox .form-check-input:checked + .form-check-label {
  background-color: #4CAF50; /* Green background when checked */
}

.switch-checkbox .form-check-input:checked + .form-check-label .switch-toggle {
  transform: translateX(30px); /* Move toggle to the right */
}

.logout-form{
  background-color: transparent;
  padding: 0px;
  margin: 10px;
}


@media (max-width: 768px) {
} 

@media (max-width: 1200px) { 
  .supply-container{
    padding: 40px;   
  }
}

@media (max-width: 992px) { 

    /* Para tablets horizontales */ }

@media (max-width: 768px) {

   /* Tablets verticales y móviles grandes */ }
@media (max-width: 576px) { 
 }

 /* Container for the Sign-Up Form */
.container {
  max-width: 600px;
}

.supply-container{
 padding:50px;
}

 .supply-primary-color{
  color: #22D3EE;
 }


 .supply-form {
  margin: 2rem auto;
  padding: 1.5rem 2rem;
   background: rgba(34, 211, 238, 0.04);

}

.supply-grid{
  display: grid;
  padding: 40px;
}

/* app/assets/stylesheets/tattooers.css */

.tattooer-profile {
  width: 80%;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

.profile-header {
  text-align: center;
  padding: 20px 0;
}

.profile-header h1 {
  font-size: 2.5em;
  color: #333;
}

.profile-header .email {
  font-size: 1.2em;
  color: #666;
}

.bio-section {
  background-color: #f9f9f9;
  padding: 20px;
  margin-top: 20px;
}

.bio-section h2 {
  font-size: 2em;
  color: #333;
}

.bio-section p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

.portfolio-section {
  margin-top: 30px;
}

.portfolio-section h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.portfolio-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.portfolio-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #ddd;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-links {
  margin-top: 30px;
}

.social-links h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.social-link {
  display: inline-block;
  font-size: 1.2em;
  color: #007bff;
  margin-right: 15px;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: underline;
}

.studio-info {
  background-color: #f9f9f9;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.studio-info h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.studio-info p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

.btn {
  background-color: #22D3EE;
  color: #0B0E13;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}


.btn:hover {
  opacity: 0.8;
}

.profile-page,
.appointments-page,
.procedures-page,
.authorized-page,
.procedure-page,
.account-edit-page {
  width: 100%;
}

.profile-card,
.appointments-card,
.procedures-card,
.authorized-card,
.procedure-card,
.account-edit-card {
  width: 100%;
}

.profile-hero,
.appointments-hero,
.procedures-hero,
.authorized-hero,
.procedure-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.8), rgba(217, 70, 239, 0.65));
  color: var(--home-text);
}

.profile-hero__actions {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.profile-hero__primary-action .profile-edit-btn {
  margin-left: 0;
}

.profile-contact-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.procedure-hero-badge {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--home-text);
}

.procedure-hero-copy h1 {
  font-size: 2.15rem;
  margin: 0.4rem 0 0.35rem;
}

.procedure-hero-copy p {
  margin: 0;
  color: rgba(247, 245, 255, 0.85);
}

.procedure-hero-meta {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.procedure-hero-status {
  margin-left: auto;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--home-text);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.appointment-edit-page,
.appointment-detail-page,
.appointment-detail-card {
  width: 100%;
}

.appointment-detail-header .appointment-show-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  background: transparent;
  color: var(--home-text);
}

.appointment-detail-header .appointment-show-copy p {
  color: rgba(247, 245, 255, 0.85);
  margin-bottom: 0.5rem;
}

.appointment-detail-header .appointment-show-meta {
  margin-top: 0.75rem;
}

.appointment-detail-header .appointment-show-times {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  color: var(--home-text);
}

.appointment-detail-header .appointment-show-times .times-label {
  color: var(--home-muted);
}

.appointment-detail-header .appointment-show-logo {
  background: rgba(5, 3, 11, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.appointment-edit-badge {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(11, 14, 19, 0.85);
}

.appointment-edit-copy h1 {
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
}

.appointment-edit-copy p {
  margin: 0;
  color: rgba(13, 16, 22, 0.85);
}

.appointment-edit-meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.appointment-edit-summary {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  background: rgba(15, 23, 42, 0.18);
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  text-align: right;
}

.appointment-edit-summary .summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(11, 14, 19, 0.65);
}

.appointment-edit-summary .summary-value {
  font-weight: 700;
  color: #0B0E13;
}

.appointment-edit-content {
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.92);
  color: #E2E8F0;
  display: grid;
  gap: 2.25rem;
}

.appointment-detail-body .appointment-show-content {
  padding: 0;
  background: transparent;
  color: var(--home-muted);
  display: grid;
  gap: 2.25rem;
}

.appointment-edit-section,
.appointment-show-section {
  display: grid;
  gap: 1.5rem;
}

.appointment-edit-section-header,
.appointment-show-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.appointment-edit-section-header h2,
.appointment-show-section-header h2 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-muted);
}

.appointment-edit-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.appointment-edit-overview div {
  background: rgba(148, 163, 184, 0.1);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  display: grid;
  gap: 0.35rem;
}

.overview-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5b4fc;
}

.overview-value {
  font-weight: 600;
  color: #f8fafc;
}

.appointment-edit-form {
  display: grid;
  gap: 1.6rem;
}

.appointment-field {
  display: grid;
  gap: 0.55rem;
}

.appointment-field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.appointment-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5f5;
}

.appointment-select,
.appointment-input,
.appointment-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.1);
  color: #E2E8F0;
  padding: 0.75rem 0.9rem;
}

.appointment-textarea {
  min-height: 120px;
  resize: vertical;
}

.appointment-form-actions,
.appointment-show-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.appointment-primary-btn,
.appointment-secondary-btn,
.appointment-danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.appointment-primary-btn {
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  color: #0B0E13;
  border-color: rgba(34, 211, 238, 0.45);
}

.appointment-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -16px rgba(34, 211, 238, 0.9);
}

.appointment-secondary-btn {
  background: transparent;
  color: #22D3EE;
  border-color: rgba(34, 211, 238, 0.3);
}

.appointment-secondary-btn:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.appointment-danger-btn {
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
}

.appointment-danger-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -16px rgba(248, 113, 113, 0.8);
  border-color: rgba(248, 113, 113, 0.7);
}

.appointment-show-logo {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(11, 14, 19, 0.75);
}

.appointment-show-logo.has-image {
  background: transparent;
  overflow: hidden;
}

.appointment-show-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appointment-tabs {
  display: inline-flex;
  gap: 0.5rem;
  margin: 1.5rem 2.5rem 0;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.appointment-tab {
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #e5e7eb;
  opacity: 0.85;
}

.appointment-tab--primary {
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  color: #020617;
  opacity: 1;
}

.appointment-show-copy h1 {
  font-size: 2.25rem;
  margin-bottom: 0.35rem;
}

.appointment-show-copy p {
  margin: 0;
  color: rgba(13, 16, 22, 0.85);
}

.appointment-google-sync {
  margin-top: 0.85rem;
}

.appointment-google-sync__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.8));
  color: #E5E7EB;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.appointment-google-sync__button:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.6);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.22), rgba(15, 23, 42, 0.9));
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.45);
}

.appointment-google-sync__button-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #F97373;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 0.85rem;
}

.appointment-google-sync__text {
  white-space: nowrap;
}

.appointment-show-meta {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.appointment-show-times {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.14);
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  text-align: right;
  color: #0B0E13;
}

.appointment-show-times .times-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(11, 14, 19, 0.65);
}

.appointment-show-times .times-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.appointment-show-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.appointment-show-info-card {
  background: rgba(5, 3, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}

.appointment-show-info-card--full {
  grid-column: 1 / -1;
}

.appointment-show-info-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--home-text);
}

.appointment-show-info-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.appointment-show-info-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem;
  border-radius: 16px;
}

.appointment-show-info-card dt {
  font-size: 0.85rem;
  color: var(--home-muted);
  margin: 0;
}

.appointment-show-info-card dd {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}

.appointment-risk-section {
  display: grid;
  gap: 0.75rem;
}

.appointment-subheading {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--home-muted);
}

.appointment-show-empty {
  margin: 0;
  color: var(--home-muted);
  font-style: italic;
}

.appointment-show-table-wrapper {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: rgba(5, 3, 11, 0.7);
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}

.appointment-show-table {
  width: 100%;
  border-collapse: collapse;
}

.appointment-show-table th,
.appointment-show-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
}

.appointment-show-table th {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-muted);
  background: rgba(255, 255, 255, 0.04);
  width: 200px;
}

.appointment-show-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.appointment-link {
  color: #22D3EE;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.appointment-link:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.appointment-show-hint {
  color: #94A3B8;
  font-size: 0.9rem;
}

.procedures-risk-note {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-size: 0.9rem;
  font-weight: 600;
}

.procedures-lock-note {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5f5;
  font-size: 0.85rem;
  font-weight: 600;
}

.schedule-hero-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.75), rgba(59, 130, 246, 0.55));
  color: var(--home-text);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.schedule-hero-copy h1 {
  margin: 0 0 0.35rem;
  font-size: 2.2rem;
}

.schedule-hero-copy p {
  margin: 0.25rem 0 0;
  color: rgba(247, 245, 255, 0.85);
}

.schedule-hero-meta {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.schedule-hero-highlight {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 1rem 1.35rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-hero-highlight .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(11, 14, 19, 0.6);
}

.schedule-hero-highlight .value {
  font-weight: 700;
}

.schedule-editor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 2.5rem 2.5rem;
}

.schedule-card {
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.schedule-card--full {
  grid-column: 1 / -1;
}

.schedule-share {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-share-field {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.schedule-share-input {
  flex: 1;
  min-width: 220px;
  font-family: inherit;
}

.schedule-share-button {
  flex-shrink: 0;
}

.schedule-share-feedback {
  min-height: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.9);
}

.schedule-share-feedback.is-success {
  color: #34D399;
}

.schedule-share-feedback.is-error {
  color: #F87171;
}

.schedule-share-hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.8);
}

.studio-form {
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  color: #f8fafc;
}

.studio-form__header h1 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  color: #22D3EE;
}

.studio-form__header p {
  margin: 0;
  color: #94A3B8;
}

.studio-form__form {
  display: grid;
  gap: 1.5rem;
}

.studio-card {
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.studio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.logo-box {
  width: 100%;
  padding-top: 56%;
  position: relative;
  border-radius: 18px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px dashed rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

.logo-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field .label,
.file-field .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94A3B8;
  margin-bottom: 0.35rem;
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.1);
  color: #3d3d3d;
  padding: 0.75rem 0.9rem;
}
 .input--static{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.1);
  color: #E2E8F0;
  padding: 0.75rem 0.9rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tattooers-list--scrollable {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid #22d3ee66;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chip__input {
  accent-color: #22D3EE;
}

.text-white {
  accent-color: #fff;
}

.chip__label {
  font-weight: 600;
  color: #3d3d3d;
  border: 0px solid #22d3ee66;
  background: #e8e8e9;
}

.studio-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.studio-actions .btn {
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.schedule-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.schedule-card__header h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #F8FAFC;
}

.schedule-card__header p {
  margin: 0.35rem 0 0;
  color: #94A3B8;
}

.schedule-link {
  text-decoration: none;
  color: #22D3EE;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.schedule-link:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  padding: 0.85rem 1rem;
  text-align: left;
}

.schedule-active-toggle {
  display: flex;
  justify-content: center;
}

.schedule-table th {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #94A3B8;
  background: rgba(148, 163, 184, 0.12);
}

.schedule-table tr:nth-child(even) td {
  background: rgba(148, 163, 184, 0.05);
}

.schedule-input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.1);
  color: #E2E8F0;
}

.schedule-table__toggle {
  text-align: center;
}

.schedule-table__toggle .schedule-toggle {
  width: 18px;
  height: 18px;
}

.schedule-actions {
  display: flex;
  justify-content: flex-end;
}

.schedule-primary-btn,
.schedule-secondary-btn,
.schedule-danger-btn {
  border: none;
  border-radius: 14px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.schedule-primary-btn {
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  color: #0B0E13;
}

.schedule-secondary-btn {
  background: rgba(34, 211, 238, 0.15);
  color: #22D3EE;
}

.schedule-danger-btn {
  background: rgba(248, 113, 113, 0.15);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.3);
  padding: 0.5rem 1rem;
}

.blackout-form__fields {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.blackout-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.blackout-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.blackout-list__empty {
  text-align: center;
  color: #94A3B8;
  font-style: italic;
}
.authorized-hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(11, 14, 19, 0.8);
  overflow: hidden;
}

.authorized-hero-logo.has-image {
  padding: 0;
  background: transparent;
}

.authorized-hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authorized-hero-copy h1 {
  font-size: 2.25rem;
  margin-bottom: 0.35rem;
}

.authorized-hero-copy p {
  margin: 0;
  color: rgba(13, 16, 22, 0.85);
}

.authorized-hero-meta {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}

.profile-avatar.has-image {
  background: transparent;
}

.profile-avatar.has-image span {
  display: none;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.profile-summary h1 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.profile-role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 14, 19, 0.8);
}

.profile-email {
  font-size: 0.95rem;
  opacity: 0.85;
}

.profile-edit-btn {
  margin-left: auto;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-primary), var(--home-secondary));
  color: #05030b;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-edit-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--home-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

.profile-edit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -14px rgba(217, 70, 239, 0.5);
}

.studios-hero {
  justify-content: space-between;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.8), rgba(217, 70, 239, 0.6));
}

.studios-hero-meta {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.studios-content {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(5, 3, 11, 0.85);
  color: var(--home-muted);
  display: grid;
  gap: 2.5rem;
}

.profile-content {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(5, 3, 11, 0.85);
  color: var(--home-muted);
  display: grid;
  gap: 2.5rem;
}

.appointments-hero-copy h1,
.procedures-hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.appointments-hero-copy p,
.procedures-hero-copy p {
  margin: 0;
  color: rgba(247, 245, 255, 0.8);
}

.appointments-hero-meta,
.procedures-hero-meta {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.account-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(8, 3, 20, 0.6);
  padding: 1.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--home-text);
}

.hero-pill strong {
  color: var(--home-accent);
}

.appointments-content,
.procedures-content,
.authorized-content,
.procedure-content {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(5, 3, 11, 0.85);
  color: var(--home-muted);
  display: grid;
  gap: 2rem;
}

.account-edit-header {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.85), rgba(217, 70, 239, 0.6));
  color: var(--home-text);
}

.account-edit-header h1 {
  margin: 0.6rem 0;
}

.account-edit-body {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: grid;
  gap: 2rem;
}

.account-avatar-upload {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(8, 3, 20, 0.6);
}

.account-avatar-input {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.current-avatar-preview img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.account-avatar-input .home-input {
  border-radius: 12px;
  border: 1px solid #1f2937;
  background: #161c25;
  padding: 0.8rem 1rem;
  color: #f8fafc;
}

.account-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.account-edit-grid--stacked {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.account-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.account-field label {
  font-weight: 600;
  color: var(--home-text);
}

.account-field .home-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #1f2937;
  background: #161c25;
  padding: 0.85rem 1.1rem;
  color: #f8fafc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.account-field .home-input:focus {
  outline: none;
  border-color: rgba(187, 134, 252, 0.8);
  box-shadow: 0 0 8px rgba(187, 134, 252, 0.4);
}


.account-hint {
  font-size: 0.8rem;
  color: var(--home-muted);
}

.account-switches {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(8, 3, 20, 0.6);
  display: grid;
  gap: 1.25rem;
}

.account-switches__header h3 {
  margin: 0;
  color: var(--home-text);
}

.account-switches__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.switch-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 11, 0.6);
  color: var(--home-muted);
  cursor: pointer;
}

.switch-chip__input {
  display: none;
}

.switch-chip__toggle {
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.3s ease;
}

.switch-chip__toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--home-text);
  transition: transform 0.3s ease;
}

.switch-chip__input:checked + .switch-chip__toggle {
  background: linear-gradient(90deg, var(--home-primary), var(--home-secondary));
}

.switch-chip__input:checked + .switch-chip__toggle::after {
  transform: translateX(20px);
}

.switch-chip--compact {
  width: 48px;
  justify-content: center;
  padding: 0.35rem 0.4rem;
}

.account-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.account-edit-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.account-delete-btn {
  background: transparent;
  border: 1px solid rgba(255, 94, 132, 0.8);
  color: #ff5e84;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.account-delete-btn:hover {
  transform: translateY(-1px);
}

.auth-page .account-edit-card {
  max-width: 640px;
}

.auth-header p {
  margin: 0.6rem 0 0;
  color: rgba(247, 245, 255, 0.85);
}

.auth-body {
  display: grid;
  gap: 1.5rem;
}

.auth-grid {
  grid-template-columns: 1fr;
}

.auth-form {
  display: grid;
  gap: 1.5rem;
}

.auth-remember {
  align-items: center;
  font-size: 0.9rem;
}

.auth-remember small {
  display: block;
  font-size: 0.75rem;
  color: var(--home-muted);
}

.auth-actions {
  justify-content: stretch;
}

.auth-links {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: var(--home-muted);
}

.auth-links a {
  color: var(--home-accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(247, 245, 255, 0.16);
}

.auth-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth-social__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.auth-social__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.profile-incomplete-body {
  display: grid;
  gap: 1.5rem;
}

.profile-checklist ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
}

.profile-checklist li {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
}

.profile-checklist li.is-complete {
  border: 1px solid rgba(34, 211, 238, 0.5);
}

.profile-checklist li.is-pending {
  border: 1px solid rgba(255, 94, 132, 0.3);
}

.profile-checklist__status {
  font-weight: 700;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.profile-block-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 94, 132, 0.12);
  border: 1px solid rgba(255, 94, 132, 0.4);
  font-size: 0.9rem;
}

.profile-incomplete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 2rem !important;
}

.profile-logout-btn {
  border-color: rgba(247, 245, 255, 0.4);
}

.profile-incomplete-banner {
  border: 1px solid rgba(255, 94, 132, 0.3);
  border-radius: 20px;
  background: rgba(255, 94, 132, 0.07);
  display: grid;
  gap: 1rem;
      width: min(1200px, 92vw);
    margin: 1rem auto;
    padding: 1rem;
}

.profile-incomplete-banner__info h2 {
  margin: 0.25rem 0;
}

.profile-checklist--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.authorized-section {
  display: grid;
  gap: 1.5rem;
}

.authorized-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.authorized-section-header h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #94A3B8;
  margin: 0;
}

.authorized-info-grid {
  display: grid;
  gap: 1.5rem;
}

.authorized-info-card {
  background: rgba(10, 14, 23, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 18px 40px -30px rgba(14, 116, 144, 0.7);
}

.authorized-info-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #F8FAFC;
}

.authorized-info-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.authorized-info-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.authorized-info-card dt {
  font-size: 0.85rem;
  color: #CBD5F5;
  margin: 0;
}

.authorized-info-card dd {
  margin: 0;
  font-weight: 600;
  color: #F8FAFC;
}

.authorized-empty {
  margin: 0;
  color: #94A3B8;
  font-style: italic;
}

.authorized-risk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.authorized-risk-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-weight: 600;
  font-size: 0.85rem;
}

.authorized-risk-grid .authorized-risk-pill:nth-child(odd) {
  background: rgba(34, 211, 238, 0.18);
  border-color: rgba(34, 211, 238, 0.35);
  color: #cffafe;
}

.authorized-risk-note {
  margin-top: 1rem;
  color: #F8FAFC;
  font-size: 0.9rem;
  line-height: 1.4;
}

.authorized-table-wrapper {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
  background: rgba(10, 14, 23, 0.7);
  box-shadow: 0 18px 40px -30px rgba(14, 116, 144, 0.7);
}

.authorized-table {
  width: 100%;
  border-collapse: collapse;
}

.authorized-table th,
.authorized-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
}

.authorized-table th {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
  background: rgba(148, 163, 184, 0.12);
}

.authorized-table tr:nth-child(even) td {
  background: rgba(148, 163, 184, 0.06);
}

.authorized-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(10, 14, 23, 0.7);
}

.appointments-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.appointment-card {
  background: rgba(5, 3, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.appointment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px -24px rgba(217, 70, 239, 0.55);
}

.appointment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.appointment-card-header h3 {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
  color: var(--home-text);
}

.appointment-card-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.status-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0B0E13;
}

.status-tag.status-pending {
  background: linear-gradient(120deg, #fde68a, #f59e0b);
}

.status-tag.status-in-progress {
  background: linear-gradient(120deg, #bfdbfe, #3b82f6);
}

.status-tag.status-confirmed {
  background: linear-gradient(120deg, #bbf7d0, #16a34a);
}

.status-tag.status-canceled,
.status-tag.status-cancelled {
  background: linear-gradient(120deg, #fecdd3, #f43f5e);
}

.status-tag.status-completed {
  background: linear-gradient(120deg, #ddd6fe, #7c3aed);
}

.appointment-meta {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.appointment-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
}

.appointment-meta dt {
  margin: 0;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.appointment-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}

.appointment-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.appointments-action-link {
  color: var(--home-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease;
}

.appointments-action-link:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.appointments-empty-state {
  background: rgba(124, 58, 237, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  color: var(--home-muted);
}

.appointments-empty-state h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: var(--home-text);
}

.appointments-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pagination-link {
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination-link:hover {
  background: rgba(124, 58, 237, 0.18);
}

.pagination-link.disabled {
  opacity: 0.35;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--home-muted);
}

.pagination-status {
  font-size: 0.9rem;
  color: var(--home-muted);
}

.profile-section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-muted);
  margin-bottom: 1.2rem;
}

.profile-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-section-header h2 {
  margin-bottom: 0;
}

.profile-details {
  display: grid;
  gap: 1.1rem;
}

.profile-details div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 20px;
}

.profile-details dt {
  font-weight: 500;
  color: var(--home-muted);
}

.profile-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}

.profile-about {
  line-height: 1.7;
  color: #CBD5F5;
}

.profile-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.profile-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.4);
  color: #22D3EE;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(34, 211, 238, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.profile-social-pill:hover {
  transform: translateY(-1px);
  background: rgba(34, 211, 238, 0.12);
}

.profile-social-pill svg {
  width: 18px;
  height: 18px;
}

.profile-info-grid {
  display: grid;
  gap: 1rem;
}

.profile-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 11, 0.6);
}

.profile-pill .pill-label {
  color: var(--home-text);
}

.profile-pill .pill-value {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.profile-pill.positive {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.35);
}

.profile-pill.negative {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.35);
}

.profile-pill.unknown {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.profile-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.profile-form-card {
  background: rgba(5, 3, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}

.profile-form-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--home-text);
}

.profile-form-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--home-muted);
  flex: 1;
}

.profile-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile-action-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, var(--home-primary), var(--home-secondary));
  color: #05030b;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -16px rgba(217, 70, 239, 0.7);
}

.profile-action-link {
  align-self: flex-start;
  text-decoration: none;
  font-weight: 600;
  color: var(--home-accent);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.profile-action-link:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.procedures-section {
  display: grid;
  gap: 1.5rem;
}

.procedures-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.procedures-section-header h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-muted);
  margin: 0;
}

.section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-weight: 700;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  color: var(--home-text);
  font-size: 0.85rem;
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.procedures-card-item {
  background: rgba(5, 3, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.procedures-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px -24px rgba(217, 70, 239, 0.55);
}

.procedures-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.procedures-card-header h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  color: var(--home-text);
}

.procedures-card-header a {
  color: var(--home-text);
  text-decoration: none;
}

.procedures-card-header a:hover {
  color: var(--home-accent);
}

.procedures-card-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.procedures-progress {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.procedures-progress-bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--home-primary), var(--home-secondary));
  border-radius: inherit;
}

.procedures-progress-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.procedures-meta {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.procedures-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
}

.procedures-meta dt {
  margin: 0;
  font-size: 0.8rem;
  color: var(--home-muted);
}

.procedures-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}

.procedures-risk-note {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-size: 0.85rem;
  line-height: 1.4;
}

.procedures-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.procedures-action-link {
  color: var(--home-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease;
}

.procedures-action-link:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.procedures-empty-state {
  background: rgba(124, 58, 237, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  color: var(--home-muted);
}

.procedures-empty-state h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: var(--home-text);
}

.procedures-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .neon-shell {
    padding: 2rem 1rem;
  }

  .profile-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .appointments-hero,
  .procedures-hero,
  .authorized-hero,
  .procedure-hero,
  .appointment-edit-hero,
  .appointment-show-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .profile-edit-btn {
    margin: 1rem 0 0;
  }

  .profile-hero__actions {
    align-items: flex-start;
    width: 100%;
  }

  .profile-contact-actions {
    justify-content: flex-start;
  }

  .appointments-list,
  .procedures-grid,
  .authorized-info-grid,
  .procedure-info-grid,
  .appointment-field-grid,
  .appointment-edit-overview,
  .appointment-show-grid {
    grid-template-columns: 1fr;
  }

  .profile-details div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .profile-forms-grid {
    grid-template-columns: 1fr;
  }

  .account-avatar-upload {
    flex-direction: column;
  }

  .account-edit-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-edit-footer {
    flex-direction: column;
    align-items: flex-start;
  }

.appointments-pagination,
  .procedures-pagination,
  .authorized-actions,
  .procedure-form-actions,
  .appointment-form-actions,
  .appointment-show-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .authorized-info-card dl div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .procedure-info-card dl div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .procedure-info-action .inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .appointment-edit-summary,
  .appointment-show-times {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .appointment-show-info-card dl div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .appointment-form-actions a,
  .appointment-form-actions button,
  .appointment-show-actions a,
  .appointment-show-actions button {
    width: 100%;
    justify-content: center;
  }
}

.avatar-upload {
  margin-bottom: 1.5rem;
}

.avatar-upload label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.avatar-upload .input {
  padding: 0.65rem;
  border: 1px solid #cbd5f5;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.05);
}

.avatar-upload input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.65rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.03);
  color: #0f172a;
}

.current-avatar-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, 0.8);
}

.current-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tattooer-control-page .appointments-card {
  max-width: 1200px;
}

.tattooer-filters {
  display: grid;
  gap: 1.25rem;
}

.tattooer-filters__header h2 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-muted);
}

.tattooer-filters__header p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.9rem;
}

.tattooer-filters__form {
  display: grid;
  gap: 1rem;
}

.tattooer-filters__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.tattooer-filter-field {
  gap: 0.4rem;
}

.tattooer-filter-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.tattooer-filters__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tattooer-table-section {
  display: grid;
  gap: 1rem;
}

.tattooer-table-section__header h2 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-muted);
}

.tattooer-table-section__header p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.9rem;
}

.tattooer-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.tattooer-appointments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--home-muted);
}

.tattooer-appointments-table thead {
  background: rgba(15, 23, 42, 0.9);
}

.tattooer-appointments-table th,
.tattooer-appointments-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  vertical-align: middle;
}

.tattooer-appointments-table th {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #cbd5f5;
  white-space: nowrap;
}

.tattooer-appointments-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.4);
}

.tattooer-appointments-table tbody tr:hover {
  background: rgba(34, 211, 238, 0.06);
}

.tattooer-table-actions {
  text-align: right;
  white-space: nowrap;
}
.procedure-section {
  display: grid;
  gap: 1.5rem;
}

.procedure-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.procedure-section-header h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-muted);
  margin: 0;
}

.procedure-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.procedure-info-card {
  background: rgba(5, 3, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}

.procedure-info-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--home-text);
}

.procedure-info-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.procedure-info-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.procedure-info-card dt {
  font-size: 0.85rem;
  color: var(--home-muted);
  margin: 0;
}

.procedure-info-card dd {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}

.procedure-empty {
  margin: 0;
  color: var(--home-muted);
  font-style: italic;
}

.procedure-info-action {
  margin-top: 0.5rem;
}

.procedure-info-action .inline-form {
  display: flex;
  gap: 0.5rem;
}

.procedure-form-select {
  display: grid;
  gap: 0.5rem;
}

.procedure-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5F5;
}

.procedure-select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.08);
  color: #E2E8F0;
}

.procedure-action-btn {
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  color: #0B0E13;
  font-weight: 600;
  cursor: pointer;
}

.procedure-risk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.procedure-risk-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-weight: 600;
  font-size: 0.85rem;
}

.procedure-risk-pill:nth-child(odd) {
  background: rgba(34, 211, 238, 0.18);
  border-color: rgba(34, 211, 238, 0.35);
  color: #cffafe;
}

.procedure-form {
  display: grid;
  gap: 1.5rem;
}

.procedure-question-card {
  background: rgba(10, 14, 23, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 18px 40px -30px rgba(14, 116, 144, 0.7);
}

.procedure-question-card.locked {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: none;
}

.procedure-question-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.procedure-question-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #F8FAFC;
}

.question-type {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
}

.procedure-question-body {
  display: grid;
  gap: 1rem;
}

.procedure-input {
  min-height: 120px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.08);
  color: #E2E8F0;
  resize: vertical;
}

.procedure-checkbox-group,
.procedure-radio-group {
  display: grid;
  gap: 0.65rem;
}

.procedure-checkbox,
.procedure-radio {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.08);
  cursor: pointer;
  border: 1px solid transparent;
}

.procedure-checkbox input,
.procedure-radio input {
  accent-color: #22D3EE;
  width: 18px;
  height: 18px;
}

.procedure-checkbox:hover,
.procedure-radio:hover {
  border-color: rgba(34, 211, 238, 0.45);
}

.procedure-lock-banner {
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-weight: 600;
  margin-bottom: 1rem;
}

.procedure-readonly-list {
  display: grid;
  gap: 1.5rem;
}

.procedure-readonly-answer {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #E2E8F0;
  white-space: pre-wrap;
}

.procedure-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.12);
}

.procedure-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.procedure-toggle-track {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  transition: background 0.2s ease;
}

.procedure-toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f8fafc;
  transition: transform 0.2s ease;
}

.procedure-toggle-input:checked + .procedure-toggle-track {
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
}

.procedure-toggle-input:checked + .procedure-toggle-track::after {
  transform: translateX(20px);
}

.procedure-toggle-label {
  font-weight: 600;
  color: #E2E8F0;
}

.procedure-form-actions {
  display: flex;
  justify-content: flex-end;
}

.procedure-submit-btn {
  padding: 0.9rem 2.4rem;
  border-radius: 16px;
  border: none;
  font-weight: 700;
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  color: #0B0E13;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.procedure-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -16px rgba(34, 211, 238, 0.9);
}

.procedure-link {
  color: #22D3EE;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.procedure-link:hover {
  border-color: rgba(34, 211, 238, 0.6);
}
.formaceous-page-wrapper {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #111827 0%, #0F172A 40%, #1E293B 100%);
}

.formaceous-page-card {
  width: 100%;
  max-width: 1100px;
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(8, 15, 32, 0.9);
  box-shadow: 0 30px 60px -35px rgba(8, 15, 32, 0.95);
}

.formaceous-hero {
  padding: 2.75rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.75), rgba(59, 130, 246, 0.65));
  color: #0B0E13;
}

.formaceous-hero-copy h1 {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
}

.formaceous-hero-copy p {
  margin: 0;
  color: rgba(11, 14, 19, 0.85);
  max-width: 640px;
}

.formaceous-hero-meta {
  margin-top: 1rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.studio-form-container {
  padding: 2.5rem;
}

.studios-list-container {
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.studio-cta-btn {
  background: #0B0E13;
  color: #22D3EE;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(11, 14, 19, 0.35);
}

.studios-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.studios-card {
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.studios-card__media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.studios-card__body {
  padding: 1.2rem 1.5rem;
  display: grid;
  gap: 1rem;
}

.studios-card__meta-wrapper {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.studios-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.studios-card__title-row h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #f8fafc;
}

.studios-card__meta {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.studios-card__meta div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.studios-card__meta dt {
  margin: 0;
  color: #94A3B8;
  font-size: 0.85rem;
}

.studios-card__meta dd {
  margin: 0;
  font-weight: 600;
  color: #f8fafc;
}

.studios-card__actions {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
}

.studio-actions {
  justify-content: space-between;
}

.studio-primary-btn,
.studio-secondary-btn,
.studio-danger-btn {
  border-radius: 12px;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  flex: 1;
  border: none;
}

.studio-primary-btn {
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  color: #0B0E13;
}

.studio-secondary-btn {
  background: rgba(34, 211, 238, 0.12);
  color: #22D3EE;
  border: 1px solid rgba(34, 211, 238, 0.4);
}

.studio-danger-btn {
  background: rgba(178, 0, 30, 0.15);
  color: #fecaca;
  border: 1px solid rgba(178, 0, 30, 0.4);
}

.studios-empty-state {
  padding: 2rem;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  text-align: center;
  background: rgba(15, 23, 42, 0.6);
}

.studios-show-hero {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.studios-show-hero-media img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(11, 14, 19, 0.2);
}

.studios-show-content {
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.studios-show-card {
  border-radius: 22px;
  background: rgba(5, 3, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}

.form-show-card {
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}

.studios-show-details {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.studios-show-details div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
}

.studios-show-details dt {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.85rem;
}

.studios-show-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}


.studios-artist-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.studios-artist-card {

  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 30px 70px rgba(9, 11, 19, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.studios-artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(9, 11, 19, 0.4);
}

.studios-artist-media {
  position: relative;
  width: 100%;
}

.studios-artist-media img,
.studios-artist-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.studios-artist-media img {
    width: 100%;
  height: 360px;
}


.studios-artist-footer {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.studios-artist-name {
  margin: 0 0 0.1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.studios-artist-style {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(33, 18, 0, 0.7);
  min-height: 2.2rem;
}

.studios-artist-cta {
  align-self: flex-start;
}

.studios-artist-cta .procedure-link {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #141212;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 18, 18, 0.25);
  transition: background 0.2s ease;
}

.studios-artist-cta .procedure-link:hover {
  background: #fff;
}

@media (max-width: 760px) {


  .studios-artist-cta .procedure-link {
    width: 100%;
    text-align: center;
  }
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--home-text);
}

.notice-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1rem auto;
  width: min(960px, 92vw);
  color: var(--home-text);
  overflow: hidden;
  box-shadow: 0 25px 60px -30px rgba(5, 3, 11, 0.8);
}

.notice-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.notice-banner__content {
  position: relative;
  z-index: 1;
}

.notice-banner__label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(247, 245, 255, 0.7);
}

.notice-banner__message {
  margin: 0.1rem 0 0;
  font-weight: 600;
}

.notice-banner__close {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--home-text);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.notice-banner__close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.notice-banner--success {
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.3), rgba(34, 211, 238, 0.15));
}

.notice-banner--alert {
  background: linear-gradient(120deg, rgba(244, 63, 94, 0.25), rgba(252, 211, 77, 0.15));
}

/* Home landing page */
:root {
  --home-bg: #05030b;
  --home-deep: #0d0718;
  --home-card: rgba(13, 7, 24, 0.85);
  --home-primary: #d946ef;
  --home-secondary: #7c3aed;
  --home-accent: #22d3ee;
  --home-text: #f7f5ff;
  --home-muted: rgba(247, 245, 255, 0.72);
}

.home-page {
  background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.3), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(217, 70, 239, 0.25), transparent 50%),
              linear-gradient(120deg, #05030b 0%, #0d0616 100%);
  color: var(--home-text);
}

.neon-shell {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  padding: clamp(2rem, 4vw, 4rem) 1.5rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
    background: radial-gradient(circle at 10% 15%, rgba(124, 58, 237, 0.25), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(217, 70, 239, 0.2), transparent 55%),
              linear-gradient(135deg, #04020b 0%, #0b0316 60%, #080411 100%);

}

.neon-shell__glow {
  position: absolute;
  inset: 0;
  filter: blur(50px);
  opacity: 0.7;
  pointer-events: none;
}

.neon-panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  border-radius: 8px;
  background: rgba(5, 3, 11, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 70px rgba(5, 3, 11, 0.6);
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 1;
}
.panel {
    position: relative;
    backdrop-filter: blur(18px);
    overflow: hidden;
    z-index: 1;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5, 3, 11, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(3, 0, 8, 0.45);
  overflow: visible;
}

.home-header__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.4), transparent 55%),
              radial-gradient(circle at 90% 0%, rgba(34, 211, 238, 0.3), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.home-header__inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.home-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--home-text);
}

.home-header__brand-logo {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

.home-header__brand-text span {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.home-header__brand-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--home-muted);
}

.home-header__links {
  display: flex;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.home-header__link {
  color: var(--home-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  transition: color 0.2s ease;
}

.home-header__link:hover {
  color: var(--home-text);
}

.home-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-header__actions form {
  margin: 0;
}

.home-header__profile {
  color: var(--home-text);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
}

.home-header__profile-menu {
  position: relative;
}

.home-header__profile--button {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.home-header__profile-caret {
  font-size: 0.65rem;
}

.home-header__profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 180px;
  background: #020617;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
  padding: 0.35rem;
  display: none;
  z-index: 40;
}

.home-header__profile-menu.is-open .home-header__profile-dropdown {
  display: block;
}

.home-header__profile-item {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #e5e7eb;
  text-decoration: none;
}

.home-header__profile-item:hover {
  background: rgba(148, 163, 184, 0.18);
}

.home-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-header__btn--solid {
  background: linear-gradient(90deg, var(--home-primary), var(--home-secondary));
  color: #05030b;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.45);
}

.home-header__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--home-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-header__btn--outline {
  background: transparent;
  color: var(--home-accent);
  border: 1px solid rgba(34, 211, 238, 0.6);
}

.home-header__btn:hover {
  transform: translateY(-1px);
}

.home-section {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.home-page {
  width: 100%;
}

.home-form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-card-empty {
  margin: 0.5rem 0 0;
  color: var(--home-muted);
  font-size: 0.95rem;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--home-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-hero {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 5% 10%;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 60%);
  z-index: 0;
}

.home-hero__content,
.home-hero__visual {
  position: relative;
  z-index: 1;
}

.home-hero__stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.home-hero__content h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin: 1rem 0;
  font-weight: 700;
}

.home-lead {
  font-size: 1.1rem;
  color: var(--home-muted);
  margin-bottom: 1.5rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.home-btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

.home-btn--solid {
  background: linear-gradient(90deg, var(--home-primary), var(--home-secondary));
  color: #08020f;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}


.upgrade-tattooer-btn {
  background: linear-gradient(90deg, var(--home-primary), var(--home-secondary));
  color: #08020f;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.upgrade-onwer-btn {
  background: linear-gradient(90deg, #3ff2ff, var(--home-secondary));
  color: #08020f;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.upgrade-onwer-gold-btn {
  background: linear-gradient(90deg, #ffce59, #a25b00);
  color: #08020f;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.upgrade-onwer-plus-btn {
  background:  linear-gradient(90deg, #3c64c9, #31da00);
  color: #08020f;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}




.home-btn--solid:hover{
  background: linear-gradient(90deg, #6b2077, #2d0d66);
  color: #fff;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.home-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--home-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-btn--solid:hover,
.home-btn--ghost:hover {
  transform: translateY(-2px);
}

.home-hero__cta,
.home-hero__summary {
  background: rgba(8, 3, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 45px rgba(5, 3, 11, 0.4);
}

.home-hero__cta-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.home-hero__cta-note {
  font-size: 0.95rem;
  color: var(--home-muted);
}

.home-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.home-input {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--home-text);
  padding: 0.9rem 1.25rem;
  width: 100%;
  background: #161c25;
  border-radius: 19px;
}

.home-btn--input {
  flex: 0 0 auto;
}

.home-link {
  color: var(--home-accent);
  font-weight: 600;
  text-decoration: none;
}

.home-link:hover {
  text-decoration: underline;
}

.home-hero__visual {
  display: grid;
  gap: 1rem;
}

.home-hero__visual-card {
  position: relative;
  border-radius: 30px;
  padding: 2rem;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.25), rgba(12, 6, 19, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 260px;
}

.home-hero__halo {
  position: absolute;
  inset: 20%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 70%);
  filter: blur(10px);
}

.home-hero__image {
  position: relative;
  width: min(280px, 70%);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.home-hero__stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(12px);
}

.home-stat-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--home-muted);
}

.home-stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.home-stat-value--compact {
  font-size: 1.1rem;
}

.home-stat-note {
  font-size: 0.95rem;
  color: var(--home-muted);
}

.home-section-label {
  text-transform: uppercase;
  color: var(--home-muted);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.home-learning__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.home-card {
  background: var(--home-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 40px rgba(5, 3, 11, 0.45);
}

.home-card h3 {
  margin: 1rem 0 0.5rem;
}


.home-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--home-secondary), var(--home-primary));
  display: grid;
  place-items: center;
}

.home-icon svg {
  width: 24px;
  height: 24px;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.home-benefits__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.home-benefits__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--home-muted);
}

.home-benefits__list li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--home-accent);
}

.home-device-card {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(8, 3, 20, 0.95));
  border-radius: 30px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(5, 3, 11, 0.5);
}

.home-device-card__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--home-muted);
}

.home-badge {
  background: rgba(34, 211, 238, 0.2);
  color: var(--home-accent);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.home-cta {
  text-align: center;
}

.home-cta__content {
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.6), rgba(217, 70, 239, 0.4));
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(5, 3, 11, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 1.25rem;
}

.home-mentor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.home-mentor__visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.home-mentor__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 3, 11, 0.4), rgba(8, 3, 20, 0.2));
}

.home-mentor__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-dashboard__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.home-appointments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.home-appointment-card {
  background: rgba(8, 3, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(5, 3, 11, 0.5);
}

.home-appointment-card__date {
  font-size: 0.9rem;
  color: var(--home-muted);
}

.home-appointment-card__counterpart {
  color: var(--home-muted);
  margin-bottom: 1rem;
}

.home-appointment-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-empty-state {
  color: var(--home-muted);
  font-style: italic;
}

.home-studios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.home-studio-card {
  background: rgba(8, 3, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 24px 50px rgba(5, 3, 11, 0.45);
}

.home-studio-card__logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.home-studio-card__meta {
  color: var(--home-muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .home-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-header__links {
    justify-content: flex-start;
  }

  .home-btn--input {
    width: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-device-card__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Calendar view */
.calendar-page {
  min-height: 100vh;
  padding: 1.5rem 1rem 3rem;
}

.calendar-hero {
  width: 100%;
  margin: 1rem auto 1.5rem;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.15), rgba(124, 58, 237, 0.2));
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.calendar-hero__copy h1 {
  margin: 0.25rem 0 0.4rem;
  font-size: 2rem;
  color: var(--home-text);
}

.calendar-hero__copy p {
  color: var(--home-muted);
}

.calendar-hero__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(5, 3, 11, 0.35);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.6rem;
}

.calendar-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(247, 245, 255, 0.08);
  color: var(--home-text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.calendar-nav-btn:hover {
  transform: translateY(-1px);
  background: rgba(247, 245, 255, 0.15);
}

.calendar-month-label {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.calendar-shell {
  padding-top: 0;
}

.calendar-panel {
  padding: 1.25rem;
}

.calendar-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calendar-grid-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  box-shadow: inset 0 0 30px rgba(5, 3, 11, 0.35);
}

.calendar-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.calendar-section-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.calendar-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--home-muted);
  margin-bottom: 0.4rem;
}

.calendar-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.calendar-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.35rem;
  background: rgba(255, 255, 255, 0.2);
}

.calendar-legend__dot.is-available { background: linear-gradient(120deg, #22d3ee, #06b6d4); }
.calendar-legend__dot.is-partial { background: linear-gradient(120deg, #f97316, #fb923c); }
.calendar-legend__dot.is-busy { background: linear-gradient(120deg, #dc2626, #991b1b); }
.calendar-legend__dot.is-disabled { background: rgba(148, 148, 148, 0.6); }

.calendar-grid-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  margin: 0 -0.25rem;
  padding-left: 0.25rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(60px, 1fr));
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--home-muted);
  margin-bottom: 0.5rem;
  min-width: 520px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(60px, 1fr));
  gap: 0.45rem;
  min-width: 520px;
}

.calendar-grid__day {
  border-radius: 18px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  color: var(--home-text);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 80px;
  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
}

.calendar-grid__day:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.4);
}

.calendar-grid__day.is-outside { opacity: 0.35; }
.calendar-grid__day.is-selected {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
}
.calendar-grid__day.is-available {
  background:  linear-gradient(120deg, #22d3ee, #06b6d4);
}
.calendar-grid__day.is-partial {
  background: linear-gradient(120deg, #f97316, #fb923c);
  color: #1f150c;
}
.calendar-grid__day.is-busy {
  background:  linear-gradient(120deg, #dc2626, #991b1b);
  color: #fff;
}
.calendar-grid__day.is-blackout { background: rgba(83, 81, 81, 0.65); }
.calendar-grid__day.is-disabled {
  background: rgba(148, 148, 148, 0.2);
  color: #cbd5f5;
}

.calendar-grid__num {
  font-weight: 700;
  text-align: center;
  font-size: 1.2em;
}

.calendar-grid__meta{
  text-transform: uppercase;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
    text-align: center;
  color: var(--home-muted);
}

.calendar-grid__week {
  position: absolute;
  right: 0.75rem;
  top: 0.6rem;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
 text-align: center;
  text-transform: uppercase;
}

.calendar-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calendar-sidebar__card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 11, 0.35);
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.calendar-sidebar__date .calendar-day {
  font-size: 1.15rem;
  font-weight: 700;
}

.calendar-field label {
  display: block;
  font-size: 0.82rem;
  color: var(--home-text);
  margin-bottom: 0.3rem;
}

.calendar-select {
  width: 100%;
  border-radius: 14px;
  background: rgba(8, 3, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--home-text);
  padding: 0.75rem 0.9rem;
}

.calendar-flash {
  min-height: 1rem;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.calendar-flash.is-visible { opacity: 1; }
.calendar-flash.is-success { color: #34d399; }
.calendar-flash.is-error { color: #fca5a5; }

.calendar-slot-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.calendar-slot {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calendar-slot--busy {
  border-color: rgba(249, 115, 22, 0.35);
}

.calendar-slot__info {
  display: grid;
  gap: 0.2rem;
}

.calendar-slot__time {
  font-size: 1.05rem;
  font-weight: 600;
}

.calendar-slot__hint {
  font-size: 0.85rem;
  color: var(--home-muted);
}

.calendar-slot__button {
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(120deg, var(--home-primary), var(--home-accent));
  color: #08020f;
  box-shadow: 0 15px 25px rgba(34, 211, 238, 0.25);
  transition: transform 0.2s ease;
  width: 100%;
  text-align: center;
}

.calendar-slot__button:hover {
  transform: translateY(-1px);
}

.calendar-slot__badge {
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  font-weight: 600;
  font-size: 0.85rem;
  align-self: flex-start;
}

.calendar-note {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.calendar-note--info {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.35);
}

.calendar-note--alert {
  background: rgba(220, 38, 38, 0.15);
  color: #fecaca;
  border-color: rgba(220, 38, 38, 0.4);
}

.calendar-note--muted {
  background: rgba(148, 163, 184, 0.08);
  color: var(--home-muted);
  border-color: rgba(148, 163, 184, 0.25);
}

.calendar-smallprint {
  font-size: 0.8rem;
  color: var(--home-muted);
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 640px) {
  .calendar-page {
    padding: 1.5rem 1.5rem 3.5rem;
  }

  .calendar-grid-wrapper {
    overflow: hidden;
    padding-bottom: 0;
    margin: 0;
  }

  .calendar-weekdays,
  .calendar-grid {
    min-width: 100%;
  }

  .calendar-grid {
    gap: 0.6rem;
  }

  .calendar-grid__day {
    min-height: 90px;
    padding: 0.85rem;
  }
}

@media (min-width: 768px) {
  .calendar-hero {
    width: min(720px, 90vw);
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin: 1.5rem auto 2rem;
  }

  .calendar-hero__copy {
    flex: 1 1 auto;
  }

  .calendar-hero__copy p {
    margin: 0;
  }

  .calendar-hero__nav {
    width: auto;
  }

  .calendar-sidebar__card {
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .calendar-page {
    padding-bottom: 4rem;
  }

  .calendar-hero {
    width: min(1200px, 92vw);
    margin: clamp(1.5rem, 4vw, 3rem) auto 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    gap: 1.5rem;
  }

  .calendar-hero__copy h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .calendar-shell {
    padding-top: clamp(1rem, 3vw, 2.5rem);
  }

  .calendar-panel {
    padding: clamp(2rem, 3vw, 2.5rem);
  }

  .calendar-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
  }

  .calendar-grid-card {
    padding: clamp(1.25rem, 2vw, 1.8rem);
  }

  .calendar-section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .calendar-sidebar {
    position: sticky;
    top: 90px;
    align-self: flex-start;
  }

  .calendar-slot-list {
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 0.5rem;
  }

  .calendar-slot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .calendar-slot__button {
    width: auto;
    text-align: center;
  }
}

/* Tattooer portfolio layout */
.portfolio-page {
  min-height: calc(100vh - 80px);
  padding: clamp(1rem, 4vw, 3rem);
}

.portfolio-card {
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 25px 65px rgba(6, 2, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.portfolio-header h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--home-text);
}

.portfolio-header p {
  color: var(--home-muted);
  margin: 0;
}

.portfolio-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.portfolio-body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

.portfolio-upload {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

 .portfolio-tools {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 2vw, 2.25rem);
}

.portfolio-tool {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.portfolio-tool h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.portfolio-tool p {
  margin: 0 0 1rem;
  color: var(--home-muted);
}

.portfolio-gallery__multi-delete-form {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.portfolio-gallery__multi-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem);
}

.portfolio-gallery__multi-title {
  margin: 0;
  font-weight: 600;
  color: var(--home-text);
}

.portfolio-gallery__multi-hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--home-muted);
}

.portfolio-item.is-selectable {
  position: relative;
}

.portfolio-item__selector {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.65);
  border-radius: 999px;
  padding: 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.portfolio-item__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: relative;
  background: transparent;
  cursor: pointer;
}

.portfolio-item__checkbox::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background: #22d3ee;
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.portfolio-item__checkbox:checked {
  border-color: #22d3ee;
}

.portfolio-item__checkbox:checked::after {
  opacity: 1;
  transform: scale(1);
}

.portfolio-item__checkbox-label {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.portfolio-tool__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.portfolio-contact {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-contact__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.portfolio-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.portfolio-contact__card {
  background: rgba(5, 3, 11, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.portfolio-contact__card h3 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.portfolio-contact__link {
  font-weight: 600;
  color: var(--home-text);
  text-decoration: none;
}

.portfolio-contact__link:hover {
  text-decoration: underline;
}

.portfolio-contact__value {
  margin: 0;
  font-size: 0.95rem;
  color: var(--home-text);
}

.portfolio-contact__about {
  margin: 0;
  color: #d1d5ff;
  line-height: 1.6;
}

.portfolio-tool-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.portfolio-category-input {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 3, 11, 0.6);
  color: var(--home-muted);
  padding: 0.85rem 1rem;
}

.portfolio-select {
  display: flex;
}

.portfolio-category-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 3, 11, 0.6);
  color: var(--home-muted);
  padding: 0.85rem 1rem;
}

.portfolio-category {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1rem;
}

.portfolio-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.portfolio-category__header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.portfolio-category-delete {
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.5);
  padding: 0.4rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  color: #fecaca;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-category-delete:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: translateY(-1px);
}

.portfolio-share-link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.portfolio-share-link input {
  flex: 1;
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 3, 11, 0.6);
  color: var(--home-muted);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.portfolio-share-link a {
  border-radius: 14px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
  color: var(--home-muted);
  font-weight: 600;
}

.portfolio-upload h2,
.portfolio-gallery h2 {
  margin: 0;
  color: var(--home-text);
  font-size: 1.25rem;
}

.portfolio-upload p,
.portfolio-gallery p {
  margin: 0.4rem 0 1rem;
  color: var(--home-muted);
}

.portfolio-upload-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.portfolio-file-input input[type="file"] {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 3, 11, 0.6);
  color: var(--home-muted);
  cursor: pointer;
}

.portfolio-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.2rem;
}

.profile-portfolio-grid {
  margin-top: 1rem;
}

.portfolio-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.portfolio-item__media {
  flex: 1 1 auto;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.portfolio-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-thumb {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 4 / 5;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-item__actions {
  padding: 0.75rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-delete-btn {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.5);
  padding: 0.55rem 0.8rem;
  background: rgba(220, 38, 38, 0.1);
  color: #fecaca;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-delete-btn:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: translateY(-1px);
}

.portfolio-empty {
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--home-muted);
}

@media (min-width: 768px) {
  .portfolio-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .portfolio-upload-form {
    flex-wrap: nowrap;
  }
}

.portfolio-lightbox {
  position: relative;
}

.portfolio-lightbox__modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center; /* centra verticalmente el contenido */
  justify-content: center;
  padding: clamp(1.5rem, 2vw, 3rem);
  background: rgba(3, 7, 18, 0.85);
  z-index: 2000;
  overflow-y: auto; /* permite scroll cuando la imagen + caption es alta */
}

.portfolio-lightbox__modal.is-visible {
  display: flex;
}

.portfolio-lightbox__content {
  position: relative;
  width: 100%;
  max-width: min(1100px, 95vw);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  outline: none;
}

.portfolio-lightbox__close {
  align-self: flex-end;
  border: none;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}

.portfolio-lightbox__image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-lightbox__image img {
  max-width: 100%;
  max-height: calc(100vh - 220px); /* deja espacio para caption + botones */
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.portfolio-lightbox__caption {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.portfolio-lightbox__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.portfolio-lightbox__nav {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}


.shadow-purple{
  box-shadow: 0 24px 60px -28px rgba(124, 58, 237, 0.35);
}
