
# custom-orders.css

```css
body {
  background: #f7f5f2;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

/* HERO */

.custom-hero {
  padding: 70px 0;
}

.custom-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.custom-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1;
  margin: 18px 0 20px;
}

.custom-hero-text p {
  max-width: 500px;
  line-height: 1.8;
  color: #555;
  margin-top: 25px;
}

.custom-hero-image img {
  width: 100%;
}

.gradient-line {
  width: 90px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,#4facfe,#8e6cff,#ff4e8d);
}

.section-label {
  letter-spacing: 3px;
  font-size: 12px;
  color: #777;
}

/* HOW IT WORKS */

.how-it-works {
  padding: 40px 0 80px;
}

.center-heading {
  text-align: center;
  margin-bottom: 50px;
}

.center-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 30px;
}

.step-item {
  text-align: center;
}

.glass-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 24px;
}

.glass-icon svg {
  width: 38px;
  height: 38px;
  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.7;
}

.step-item h4 {
  margin-bottom: 10px;
}

.step-item p {
  color: #666;
  line-height: 1.7;
}

/* CREATE SECTION */

.create-section {
  padding-bottom: 40px;
}

.create-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.create-text-card,
.create-gallery {
  background: #faf8f5;
  border-radius: 24px;
  padding: 50px;
}

.create-text-card h2,
.quote-card h2,
.faq-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
}

.create-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.create-feature {
  display: flex;
  gap: 18px;
}

.create-feature svg {
  width: 34px;
  height: 34px;
  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.7;
  flex-shrink: 0;
}

.create-feature p {
  color: #666;
  line-height: 1.7;
  margin-top: 8px;
}

.create-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.create-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.create-gallery img:first-child {
  grid-row: span 2;
}

/* QUOTE + FAQ */

.quote-faq-section {
  padding-bottom: 80px;
}

.quote-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.quote-card {
  background: #050505;
  color: white;
  padding: 50px;
  border-radius: 24px;
}

.quote-card p {
  color: rgba(255,255,255,0.75);
  margin: 22px 0 30px;
  line-height: 1.7;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row,
.upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  color: white;
  outline: none;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.upload-btn,
.submit-btn {
  border: none;
  cursor: pointer;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  background: linear-gradient(90deg,#4facfe,#8e6cff,#ff4e8d);
}

.upload-btn {
  min-width: 160px;
}

.submit-btn {
  width: 240px;
  height: 58px;
  margin-top: 10px;
}

/* FAQ */

.faq-card {
  background: #faf8f5;
  padding: 50px;
  border-radius: 24px;
}

.faq-list {
  margin-top: 35px;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-contact {
  margin-top: 35px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.faq-contact svg {
  width: 28px;
  height: 28px;
  stroke: url(#iconGradient);
  fill: none;
}

.faq-contact a {
  color: #8e6cff;
  text-decoration: none;
}

/* =====================================================
   FOOTER SOCIAL FIX
===================================================== */

.footer-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  display: inline-flex !important;
}

.footer-socials img {
  width: 22px !important;
  height: 22px !important;

  object-fit: contain !important;

  display: block;
}