:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --gold: #d4a017;
  --gold-dark: #b8860b;
  --fun: #ec4899;
  --fun-dark: #db2777;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-dark {
  background: rgba(17, 24, 39, 0.95);
  border-bottom: 1px solid var(--gray-700);
}

.header-dark .logo {
  color: #fff;
}

.header-fun {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(168, 85, 247, 0.95));
  border-bottom: none;
}

.header-fun .logo {
  color: #fff;
}

.header-romantic {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.95), rgba(190, 24, 93, 0.95));
  border-bottom: none;
}

.header-romantic .logo {
  color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.premium-badge {
  font-size: 0.7rem;
  background: var(--gold);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-fun {
  background: linear-gradient(135deg, var(--fun), #a855f7);
  color: #fff;
}

.btn-fun:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-romantic {
  background: linear-gradient(135deg, #e11d48, #be185d);
  color: #fff;
}

.btn-romantic:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  margin-bottom: 16px;
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.badge-fun {
  background: linear-gradient(135deg, var(--fun), #a855f7);
}

.badge-romantic {
  background: linear-gradient(135deg, #e11d48, #be185d);
}

.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero-v1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.hero-v2 {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: #fff;
}

.hero-v3 {
  background: linear-gradient(135deg, #e11d48 0%, #be185d 50%, #9d174d 100%);
  color: #fff;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-feature {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-ideas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.idea-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

section {
  padding: 80px 0;
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.steps {
  background: var(--gray-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.step-card p {
  color: var(--gray-600);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.gallery-grid-large {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-main {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-item-full .gallery-main {
  height: auto;
  object-fit: contain;
}

.gallery-before {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 80px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-before .label {
  display: block;
  background: var(--gray-800);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  padding: 2px;
}

.gallery-before img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.gallery-after-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--success);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefits-grid,
.quality-grid,
.wow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-card,
.quality-card,
.wow-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}

.benefit-icon,
.quality-icon,
.wow-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.benefit-card h3,
.quality-card h3,
.wow-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.benefit-card p,
.quality-card p,
.wow-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.quality-section,
.wow-section {
  background: var(--gray-50);
}

.trust-section {
  padding: 40px 0;
  background: var(--gray-900);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.trust-label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.process-section {
  background: var(--gray-50);
}

.process-timeline {
  max-width: 700px;
  margin: 48px auto 0;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.process-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 60px;
}

.process-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.process-content p {
  color: var(--gray-600);
}

.pricing {
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.price-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-emoji {
  font-size: 3rem;
  margin-bottom: 8px;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.price-card li:before {
  content: '✓';
  color: var(--success);
  margin-right: 8px;
}

.ideas-section {
  background: var(--gray-50);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.idea-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.idea-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.idea-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.idea-card p {
  color: var(--gray-600);
  font-size: 0.85rem;
}

.order-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}

.order-section-premium {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.order-section-fun {
  background: linear-gradient(135deg, var(--fun) 0%, #a855f7 100%);
}

.order-section-romantic {
  background: linear-gradient(135deg, #e11d48 0%, #be185d 50%, #9d174d 100%);
}

.order-section h2 {
  color: #fff;
}

.order-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.order-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  margin-top: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.checkbox-label span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.faq-item p {
  color: var(--gray-600);
}

.testimonials {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonial-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.social-proof {
  background: var(--gray-50);
}

.footer {
  background: var(--gray-900);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-dark {
  background: #000;
}

.footer-fun {
  background: linear-gradient(135deg, #1f1135 0%, #2d1b4e 100%);
}

.footer-romantic {
  background: linear-gradient(135deg, #4a0519 0%, #6b1030 100%);
}

.ideas-romantic {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}

.ideas-romantic h2 {
  color: #9d174d;
}

.gallery-romantic {
  background: #fff;
}

.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #9d174d;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.occasions-section {
  background: var(--gray-50);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.occasion-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid #e11d48;
}

.occasion-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.occasion-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.occasion-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.pricing-romantic .price-card.featured {
  border-color: #e11d48;
}

.pricing-romantic .price-badge {
  background: linear-gradient(135deg, #e11d48, #be185d);
}

.pricing-romantic .price {
  color: #e11d48;
}

.testimonials-romantic .testimonial-card {
  border-left: 4px solid #e11d48;
}

.faq-romantic h2 {
  color: var(--gray-900);
}

.stars-section {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  text-align: center;
}

.stars-section h2 {
  color: #9d174d;
}

.stars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.star-tag {
  background: #fff;
  color: #9d174d;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.star-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #e11d48;
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-info .logo {
  color: #fff;
  margin-bottom: 16px;
}

.disclaimer {
  color: var(--gray-400);
  font-size: 0.85rem;
  max-width: 400px;
}

.footer-contacts h4 {
  color: var(--gray-300);
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px 20px;
}

.thanks-container {
  background: #fff;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 500px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
}

.thanks-container h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.order-number {
  background: var(--gray-100);
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: inline-block;
}

.thanks-message {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.thanks-next {
  text-align: left;
  background: var(--gray-50);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.thanks-next h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.thanks-next ol {
  margin-left: 20px;
  color: var(--gray-600);
}

.thanks-next li {
  margin-bottom: 8px;
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}

.admin-login-container {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
}

.admin-login-container h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.alert-error {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

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

.admin-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.admin-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  font-size: 1.5rem;
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px;
}

.admin-filters {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
}

.filter-group select,
.filter-group input {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 0.9rem;
}

.admin-stats {
  margin-bottom: 16px;
  color: var(--gray-600);
}

.admin-stats .stat strong {
  color: var(--gray-900);
}

.admin-table-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.admin-table tr:hover {
  background: var(--gray-50);
}

.admin-table .nowrap {
  white-space: nowrap;
}

.admin-table .muted {
  color: var(--gray-400);
  font-size: 0.8rem;
}

.badge-landing {
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.utm-cell small {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.utm-cell span {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-new {
  background: #dbeafe;
  color: #1d4ed8;
}

.status-in_progress {
  background: #fef3c7;
  color: #b45309;
}

.status-done {
  background: #d1fae5;
  color: #047857;
}

.status-canceled {
  background: #fee2e2;
  color: #b91c1c;
}

.status-form select {
  padding: 4px 8px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 0.8rem;
  background: #fff;
}

.order-details {
  background: var(--gray-50);
}

.order-details td {
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.order-details div {
  margin-bottom: 4px;
}

.order-details a {
  color: var(--primary);
}

.empty-state {
  text-align: center;
  padding: 48px 16px;
  color: var(--gray-400);
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .admin-filters {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .admin-table-wrapper {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 900px;
  }
}

:root {
  --date-primary: #7c3aed;
  --date-primary-dark: #6d28d9;
  --date-accent: #c084fc;
  --date-gold: #fbbf24;
}

.header-date {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.97), rgba(109, 40, 217, 0.97));
  border-bottom: none;
}

.header-date .logo {
  color: #fff;
}

.header-date .header-nav {
  display: flex;
  gap: 24px;
}

.header-date .nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-date .nav-link:hover {
  color: #fff;
}

.hero-date {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
  color: #fff;
  padding: 160px 0 100px;
}

.badge-date {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-date {
  background: linear-gradient(135deg, var(--date-gold), #f59e0b);
  color: #1f2937;
  font-weight: 700;
}

.btn-date:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 16px;
}

.who-section {
  background: #fff;
  padding: 80px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.who-card {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s;
}

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

.who-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.who-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--date-primary-dark);
}

.who-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.gallery-date {
  background: var(--gray-50);
  padding: 80px 0;
}

.gallery-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.gallery-date-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-date-item:hover {
  transform: translateY(-8px);
}

.gallery-date-item.gallery-combined img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-after {
  position: relative;
}

.gallery-after img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.gallery-label {
  position: absolute;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.label-after {
  top: 16px;
  right: 16px;
  background: var(--success);
  color: #fff;
}

.label-before {
  top: 8px;
  left: 8px;
  background: var(--gray-700);
  color: #fff;
  font-size: 0.65rem;
  padding: 4px 10px;
}

.gallery-before-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 100px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-before-overlay img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.result-section {
  background: #fff;
  padding: 80px 0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.result-card {
  background: var(--gray-50);
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.result-card.highlight {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 2px solid var(--date-primary);
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.result-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.result-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.realistic-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #fff;
  padding: 80px 0;
}

.realistic-section h2 {
  color: #fff;
}

.realistic-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.realistic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.realistic-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.realistic-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--date-accent);
  line-height: 1;
  min-width: 50px;
}

.realistic-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.realistic-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.realistic-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.realistic-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
}

.realistic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.realistic-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.privacy-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.privacy-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.privacy-content h2 {
  margin-bottom: 32px;
}

.privacy-list {
  display: grid;
  gap: 16px;
  text-align: left;
}

.privacy-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.privacy-check {
  color: var(--success);
  font-size: 1.25rem;
  font-weight: 700;
}

.privacy-item p {
  color: var(--gray-700);
  margin: 0;
}

.steps-section {
  background: #fff;
  padding: 80px 0;
}

.steps-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-date-card {
  text-align: center;
  padding: 32px;
}

.step-date-card .step-number {
  width: 56px;
  height: 56px;
  background: var(--date-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-date-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.step-date-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.pricing-date {
  background: var(--gray-50);
}

.pricing-date .price-card.featured {
  border-color: var(--date-primary);
}

.pricing-date .price-badge {
  background: var(--date-primary);
}

.pricing-date .price {
  color: var(--date-primary);
}

.order-section-date {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
}

.form-disclaimer {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 16px;
}

.faq-date {
  background: #fff;
}

.faq-date h2 {
  color: var(--gray-900);
}

.footer-date {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.order-detail-field {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.order-detail-field .field-label {
  font-weight: 600;
  color: var(--gray-500);
  min-width: 120px;
}

.order-detail-field .field-value {
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .header-date .header-nav {
    display: none;
  }
  
  .hero-date {
    padding: 120px 0 60px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .gallery-date-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-after img {
    height: 300px;
  }
  
  .realistic-item {
    flex-direction: column;
    text-align: center;
  }
  
  .realistic-number {
    margin: 0 auto;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 40px;
    padding: 10px;
  }
  
  .lightbox-prev {
    left: 5px;
  }
  
  .lightbox-next {
    right: 5px;
  }
}
