:root {
  --pink-light: #ffc0cb;
  --pink-soft: #ffb6c1;
  --pink-pale: #fff0f5;
  --pink-deep: #ff9eb5;
  --pink-accent: #ff85a2;
  --white: #ffffff;
  --white-soft: #fffafa;
  --text-dark: #5c4a52;
  --text-muted: #9a8a90;
  --glass-border: rgba(255, 182, 193, 0.45);
  --gradient-main: linear-gradient(135deg, #ffb6c1, #ffc0cb, #ffd1dc);
  --gradient-btn: linear-gradient(135deg, #ff9eb5, #ffb6c1);
  --shadow-soft: 0 8px 32px rgba(255, 182, 193, 0.25);
  --shadow-hover: 0 12px 40px rgba(255, 158, 181, 0.35);
  --transition: all 0.3s ease;
  --radius: 20px;
  --radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Quicksand', system-ui, sans-serif;
  color: var(--text-dark);
  background-color: var(--pink-pale);
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 182, 193, 0.5);
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-weight: 700;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-animated {
  background: linear-gradient(90deg, #ff9eb5, #ffb6c1, #ffc0cb, #ffb6c1);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-gradient {
  background: var(--gradient-btn);
  border: none;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.btn-gradient:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-hover);
  animation: bounceBtn 0.5s ease;
}

@keyframes bounceBtn {
  0%, 100% { transform: translateY(-4px) scale(1.03); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.mesh-bg {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 192, 203, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 240, 245, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 182, 193, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.08) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255, 192, 203, 0.06) 2px, transparent 2px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 8s ease-in-out infinite;
}

.bg-glow-purple {
  width: 400px;
  height: 400px;
  background: var(--pink-light);
  top: -100px;
  right: -80px;
}

.bg-glow-cyan {
  width: 350px;
  height: 350px;
  background: var(--pink-soft);
  bottom: 10%;
  left: -80px;
  animation-delay: -4s;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

.landing-page {
  position: relative;
  background: var(--pink-pale);
}

.landing-page > section,
.landing-page > footer,
.landing-page > nav {
  position: relative;
  z-index: 1;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius);
  margin: 1rem auto 0;
  max-width: calc(100% - 2rem);
  padding: 0.65rem 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-hover);
}

.brand-glow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--pink-accent) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.brand-glow:hover {
  color: var(--pink-deep) !important;
  transform: scale(1.05);
}

.brand-icon {
  color: var(--pink-soft);
  font-size: 1.3rem;
}

.navbar-toggler-custom {
  border-color: var(--glass-border);
  border-radius: 12px;
}

.navbar-toggler-custom .navbar-toggler-icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 133, 162, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link-animated {
  color: var(--text-muted) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  border-radius: 12px;
}

.nav-link-animated::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-btn);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 3px;
}

.nav-link-animated:hover,
.nav-link-animated.active {
  color: var(--pink-accent) !important;
}

.nav-link-animated:hover::after,
.nav-link-animated.active::after {
  width: 60%;
}

.nav-link-btn {
  background: var(--gradient-btn);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white) !important;
  padding: 0.45rem 1.35rem !important;
  margin-top: 0.5rem;
  transition: var(--transition);
  font-weight: 700;
}

@media (min-width: 992px) {
  .nav-link-btn {
    margin-top: 0;
  }
}

.nav-link-btn:hover {
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.hero-section {
  min-height: 100vh;
  padding: 8rem 0 5rem;
  background: transparent;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-accent);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-soft);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  line-height: 1.2;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-description {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-cta-wrap {
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

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

.cta-button {
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
}

.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(255, 182, 193, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 158, 181, 0.55);
  }
}

.hero-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed var(--pink-light);
}

.hero-ring-1 {
  width: 100%;
  height: 100%;
  animation: spinSlow 25s linear infinite;
}

.hero-ring-2 {
  width: 78%;
  height: 78%;
  border-color: var(--pink-soft);
  animation: spinSlow 18s linear infinite reverse;
}

.hero-ring-3 {
  width: 55%;
  height: 55%;
  border-style: solid;
  border-color: rgba(255, 192, 203, 0.5);
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-icon-wrap {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--pink-light);
  border-radius: 50%;
  font-size: 4rem;
  color: var(--pink-accent);
  box-shadow: var(--shadow-soft);
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 240, 245, 0.8) 100%);
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-accent);
  padding: 0.35rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--pink-light);
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin: 0 auto;
}

.glass-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-hover);
  animation: cardBounce 0.4s ease;
}

@keyframes cardBounce {
  0%, 100% { transform: translateY(-10px) scale(1.03); }
  50% { transform: translateY(-14px) scale(1.04); }
}

.service-card-inner {
  height: 100%;
}

.service-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
}

.service-icon-purple {
  background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.5);
}

.service-icon-cyan {
  background: linear-gradient(135deg, #ffc0cb, #ffd1dc);
  box-shadow: 0 6px 20px rgba(255, 192, 203, 0.5);
}

.service-icon-mixed {
  background: var(--gradient-main);
  box-shadow: 0 6px 20px rgba(255, 158, 181, 0.4);
}

.service-title {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.stats-section {
  padding: 5rem 0;
  background: var(--white-soft);
  position: relative;
}

.stat-glass {
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.stat-glass:hover {
  border-color: var(--pink-soft);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.glow-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer {
  background: var(--white);
  border-top: 2px solid var(--pink-light);
  padding: 2rem 0;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .social-links {
    justify-content: flex-start;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: var(--radius-sm);
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  color: var(--pink-accent);
  font-size: 1.15rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--white);
  background: var(--gradient-btn);
  border-color: transparent;
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-page,
.admin-auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #fff0f5 0%, #ffffff 40%, #fff5f8 100%);
  position: relative;
  overflow: hidden;
}

.auth-page .container,
.admin-auth-page .container {
  position: relative;
  z-index: 2;
}

.auth-bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  animation: authFloat 10s ease-in-out infinite;
  z-index: 1;
}

.auth-bg-shape-1 {
  width: 350px;
  height: 350px;
  background: var(--pink-light);
  top: -80px;
  right: -60px;
}

.auth-bg-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--pink-soft);
  bottom: -80px;
  left: -80px;
  animation-delay: -5s;
}

.auth-bg-shape-3 {
  width: 200px;
  height: 200px;
  background: #ffd1dc;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
  animation-delay: -2.5s;
}

.auth-bg-shape-4 {
  width: 280px;
  height: 280px;
  background: var(--pink-light);
  top: 25%;
  left: 15%;
  opacity: 0.4;
  animation-delay: -7s;
}

@keyframes authFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(12px, -15px); }
  66% { transform: translate(-8px, 12px); }
}

.glass-auth-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.glass-auth-card:hover {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-hover);
}

.auth-brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--pink-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.auth-brand i {
  color: var(--pink-soft);
}

.auth-brand:hover {
  color: var(--pink-deep);
}

.auth-title {
  color: var(--text-dark);
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.floating-group {
  position: relative;
}

.floating-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
  transition: var(--transition);
}

.glass-input {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  padding: 1.05rem 1rem;
  height: auto;
  transition: var(--transition);
}

.glass-input:focus {
  background: var(--white);
  border-color: var(--pink-soft);
  color: var(--text-dark);
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.35), 0 0 20px rgba(255, 192, 203, 0.4);
  outline: none;
}

.glass-input:focus + label,
.glass-input:not(:placeholder-shown) + label {
  top: 0;
  left: 0.75rem;
  font-size: 0.72rem;
  background: var(--white);
  padding: 0 0.4rem;
  color: var(--pink-accent);
  font-weight: 700;
}

.glass-check {
  background-color: var(--pink-pale);
  border-color: var(--pink-light);
  border-radius: 6px;
}

.glass-check:checked {
  background-color: var(--pink-accent);
  border-color: var(--pink-accent);
}

.auth-check-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-submit-btn {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
}

.auth-link {
  color: var(--pink-accent);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.auth-link:hover {
  color: var(--pink-deep);
}

.auth-footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-shield-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: var(--radius-sm);
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.admin-glass-card {
  border-color: var(--pink-soft);
}

.admin-dashboard-page {
  background: var(--pink-pale);
  min-height: 100vh;
}

.admin-wrapper {
  min-height: 100vh;
}

.admin-sidebar {
  width: 270px;
  background: var(--white);
  border-right: 2px solid var(--pink-light);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1040;
  transform: translateX(-100%);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.admin-sidebar.show {
  transform: translateX(0);
}

@media (min-width: 992px) {
  .admin-sidebar {
    transform: translateX(0);
    position: sticky;
    top: 0;
  }
}

.sidebar-header {
  padding: 1.75rem 1.5rem;
  border-bottom: 2px solid var(--pink-light);
}

.sidebar-brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--pink-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-brand i {
  color: var(--pink-soft);
}

.sidebar-subtitle {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0.3rem 0 0;
  font-weight: 600;
}

.sidebar-nav {
  flex: 1;
  padding: 1.25rem 0.75rem;
}

.sidebar-link {
  display: block;
  text-decoration: none;
  margin-bottom: 0.4rem;
  padding: 0 0.5rem;
}

.sidebar-link-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.sidebar-link-pill i {
  font-size: 1.15rem;
  width: 1.3rem;
  text-align: center;
}

.sidebar-link:hover .sidebar-link-pill {
  color: var(--pink-accent);
  background: var(--pink-pale);
}

.sidebar-link.active .sidebar-link-pill {
  background: var(--gradient-btn);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.sidebar-footer {
  padding: 1.25rem 0.75rem;
  border-top: 2px solid var(--pink-light);
}

.logout-link .sidebar-link-pill {
  color: #e88a9a;
}

.logout-link:hover .sidebar-link-pill {
  background: rgba(255, 182, 193, 0.2);
  color: #e88a9a;
}

.admin-main {
  min-height: 100vh;
  width: 100%;
  background: var(--pink-pale);
}

@media (min-width: 992px) {
  .admin-main {
    width: calc(100% - 270px);
  }
}

.admin-topbar {
  background: var(--white);
  border-bottom: 2px solid var(--pink-light);
  padding: 1.1rem 1.75rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.sidebar-toggle-btn {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  color: var(--pink-accent);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar-toggle-btn:hover {
  background: var(--pink-light);
  color: var(--white);
}

.admin-page-title {
  color: var(--text-dark);
}

.admin-profile {
  color: var(--text-dark);
}

.admin-status {
  font-size: 0.72rem;
  color: var(--pink-accent);
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.admin-avatar {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--white);
  border: 2px solid var(--pink-light);
}

.admin-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.admin-content {
  padding: 1.75rem;
  max-width: 1400px;
}

.metric-glass {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.metric-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 5px 0 0 5px;
}

.metric-glass:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-hover);
}

.metric-purple::before { background: #ffb6c1; }
.metric-cyan::before { background: #ffc0cb; }
.metric-mixed::before { background: var(--gradient-btn); }
.metric-green::before { background: #ffd1dc; }

.metric-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.metric-purple .metric-icon {
  background: var(--pink-pale);
  color: var(--pink-accent);
}

.metric-cyan .metric-icon {
  background: rgba(255, 192, 203, 0.3);
  color: var(--pink-deep);
}

.metric-mixed .metric-icon {
  background: var(--pink-pale);
  color: var(--pink-accent);
}

.metric-green .metric-icon {
  background: rgba(255, 209, 220, 0.5);
  color: var(--pink-deep);
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.table-glass {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table-glass-header {
  padding: 1.35rem 1.75rem;
  border-bottom: 2px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pink-pale);
}

.table-glass-title {
  color: var(--text-dark);
}

.admin-table {
  color: var(--text-dark);
  margin: 0;
}

.admin-table thead th {
  background: var(--pink-pale);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  padding: 1.1rem 1.75rem;
}

.admin-table tbody td {
  padding: 1.1rem 1.75rem;
  border-color: rgba(255, 182, 193, 0.25);
  vertical-align: middle;
  font-size: 0.9rem;
}

.admin-table tbody tr {
  transition: var(--transition);
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(255, 240, 245, 0.5);
}

.admin-table tbody tr:hover {
  background: rgba(255, 192, 203, 0.15);
}

.client-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.client-avatar {
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.status-badge {
  display: inline-block;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-pending {
  background: rgba(255, 230, 150, 0.35);
  color: #c9a030;
  border: 2px solid rgba(255, 220, 120, 0.4);
}

.status-progress {
  background: rgba(255, 192, 203, 0.35);
  color: var(--pink-deep);
  border: 2px solid var(--pink-light);
}

.status-completed {
  background: rgba(180, 230, 180, 0.35);
  color: #5cb85c;
  border: 2px solid rgba(140, 210, 140, 0.4);
}

.btn-action {
  font-size: 0.72rem;
  padding: 0.38rem 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
  margin-right: 0.35rem;
}

.btn-action-view {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  color: var(--pink-accent);
}

.btn-action-view:hover {
  border-color: var(--pink-soft);
  color: var(--white);
  background: var(--pink-soft);
}

.btn-action-approve {
  background: rgba(180, 230, 180, 0.25);
  border: 2px solid rgba(140, 210, 140, 0.5);
  color: #5cb85c;
}

.btn-action-approve:hover {
  background: rgba(140, 210, 140, 0.4);
  color: #4a9e4a;
}

.panel-glass {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-glass-body {
  padding: 2.5rem;
}

.panel-title {
  color: var(--text-dark);
}

.panel-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.content-section {
  display: none;
  animation: sectionFade 0.35s ease;
}

.content-section.active {
  display: block;
}

@keyframes sectionFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 182, 193, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1030;
}

.sidebar-overlay.show {
  display: block;
}

@media (min-width: 992px) {
  .sidebar-overlay {
    display: none !important;
  }
}

.form-alert {
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form-alert.alert-success {
  background: rgba(180, 230, 180, 0.3);
  color: #5cb85c;
  border: 2px solid rgba(140, 210, 140, 0.4);
}

.form-alert.alert-danger {
  background: rgba(255, 182, 193, 0.3);
  color: #e88a9a;
  border: 2px solid var(--pink-light);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .glass-nav {
    border-radius: var(--radius-sm);
    margin: 0.5rem auto 0;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 2px solid var(--pink-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    background: var(--white);
  }

  .admin-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    border: none;
  }

  .admin-table tbody td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
  }

  .admin-table tbody td:last-child {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.services-page {
  position: relative;
  background: var(--pink-pale);
}

.services-page > nav,
.services-page > main,
.services-page > footer {
  position: relative;
  z-index: 1;
}

.services-main {
  padding: 7rem 0 4rem;
}

.services-header {
  margin-bottom: 2.5rem;
}

.search-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.search-bar-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 560px;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink-accent);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--pink-soft);
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.35), var(--shadow-soft);
}

.search-input::placeholder {
  color: var(--text-muted);
  font-weight: 500;
}

.free-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.65rem 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--pink-light);
  box-shadow: var(--shadow-soft);
}

.free-toggle-label {
  font-weight: 700;
  color: var(--pink-accent);
  font-size: 0.9rem;
  margin: 0;
}

.free-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  margin: 0;
  cursor: pointer;
}

.free-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.free-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  transition: var(--transition);
}

.free-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255, 158, 181, 0.4);
  transition: var(--transition);
}

.free-toggle input:checked + .free-toggle-slider {
  background: var(--gradient-btn);
  border-color: var(--pink-soft);
}

.free-toggle input:checked + .free-toggle-slider::before {
  transform: translateX(22px);
}

.product-col {
  transition: var(--transition);
}

.product-col.product-hidden {
  display: none;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-hover);
}

.product-price {
  margin: 0.6rem 1.1rem 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--pink-accent);
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
}

.product-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--white);
}

.product-preview-1 {
  background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
}

.product-preview-2 {
  background: linear-gradient(135deg, #ff9eb5, #ffb6c1);
}

.product-preview-3 {
  background: linear-gradient(135deg, #ffc0cb, #ffd1dc);
}

.product-preview-4 {
  background: linear-gradient(135deg, #a8e6cf, #b5ead7);
}

.product-preview-5 {
  background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
}

.product-preview-6 {
  background: linear-gradient(135deg, #c9b1ff, #e2c9ff);
}

.product-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  padding: 1.1rem 1.25rem 0.5rem;
  margin: 0;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 1.25rem;
  margin: 0;
  flex-grow: 1;
}

.product-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
}

.btn-product {
  flex: 1;
  min-width: calc(33% - 0.35rem);
  padding: 0.45rem 0.5rem;
  border: none;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  transition: var(--transition);
  cursor: pointer;
}

.btn-product:hover {
  transform: translateY(-2px) scale(1.05);
}

.btn-video {
  background: rgba(255, 150, 150, 0.25);
  color: #e87070;
  border: 2px solid rgba(255, 150, 150, 0.4);
}

.btn-video:hover {
  background: rgba(255, 150, 150, 0.4);
  box-shadow: 0 4px 15px rgba(255, 150, 150, 0.3);
}

.btn-contact {
  background: rgba(130, 210, 200, 0.25);
  color: #4db8a8;
  border: 2px solid rgba(130, 210, 200, 0.45);
}

.btn-contact:hover {
  background: rgba(130, 210, 200, 0.4);
  box-shadow: 0 4px 15px rgba(130, 210, 200, 0.3);
}

.btn-demo {
  background: rgba(180, 120, 180, 0.2);
  color: #9b5da8;
  border: 2px solid rgba(180, 120, 180, 0.35);
}

.btn-demo:hover {
  background: rgba(180, 120, 180, 0.35);
  box-shadow: 0 4px 15px rgba(180, 120, 180, 0.25);
}

.no-results {
  display: none;
  color: var(--text-muted);
  font-weight: 700;
  padding: 2rem 0;
  font-size: 1rem;
}

.pagination-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination-item {
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 2px solid var(--pink-light);
  border-radius: 50%;
  background: var(--white);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination-item:hover {
  border-color: var(--pink-soft);
  color: var(--pink-accent);
  transform: scale(1.08);
}

.pagination-item.active {
  background: var(--gradient-btn);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transform: scale(1.1);
}

.pagination-prev,
.pagination-next {
  border-radius: 50px;
  min-width: 44px;
}

.pagination-dots {
  color: var(--text-muted);
  font-weight: 800;
  padding: 0 0.25rem;
  user-select: none;
}

@media (max-width: 575px) {
  .btn-product {
    min-width: 100%;
  }

  .search-section {
    flex-direction: column;
  }

  .search-bar-wrap {
    max-width: 100%;
  }
}

.user-profile-link {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem !important;
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  transition: var(--transition);
}

.user-profile-link:hover {
  background: var(--white);
  border-color: var(--pink-soft);
  transform: scale(1.03);
}

.user-nav-avatar {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.95rem;
}

.user-nav-name {
  font-weight: 700;
  color: var(--pink-accent);
  font-size: 0.88rem;
}

.btn-buy {
  background: rgba(130, 210, 200, 0.3);
  color: #3da896;
  border: 2px solid rgba(130, 210, 200, 0.5);
}

.btn-buy:hover {
  background: rgba(130, 210, 200, 0.5);
  color: #2d9686;
  box-shadow: 0 4px 15px rgba(130, 210, 200, 0.35);
}

.purchase-modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 182, 193, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1rem;
}

.purchase-modal.show {
  opacity: 1;
  visibility: visible;
}

.code-info-modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 182, 193, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.code-info-modal.show {
  opacity: 1;
  visibility: visible;
}

.code-info-card {
  width: min(500px, 100%);
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  padding: 1.3rem;
}

.code-info-title {
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--pink-accent);
}

.code-info-line {
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.wallet-balance-box {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: 26px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.wallet-balance-label {
  font-weight: 700;
  color: var(--text-muted);
}

.wallet-balance-value {
  color: var(--pink-accent);
  font-weight: 800;
}

.purchase-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 192, 203, 0.35);
  backdrop-filter: blur(6px);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.purchase-confirm-modal.show {
  opacity: 1;
  visibility: visible;
}

.purchase-confirm-card {
  width: min(520px, 100%);
  background: #fff;
  border: 3px solid var(--pink-soft);
  border-radius: 34px;
  padding: 1.4rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.purchase-confirm-decor {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.purchase-confirm-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pink-accent);
  margin-bottom: 0.55rem;
}

.purchase-confirm-text {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.purchase-confirm-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
}

.purchase-confirm-btn {
  border-radius: 18px;
  min-width: 155px;
}

.purchase-modal-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-hover);
  transform: scale(0.9);
  transition: var(--transition);
}

.purchase-modal.show .purchase-modal-card {
  transform: scale(1);
}

.purchase-modal-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.purchase-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.purchase-modal-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.user-dashboard-page {
  position: relative;
  background: var(--pink-pale);
}

.user-dashboard-page > nav,
.user-dashboard-page > main,
.user-dashboard-page > footer {
  position: relative;
  z-index: 1;
}

.user-dashboard-main {
  padding: 7rem 0 4rem;
}

.user-dashboard-header {
  margin-bottom: 2.5rem;
}

.user-profile-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.user-profile-avatar {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  border-radius: 50%;
  font-size: 2.25rem;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.user-profile-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.user-profile-email {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.btn-outline-pink {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  color: var(--pink-accent);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  transition: var(--transition);
}

.btn-outline-pink:hover {
  background: var(--pink-light);
  color: var(--white);
  border-color: var(--pink-soft);
}

.user-spending-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-spending-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  color: var(--pink-accent);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.user-spending-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.user-spending-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.user-spending-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.user-panel-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.user-panel-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.user-history-table {
  color: var(--text-dark);
  margin: 0;
}

.user-history-table thead th {
  background: var(--pink-pale);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  padding: 0.85rem 1rem;
}

.user-history-table tbody td {
  padding: 0.9rem 1rem;
  border-color: rgba(255, 182, 193, 0.25);
  vertical-align: middle;
  font-size: 0.88rem;
}

.user-history-table tbody tr:nth-child(even) {
  background: rgba(255, 240, 245, 0.5);
}

.empty-history {
  color: var(--text-muted);
  font-weight: 600;
  padding: 2rem !important;
}

@media (max-width: 767px) {
  .user-history-table thead {
    display: none;
  }

  .user-history-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 2px solid var(--pink-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
  }

  .user-history-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border: none;
  }

  .user-history-table tbody td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
  }
}

.login-lock-banner {
  display: none;
  background: linear-gradient(135deg, #c71585, #db2777);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 30px rgba(199, 21, 133, 0.35);
  text-align: center;
}

.form-locked {
  opacity: 0.75;
  pointer-events: none;
}

.form-locked .login-lock-banner {
  pointer-events: auto;
}

.floating-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decor-heart,
.decor-cloud,
.decor-star {
  position: absolute;
  opacity: 0.35;
}

.decor-heart {
  color: var(--pink-soft);
  animation: floatDecor 7s ease-in-out infinite;
}

.decor-cloud {
  color: var(--white);
  opacity: 0.5;
  animation: floatDecor 9s ease-in-out infinite;
}

.decor-star {
  color: var(--pink-light);
  animation: twinkleDecor 4s ease-in-out infinite;
}

.decor-heart-1 { font-size: 1.5rem; top: 15%; left: 8%; animation-delay: 0s; }
.decor-heart-2 { font-size: 2rem; top: 60%; left: 5%; animation-delay: -2s; }
.decor-heart-3 { font-size: 1.25rem; top: 35%; right: 10%; animation-delay: -4s; }
.decor-cloud-1 { font-size: 3rem; top: 10%; right: 15%; animation-delay: -1s; }
.decor-cloud-2 { font-size: 2.5rem; bottom: 20%; left: 12%; animation-delay: -3s; }
.decor-cloud-3 { font-size: 2rem; top: 45%; right: 5%; animation-delay: -5s; }
.decor-star-1 { font-size: 1rem; top: 25%; left: 20%; animation-delay: -1.5s; }
.decor-star-2 { font-size: 1.2rem; bottom: 30%; right: 20%; animation-delay: -2.5s; }

@keyframes floatDecor {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes twinkleDecor {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.welcome-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-soft);
  animation: welcomePulse 3s ease-in-out infinite;
}

.welcome-banner i {
  color: var(--pink-accent);
  font-size: 1.1rem;
}

.welcome-text {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--pink-accent);
}

@keyframes welcomePulse {
  0%, 100% { box-shadow: var(--shadow-soft); }
  50% { box-shadow: var(--shadow-hover); }
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.hero-pill i {
  color: var(--pink-accent);
}

.bounce-hover {
  transition: var(--transition);
}

.bounce-hover:hover {
  transform: translateY(-5px) scale(1.02);
}

.btn-outline-cute {
  background: var(--white);
  border: 2px solid var(--pink-soft);
  color: var(--pink-accent);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-outline-cute:hover {
  background: var(--pink-pale);
  border-color: var(--pink-accent);
  color: var(--pink-deep);
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gradient-divider {
  height: 4px;
  max-width: 200px;
  margin: 0 auto;
  background: var(--gradient-main);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(255, 182, 193, 0.4);
}

.tutorial-section {
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--white-soft) 50%, var(--pink-pale) 100%);
  position: relative;
}

.tutorial-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.tutorial-timeline::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pink-light), var(--pink-soft), var(--pink-light));
  border-radius: 3px;
}

.tutorial-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
}

.tutorial-step:last-child {
  margin-bottom: 0;
}

.tutorial-step-number {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  z-index: 1;
  border: 3px solid var(--white);
}

.tutorial-step-card {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.tutorial-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.tutorial-step-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.tutorial-step-note {
  color: var(--pink-accent);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 0.85rem;
  margin-bottom: 0;
  padding: 0.75rem 1rem;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--pink-soft);
}

.tutorial-step-icon-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.tutorial-util-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-sm);
  color: var(--pink-accent);
  font-size: 1.15rem;
  transition: var(--transition);
}

.tutorial-step:hover .tutorial-util-icon {
  transform: scale(1.1);
  background: var(--gradient-btn);
  color: var(--white);
  border-color: transparent;
}

.tutorial-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.tutorial-preview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--pink-pale);
  border: 2px dashed var(--pink-light);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
}

.tutorial-preview-box i {
  font-size: 1.75rem;
  color: var(--pink-accent);
}

.tutorial-preview-box span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.tutorial-preview-box:hover {
  border-style: solid;
  border-color: var(--pink-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 767px) {
  .tutorial-timeline::before {
    left: 1.1rem;
  }

  .tutorial-step-number {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.95rem;
  }

  .tutorial-step-card {
    padding: 1.15rem;
  }

  .tutorial-preview-grid {
    grid-template-columns: 1fr;
  }

  .welcome-banner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

:root {
  --pink-light: #ffb6c1;
  --pink-soft: #ffb6c1;
  --pink-pale: #fff5f7;
  --pink-deep: #ff4d6d;
  --pink-accent: #ff4d6d;
  --white: #ffffff;
  --white-soft: #ffffff;
  --text-dark: #4a4a4a;
  --text-muted: #7a6f74;
  --shadow-soft: 0 10px 30px rgba(255, 182, 193, 0.25);
  --shadow-hover: 0 14px 34px rgba(255, 77, 109, 0.22);
  --radius: 24px;
  --radius-sm: 18px;
  --gradient-btn: linear-gradient(135deg, #ffb6c1, #ff4d6d);
}

body {
  background: #fff5f7;
  color: #4a4a4a;
  line-height: 1.72;
}

h1, h2, h3, h4, h5, h6 {
  color: #4a4a4a;
  font-weight: 800;
  line-height: 1.35;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 182, 193, 0.4);
  border-bottom: 2px solid #ffe5ec;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2);
}

.admin-sidebar {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 182, 193, 0.42);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.22);
}

.sidebar-link-pill,
.nav-link-btn,
.btn,
.form-control,
.table-glass,
.panel-glass,
.glass-card,
.product-card,
.metric-glass,
.auth-submit-btn,
.purchase-confirm-card,
.code-info-card,
.user-panel-card,
.user-profile-card,
.user-spending-card {
  border-radius: 18px;
}

.sidebar-link .sidebar-link-pill {
  transition: all 0.3s ease-in-out;
}

.sidebar-link:hover .sidebar-link-pill {
  transform: translateY(-3px);
}

.sidebar-link.active .sidebar-link-pill {
  background: linear-gradient(135deg, #fff5f7, #ffffff);
  border: 1.5px solid #ffc8d3;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.24);
}

.sidebar-link.active .sidebar-link-pill span:last-child::before {
  content: "☁️ ";
}

.sidebar-link.active .sidebar-link-pill span:last-child::after {
  content: " 💕";
}

.sidebar-link.active .sidebar-link-pill i::after {
  content: "🌟";
  font-size: 0.68rem;
  margin-left: 0.25rem;
}

.glass-card,
.product-card,
.metric-glass,
.table-glass,
.panel-glass,
.user-panel-card,
.user-profile-card,
.user-spending-card {
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.25);
  transition: all 0.3s ease-in-out;
}

.glass-card:hover,
.product-card:hover,
.metric-glass:hover,
.user-panel-card:hover,
.user-profile-card:hover,
.user-spending-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(255, 77, 109, 0.22);
}

.glass-input,
.search-input {
  background: #fff9fa;
  border: 1.5px solid #ffd5de;
  border-radius: 18px;
}

.glass-input:focus,
.search-input:focus {
  background: #ffffff;
  border-color: #ff4d6d;
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.25);
}

.admin-table thead th,
.user-history-table thead th {
  background: #ffeef2;
  color: #4a4a4a;
  border: none;
  padding: 0.95rem 1rem;
}

.admin-table thead th:first-child,
.user-history-table thead th:first-child {
  border-top-left-radius: 14px;
}

.admin-table thead th:last-child,
.user-history-table thead th:last-child {
  border-top-right-radius: 14px;
}

.admin-table tbody td,
.user-history-table tbody td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
}

.admin-table tbody tr:nth-child(odd),
.user-history-table tbody tr:nth-child(odd) {
  background: #fff9fb;
}

.admin-table tbody tr:nth-child(even),
.user-history-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.status-badge {
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  font-weight: 700;
}

.status-pending {
  background: #fff0f4;
  color: #ff4d6d;
  border: 1.5px solid #ffd3dd;
}

.status-progress {
  background: #fff7ef;
  color: #ff8a4c;
  border: 1.5px solid #ffdaba;
}

.status-completed {
  background: #f2fff6;
  color: #2f9e5e;
  border: 1.5px solid #c9f5d8;
}

.purchase-confirm-modal,
.code-info-modal {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.purchase-confirm-card {
  border-radius: 24px;
  border: 2px solid #ffd4de;
  background: #ffffff;
}

.purchase-confirm-title::before {
  content: "☁️ ";
}

.purchase-confirm-title::after {
  content: " ❤️";
}

.code-info-title::before {
  content: "☁️ ";
}

.code-info-title::after {
  content: " 💕";
}

.btn-gradient,
.btn-outline-cute,
.btn-action,
.btn-product,
.auth-submit-btn {
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.btn-gradient:hover,
.btn-outline-cute:hover,
.btn-action:hover,
.btn-product:hover,
.auth-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.pagination-section {
  justify-content: center;
  gap: 0.55rem;
}

.pagination-item {
  border-radius: 14px;
  border: 1.5px solid #ffd5de;
  background: #ffffff;
  color: #4a4a4a;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
}

.pagination-item.active,
.pagination-item:hover {
  background: #ffeef2;
  color: #ff4d6d;
  border-color: #ffb6c1;
}
