:root {
  --primary: #6d9ec1;
  --secondary: #e6f0f0;
  --accent: #98b4a6;
  --text: #2c3438;
  --background: #fbfdfd;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--background);
  color: var(--text);
}

.sacred-header {
  background: url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?auto=format&fit=crop&w=1600&q=80') center/cover;
  padding: 2rem;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.sacred-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.sacred-header h1 {
  position: relative;
  z-index: 2;
  margin: 1rem 0;
}

.sacred-header h1 a {
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sacred-header nav {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  padding: 1rem;
  width: 100%;
  text-align: center;
}

.sacred-header nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.sacred-header nav a:hover {
  color: var(--accent);
  opacity: 1;
}

nav {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 1rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,230,255,0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(155,109,255,0.1);
  backdrop-filter: blur(8px);
}

.sacred-card {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(155,109,255,0.1);
}

.sacred-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(155,109,255,0.2);
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: var(--primary);
}

.card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

button, .button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

button:hover, .button:hover {
  background: #8257e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 109, 255, 0.3);
}

.sacred-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #4f8ca8 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  margin: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Cinzel', serif;
}

.sacred-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 109, 255, 0.3);
  background: linear-gradient(135deg, #8257e6 0%, var(--primary) 100%);
}

.product-card {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(155,109,255,0.2);
  flex: 1;
  min-width: 250px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(155,109,255,0.2);
}

.product-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.price {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-top: 1rem;
}

.sacred-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin: 1.5rem 0;
}

.divine-message {
  font-style: italic;
  color: var(--primary);
  margin: 1rem 0;
  text-align: center;
}

.divine-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .divine-options {
    flex-direction: column;
    align-items: center;
  }

  .sacred-button {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }
}

.sacred-symbol {
  width: 50px;
  height: 50px;
  margin: 1rem auto;
  opacity: 0.5;
}

footer {
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.8);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="file"],
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #0a4f5c;
  background: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 4px 12px rgba(109, 158, 193, 0.15);
  color: #000000;
}

input[type="file"] {
  background: white;
  padding: 0.8rem;
  cursor: pointer;
}

::placeholder {
  color: #222222;
  opacity: 1;
  font-style: italic;
  font-weight: 700;
}