/* === General Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* white background */
  color: #333;
  line-height: 1.6;
}

/* === Header Structure === */
header {
  background: white;
}

.header-wrapper {
  background: linear-gradient(135deg, #fff0f5 0%, #ffeef7 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(166, 108, 123, 0.15);
  backdrop-filter: blur(10px);
  margin: 15px 30px;
  overflow: hidden;
}

/* === Header Top (Logo Section) === */
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  position: relative;
  border-bottom: 2px solid rgba(255, 182, 193, 0.3);
}

.header-top .sidebar-toggle {
  position: absolute;
  left: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  color: #a66c7b;
  text-shadow: 0 2px 4px rgba(166, 108, 123, 0.2);
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
}

.logo-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}



/* === Customer Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: relative;
  flex-wrap: wrap;
  gap: 25px;
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.nav-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #a66c7b;
  text-decoration: none;
  padding: 10px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50%;
  background: transparent;
  width: 44px;
  height: 44px;
}

.nav-icons a:hover {
  color: #7b3c4c;
  transform: scale(1.15);
  background: rgba(255, 182, 193, 0.2);
  box-shadow: 0 2px 8px rgba(166, 108, 123, 0.2);
}

.cart-icon-nav {
  position: relative;
}


.sidebar-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.sidebar-toggle span {
  width: 25px;
  height: 3px;
  background: #a66c7b;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  display: block;
}

.sidebar-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.sidebar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.sidebar-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #a66c7b;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  cursor: pointer;
  background: rgba(255, 182, 193, 0.1);
  box-shadow: 0 1px 3px rgba(166, 108, 123, 0.1);
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav-menu li a:hover::before {
  left: 100%;
}

.nav-menu li a:hover {
  color: #7b3c4c;
  background: rgba(255, 182, 193, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 108, 123, 0.3);
  border: 1px solid rgba(255, 182, 193, 0.4);
}

.nav-menu li a.active {
  color: #7b3c4c;
  font-weight: 700;
  background: linear-gradient(135deg, #ffb6c1 0%, #ffd9e3 100%);
  box-shadow: 0 3px 10px rgba(166, 108, 123, 0.3);
  border: 1px solid rgba(166, 108, 123, 0.3);
}

.nav-menu li a.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 108, 123, 0.4);
}

.welcome-text {
  color: #a66c7b;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 182, 193, 0.3);
  transition: all 0.3s ease;
}

.welcome-text:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

/* === Sidebar === */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #fff0f5;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.45) rgba(0,0,0,0.12);
}
.sidebar::-webkit-scrollbar { width: 10px; }
.sidebar::-webkit-scrollbar-track { background: rgba(0,0,0,0.07); border-radius: 8px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.4); border-radius: 8px; }
.sidebar::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.55); }

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #a66c7b;
}

.sidebar-logo {
  height: 40px;
  border-radius: 5px;
}

/* === Header/Logo helpers === */
.logo-img {
  height: 70px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(166, 108, 123, 0.3));
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(166, 108, 123, 0.4));
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s;
}

.sidebar-close:hover {
  background: rgba(255,255,255,0.2);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar-menu li a:hover {
  background: #a66c7b;
  color: white;
}

.sidebar-menu li a i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === Footer === */
footer {
  background: #f8f8f8;
  padding: 30px 20px;
  margin-top: 50px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info p {
  margin: 5px 0;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-section h4 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #a66c7b;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .header-wrapper {
    margin: 10px 15px;
    border-radius: 15px;
  }
  
  .header-top {
    padding: 12px 20px;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .logo-text {
    font-size: 12px;
  }
  
  .navbar {
    padding: 12px 20px;
  }
  
  .nav-icons a {
    font-size: 1.1rem;
    padding: 6px;
  }
  
  .sidebar-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    gap: 5px;
  }
  
  .nav-menu li a {
    font-size: 14px;
    padding: 10px 20px;
    min-height: 42px;
  }
}

@media (min-width: 769px) {
  .sidebar-toggle {
    display: none;
  }
  
  .nav-menu {
    display: flex;
  }
}

/* Additional navbar polish */
.navbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.5), transparent);
}

.nav-menu li {
  position: relative;
}

/* Better alignment for icons */
.nav-icons {
  gap: 20px;
}

.nav-icons a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-icons a:hover::after {
  border-color: rgba(166, 108, 123, 0.3);
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: linear-gradient(135deg, #F0A8B8 0%, #D8708C 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact + Feedback on Home */
.contact-feedback {
  padding: 60px 20px;
  background: #ffffff;
}

.contact-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-card, .feedback-card {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3, .feedback-card h3 {
  color: #a66c7b;
  margin-bottom: 16px;
}

.contact-card p { color: #333; }

.map-container iframe { border: 0; }

.feedback-form .form-group { margin-bottom: 14px; }
.feedback-form label { display:block; margin-bottom:6px; color:#555; }
.feedback-form input, .feedback-form select, .feedback-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}
.rating-input { display:flex; gap:6px; align-items:center; }
.rating-input input { display:none; }
.rating-input label { cursor:pointer; color:#ffd1dc; font-size:22px; }
.rating-input input:checked + label, .rating-input label:hover { color:#ff6f91; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-feedback-grid { grid-template-columns: 1fr; }
}

.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: white;
  color: #D8708C;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  display: inline-block;
  padding: 16px 34px;
  background: #7b3c4c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.25s ease;
  border: 2px solid #7b3c4c;
  box-shadow: 0 8px 20px rgba(123, 60, 76, 0.35);
}

.btn-outline:hover {
  background: #a66c7b;
  border-color: #a66c7b;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(123, 60, 76, 0.45);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 25px;
  background: #ff6f91; /* pink color */
  color: white;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #ff5a7a; /* darker pink on hover */
}

.btn-alt {
  background: #ff8fa3; /* lighter pink */
}

.btn-alt:hover {
  background: #ff6f91; /* medium pink on hover */
}

/* === About Section === */
.about {
  padding: 30px;
  max-width: 900px;
  margin: 20px auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about img {
  width: 45%;
  height: auto;
  border-radius: 10px;
}

.about .text {
  width: 50%;
  padding: 20px;
  color: #444;
}

/* === Gallery === */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

.description {
  text-align: center;
  margin-top: 8px;
  color: #5a2a2a;
  font-weight: bold;
  font-size: 16px;
}

/* === Feedback Section === */
.feedback-section {
  margin: 50px auto;
  max-width: 800px;
  background: #fff0f6;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feedback-section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #a66c7b;
}

.feedback-list p {
  background: #fff;
  border-left: 4px solid #e91e63;
  padding: 12px 15px;
  margin: 12px 0;
  border-radius: 6px;
  font-style: italic;
}

/* === Signup Form === */
.signup-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.signup-form h2 {
  text-align: center;
  color: #a66c7b;
  margin-bottom: 20px;
}

.signup-form .form-group {
  margin-bottom: 15px;
}

.signup-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #5a2a2a;
}

.signup-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.signup-form input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 5px rgba(233, 30, 99, 0.4);
}

.signup-form .btn {
  width: 100%;
  margin-top: 10px;
}

.signup-form p {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.signup-form p a {
  color: #e91e63;
  font-weight: bold;
  text-decoration: none;
}

.signup-form p a:hover {
  text-decoration: underline;
}

/* === LOGIN & SIGNUP PAGES === */
.login-page, .signup-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container, .signup-container {
  max-width: 450px;
  width: 100%;
}

.login-form, .signup-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
}

.login-form h2, .signup-form h2 {
  color: #a66c7b;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.login-form .form-group, .signup-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.login-form label, .signup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.login-form input, .signup-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.login-form input:focus, .signup-form input:focus {
  outline: none;
  border-color: #ff6f91;
  box-shadow: 0 0 0 3px rgba(255, 111, 145, 0.1);
}

.login-form small, .signup-form small {
  display: block;
  margin-top: 5px;
  color: #6c757d;
  font-size: 12px;
}

.login-form .btn, .signup-form .btn {
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.login-form .btn:hover, .signup-form .btn:hover {
  background: linear-gradient(135deg, #ff5a7a, #ff6f91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 145, 0.4);
}

.login-links, .signup-links {
  margin-top: 25px;
  text-align: center;
}

.login-links a, .signup-links a {
  color: #ff6f91;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-links a:hover, .signup-links a:hover {
  color: #e91e63;
  text-decoration: underline;
}

.login-links a:not(:last-child) {
  margin-right: 15px;
}

/* Alert Messages */
.alert {
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Forgot Password Form */
.forgot-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
}

.forgot-form h2 {
  color: #a66c7b;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

/* Reset Password Page */
.reset-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reset-container {
  max-width: 450px;
  width: 100%;
}

.reset-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
}

.reset-form h2 {
  color: #a66c7b;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.reset-links {
  margin-top: 25px;
  text-align: center;
}

.reset-links a {
  color: #ff6f91;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.reset-links a:hover {
  color: #e91e63;
  text-decoration: underline;
}

/* Services Page */
.services-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h1 {
  font-size: 36px;
  color: #a66c7b;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-filter-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.services-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: auto;
  max-width: 100%;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #ff6f91;
  background: transparent;
  color: #ff6f91;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  white-space: nowrap;
}

.filter-btn:hover {
  background: #ff6f91;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 145, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
  justify-items: center;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 1;
  animation: fadeIn 0.6s ease-out;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  height: 100%;
  min-height: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card.hidden {
  display: none;
  opacity: 0;
}

.service-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #a66c7b;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
}

.service-content h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.service-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
  min-height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 14px;
}

.service-price {
  font-size: 24px;
  font-weight: 600;
  color: #a66c7b;
}

.service-actions {
  text-align: center;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 10px;
}

.btn-read-more {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: linear-gradient(135deg, #ff5a7a, #ff6f91);
  transform: translateY(-2px);
}

.services-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta h2 {
  color: #a66c7b;
  margin-bottom: 15px;
}

.services-cta p {
  color: #666;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.no-services {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 600px;
}

.no-services h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 24px;
}

.no-services p {
  color: #666;
  font-size: 16px;
}

.option-btn {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #ff6f91;
  text-decoration: none;
  border: 2px solid #ff6f91;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.option-btn:hover {
  background: #ff6f91;
  color: white;
  transform: translateY(-2px);
}

/* Service Detail Page */
.service-detail-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
}

.service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.service-detail-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-image-section {
  margin-bottom: 30px;
}

.service-main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-header {
  margin-bottom: 30px;
}

.service-header .service-category {
  display: inline-block;
  background: #f0f0f0;
  color: #a66c7b;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-header h1 {
  color: #333;
  margin-bottom: 15px;
  font-size: 32px;
}

.service-header .service-price {
  font-size: 28px;
  font-weight: 600;
  color: #a66c7b;
}

.service-description,
.service-features {
  margin-bottom: 30px;
}

.service-description h3,
.service-features h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-description p {
  color: #666;
  line-height: 1.6;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  color: #2ecc71;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-details {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

/* Appointment Booking */
.appointment-booking {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: fit-content;
}

.appointment-booking h2 {
  color: #a66c7b;
  margin-bottom: 25px;
  text-align: center;
}

.booking-section {
  margin-bottom: 30px;
}

.booking-section h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
}

.date-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.date-option {
  cursor: pointer;
}

.date-option input[type="radio"] {
  display: none;
}

.date-card {
  padding: 15px 10px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.date-option input[type="radio"]:checked + .date-card {
  border-color: #ff6f91;
  background: #fff0f5;
}

.date-day {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.date-date {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.time-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

/* Dim and disable time grid until prerequisites are met */
.time-selection.disabled {
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(10%);
}

.time-option {
  cursor: pointer;
}

.time-option input[type="radio"] {
  display: none;
}

.time-card {
  padding: 12px 8px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.time-option input[type="radio"]:checked + .time-card {
  border-color: #ff6f91;
  background: #fff0f5;
  color: #ff6f91;
}

.time-card.booked {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
  position: relative;
}

.time-card.booked:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
  transform: none;
}

.booked-indicator {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #dc3545;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.time-option.booked input[type="radio"] {
  display: none;
}

.time-option.booked {
  cursor: not-allowed;
}

/* Staff Analytics Styles */
.analytics-header {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  border-radius: 15px;
}

.analytics-header h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 600;
}

.analytics-header p {
  margin: 0 0 20px 0;
  opacity: 0.9;
  font-size: 16px;
}

.date-range-selector {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.date-range-selector .inline-form {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.date-range-selector label {
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.date-range-selector select,
.date-range-selector input {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}

.date-range-selector button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.date-range-selector button:hover {
  background: white;
  color: #ff6f91;
}

.analytics-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.kpi-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-5px);
}

.kpi-icon {
  font-size: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  border-radius: 12px;
  color: white;
}

.kpi-content {
  flex: 1;
}

.kpi-value {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.kpi-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.kpi-change {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
}

.kpi-change.positive {
  background: #d4edda;
  color: #155724;
}

.kpi-change.negative {
  background: #f8d7da;
  color: #721c24;
}

.kpi-change.neutral {
  background: #e2e3e5;
  color: #383d41;
}

.analytics-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.chart-container {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.analytics-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.analytics-section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.analytics-section h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #ff6f91;
  padding-bottom: 10px;
}

.top-days-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-day-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff6f91;
}

.day-rank {
  background: #ff6f91;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.day-info {
  flex: 1;
}

.day-date {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.day-amount {
  font-size: 16px;
  font-weight: 700;
  color: #ff6f91;
  margin-bottom: 2px;
}

.day-count {
  font-size: 12px;
  color: #666;
}

.transactions-table {
  overflow-x: auto;
}

.transactions-table table {
  width: 100%;
  border-collapse: collapse;
}

.transactions-table th,
.transactions-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.transactions-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.transactions-table td {
  color: #666;
}

.type-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.type-service {
  background: #d4edda;
  color: #155724;
}

.type-product {
  background: #d1ecf1;
  color: #0c5460;
}

.type-other {
  background: #e2e3e5;
  color: #383d41;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.insight-card {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-top: 4px solid #ff6f91;
}

.insight-card h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.insight-card p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.insight-card .positive {
  color: #28a745;
}

.insight-card .negative {
  color: #dc3545;
}

/* Responsive Design for Analytics */
@media (max-width: 768px) {
  .analytics-kpi-grid {
    grid-template-columns: 1fr;
  }
  
  .analytics-charts {
    grid-template-columns: 1fr;
  }
  
  .analytics-details {
    grid-template-columns: 1fr;
  }
  
  .date-range-selector .inline-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .date-range-selector .inline-form > * {
    width: 100%;
  }
  
  .kpi-card {
    flex-direction: column;
    text-align: center;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* Staff Dashboard Enhancements */
.admin-stat-change {
  margin-top: 10px;
  font-size: 12px;
}

.analytics-link {
  color: #ff6f91;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.analytics-link:hover {
  color: #e55a7a;
  text-decoration: underline;
}

.commission-earned {
  color: #28a745;
  font-weight: 500;
}

.avg-transaction {
  color: #666;
  font-weight: 500;
}

/* Dashboard Analytics Styles */
.dashboard-header {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-radius: 15px;
}

/* Record Payment Header */
.record-payment-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-radius: 12px 12px 0 0;
  margin: -1px -1px 0 -1px;
}

.record-payment-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.record-payment-header .toolbar {
  color: white;
}

.record-payment-header .toolbar input,
.record-payment-header .toolbar select,
.record-payment-header .toolbar button {
  color: #333;
}

.dashboard-header h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 600;
}

.dashboard-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 16px;
}

.growth-indicator {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-right: 10px;
}

.growth-indicator.positive {
  background: #d4edda;
  color: #155724;
}

.growth-indicator.negative {
  background: #f8d7da;
  color: #721c24;
}

.dashboard-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.chart-section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.chart-section h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.chart-container {
  height: 300px;
  position: relative;
}

.dashboard-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.insight-section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.insight-section h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #ff6f91;
  padding-bottom: 10px;
}

.top-days-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-day-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff6f91;
  transition: transform 0.2s ease;
}

.top-day-card:hover {
  transform: translateX(5px);
}

.day-rank {
  background: #ff6f91;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.day-info {
  flex: 1;
}

.day-date {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.day-amount {
  font-size: 16px;
  font-weight: 700;
  color: #ff6f91;
  margin-bottom: 2px;
}

.day-count {
  font-size: 12px;
  color: #666;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.performance-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-top: 4px solid #ff6f91;
}

.perf-icon {
  font-size: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  border-radius: 10px;
  color: white;
}

.perf-content {
  flex: 1;
}

.perf-value {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.perf-label {
  font-size: 12px;
  color: #666;
}

.recent-transactions {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.recent-transactions h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #ff6f91;
  padding-bottom: 10px;
}

.transactions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transaction-item {
  display: grid;
  grid-template-columns: 80px 100px 1fr 100px;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff6f91;
}

.transaction-date {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.transaction-type {
  display: flex;
  align-items: center;
}

.transaction-amount {
  font-weight: 700;
  color: #ff6f91;
  font-size: 16px;
  text-align: right;
}

.transaction-commission {
  font-weight: 600;
  color: #28a745;
  font-size: 14px;
  text-align: right;
}

/* Responsive Design for Dashboard Analytics */
@media (max-width: 768px) {
  .dashboard-charts {
    grid-template-columns: 1fr;
  }
  
  .dashboard-insights {
    grid-template-columns: 1fr;
  }
  
  .performance-grid {
    grid-template-columns: 1fr;
  }
  
  .transaction-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  
  .transaction-amount,
  .transaction-commission {
    text-align: center;
  }
  
  .chart-container {
    height: 250px;
  }
}

/* Staff Calendar Styles */
.calendar-header {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.calendar-header h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 600;
}

.calendar-header p {
  margin: 0 0 20px 0;
  opacity: 0.9;
  font-size: 16px;
}

.calendar-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.calendar-navigation h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  min-width: 200px;
  text-align: center;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.today-btn {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.holiday-form-section {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.holiday-form-section:hover {
  border-color: rgba(102, 126, 234, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.holiday-form-section h3 {
  margin: 0 0 25px 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 3px solid #667eea;
  padding-bottom: 12px;
}

.holiday-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
  display: block;
  margin-top: 4px;
  color: #6c757d;
  font-size: 12px;
  font-style: italic;
}

.btn-add-holiday {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-add-holiday:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.calendar-container {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.calendar-grid {
  width: 100%;
}

.calendar-header-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 10px;
}

.calendar-day-header {
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
  padding: 16px 8px;
  text-align: center;
  font-weight: 700;
  color: white;
  border-radius: 12px 12px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}

.calendar-day {
  background: transparent;
  border: none;
  min-height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.calendar-day.empty {
  background: transparent;
}

.date-button {
  width: 100%;
  height: 50px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.date-button:hover {
  border-color: #8B5CF6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.calendar-day.today .date-button {
  background: white;
  border: 2px solid #EC4899;
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

.calendar-day.past .date-button {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #9ca3af;
}

.calendar-day .date-button.selected {
  background: #dbeafe;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

.calendar-day .date-button:hover:not(.past):not(.today) {
  background: #f0f9ff;
  border-color: #0ea5e9;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.day-number {
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  margin: 0;
}

.holiday-indicators {
  display: flex;
  gap: 3px;
  margin-top: 4px;
  justify-content: center;
  flex-wrap: wrap;
}

.holiday-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: help;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.holiday-dot:hover {
  transform: scale(1.2);
}

.holiday-dot.own {
  background: #EC4899;
  border-color: #be185d;
}

.holiday-dot.other {
  background: #6b7280;
  border-color: #4b5563;
}

.calendar-legend {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.legend-color.own {
  background: #EC4899;
}

.legend-color.other {
  background: #6b7280;
}

.legend-color.today {
  background: white;
  border: 2px solid #EC4899;
}

.holidays-list {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.holidays-list h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #ff6f91;
  padding-bottom: 10px;
}

.no-holidays {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
}

.holidays-grid {
  display: grid;
  gap: 15px;
}

.holiday-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid;
  transition: transform 0.2s ease;
}

.holiday-item:hover {
  transform: translateX(5px);
}

.own-holiday {
  background: #fff0f5;
  border-left-color: #ff6f91;
}

.other-holiday {
  background: #f8f9fa;
  border-left-color: #6c757d;
}

.holiday-date {
  font-weight: 700;
  color: #333;
  font-size: 16px;
  min-width: 60px;
}

.holiday-info {
  flex: 1;
}

.holiday-staff {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.holiday-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.remove-holiday-form {
  margin-left: auto;
}

.btn-remove {
  background: #dc3545;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-remove:hover {
  background: #c82333;
  transform: scale(1.1);
}

.calendar-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #ff6f91;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #ff6f91;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Responsive Design for Calendar */
@media (max-width: 768px) {
  .calendar-navigation {
    flex-direction: column;
    text-align: center;
  }
  
  .calendar-navigation h2 {
    min-width: auto;
  }
  
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .calendar-day {
    min-height: 80px;
    padding: 8px;
  }
  
  .calendar-legend {
    flex-direction: column;
    align-items: center;
  }
  
  .holiday-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .remove-holiday-form {
    margin-left: 0;
    align-self: flex-end;
  }
  
  .calendar-stats {
    grid-template-columns: 1fr;
  }
}

/* Admin Calendar Specific Styles */
.holiday-dot.admin-view {
  background: #17a2b8;
  width: 8px;
  height: 8px;
}

.admin-holiday {
  background: #e3f2fd;
  border-left-color: #17a2b8;
}

.holiday-stats {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.holiday-stats h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #17a2b8;
  padding-bottom: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.stat-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #17a2b8;
}

.stat-staff {
  font-weight: 700;
  color: #333;
  font-size: 16px;
  margin-bottom: 8px;
}

.stat-count {
  font-size: 24px;
  font-weight: 700;
  color: #17a2b8;
  margin-bottom: 8px;
}

.stat-dates {
  font-size: 12px;
  color: #666;
  font-style: italic;
  line-height: 1.4;
}

.form-group select {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: #17a2b8;
}

/* Responsive adjustments for admin calendar */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .holiday-indicator.admin-view {
    font-size: 6px;
    width: 18px;
    height: 18px;
  }
}

.booking-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.booking-summary h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-item.total {
  border-top: 1px solid #e9ecef;
  padding-top: 10px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #a66c7b;
}

.btn-book-appointment {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-book-appointment:hover {
  background: linear-gradient(135deg, #27ae60, #229954);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Stock Display */
.stock-info {
  margin: 15px 0;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2ecc71;
}

.stock-label {
  color: #666;
  font-weight: 500;
}

.stock-amount {
  color: #2ecc71;
  font-weight: 600;
  margin-left: 5px;
}

/* Cart Service Items */
.appointment-details {
  margin-top: 8px;
  font-size: 12px;
}

.appointment-date,
.appointment-time,
.appointment-staff {
  color: #666;
  margin-bottom: 2px;
}

.appointment-staff {
  font-weight: 500;
  color: #a66c7b;
}

.service-quantity {
  color: #a66c7b;
  font-weight: 500;
  font-size: 14px;
}

/* Staff Selection */
.staff-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.staff-option {
  cursor: pointer;
}

.staff-option input[type="radio"] {
  display: none;
}

.staff-card {
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
}

.staff-option input[type="radio"]:checked + .staff-card {
  border-color: #ff6f91;
  background: #fff0f5;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.2);
}

.staff-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.staff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-placeholder {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.staff-info {
  flex: 1;
}

.staff-info h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;
}

.staff-specialty {
  color: #ff6f91;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 3px;
}

.staff-experience {
  color: #666;
  font-size: 13px;
  margin-bottom: 5px;
}

.staff-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.staff-rating .stars {
  color: #ffd700;
  font-size: 12px;
}

.staff-rating .rating {
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 25px;
    justify-items: stretch;
  }
  
  .services-header h1 {
    font-size: 28px;
  }
  
  .services-header p {
    font-size: 16px;
  }
  
  .services-filter-container {
    padding: 0 15px;
  }
  
  .services-filter {
    justify-content: center;
    gap: 8px;
  }
  
  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
    flex: 0 0 auto;
  }
  
  .service-card {
    max-width: 100%;
    width: 100%;
  }
  
  .service-image {
    height: 200px;
  }
  
  .date-selection {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  
  .time-selection {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }
  
  .staff-selection {
    grid-template-columns: 1fr;
  }
  
  .staff-card {
    padding: 15px;
  }
}

/* Cart Icon in Services Header */
.cart-icon-header {
  margin-top: 20px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.cart-link:hover {
  background: linear-gradient(135deg, #ff5a7a, #ff6f91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 145, 0.4);
}

/* Smart Queue Page */
.smart-queue-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
}

.queue-container {
  max-width: 1000px;
  margin: 0 auto;
}

.queue-success {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.queue-number {
  font-size: 48px;
  font-weight: 700;
  color: #a66c7b;
  margin: 20px 0;
  letter-spacing: 2px;
}

.queue-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: left;
}

.queue-details p {
  margin: 8px 0;
  color: #333;
}

.queue-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.queue-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.qr-section {
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qr-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.qr-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 20px;
}

.qr-placeholder svg {
  color: white;
  margin-bottom: 15px;
}

.qr-placeholder p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.queue-form-section {
  padding: 40px;
}

.queue-form-section h2 {
  color: #a66c7b;
  margin-bottom: 30px;
  text-align: center;
}

.services-selection {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
}

.service-category-section {
  margin-bottom: 25px;
}

.service-category-section:last-child {
  margin-bottom: 0;
}

.category-title {
  color: #a66c7b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ff6f91;
  position: relative;
}

.category-title::before {
  content: "✨";
  margin-right: 8px;
}

.category-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  align-items: start;
}

.service-checkbox {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.service-checkbox input[type="checkbox"] {
  display: none;
}

.service-option {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-checkbox input[type="checkbox"]:checked + .service-option {
  border-color: #ff6f91;
  background: #fff0f5;
}

.service-info h4,
.service-info h5 {
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;
}

.service-info h5 {
  font-size: 15px;
}

.service-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.duration {
  color: #666;
  font-size: 12px;
}

.price {
  color: #a66c7b;
  font-weight: 600;
  font-size: 14px;
}

.btn-generate-queue {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-generate-queue:hover {
  background: linear-gradient(135deg, #27ae60, #229954);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Track Queue Page */
.track-queue-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
}

.track-container {
  max-width: 800px;
  margin: 0 auto;
}

.error-message {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  text-align: center;
}

.error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.queue-status {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 40px;
}

.queue-header {
  text-align: center;
  margin-bottom: 30px;
}

.queue-header h2 {
  color: #a66c7b;
  margin-bottom: 15px;
}

.queue-number-large {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
}

.status-indicator {
  text-align: center;
  margin-bottom: 30px;
}

.status-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: white;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.status-text {
  font-size: 18px;
  font-weight: 600;
}

.queue-details {
  margin-bottom: 30px;
}

.detail-section {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.detail-section h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 18px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.label {
  font-weight: 600;
  color: #333;
}

.value {
  color: #666;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
}

.service-item svg {
  color: #2ecc71;
}

.total-duration {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e9ecef;
  color: #a66c7b;
}

.wait-time {
  text-align: center;
  padding: 20px;
  background: #fff0f5;
  border-radius: 10px;
  border: 2px solid #ff6f91;
}

.time-number {
  font-size: 36px;
  font-weight: 700;
  color: #ff6f91;
  display: block;
}

.time-unit {
  color: #666;
  font-size: 14px;
}

.queue-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.queue-tips {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}

.queue-tips h3 {
  color: #a66c7b;
  margin-bottom: 15px;
}

.queue-tips ul {
  list-style: none;
  padding: 0;
}

.queue-tips li {
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.queue-tips li:before {
  content: "💡";
  position: absolute;
  left: 0;
}

/* Order History Page */
.order-history-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
}

.history-container {
  max-width: 1000px;
  margin: 0 auto;
}

.history-header {
  text-align: center;
  margin-bottom: 40px;
}

.history-header h1 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 36px;
}

.history-header p {
  color: #666;
  font-size: 18px;
}

.no-orders {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  text-align: center;
}

.no-orders-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.no-orders h2 {
  color: #a66c7b;
  margin-bottom: 15px;
}

.no-orders p {
  color: #666;
  margin-bottom: 30px;
}

.no-orders-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.order-card:hover {
  transform: translateY(-2px);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.order-info h3 {
  color: #333;
  margin-bottom: 5px;
  font-size: 18px;
}

.order-date {
  color: #666;
  font-size: 14px;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 15px;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.order-items {
  padding: 20px;
}

.order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;
}

.item-details p {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.appointment-info {
  background: #fff0f5;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 8px 0;
}

.appointment-info p {
  margin: 2px 0;
  font-size: 13px;
}

.item-price {
  color: #a66c7b;
  font-weight: 600;
  font-size: 16px;
}

.order-summary {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-row.total {
  border-top: 1px solid #e9ecef;
  padding-top: 10px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #a66c7b;
}

.order-actions {
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-small, .option-btn-small {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small {
  background: #ff6f91;
  color: white;
}

.btn-small:hover {
  background: #ff5a7a;
}

.option-btn-small {
  background: #3498db;
  color: white;
}

.option-btn-small:hover {
  background: #2980b9;
}

.order-details {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.details-section {
  margin-bottom: 20px;
}

.details-section:last-child {
  margin-bottom: 0;
}

.details-section h4 {
  color: #a66c7b;
  margin-bottom: 10px;
  font-size: 16px;
}

.details-section p {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .queue-form-container {
    grid-template-columns: 1fr;
  }
  
  .qr-section {
    padding: 30px 20px;
  }
  
  .queue-form-section {
    padding: 30px 20px;
  }
  
  .category-services {
    grid-template-columns: 1fr;
  }
  
  .services-selection {
    max-height: 300px;
  }
  
  .order-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .order-actions {
    justify-content: center;
  }
  
  .no-orders-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Gallery Page */
.gallery-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h1 {
  font-size: 36px;
  color: #a66c7b;
  margin-bottom: 15px;
}

.gallery-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Feedback Section */
.feedback-section {
  background: white;
  padding: 60px 20px;
}

.feedback-container {
  max-width: 1000px;
  margin: 0 auto;
}

.feedback-header {
  text-align: center;
  margin-bottom: 50px;
}

.feedback-header h2 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 32px;
}

.feedback-header p {
  color: #666;
  font-size: 18px;
}

.feedback-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.feedback-info h3 {
  color: #a66c7b;
  margin-bottom: 20px;
  font-size: 24px;
}

.feedback-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feedback-info li {
  color: #666;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.feedback-info li:before {
  content: "✓";
  color: #2ecc71;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.rating-display {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.rating-display h4 {
  color: #a66c7b;
  margin-bottom: 10px;
}

.stars {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 10px;
}

.rating-display p {
  color: #666;
  font-size: 14px;
}

.feedback-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
}

.rating-input {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover {
  color: #ffd700;
}

.submit-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ff5a7a, #ff6f91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 145, 0.4);
}

/* Home Page Enhancements */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff0f5, #f8f9fa, #ffffff);
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content h1 {
  font-size: 48px;
  color: #a66c7b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features {
  padding: 80px 20px;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  color: #a66c7b;
  margin-bottom: 50px;
  font-size: 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  border-radius: 50%;
  color: white;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 24px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.services-preview {
  padding: 60px 20px;
  background: #f8f9fa;
}

.services-cta {
  text-align: center;
  margin-bottom: 40px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.btn-view-all:hover {
  background: linear-gradient(135deg, #ff5a7a, #ff6f91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 145, 0.4);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 20px;
  color: #ff6f91;
}

.service-name {
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

/* Packages Section */
.packages {
  padding: 80px 20px;
  background: white;
}

.packages h2 {
  text-align: center;
  color: #a66c7b;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
  align-items: start;
}

.package-card {
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  border-radius: 20px;
  padding: 30px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 111, 145, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.featured {
  background: linear-gradient(135deg, #ff8fa3, #ffa8b8);
  transform: scale(1.05);
}

.package-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.package-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-content li {
  padding: 8px 0;
  font-size: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.promotion-note {
  text-align: center;
  margin-top: 40px;
}

.promotion-note p {
  color: #a66c7b;
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
}

/* Customer Rating Section */
.customer-rating {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D8708C, #a66c7b);
  color: white;
}

.rating-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.rating-stats {
  text-align: center;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.rating-stars {
  font-size: 24px;
  margin-bottom: 10px;
}

.rating-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.rating-description h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.rating-description p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 250, 252, 0.95) 0%, rgba(255, 240, 245, 0.9) 100%);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.rating-badge {
  display: inline-block;
  background: linear-gradient(135deg, #a66c7b, #D8708C);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.testimonials h2 {
  text-align: center;
  color: #a66c7b;
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 600;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.quote-mark {
  font-size: 48px;
  color: #ff6f91;
  position: absolute;
  top: -10px;
  left: -5px;
  font-family: serif;
}

.testimonial-content p {
  color: #333;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 30px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author .name {
  color: #a66c7b;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-author .service {
  color: #666;
  font-size: 14px;
}

.testimonials-cta {
  text-align: center;
}

.cta-link {
  color: #a66c7b;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: #7b3c4c;
  text-decoration: underline;
}

/* Home Page Background */
.home-page {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f8 20%, #ffeef7 40%, #fff5f8 60%, #ffffff 100%);
  background-attachment: fixed;
  position: relative;
}

.home-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(216, 112, 140, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 192, 203, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.home-page > * {
  position: relative;
  z-index: 1;
}

/* Spa Image Section */
.spa-image-section {
  padding: 60px 20px;
  background: transparent;
  position: relative;
}

.spa-image-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(166, 108, 123, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spa-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(166, 108, 123, 0.4);
}

.spa-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.spa-image-wrapper:hover .spa-main-image {
  transform: scale(1.05);
}

.spa-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 40px 30px 30px;
  color: white;
}

.spa-image-overlay h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.spa-image-overlay p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .spa-main-image {
    height: 350px;
  }
  
  .spa-image-overlay {
    padding: 30px 20px 20px;
  }
  
  .spa-image-overlay h3 {
    font-size: 24px;
  }
  
  .spa-image-overlay p {
    font-size: 16px;
  }
}

/* Company Description Section */
.company-description {
  padding: 80px 20px;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  animation: slideInSection 1s ease-out;
}

/* Spa Slideshow Container */
.spa-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.spa-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  transform: translateX(100%);
  animation: slideShow 12s infinite;
}

.spa-slide.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideShow 12s infinite;
}

.spa-slide:nth-child(1) {
  animation-delay: 0s;
}

.spa-slide:nth-child(2) {
  animation-delay: 4s;
}

.spa-slide:nth-child(3) {
  animation-delay: 8s;
}

.company-description::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 240, 245, 0.75) 100%);
  z-index: 1;
  animation: fadeInOverlay 0.8s ease-out 0.3s both;
  pointer-events: none;
}

@keyframes slideInSection {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  35% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes fadeInOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Add interactive hover effect */
@media (prefers-reduced-motion: no-preference) {
  .company-description:hover {
    background-size: 105%;
    transition: background-size 0.6s ease-out;
  }
  
  .company-description:hover::before {
    transform: scale(1.05);
    transition: transform 0.6s ease-out;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.description-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.description-header h2 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.description-header h2::before {
  content: "🌿";
  font-size: 24px;
}

.lead {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.description-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.description-text {
  color: #333;
  line-height: 1.8;
  font-size: 16px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ff6f91;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.description-text p {
  margin-bottom: 20px;
}

.description-text p:last-child {
  margin-bottom: 0;
}

.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vision, .mission {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ff6f91;
}

.vision h3, .mission h3 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vision h3::before {
  content: "🎯";
  font-size: 18px;
}

.mission h3::before {
  content: "💫";
  font-size: 18px;
}

.vision p, .mission p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .rating-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  
  .testimonial-content p {
    margin-left: 20px;
  }
  
  .quote-mark {
    font-size: 36px;
  }
  
  .description-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .description-header h2 {
    font-size: 24px;
  }
  
  .lead {
    font-size: 16px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.service-preview {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-preview:hover {
  transform: translateY(-5px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  border-radius: 50%;
  color: white;
  margin-bottom: 20px;
}

.service-preview h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-preview p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-preview .price {
  color: #a66c7b;
  font-weight: 600;
  font-size: 18px;
}

.services-cta {
  text-align: center;
}

.about {
  padding: 80px 20px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #a66c7b;
  margin-bottom: 20px;
  font-size: 32px;
}

.about-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.stat h3 {
  color: #a66c7b;
  font-size: 28px;
  margin-bottom: 5px;
}

.stat p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonials {
  padding: 80px 20px;
  background: #f4f6f8;
}

.testimonials h2 {
  text-align: center;
  color: #a66c7b;
  margin-bottom: 50px;
  font-size: 36px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-content p {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author h4 {
  color: #a66c7b;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #ffd700;
  font-size: 18px;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn {
  background: white;
  color: #ff6f91;
}

.cta-section .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-section .btn-alt {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-section .btn-alt:hover {
  background: white;
  color: #ff6f91;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .feedback-content {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === CONTACT PAGE === */
.contact-page {
  padding: 40px;
  text-align: center;
}

/* === Utilities === */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 0.5rem; }
.gap-6 { gap: 0.75rem; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-20 { margin-top: 20px; }
.col-span-full { grid-column: 1 / -1; }
.w-100 { width: 100%; }
.w-100px { width: 100px; }
.w-70px { width: 70px; }

/* === Generic Tables and Alerts (used on staff pages) === */
.table-basic { width: 100%; border-collapse: collapse; }
.table-basic th, .table-basic td { border-bottom: 1px solid #eee; padding: 10px; text-align: left; }
.table-basic th { background: #fafafa; }

.page-header { display: flex; justify-content: space-between; align-items: center; }
.alert { padding: 10px; border-radius: 8px; margin: 10px 0; }
.alert.success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #1b5e20; }
.alert.error { background: #ffebee; border: 1px solid #ffcdd2; color: #c62828; }
.muted { color: #666; }

/* === Staff pages === */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0; }
.card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; }
.sales-form { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; margin: 20px 0; }
.sales-form .row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sales-form label { display: block; font-weight: 600; margin-bottom: 6px; }
.sales-form input, .sales-form select, .sales-form textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; }

/* Staff layout & common UI */
.staff-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.staff-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: 12px 0; flex-wrap: wrap; }
.staff-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.staff-section { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; margin: 16px 0; }

/* Staff buttons */
.btn { display: inline-block; padding: 10px 16px; border-radius: 8px; text-decoration: none; cursor: pointer; border: none; }
.btn-primary { background: #6366f1; color: #fff; }
.btn-primary:hover { background: #4f46e5; }
.btn-secondary { background: #f1f5f9; color: #374151; border: 1px solid #e2e8f0; }
.btn-secondary:hover { background: #e2e8f0; }

/* Staff tables */
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table thead { background: #f8fafc; }
.table th, .table td { padding: 10px; text-align: left; border-bottom: 1px solid #e5e7eb; }
.table tr:hover td { background: #f9fafb; }

/* Staff filters & inline forms */
.inline-form { display: inline-flex; align-items: center; gap: 8px; }
.inline-form select, .inline-form input { padding: 6px 8px; border: 1px solid #e2e8f0; border-radius: 6px; }

/* Staff badges */
.badge { display: inline-block; font-size: 12px; padding: 4px 8px; border-radius: 999px; background: #eef2ff; color: #3730a3; border: 1px solid #e0e7ff; }

/* Staff alerts */
.alert { padding: 10px; border-radius: 8px; margin: 10px 0; }
.alert.success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #1b5e20; }
.alert.error { background: #ffebee; border: 1px solid #ffcdd2; color: #c62828; }

/* Staff Login Page */
.staff-login-body {
  background: linear-gradient(135deg, #7bb0a6, #a5d4c8);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: Arial, sans-serif;
}

.staff-login-container {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.staff-login-container h1 {
  color: #257a6d;
  margin-bottom: 30px;
  font-size: 2em;
}

.staff-login-container .form-group { margin-bottom: 20px; text-align: left; }
.staff-login-container .form-group label { display: block; margin-bottom: 5px; color: #333; font-weight: 500; }
.staff-login-container .form-group input { width: 100%; padding: 12px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 16px; box-sizing: border-box; }
.staff-login-container .form-group input:focus { outline: none; border-color: #257a6d; }

.btn-login { width: 100%; padding: 12px; background: #257a6d; color: white; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; }
.btn-login:hover { background: #1e655a; }

.error { background: #ffebee; color: #c62828; padding: 10px; border-radius: 5px; margin-bottom: 20px; border: 1px solid #ffcdd2; }
.back-link { margin-top: 20px; }
.back-link a { color: #257a6d; text-decoration: none; }
.back-link a:hover { text-decoration: underline; }

/* === Calendar page === */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-day { border: 1px solid #eee; border-radius: 8px; padding: 8px; min-height: 90px; background: #fff; }
.calendar-badge { display: inline-block; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 999px; padding: 2px 6px; font-size: 11px; margin-right: 4px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin: 16px 0; }
.add-note { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; margin: 16px 0; }
.add-note .row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.add-note input, .add-note select, .add-note textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; }

.contact-page h2 {
  color: #a66c7b;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-form,
.contact-info {
  flex: 1 1 350px;
  background: #fff0f5;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form h3,
.contact-info h3 {
  color: #e91e63;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #a66c7b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #d81b60;
}

.contact-info p {
  margin: 8px 0;
  color: #333;
  text-align: left;
}

.social-links {
  margin: 15px 0;
}

.social-links a {
  margin-right: 15px;
  display: inline-block;
}

.social-links img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* --- Gallery Section --- */
.gallery {
  background: #fff0f5; 
  padding: 40px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #444;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap; /* susun automatik bila banyak gambar */
  justify-content: center;
  gap: 15px;
}

.gallery-container img {
  width: 100%;
  max-width: 250px;   /* saiz maksimum gambar */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}


/* --- Feedback Section --- */
.feedback {
  background: #fff0f5; /* very light pink */
  padding: 40px 20px;
  text-align: center;
}

.feedback h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #a83279;
}

.feedback form {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.feedback label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #333;
}

.feedback input,
.feedback textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: border 0.3s ease;
}

.feedback input:focus,
.feedback textarea:focus {
  border-color: #a83279;
  outline: none;
}

.feedback button {
  background: #a83279;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.feedback button:hover {
  background: #8a285f;
}

/* Product Section */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(166, 108, 123, 0.15);
  border-color: #ffb6c1;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  background: #f8f9fa;
}

.product-card h3 {
  font-size: 18px;
  margin: 12px 0 8px 0;
  color: #333;
  font-weight: 600;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card p {
  font-size: 18px;
  color: #a66c7b;
  margin: 8px 0;
  font-weight: 700;
}

.product-card .btn {
  background: linear-gradient(135deg, #ffb6c1, #ffd9e3);
  color: #7b3c4c;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
}

.product-card .btn:hover {
  background: linear-gradient(135deg, #ff4d6d, #ff6f91);
  color: #fff;
  transform: scale(1.02);
}

/* Page Title Section */
.page-title {
  text-align: center;
  padding: 40px 20px 30px;
  position: relative;
}

.page-title h1 {
  font-size: 2.5rem;
  color: #333;
  color: #a66c7b;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.page-title .cart-icon {
  position: absolute;
  top: 40px;
  right: 30px;
}

.page-title .cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffb6c1, #ffd9e3);
  color: #7b3c4c;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(166, 108, 123, 0.2);
}

.page-title .cart-icon a:hover {
  background: linear-gradient(135deg, #ff4d6d, #ff6f91);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(166, 108, 123, 0.3);
}

/* Responsive Styles for Product Page */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 10px;
  }
  
  .product-card {
    max-width: 100%;
  }
  
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .page-title .cart-icon {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-title h1 {
    font-size: 1.75rem;
  }
  
  .page-title {
    padding: 30px 15px 20px;
  }
}

.product-detail {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-image img {
  width: 350px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-info {
  max-width: 400px;
}

.product-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.product-info .price {
  font-size: 22px;
  color: #e63946;
  font-weight: bold;
  margin-bottom: 20px;
}

.btn-add {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-add:hover {
  background: #45a049;
}

/* Product Description */
.product-description {
  margin: 20px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #ff6f91;
}

.product-description h3 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 20px;
}

.product-description p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-features h4 {
  color: #a66c7b;
  margin-bottom: 10px;
  font-size: 16px;
}

.product-features ul {
  list-style: none;
  padding-left: 0;
}

.product-features li {
  color: #555;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.product-features li:before {
  content: "✓";
  color: #2ecc71;
  font-weight: bold;
  position: absolute;
  left: 0;
}


/* Cart Page */
.cart-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  color: #a66c7b;
  text-align: center;
}

.cart-header .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ff6f91;
  color: #fff;
}

/* Cart Table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  background: #fff;
}

.cart-table th, .cart-table td {
  border: none;
  padding: 16px 12px;
  text-align: center;
  font-size: 15px;
}

.cart-table thead { 
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: #fff;
}
.cart-table th { 
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.cart-table td {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.cart-table tbody tr:hover {
  background: #f8f9fa;
  transition: background 0.3s ease;
}

.cart-product-cell {
  text-align: left;
  padding: 14px 16px;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.cart-thumb-fallback {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
}

.cart-product-name { font-weight: 600; color: #212529; }
.cart-product-id { font-size: 12px; color: #6c757d; }

.remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #e03131;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

/* Cart Icon */
.cart-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.cart-icon a {
  color: #fff;
  font-size: 24px;
  background: #ff4d6d;
  padding: 12px 15px;
  border-radius: 50%;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  display: inline-block;
  transition: 0.3s;
}
.cart-icon a:hover {
  background: #e63950;
  transform: scale(1.1);
}

/* quantity form */
.qty-form {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.qty-input {
  width: 70px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

.qty-update-btn {
  background: #6c5ce7;
  color: #fff;
  border: 0;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.qty-update-btn:hover {
  background: #584bd1;
}

/* cart action buttons row */
.cart-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.option-btn, .delete-btn, .btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.option-btn { 
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
}
.option-btn:hover { 
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.delete-btn { 
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
}
.delete-btn:hover { 
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn { 
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
}
.btn:hover { 
  background: linear-gradient(135deg, #27ae60, #229954);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


/* Empty cart state */
.cart-empty {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  max-width: 500px;
  margin: 50px auto;
  text-align: center;
}

.cart-empty .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.cart-empty h3 {
  letter-spacing: 2px;
  color: #a66c7b;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.cart-empty .btn {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 30px;
}

/* Checkout Page */
.checkout-page {
  padding: 40px 20px;
  background: #f4f6f8;
  min-height: 70vh;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-header {
  text-align: center;
  font-size: 32px;
  color: #a66c7b;
  margin-bottom: 30px;
}

.checkout-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.order-summary {
  background: #f8f9fa;
  padding: 30px;
  border-right: 1px solid #e9ecef;
}

.order-summary h3 {
  color: #a66c7b;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  width: 100%;
  height: 100%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 12px;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;
}

.item-details p {
  color: #666;
  margin: 2px 0;
  font-size: 14px;
}

.item-total {
  font-weight: 600;
  color: #a66c7b;
  font-size: 16px;
}

.order-total {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 0;
}

.final-total {
  border-top: 2px solid #ff6f91;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #a66c7b;
}

.checkout-form {
  padding: 30px;
}

.checkout-form h3 {
  color: #a66c7b;
  margin-bottom: 25px;
  font-size: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6f91;
  box-shadow: 0 0 0 3px rgba(255, 111, 145, 0.1);
}

.payment-method {
  margin: 25px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.payment-method h4 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 18px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.payment-option:hover {
  background: #f0f0f0;
}

.payment-option input[type="radio"] {
  width: auto;
  margin: 0;
}

.place-order-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.place-order-btn:hover {
  background: linear-gradient(135deg, #27ae60, #229954);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Checkout Success */
.checkout-success {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  max-width: 600px;
  margin: 50px auto;
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.checkout-success h2 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 28px;
}

.checkout-success p {
  color: #555;
  margin-bottom: 10px;
  font-size: 16px;
}

.checkout-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Checkout Empty */
.checkout-empty {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  max-width: 500px;
  margin: 50px auto;
  text-align: center;
}

.empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6f91, #ff8fa3);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 111, 145, 0.3);
}

.checkout-empty h2 {
  color: #a66c7b;
  margin-bottom: 15px;
  font-size: 24px;
}

.checkout-empty p {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  
  .checkout-page {
    padding: 20px 10px;
  }
  
  .order-summary,
  .checkout-form {
    padding: 20px;
  }
}



/* === Checkout Notice === */
.checkout-notice {
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  border: 2px solid #4caf50;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.checkout-notice p {
  color: #2e7d32;
  font-weight: 500;
  margin: 0;
}

/* === Signup Info === */
.signup-info {
  background: linear-gradient(135deg, #fff3e0, #fef7e0);
  border: 2px solid #ff9800;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.signup-info p {
  color: #e65100;
  font-weight: 500;
  margin: 10px 0;
}

.signup-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.signup-actions .btn,
.signup-actions .option-btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.signup-actions .btn {
  background: linear-gradient(135deg, #a66c7b, #7b3c4c);
  color: white;
}

.signup-actions .btn:hover {
  background: linear-gradient(135deg, #7b3c4c, #5a2c3a);
  transform: translateY(-2px);
}

.signup-actions .option-btn {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  color: #666;
  border: 2px solid #ddd;
}

.signup-actions .option-btn:hover {
  background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
  transform: translateY(-2px);
}

/* QR Payment Section */
.qr-payment-section {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}

.qr-code-container h5 {
  color: #a66c7b;
  margin-bottom: 20px;
  font-size: 18px;
}

.qr-code {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.qr-code svg {
  color: #333;
}

.qr-amount {
  font-size: 18px;
  font-weight: 600;
  color: #a66c7b;
  margin-bottom: 10px;
}

.qr-instructions {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Receipt Section */
.receipt-section {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.receipt-section h3 {
  color: #a66c7b;
  margin-bottom: 20px;
  text-align: center;
}

.receipt-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.receipt-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff6f91;
  padding-bottom: 15px;
}

.receipt-header h4 {
  color: #a66c7b;
  margin-bottom: 10px;
  font-size: 20px;
}

.receipt-header p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.receipt-items {
  margin-bottom: 20px;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.item-name {
  flex: 1;
  font-weight: 500;
}

.item-qty {
  margin: 0 10px;
  color: #666;
}

.item-price {
  font-weight: 600;
  color: #a66c7b;
}

.appointment-details {
  margin-left: 20px;
  margin-top: 5px;
}

.appointment-details small {
  display: block;
  color: #666;
  font-size: 12px;
  margin-bottom: 2px;
}

.receipt-total {
  border-top: 2px solid #ff6f91;
  padding-top: 15px;
  margin-top: 20px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.total-line.final {
  font-weight: bold;
  font-size: 18px;
  color: #a66c7b;
  border-top: 1px solid #e9ecef;
  padding-top: 10px;
  margin-top: 10px;
}

.receipt-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.receipt-footer p {
  margin: 5px 0;
  color: #666;
  font-style: italic;
}

.receipt-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.receipt-actions .btn,
.receipt-actions .option-btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

/* ===== ADMIN STYLES ===== */

/* Admin Dashboard Layout */
.admin-dashboard-container {
  display: flex;
  min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
}

.admin-logo {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-logo i {
  background: white;
  color: #6366f1;
  padding: 0.5rem;
  border-radius: 8px;
}

.admin-nav-menu {
  padding: 1rem 0;
}

.admin-nav-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255,255,255,0.1);
  color: white;
  border-left-color: white;
}

.admin-nav-item i {
  width: 20px;
  margin-right: 0.75rem;
}

/* Admin Sidebar */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  z-index: 1000;
  overflow-y: auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-brand {
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
}

.admin-sidebar-logo i {
  font-size: 2rem;
  color: white;
}

.admin-sidebar-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.admin-sidebar-nav {
  padding: 1rem 0;
  flex: 1;
  overflow-y: scroll; /* force visible track */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255, 255, 255, 0.6) rgba(255, 255, 255, 0.15);
}

/* WebKit custom scrollbar for inner nav */
.admin-sidebar-nav::-webkit-scrollbar { width: 12px; }
.admin-sidebar-nav::-webkit-scrollbar-track { background: rgba(255,255,255,0.12); border-radius: 8px; }
.admin-sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.55); border-radius: 8px; }
.admin-sidebar-nav::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.75); }

/* Visible Scrollbar for Admin/Staff sidebars (WebKit) */
.admin-sidebar::-webkit-scrollbar {
  width: 12px;
}
.admin-sidebar::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
}
.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.55);
  border-radius: 8px;
}
.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.75);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  margin: 0.25rem 0.75rem;
  border-radius: 8px;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-nav-item.active {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  font-weight: 600;
}

.admin-nav-item.active::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #667eea;
  border-radius: 0 3px 3px 0;
}

.admin-nav-item i {
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
}

.admin-nav-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.admin-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
  margin-top: auto;
  flex-shrink: 0;
}

.admin-sidebar-footer .admin-nav-item {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.admin-sidebar-footer .admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.logout-item {
  color: rgba(255, 255, 255, 0.9) !important;
}

.logout-item:hover {
  background: rgba(239, 68, 68, 0.2) !important;
  color: white !important;
}

/* Admin Main Content */
.admin-main-content {
  margin-left: 260px;
  flex: 1;
  padding: 2rem;
  background: #f8fafc;
  min-height: 100vh;
}

/* Admin Header */
.admin-header {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #667eea;
}

.admin-header-left h2 {
  color: #1e293b;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.admin-header-left p {
  color: #64748b;
  font-size: 0.875rem;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-search-box {
  position: relative;
}

.admin-search-box input {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  width: 300px;
}

.admin-search-box i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.admin-profile-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.admin-profile-menu:hover {
  background: #f1f5f9;
}

.admin-profile-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* Admin Cards */
.admin-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

.admin-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-card-header h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
}

.admin-card-body {
  padding: 1.5rem;
}

/* Admin Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.admin-table tbody tr:hover {
  background: #f8fafc;
}

/* Admin Staff Management (CRUD) */
.add-staff-card, .staff-table-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}
.add-staff-card .card-header, .staff-table-card .card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.add-staff-card .card-content, .staff-table-card .card-content {
  padding: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.form-group label { font-weight: 600; color: #374151; margin-bottom: 0.5rem; display:block; }
.form-group input, .form-group select { width: 100%; padding: 0.75rem; border: 2px solid #e5e7eb; border-radius: 8px; background: #f9fafb; }
.form-actions { display: flex; gap: 0.75rem; align-items: center; margin-top: 1rem; }
.btn.btn-primary { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.btn.btn-secondary { background: #f1f5f9; color: #374151; border: 1px solid #e2e8f0; }
.btn.btn-danger { background: #ef4444; color: #fff; }

.staff-table { width: 100%; border-collapse: collapse; }
.staff-table th, .staff-table td { padding: 0.75rem; border-bottom: 1px solid #e2e8f0; text-align: left; }
.staff-info { display: flex; align-items: center; gap: 0.75rem; }
.staff-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; display:flex; align-items:center; justify-content:center; font-weight:700; }
.staff-details h4 { margin: 0; color: #1e293b; font-size: 0.95rem; }
.staff-details p { margin: 0; color: #64748b; font-size: 0.8rem; }
.role-badge { display:inline-block; padding: 0.25rem 0.5rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.role-staff { background:#eef2ff; color:#3730a3; }
.role-therapist { background:#dcfce7; color:#166534; }
.role-manager { background:#fee2e2; color:#991b1b; }

/* Staff Employees list toolbar */
.toolbar { display:flex; gap: 0.75rem; align-items:center; flex-wrap: wrap; }
.search-input { position:relative; }
.search-input input { padding: 0.5rem 2.25rem 0.5rem 2.25rem; border:1px solid #e2e8f0; border-radius:8px; background:#f8fafc; }
.search-input i { position:absolute; left:0.75rem; top:50%; transform:translateY(-50%); color:#94a3b8; }
.select { padding: 0.5rem 0.75rem; border:1px solid #e2e8f0; border-radius:8px; background:#f8fafc; }
.btn-ghost { background:#fff; color:#374151; border:1px solid #e2e8f0; border-radius:8px; padding:0.5rem 0.75rem; }
.badge-pill { display:inline-block; padding:0.25rem 0.5rem; border-radius:9999px; font-size:12px; background:#eef2ff; color:#3730a3; border:1px solid #e0e7ff; }

/* Admin Forms */
.admin-form-group {
  margin-bottom: 1.5rem;
}

.admin-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
  outline: none;
  border-color: #6366f1;
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Admin Buttons */
.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.admin-btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.admin-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.admin-btn-secondary {
  background: #f1f5f9;
  color: #374151;
  border: 1px solid #e2e8f0;
}

.admin-btn-secondary:hover {
  background: #e2e8f0;
}

.admin-btn-danger {
  background: #ef4444;
  color: white;
}

.admin-btn-danger:hover {
  background: #dc2626;
}

.admin-btn-success {
  background: #10b981;
  color: white;
}

.admin-btn-success:hover {
  background: #059669;
}

/* Admin Stats Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  text-align: center;
  border-left: 4px solid #6366f1;
}

.admin-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.admin-stat-label {
  color: #64748b;
  font-size: 0.875rem;
}

/* Admin Login Page */
.admin-login-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-login-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.admin-login-header {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.admin-login-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #6366f1;
}

.admin-login-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.admin-login-header p {
  opacity: 0.9;
  font-size: 0.875rem;
}

.admin-login-form {
  padding: 2rem;
}

.admin-input-group {
  position: relative;
}

.admin-input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 2;
}

.admin-btn-login {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.admin-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.admin-btn-login:active {
  transform: translateY(0);
}

.admin-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-back-link {
  text-align: center;
  margin-top: 1.5rem;
}

.admin-back-link a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.admin-back-link a:hover {
  color: #4f46e5;
}

/* Admin Filters */
.admin-filters-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.admin-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  align-items: end;
}

.admin-filter-group {
  display: flex;
  flex-direction: column;
}

.admin-filter-group label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.admin-filter-group select,
.admin-filter-group input {
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
  font-size: 0.875rem;
}

/* Admin Charts */
.admin-chart-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.admin-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.admin-chart-header h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
}

.admin-chart-canvas {
  position: relative;
  height: 300px;
}

/* Admin Date Range Selector */
.admin-date-range-selector {
  display: flex;
  gap: 0.5rem;
}

.admin-date-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.admin-date-btn:hover,
.admin-date-btn.active {
  background: #6366f1;
  color: white;
  border-color: #6366f1;
}

/* Admin Status Badges */
.admin-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.admin-status-badge.active {
  background: #dcfce7;
  color: #166534;
}

.admin-status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.admin-status-badge.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.admin-status-badge.completed {
  background: #dbeafe;
  color: #1e40af;
}

/* Admin Action Buttons */
.admin-action-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-action-btn {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-action-btn.edit {
  background: #dbeafe;
  color: #1e40af;
}

.admin-action-btn.edit:hover {
  background: #bfdbfe;
}

.admin-action-btn.delete {
  background: #fee2e2;
  color: #dc2626;
}

.admin-action-btn.delete:hover {
  background: #fecaca;
}

.admin-action-btn.view {
  background: #f0fdf4;
  color: #166534;
}

.admin-action-btn.view:hover {
  background: #dcfce7;
}

/* Utility Classes */
.inline-flex {
  display: inline-flex;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.gap-8 {
  gap: 0.5rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.col-span-full {
  grid-column: 1 / -1;
}

.text-center {
  text-align: center;
}

.muted {
  color: #6b7280;
}

/* Admin Select */
.admin-select {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f9fafb;
  font-size: 0.875rem;
}

.admin-select:focus {
  outline: none;
  border-color: #6366f1;
  background: white;
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Admin Responsive Design */
@media (max-width: 768px) {
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .admin-sidebar.open {
    transform: translateX(0);
  }
  
  .admin-main-content {
    margin-left: 0;
    padding: 1rem;
  }
  
  .admin-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .admin-search-box input {
    width: 100%;
  }
  
  .admin-filters-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-table {
    font-size: 0.875rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.5rem;
  }
  
  .admin-nav-item {
    margin: 0.125rem 0.5rem;
    padding: 0.75rem 1rem;
  }
  
  .admin-sidebar-brand {
    padding: 1.5rem 1rem 0.75rem;
  }
}

/* === Customer Login/Signup Styles === */
.login-page {
  background: linear-gradient(135deg, #fff0f5, #f8f9fa);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
  overflow: hidden;
}

.login-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  z-index: 0;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.login-header .logo {
  margin-bottom: 20px;
}

.login-header .logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff0f5;
}

.login-header h1 {
  color: #a66c7b;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

.login-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn.active {
  background: #a66c7b;
  color: white;
  box-shadow: 0 4px 12px rgba(166, 108, 123, 0.3);
}

.auth-form {
  display: none;
  position: relative;
  z-index: 1;
}

.auth-form.active {
  display: block;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 15px;
  color: #a66c7b;
  z-index: 2;
}

.input-group input {
  width: 100%;
  padding: 15px 60px 15px 45px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.input-group input:focus {
  outline: none;
  border-color: #a66c7b;
  box-shadow: 0 0 0 3px rgba(166, 108, 123, 0.1);
}

.password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a66c7b;
  cursor: pointer;
  z-index: 2;
  padding: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.password-toggle:hover {
  background-color: rgba(166, 108, 123, 0.1);
}

.auth-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #a66c7b, #ff6f91);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(166, 108, 123, 0.4);
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.auth-footer p {
  color: #666;
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.auth-footer a {
  color: #a66c7b;
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.forgot-password {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-password a {
  color: #a66c7b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #7b3c4c;
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a66c7b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border: 2px solid #a66c7b;
  border-radius: 25px;
  background: white;
}

.back-link:hover {
  background: #a66c7b;
  color: white;
  transform: translateY(-2px);
}

.login-page .alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.login-page .alert-error {
  background: #fee;
  color: #c53030;
  border: 1px solid #feb2b2;
}

.login-page .alert-success {
  background: #f0fff4;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

/* Login Page Responsive */
@media (max-width: 768px) {
  .login-container {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .login-header h1 {
    font-size: 24px;
  }
  
  .auth-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* === Our Products Section === */
.products-hero {
  background: #fff0f5; /* light pink background */
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffb6c1, #ffc0cb, #ffb6c1);
  border-radius: 2px;
}

.products-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-hero p {
  font-size: 1.25rem;
  color: #4a5568;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design for Products Hero */
@media (max-width: 768px) {
  .products-hero {
    padding: 40px 0;
  }
  
  .products-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .products-hero p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .products-hero {
    padding: 30px 0;
  }
  
  .products-hero h1 {
    font-size: 2rem;
  }
  
  .products-hero p {
    font-size: 1rem;
  }
}

/* Alternative Products Section Styles */
.products-section {
  padding: 80px 0;
  background: #ffffff;
}

.products-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.products-section-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffb6c1, #ffc0cb);
  border-radius: 2px;
}

.products-section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.products-section-header p {
  font-size: 1.2rem;
  color: #4a5568;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Minimal Products Header */
.products-minimal {
  padding: 40px 0;
  background: #ffffff;
}

.products-minimal-header {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-minimal-header::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #ffc0cb;
  margin-bottom: 30px;
  border-radius: 1px;
}

.products-minimal-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

  .products-minimal-header p {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
  }

/* === Enhanced Customer Header Styles === */

/* Customer Header Animations */
.navbar {
  animation: slideInFromTop 0.8s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Customer Header Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 25px;
  }
  
  .navbar .logo {
    font-size: 34px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-menu li a {
    font-size: 15px;
    padding: 10px 18px;
    min-height: 42px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    border-radius: 0 0 15px 15px;
  }
  
  .navbar .logo {
    font-size: 30px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-menu li a {
    font-size: 14px;
    padding: 10px 16px;
    min-height: 40px;
  }
  
  .welcome-text {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
    flex-direction: column;
    gap: 15px;
    border-radius: 0 0 12px 12px;
  }
  
  .nav-left {
    width: 100%;
    justify-content: space-between;
  }
  
  .navbar .logo {
    font-size: 28px;
  }
  
  .nav-menu {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-menu li a {
    font-size: 13px;
    padding: 8px 14px;
    min-height: 38px;
  }
}

/* Customer Header Special Effects */
.navbar::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #ffb6c1 0%, 
    #ffc0cb 25%, 
    #ffb6c1 50%, 
    #ffc0cb 75%, 
    #ffb6c1 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
}

/* Active Navigation State - Duplicate rule removed, handled above */

.nav-menu li a.active::before {
  background: linear-gradient(90deg, transparent, rgba(166, 108, 123, 0.2), transparent);
}

/* Customer Header Dropdown Styles (if needed) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(166, 108, 123, 0.2);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #a66c7b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
  margin: 0;
}

.nav-dropdown-content a:hover {
  background: rgba(255, 182, 193, 0.1);
  color: #7b3c4c;
  transform: none;
  box-shadow: none;
}
