/* ============================================
   BIOLINK — Maria Guillen Real Estate
   Branding: #011868 + #05adec (Ocean Cyan) + #fabc0f
   Font: Poppins
   Full Tabbed Admin Panel & Native Image Manager Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #011868;
  --primary-dark: #000c36;
  --primary-darker: #000000;
  --accent-gold: #fabc0f;
  --accent-neon: #05adec;
  --accent-indigo: #3f51b5;
  --accent-lavender: #5660b7;
  --bg: #081640;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(5, 173, 236, 0.35);
  --border-hover: #05adec;
  --radius: 20px;
  --radius-card: 26px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  --transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 480px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 24px 0 40px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Layout --- */
.biolink-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

/* --- GRADIENT CARDS WITH PURE BLACK 3D HARD OFFSET EXTRUSION --- */
.gradient-card {
  position: relative;
  width: 100%;
  background: 
    radial-gradient(circle at 12% 12%, rgba(5, 173, 236, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, rgba(1, 24, 104, 0.96) 0%, rgba(63, 81, 181, 0.65) 50%, rgba(86, 96, 183, 0.55) 100%);
  border: 2.5px solid var(--accent-neon);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  overflow: hidden;
  box-shadow: 
    8px 8px 0px #000000,
    0 0 18px rgba(5, 173, 236, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-sizing: border-box;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gradient-card:hover,
.gradient-card:active {
  transform: translate(4px, 4px);
  border-color: #ffffff;
  box-shadow: 
    4px 4px 0px #000000,
    0 0 25px rgba(5, 173, 236, 0.45);
}

/* --- SCROLL REVEAL ANIMATION --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Language Toggle --- */
.lang-toggle {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 100;
  background: rgba(1, 24, 104, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--accent-neon);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
  box-shadow: 4px 4px 0px #000000;
}

.lang-toggle:hover {
  background: rgba(1, 24, 104, 0.95);
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.lang-toggle .active-lang {
  color: var(--accent-neon);
}

/* --- 1. HERO SECTION --- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 6px;
}

.profile-photo {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  border: 3.5px solid var(--accent-neon);
  box-shadow: 6px 6px 0px #000000, 0 0 20px rgba(5, 173, 236, 0.35);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* React Bits GradientText (#011868 -> #FF9FFC -> #05adec) */
.gradient-text {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
  background-image: linear-gradient(90deg, #ffffff 0%, #ff9ffc 50%, #05adec 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-text-anim 5s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes gradient-text-anim {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 16px;
}

/* Social Icons (Micro-animaciones Celular) */
.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icon-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(1, 24, 104, 0.85);
  border: 2px solid var(--accent-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 4px 4px 0px #000000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: float-soft 4s ease-in-out infinite alternate;
}

.social-icon-item:nth-child(1) { animation-delay: 0s; }
.social-icon-item:nth-child(2) { animation-delay: 0.5s; }
.social-icon-item:nth-child(3) { animation-delay: 1s; }
.social-icon-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes float-soft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.social-icon-item:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

.social-icon-item:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
  color: #ffffff;
}

.social-icon-item svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero-cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* --- CTA Button (Hard Offset Shadow Negro Puro) --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border: 2px solid #000000;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-cta 2s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 5px 5px 0px #000000;
}

.cta-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #000000;
}

.cta-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0px #000000;
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

@keyframes pulse-cta {
  from { box-shadow: 5px 5px 0px #000000; }
  to { box-shadow: 5px 5px 0px #000000; }
}

/* --- MARQUEE SECTION --- */
.marquee-section {
  overflow: hidden;
  margin: 0 -16px;
}

.textloop-container {
  padding: 4px 0;
}

.textloop-svg {
  display: block;
  width: 100%;
  height: auto;
}

.textloop-text {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

/* --- SECTION 1: OPEN HOUSE --- */
.open-house-section {
  width: 100%;
}

.morph-slider-card {
  padding: 0 !important;
  height: 320px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.morph-slider-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.morph-slider-stage {
  position: absolute;
  inset: 0;
  cursor: grab;
  outline: none;
}

.morph-slider-stage:active { cursor: grabbing; }

.morph-slider-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.morph-slider-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  max-width: 80%;
  pointer-events: none;
  display: grid;
}

.morph-slider-caption-text {
  grid-area: 1 / 1;
  justify-self: start;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(1, 8, 34, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.morph-slider-caption-text.is-active {
  opacity: 1;
  transform: translateY(0);
}

.morph-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.morph-slider-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(1, 8, 34, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.morph-slider-btn:hover {
  background: rgba(5, 173, 236, 0.3);
  border-color: var(--accent-neon);
  transform: scale(1.08);
}

.morph-slider-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.morph-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.morph-slider-dot.is-active {
  width: 20px;
  background: var(--accent-neon);
}

/* --- SECTION 2: CHAT WITH MARIA --- */
.contact-feature-card {
  min-height: 160px;
  display: flex;
  align-items: center;
}

.contact-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.contact-text-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.contact-card-sub {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 0;
}

.contact-actions-col {
  flex-shrink: 0;
}

.carrd-3d-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 2px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition);
  white-space: nowrap;
}

.carrd-3d-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.carrd-3d-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px #000000;
}

.carrd-3d-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --- SECTION 3: PROPERTIES (Drift Wall) --- */
.properties-drift-section {
  width: 100%;
}

.drift-wall-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 460px !important;
  overflow: hidden;
  position: relative;
  padding: 12px !important;
}

.drift-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drift-col-1 {
  animation: drift-up 22s linear infinite;
}

.drift-col-2 {
  animation: drift-down 26s linear infinite;
}

@keyframes drift-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes drift-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.drift-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 165px;
  flex-shrink: 0;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0px #000000;
}

.drift-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drift-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px 8px;
  background: linear-gradient(0deg, rgba(1, 8, 34, 0.94) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
}

.drift-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-gold);
}

.drift-name {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- SECTION 4: SAVE CONTACT (QR Code) --- */
.qr-feature-card {
  min-height: 160px;
  display: flex;
  align-items: center;
}

.card-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.blob-1 {
  width: 130px;
  height: 130px;
  background: rgba(5, 173, 236, 0.22);
  top: -30px;
  left: -30px;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: rgba(63, 81, 181, 0.35);
  bottom: -40px;
  right: -40px;
}

.qr-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.qr-info-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-3d-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-neon), #0080c8);
  color: var(--primary-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0px #000000;
  border: 1.5px solid #000000;
  margin-bottom: 4px;
  transform: rotate(-4deg);
  flex-shrink: 0;
}

.floating-3d-badge svg {
  width: 19px;
  height: 19px;
}

.qr-card-title {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.qr-card-subtitle {
  font-size: 11.5px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 1px;
}

.qr-code-col {
  flex-shrink: 0;
}

.qr-glass-container {
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: 4px 4px 0px #000000;
  border: 1.5px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qr-canvas {
  width: 110px !important;
  height: 110px !important;
  display: block;
  border-radius: 4px;
}

/* --- FOOTER --- */
.biolink-footer {
  padding: 18px 0 24px;
  text-align: center;
}

.footer-copyright {
  font-size: 11.5px;
  color: var(--text-muted);
}

.admin-trigger {
  display: inline-block;
  opacity: 0.15;
  font-size: 10px;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity 0.3s ease;
  color: var(--text-muted);
  user-select: none;
}

.admin-trigger:hover {
  opacity: 0.6;
}

/* --- ADMIN PANEL MODAL --- */
.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
}

.admin-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
}

.admin-content {
  background: var(--primary-dark);
  border: 2.5px solid var(--accent-neon);
  box-shadow: 8px 8px 0px #000000;
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  padding: 24px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-header h2 {
  font-size: 18px;
  font-weight: 600;
}

.admin-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.admin-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-auth {
  text-align: center;
  padding: 20px 0;
}

.admin-auth input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: var(--transition);
}

.admin-auth input:focus {
  border-color: var(--accent-neon);
}

.admin-auth button,
.admin-btn {
  padding: 10px 24px;
  background: var(--accent-neon);
  color: var(--primary-darker);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.admin-auth button:hover,
.admin-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.admin-fields {
  display: none;
}

.admin-fields.active {
  display: block;
}

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  overflow-x: auto;
}

.admin-tab {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.admin-tab.active {
  background: var(--accent-neon);
  color: #000;
  border-color: var(--accent-neon);
}

.admin-tab-content {
  display: none;
}

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

/* Image Upload Box & Upload Label Button */
.admin-image-upload-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-image-upload-box label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-neon);
}

.upload-label-btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-gold);
  color: #000;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  user-select: none;
}

.upload-label-btn:hover {
  background: #ffffff;
}

.admin-img-preview-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-img-preview-row img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-neon);
  flex-shrink: 0;
}

.admin-img-btn-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-field-group {
  margin-bottom: 14px;
}

.admin-field-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-field-group input,
.admin-field-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.admin-field-group input:focus,
.admin-field-group textarea:focus {
  border-color: var(--accent-neon);
}

/* Properties & Open House list in admin */
.admin-props-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.admin-btn-sm {
  padding: 5px 12px;
  background: var(--accent-gold);
  color: #000;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.admin-btn-sm:hover {
  background: #fff;
}

.admin-props-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 16px;
}

.admin-prop-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-item-thumb-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-item-thumb-row img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--accent-neon);
  flex-shrink: 0;
}

.admin-prop-row {
  display: flex;
  gap: 8px;
}

.admin-prop-row input {
  padding: 6px 10px;
  font-size: 12px;
}

.admin-prop-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.admin-btn-del {
  padding: 4px 10px;
  background: rgba(244, 67, 54, 0.2);
  color: #ff5252;
  border: 1px solid rgba(244, 67, 54, 0.4);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
}

.admin-btn-del:hover {
  background: rgba(244, 67, 54, 0.4);
  color: #fff;
}

.admin-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.admin-btn-secondary {
  padding: 10px 18px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.admin-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.admin-msg {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
  min-height: 18px;
}

.admin-msg.success { color: #4caf50; }
.admin-msg.error { color: #f44336; }

/* ============================================
   RESPONSIVE MEDIA QUERIES (320px - 360px Small Mobile Fix)
   ============================================ */
@media (max-width: 360px) {
  .biolink-wrapper {
    padding: 0 10px;
    gap: 22px;
  }

  .gradient-card {
    padding: 16px 14px;
    box-shadow: 5px 5px 0px #000000;
  }

  /* Chat with Maria Layout en celulares muy angostos */
  .contact-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-actions-col {
    width: 100%;
  }

  .carrd-3d-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 12px;
  }

  /* Save My Contact QR ajustado */
  #qr-canvas {
    width: 92px !important;
    height: 92px !important;
  }

  .qr-card-title {
    font-size: 15px;
  }

  .qr-card-subtitle {
    font-size: 10.5px;
  }

  .morph-slider-card {
    height: 260px;
  }

  .drift-wall-container {
    height: 380px !important;
  }

  .drift-card {
    height: 130px;
  }
}
