/* Brianne Baker - Children's App Designer Website */
/* Modern, professional design with beautiful visual elements */
/* Redesigned by Claude Sonnet 4 - December 2024 */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h3 {
  font-size: 1.5rem;
  color: #2c3e50;
}

h4 {
  font-size: 1.25rem;
  color: #34495e;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #666;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 3rem;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #333;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #667eea;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-radius: 50%;
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-image-modern {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1.5s;
}

.element-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 3s;
}

.element-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 4.5s;
}

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

.hero-center {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
  position: relative;
}

.hero-center i {
  font-size: 48px;
  color: #667eea;
  margin-bottom: 1rem;
}

.hero-center p {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-links {
  margin-top: 2rem;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.work-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Profile Card */
.profile-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.profile-icon {
  margin-bottom: 1rem;
}

.profile-icon i {
  font-size: 80px;
  color: #667eea;
}

.profile-card h3 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.profile-card > p {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-stats .stat {
  text-align: center;
}

.profile-stats .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.profile-stats .label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Work Section */
.work-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.work-featured {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

/* App Mockup */
.app-mockup {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.phone-frame {
  width: 200px;
  height: 350px;
  background: #2c3e50;
  border-radius: 25px;
  padding: 20px 15px;
  position: relative;
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #555;
  border-radius: 2px;
}

.screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-content {
  text-align: center;
  color: white;
}

.app-icon-large {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
}

.app-content h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.element-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.element-row span {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.work-info h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.work-info p {
  margin-bottom: 1.5rem;
}

.work-details {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.work-details span {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.work-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  color: #667eea;
  text-decoration: none;
  border: 2px solid #667eea;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.work-link-btn:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
}

.work-item {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(102, 126, 234, 0.2);
}

.work-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.work-item h4 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.work-links {
  text-align: center;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #667eea;
}

.company-link:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.process-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.process-step h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

/* Philosophy Section */
.philosophy-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.philosophy-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.philosophy-text blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #667eea;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid #667eea;
}

.principles {
  display: grid;
  gap: 1.5rem;
}

.principle {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.principle-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.principle-content h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.principle-content p {
  color: #666;
  margin: 0;
}

/* Philosophy Visual */
.philosophy-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.child-tech-graphic {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.device-frame {
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.happy-elements {
  display: flex;
  gap: 15px;
}

.happy-elements .element {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  animation: bounce 2s ease-in-out infinite;
}

.happy-elements .element:nth-child(2) {
  animation-delay: 0.3s;
}

.happy-elements .element:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.child-tech-graphic p {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* Impact Section */
.impact-section {
  padding: 80px 0;
  background: white;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 48px;
  color: #667eea;
}

.stat h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.stat p {
  color: #666;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  margin: 0;
}

.contact-details a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.external-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #667eea;
  font-size: 0.9rem;
}

.external-link:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Contact Visual */
.contact-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.workspace-graphic {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.desk-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.item {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto;
  animation: workFloat 4s ease-in-out infinite;
}

.item.coffee { animation-delay: 0.5s; }
.item.notebook { animation-delay: 1s; }
.item.pencil { animation-delay: 1.5s; }

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

.workspace-graphic p {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background: #2c3e50;
  color: white;
}

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

.footer-brand p {
  color: #ecf0f1;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #667eea;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content,
  .about-content,
  .philosophy-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-grid,
  .impact-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-image-modern {
    height: 300px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .external-links {
    flex-direction: column;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
} 
/* === Bespoke Jewelry Studio === */
.nav-menu a.active {
  color: #667eea;
}

body.jewelry-body {
  background: radial-gradient(circle at top left, rgba(244, 238, 255, 0.9), #ffffff 45%, #f7f8fb 100%);
  color: #1d1d1f;
}

.jewelry-main {
  padding-top: 120px;
  padding-bottom: 80px;
}

.jewelry-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 4rem 8vw 3rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
  border-radius: 48px;
  margin: 2rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}

.jewelry-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(255, 223, 186, 0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(195, 245, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.jewelry-hero-content {
  position: relative;
  z-index: 1;
}

.jewelry-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.jewelry-hero-content p {
  font-size: 1.1rem;
  color: #3c3c43;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.18);
  color: #4c4c63;
  font-weight: 500;
}

.jewelry-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.hero-orbit {
  position: relative;
  width: 260px;
  height: 260px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(102, 126, 234, 0.35);
  animation: orbit-spin 12s linear infinite;
}

.orbit-gem {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #c69cf4 60%, #7a52c6 100%);
  border-radius: 32px 12px 48px 20px;
  transform: translate(-50%, 0) rotate(12deg);
  box-shadow: 0 18px 45px rgba(118, 75, 162, 0.35);
  animation: gem-pulse 4s ease-in-out infinite;
}

.orbit-glow {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  filter: blur(18px);
  animation: glow-breathe 6s ease-in-out infinite;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gem-pulse {
  0%, 100% { transform: translate(-50%, 0) scale(1) rotate(12deg); }
  50% { transform: translate(-50%, 0) scale(1.08) rotate(16deg); }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.jewelry-designer {
  margin: 0 5vw 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 36px;
  box-shadow: 0 18px 50px rgba(26, 35, 126, 0.12);
  backdrop-filter: blur(16px);
}

.designer-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.designer-header h2 {
  margin-bottom: 0.75rem;
  color: #1f1f39;
}

.designer-header p {
  color: #5f5f77;
}

.designer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: start;
}

.designer-form {
  display: grid;
  gap: 1.5rem;
}

.designer-form .form-group label {
  font-weight: 600;
  color: #1f1f39;
  display: block;
  margin-bottom: 0.5rem;
}

.designer-form input[type='text'],
.designer-form input[type='email'],
.designer-form select,
.designer-form textarea,
.order-form input[type='text'],
.order-form input[type='email'],
.order-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.95);
  transition: border 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
}

.designer-form input:focus,
.designer-form select:focus,
.designer-form textarea:focus,
.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: rgba(118, 75, 162, 0.6);
  box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.15);
}

.color-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.color-row input[type='color'] {
  width: 100%;
  height: 48px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  background: #fff;
  cursor: pointer;
}

.chip-select {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border: 1px solid rgba(102, 126, 234, 0.4);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 500;
  color: #3c3c54;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chip:hover {
  background: rgba(102, 126, 234, 0.15);
}

.chip.selected {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(102, 126, 234, 0.28);
}

.generate-btn {
  justify-self: start;
  position: relative;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.generate-btn.loading .btn-label,
.btn-primary.loading .btn-label {
  opacity: 0.3;
}

.btn-spinner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  animation: spinner 0.9s linear infinite;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease;
}

.btn-spinner.visible {
  opacity: 1;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

.form-footnote,
.order-footnote {
  font-size: 0.9rem;
  color: #6d6d84;
  line-height: 1.5;
}

.designer-tips {
  background: linear-gradient(160deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border-radius: 24px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(102, 126, 234, 0.12);
  display: grid;
  gap: 1.25rem;
}

.designer-tips h3 {
  color: #1f1f39;
}

.designer-tips ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  color: #4f4f66;
}

.designer-tips li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.65rem;
  color: #667eea;
}

.tip-callout {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(102, 126, 234, 0.12);
  color: #3f3f5f;
}

.tip-callout i {
  font-size: 1.5rem;
  color: #667eea;
}

.jewelry-results {
  margin: 0 5vw 4rem;
}

.results-header {
  text-align: center;
  margin-bottom: 2rem;
}

.usage-summary {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.16), rgba(118, 75, 162, 0.14));
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.18);
  color: #2f2f4f;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.usage-summary[hidden] {
  opacity: 0;
  transform: translateY(8px);
}

.usage-summary__heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #4655c5;
  margin-bottom: 0.75rem;
}

.usage-summary__heading i {
  font-size: 1rem;
}

.usage-summary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.usage-summary__list li {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.usage-summary__list strong {
  color: #1b1b32;
}

.usage-summary__footnote {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #5d5d7a;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.16);
  display: grid;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card img {
  width: 100%;
  display: block;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.22);
}

.result-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
}

.result-actions .btn-primary,
.result-actions .btn-secondary {
  flex: 1;
  text-align: center;
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.result-meta {
  padding: 0 1.5rem;
  color: #4c4c63;
  font-size: 0.95rem;
}

.result-meta strong {
  color: #2f2f4f;
}

.results-empty {
  margin: 2rem auto 0;
  max-width: 420px;
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(102, 126, 234, 0.15);
  color: #6a6a80;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.results-empty i {
  font-size: 2.5rem;
  color: #667eea;
}

.jewelry-order {
  margin: 0 5vw;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 36px;
  box-shadow: 0 18px 50px rgba(26, 35, 126, 0.12);
}

.order-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.order-preview {
  background: linear-gradient(160deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.order-preview img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(102, 126, 234, 0.22);
}

.preview-placeholder {
  text-align: center;
  color: #5a5a72;
  display: grid;
  gap: 1rem;
  padding: 3rem 1rem;
}

.preview-placeholder i {
  font-size: 2.75rem;
  color: #667eea;
}

.preview-meta h4 {
  margin-bottom: 0.5rem;
  color: #2f2f4f;
}

.order-form {
  display: grid;
  gap: 1.5rem;
}

.order-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.jewelry-footer {
  text-align: center;
  margin-top: 4rem;
  color: #6a6a80;
}

.refine-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 31, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2000;
}

.refine-modal.visible {
  opacity: 1;
}

.refine-dialog {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  width: min(520px, 90vw);
  box-shadow: 0 24px 60px rgba(26, 35, 126, 0.25);
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.refine-dialog h3 {
  margin-bottom: 0.25rem;
}

.refine-dialog p {
  color: #5a5a72;
  margin-bottom: 0;
}

.refine-dialog textarea {
  min-height: 140px;
}

.refine-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.refine-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8a8aa1;
}

.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1f1f39;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3000;
}

.toast-notification.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .jewelry-hero {
    margin: 1.5rem 1rem 3rem;
    padding: 3rem 2rem;
  }

  .jewelry-designer,
  .jewelry-order {
    margin: 0 1rem 3rem;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-actions {
    flex-direction: column;
  }

  .refine-dialog {
    padding: 1.5rem;
  }
}
