@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #8b1a6b;
  --color-primary-light: #a83279;
  --color-secondary: #e91e63;
  --color-secondary-dark: #c2185b;
  --color-accent: #ff4081;
  --color-dark: #1a0a2e;
  --color-dark-purple: #2d1b4e;
  --color-surface: #ffffff;
  --color-surface-alt: #faf8fc;
  --color-text: #1a1a2e;
  --color-text-secondary: #555;
  --color-gold: #d4a574;
  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 40px rgba(233, 30, 99, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 44px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-base);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(233, 30, 99, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: rgba(233, 30, 99, 0.04);
}

.btn-full {
  width: 100%;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 20, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
  animation: fadeIn 0.3s ease;
}

.modal-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.4s ease;
}

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 32px;
  font-weight: 600;
  color: var(--color-dark);
}

.modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Header */
.header {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(35, 35, 35, 0.97) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.header-logo:hover {
  transform: scale(1.02);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(233, 30, 99, 0.4);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-primary {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.logo-text-sub {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 0.55rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

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

.header-link:hover::after {
  width: 100%;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header-info svg {
  color: var(--color-secondary);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-product {
  max-width: 280px;
  margin-top: 40px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 8px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 4px 40px rgba(0,0,0,0.4);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  color: #fff;
  letter-spacing: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 4px 20px rgba(0,0,0,0.4);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-quote {
  color: var(--color-gold);
  font-style: italic;
  font-size: 1.15rem;
  font-family: var(--font-display);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.25);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Delivery Section */
.delivery {
  position: relative;
  padding: 100px 32px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.delivery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(45, 27, 78, 0.5) 100%);
}

.delivery-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.delivery-content h2 {
  font-family: var(--font-display);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.delivery-subtitle {
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 48px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.step {
  text-align: center;
  color: #fff;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(233, 30, 99, 0.4);
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.35);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.step p {
  font-size: 0.875rem;
  opacity: 0.85;
  line-height: 1.6;
}

.delivery-footer {
  text-align: center;
  color: #fff;
}

.delivery-footer p {
  margin-bottom: 6px;
  font-size: 1rem;
}

.delivery-footer .small {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

/* Product Section */
.product {
  background: var(--color-surface);
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.product h2 {
  font-family: var(--font-display);
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.product-subtitle {
  font-family: var(--font-display);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 64px;
  color: var(--color-text-secondary);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.product-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
  transition: transform var(--transition-base);
}

.product-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-secondary);
}

.product-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 6px;
  display: inline-block;
}

.product-desc {
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 2;
  background: var(--color-surface-alt);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-secondary);
  font-weight: 400;
}

.product-cta {
  text-align: center;
  padding-top: 24px;
}

.product-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.7;
}

/* Craftsmanship Section */
.craftsmanship {
  width: 100%;
}

.craft-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.craft-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background-color: var(--color-surface-alt);
}

.craft-text h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--color-dark);
}

.craft-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.6;
}

.craft-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.craft-row-reverse .craft-text {
  order: 2;
}

.craft-row-reverse .craft-img {
  order: 1;
}

/* About Section */
.about {
  position: relative;
  padding: 120px 48px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 5, 20, 0.8) 0%, rgba(45, 27, 78, 0.75) 100%);
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-display);
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.about-content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 2;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Testimonials */
.testimonials {
  background: var(--color-surface-alt);
  padding: 100px 32px;
}

.testimonials h2 {
  font-family: var(--font-display);
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 64px;
  color: var(--color-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  text-align: center;
  padding: 40px 32px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--color-dark);
}

/* Legal Pages */
.legal-page {
  padding: 120px 32px 80px;
  background: var(--color-surface);
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.legal-container h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}

.legal-container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-container p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-container ul {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.legal-container ul li {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 2;
  position: relative;
}

.legal-container ul li::marker {
  color: var(--color-secondary);
}

.policy-highlight {
  background: linear-gradient(135deg, rgba(233,30,99,0.06), rgba(107,17,80,0.06));
  border-left: 4px solid var(--color-secondary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--color-dark) 0%, #0d0518 100%);
  padding: 72px 64px 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-gold));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(233, 30, 99, 0.3);
}

.footer-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-logo-text {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social-icon:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-social-icon:hover svg {
  fill: #fff;
}

.footer-col h5 {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer-col ul li a:hover,
.footer-col ul li span:hover {
  color: var(--color-gold);
}

.footer-col-highlight {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.5px;
}

/* Rules Banner (Order Page) */
.rules-banner {
  background: linear-gradient(135deg, #6b1150 0%, #c2185b 40%, #8b1a6b 70%, #4a0e4e 100%);
  padding: 80px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rules-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.rules-banner h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 3px;
  position: relative;
}

.rules-read {
  font-size: 1rem;
  margin-bottom: 40px;
  opacity: 0.8;
  position: relative;
}

.rules-img {
  max-width: 380px;
  display: block;
  margin: 0 auto 48px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.3));
  position: relative;
}

.rules-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
  position: relative;
  font-size: 0.95rem;
}

.rule-bold {
  font-weight: 700;
  font-size: 1rem;
}

.checkout-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 48px;
  letter-spacing: 2px;
  position: relative;
}

/* Order Form */
.order-form-section {
  background: var(--color-surface-alt);
  padding: 80px 32px;
}

.order-form-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.order-form-subheading {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  font-size: 1rem;
}

.order-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  background: var(--color-surface-alt);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

/* Order Info Section */
.order-info-section {
  background: var(--color-surface);
  padding: 80px 32px;
}

.order-info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-dark);
}

.order-info-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.order-info-card {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.order-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.order-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.order-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.order-info-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Alerts */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Section Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-product {
    max-width: 220px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-subtitle {
    letter-spacing: 4px;
    font-size: 0.85rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .delivery {
    padding: 64px 20px;
    background-attachment: scroll;
  }

  .delivery-content h2 {
    font-size: 1.6rem;
  }

  .product {
    padding: 64px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product h2 {
    font-size: 1.5rem;
  }

  .product-subtitle {
    font-size: 1.2rem;
  }

  .craft-row,
  .craft-row-reverse {
    grid-template-columns: 1fr;
  }

  .craft-row-reverse .craft-text {
    order: 1;
  }

  .craft-row-reverse .craft-img {
    order: 2;
  }

  .craft-text {
    padding: 40px 24px;
  }

  .craft-text h3 {
    font-size: 1.4rem;
  }

  .craft-row {
    min-height: auto;
  }

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

  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonials {
    padding: 64px 20px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about {
    padding: 80px 24px;
    background-attachment: scroll;
  }

  .header {
    padding: 14px 20px;
  }

  .header-nav {
    gap: 16px;
  }

  .header-link {
    display: none;
  }

  .header-info span {
    font-size: 0.7rem;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .logo-text-primary {
    font-size: 1.2rem;
  }

  .logo-text-sub {
    font-size: 0.45rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer {
    padding: 48px 24px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .order-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-form-card {
    padding: 32px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  .modal-box {
    padding: 40px 28px;
  }

  .product-info h3 {
    font-size: 1.4rem;
  }

  .product-price {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

  .delivery-content h2 {
    font-size: 1.3rem;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }
}
