body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0e0317;
  color: #f8f1ff;
  background:
    linear-gradient(rgba(14, 3, 23, 0.85), rgba(14, 3, 23, 0.95)),
    url("https://img.magnific.com/premium-photo/black-rose-pattern-gothic-valentine-day-background_869784-4632.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* HEADER */
header {
  text-align: center;
  padding: 60px 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0;
}

.tagline {
  opacity: 0.6;
  margin-top: 10px;
}

/* CARD SECTIONS */
.card {
  max-width: 800px;
  margin: 30px auto;
  padding: 25px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

/* HEADINGS */
h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

/* PACKAGES */
.package {
  margin-bottom: 15px;
}

.presspackage {
  cursor: pointer;
  padding: 15px;
  border-radius: 8px;
  background: linear-gradient(90deg, #5a189a, #9d4edd);
  transition: 0.3s;
}

.presspackage:hover {
  transform: translateY(-2px);
}

/* DROPDOWN */
.servicetab {
  display: none;
  padding: 15px;
  margin-top: 8px;
  background: rgba(0,0,0,0.4);
  border-left: 3px solid #c77dff;
  border-radius: 6px;
}

.show {
  display: block;
}

/* LIST */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th {
  background: #5a189a;
}

th, td {
  padding: 12px;
  text-align: center;
}

tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

/* NOTES */
.note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* POLICIES */
.policy li {
  margin-bottom: 10px;
}
/* NAVIGATION (matches your luxury style) */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1000px;
  margin: auto;
}

.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #f8f1ff;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: #c77dff;
}

.logo {
  font-family: 'Playfair Display', serif;
}

/* HERO (home page top section) */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #5a189a, #9d4edd);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #7b2cbf, #c77dff);
}

/* FORM (if you add one later) */
form input,
form select,
form button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: 'Inter', sans-serif;
}

form button {
  background: linear-gradient(90deg, #5a189a, #9d4edd);
  color: white;
  cursor: pointer;
}

/* SMALL POLISH */
section {
  padding-bottom: 10px;
}

/* ========================= */
/* NAIL BUILDER MATCH STYLE */
/* ========================= */

.builder {
  max-width: 800px;
  margin: 30px auto;
  padding: 25px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

/* Section Titles inside builder */
.builder h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #e0aaff;
}

/* Labels */
.builder label {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Select Inputs */
.builder select {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #f8f1ff;
  transition: 0.3s;
}

/* Hover effect */
.builder select:hover {
  box-shadow: 0 0 10px rgba(199,125,255,0.4);
}

/* Checkbox spacing */
.builder input[type="checkbox"] {
  margin-right: 8px;
}

/* Service sections (manicure/pedicure boxes) */
.service-box {
  margin-top: 15px;
  padding: 15px;
  background: rgba(0,0,0,0.35);
  border-left: 3px solid #c77dff;
  border-radius: 8px;
  transition: 0.3s;
}

/* Smooth appearance */
.service-box.show {
  animation: fadeIn 0.3s ease;
}

/* TOTAL PRICE DISPLAY */
#total {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 25px;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #5a189a, #9d4edd);
  font-family: 'Playfair Display', serif;
}

/* subtle animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
.builder input[type="checkbox"] {
  accent-color: #9d4edd;
  transform: scale(1.1);
}