/* === CSS VARIABLES === */
:root {
  --blue-900: #0a1628;
  --blue-800: #0f2240;
  --blue-700: #143a6b;
  --blue-600: #1a56a0;
  --blue-500: #2563eb;
  --blue-400: #4f8af7;
  --blue-300: #7fadfc;
  --blue-200: #b4d0ff;
  --blue-100: #dce8ff;
  --blue-50: #eef4ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --orange-500: #f97316;
  --red-500: #ef4444;
  --gold: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.08);
  --shadow-lg: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-xl: 0 16px 48px rgba(10,22,40,0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-900);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue-500);
  border: 2px solid var(--blue-500);
}
.btn-outline:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

/* === PAGE VISIBILITY === */
.page { display: none; }
.page.active { display: block; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.anim-fade-up { animation: fadeInUp 0.7s ease both; }
.anim-fade-up-d1 { animation: fadeInUp 0.7s 0.1s ease both; }
.anim-fade-up-d2 { animation: fadeInUp 0.7s 0.2s ease both; }
.anim-fade-up-d3 { animation: fadeInUp 0.7s 0.3s ease both; }
.anim-fade-up-d4 { animation: fadeInUp 0.7s 0.4s ease both; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-700);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue-500);
  background: var(--blue-50);
}
.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  margin-left: 8px;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--blue-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* === HERO === */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%, var(--blue-100) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { animation: slideInLeft 0.8s ease both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero-stat h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-500);
}
.hero-stat p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease both;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-200), var(--blue-100));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 6s ease-in-out infinite;
}
.hero-image-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.hero-float-card {
  position: absolute;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 15%; left: -10%; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 20%; right: -5%; animation-delay: 1s; }
.hero-float-card.card-3 { top: 60%; left: -15%; animation-delay: 2s; }
.hero-float-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero-float-card .card-icon.blue { background: var(--blue-100); }
.hero-float-card .card-icon.green { background: #dcfce7; }
.hero-float-card .card-icon.orange { background: #fff7ed; }

/* === FEATURES === */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  background: white;
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--blue-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--blue-500);
  transform: scale(1.1);
}
.feature-card:hover .feature-icon span { filter: brightness(10); }
.feature-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* === SERVICES === */
.services-section { background: var(--blue-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.service-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-500);
}
.service-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-400);
}

/* === HOW IT WORKS === */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-500), var(--blue-200));
  border-radius: 2px;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: white;
  border: 3px solid var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* === REVIEWS === */
.reviews-section { background: var(--blue-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.review-author-info h4 { font-weight: 600; font-size: 0.95rem; color: var(--blue-900); }
.review-author-info p { font-size: 0.8rem; color: var(--gray-400); }

/* === GALLERY === */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--gray-200);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item .before-after {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.gallery-item .gallery-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
}
.gallery-label.before { background: var(--orange-500); color: white; }
.gallery-label.after { background: var(--green-500); color: white; }

/* === FAQ === */
.faq-section { background: var(--gray-50); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--blue-900);
  transition: var(--transition);
  width: 100%;
  background: none;
  text-align: left;
  font-size: 1rem;
}
.faq-question:hover { color: var(--blue-500); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--blue-500);
}
.faq-item.open .faq-toggle { background: var(--blue-500); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-section .btn {
  position: relative;
}
.cta-btn-white {
  background: white;
  color: var(--blue-600);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* === PRICING TABLE === */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pricing-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: white;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.pricing-tab.active, .pricing-tab:hover {
  background: var(--blue-500);
  color: white;
  border-color: var(--blue-500);
}
.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.pricing-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 28px;
  background: var(--blue-900);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 28px;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
  transition: var(--transition);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--blue-50); }
.pricing-row .item-name {
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-row .item-price {
  font-weight: 700;
  color: var(--blue-600);
  font-size: 1.05rem;
}

/* === ORDER FORM === */
.order-section { padding-top: 100px; background: var(--gray-50); min-height: 100vh; }
.order-container {
  max-width: 900px;
  margin: 0 auto;
}
.order-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.order-form-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.order-form-card > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 4px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--gray-50);
  color: var(--gray-800);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  outline: none;
  background: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.items-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px solid var(--gray-100);
}
.items-section h3 {
  font-size: 1.1rem;
  color: var(--blue-900);
  margin-bottom: 20px;
  font-weight: 700;
}
.item-rows { display: grid; gap: 12px; }
.item-row {
  display: grid;
  grid-template-columns: 1fr 80px 100px;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.item-row .item-label {
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-row .item-label .emoji { font-size: 1.2rem; }
.item-row input[type="number"] {
  width: 80px;
  padding: 8px 12px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  background: white;
}
.item-row input[type="number"]:focus {
  border-color: var(--blue-400);
  outline: none;
}
.item-row .item-subtotal {
  text-align: right;
  font-weight: 700;
  color: var(--blue-600);
}
.order-summary {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius);
  border: 1px solid var(--blue-200);
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}
.order-summary-row.total {
  border-top: 2px solid var(--blue-300);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-700);
}
.order-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

/* === SERVICE BLOCK (multi-service) === */
.service-block {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
  animation: fadeInUp 0.4s ease both;
}
.service-block:hover {
  border-color: var(--blue-200);
}
.service-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.service-block-header .svc-num {
  background: var(--blue-500);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.service-block-header select {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: white;
  color: var(--gray-800);
  transition: var(--transition);
}
.service-block-header select:focus {
  border-color: var(--blue-400);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.service-block .remove-svc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-block .remove-svc-btn:hover {
  background: #dc2626;
  transform: scale(1.1);
}
.service-block .svc-items { margin-top: 12px; }
.service-block .svc-subtotal {
  margin-top: 12px;
  text-align: right;
  font-weight: 700;
  color: var(--blue-600);
  font-size: 1.05rem;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-300);
}

/* === DASHBOARD === */
.dashboard-section { padding-top: 100px; background: var(--gray-50); min-height: 100vh; }
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.dashboard-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-900);
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.dash-stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.dash-stat-card .stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.dash-stat-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue-500);
  font-weight: 700;
}
.dash-stat-card p { font-size: 0.85rem; color: var(--gray-500); }
.dash-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 4px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.dash-tab {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: var(--gray-500);
  transition: var(--transition);
}
.dash-tab.active {
  background: var(--blue-500);
  color: white;
}
.order-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.order-id {
  font-weight: 700;
  color: var(--blue-900);
  font-size: 1.1rem;
}
.order-date { font-size: 0.85rem; color: var(--gray-400); }
.order-status-badge {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.status-placed { background: #fef3c7; color: #92400e; }
.status-pickup { background: #e0e7ff; color: #3730a3; }
.status-picked { background: #dbeafe; color: #1e40af; }
.status-washing { background: #cffafe; color: #155e75; }
.status-ironing { background: #fce7f3; color: #9d174d; }
.status-delivery { background: #fed7aa; color: #9a3412; }
.status-delivered { background: #dcfce7; color: #166534; }
.order-tracker {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 20px 0;
  padding: 0 8px;
}
.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.tracker-step::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -50%;
  right: 50%;
  height: 3px;
  background: var(--gray-200);
}
.tracker-step:first-child::before { display: none; }
.tracker-step.completed::before { background: var(--blue-500); }
.tracker-step.active::before { background: var(--blue-500); }
.tracker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  color: white;
  transition: var(--transition);
}
.tracker-step.completed .tracker-dot { background: var(--blue-500); }
.tracker-step.active .tracker-dot {
  background: var(--blue-500);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.2);
}
.tracker-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 6px;
  text-align: center;
  max-width: 70px;
  line-height: 1.2;
}
.tracker-step.completed .tracker-label,
.tracker-step.active .tracker-label { color: var(--blue-600); font-weight: 600; }
.order-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.order-item-tag {
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-600);
}
.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.order-total {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-600);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 50px;
}

/* === PROFILE === */
.profile-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-900);
  margin-bottom: 24px;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  text-align: center;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.about-hero p {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-value {
  padding: 24px;
  background: var(--blue-50);
  border-radius: var(--radius);
  text-align: center;
}
.about-value .val-icon { font-size: 2rem; margin-bottom: 10px; }
.about-value h4 { font-weight: 700; color: var(--blue-900); margin-bottom: 6px; }
.about-value p { font-size: 0.85rem; color: var(--gray-500); }

/* === CONTACT PAGE === */
.contact-section { padding-top: 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-weight: 700; color: var(--blue-900); margin-bottom: 2px; }
.contact-detail p { font-size: 0.9rem; color: var(--gray-500); }
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-900);
  margin-bottom: 24px;
}
.map-container {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

/* === FOOTER === */
.footer {
  background: var(--blue-900);
  color: white;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-icon { background: rgba(255,255,255,0.15); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-500); transform: translateY(-2px); }
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
  color: white;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: white; padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* === AUTH MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  position: relative;
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); }
.modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.modal-card .modal-subtitle {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.auth-toggle {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.auth-toggle a {
  color: var(--blue-500);
  font-weight: 600;
  cursor: pointer;
}
.auth-toggle a:hover { text-decoration: underline; }
.form-error {
  color: var(--red-500);
  font-size: 0.85rem;
  margin-top: -4px;
  margin-bottom: 8px;
  display: none;
}
.form-success {
  background: #dcfce7;
  color: #166534;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}

/* === TOAST === */
.toast-container {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 14px 24px;
  border-radius: var(--radius);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-success { background: var(--green-600); }
.toast-error { background: var(--red-500); }
.toast-info { background: var(--blue-500); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-image-wrapper { max-width: 350px; margin: 0 auto; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero h1 { font-size: 2.8rem; }
  .hero-float-card { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .service-card { padding: 16px 10px; }
  .service-card h3 { font-size: 0.85rem; margin-bottom: 4px; }
  .service-card p { font-size: 0.75rem; }
  .service-card .service-icon { font-size: 2rem; margin-bottom: 8px; }
  .service-card .service-icon span { font-size: 2rem; }
  .service-card .service-price { font-size: 1rem; }
  .service-card .service-price small { font-size: 0.7rem; }
  .service-card .btn { font-size: 0.75rem; padding: 8px 12px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .item-row { grid-template-columns: 1fr 70px 80px; gap: 8px; }
  .order-form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .order-tracker { overflow-x: auto; padding-bottom: 8px; }
  .tracker-step { min-width: 60px; }
  .pricing-tabs { gap: 6px; }
  .pricing-tab { padding: 8px 16px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: 1fr; }
  .order-actions { flex-direction: column; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}
}

/* === SHOPIFY CUSTOMER PAGES === */
.customer-section {
  padding-top: 100px;
  min-height: 80vh;
  background: var(--gray-50);
}
.customer-section .container {
  max-width: 900px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.customer-section h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-900);
  margin-bottom: 24px;
}
.customer-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.auth-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  max-width: 460px;
  margin: 40px auto;
}
.auth-card h1 {
  text-align: center;
  margin-bottom: 8px;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.auth-card .form-group {
  margin-bottom: 16px;
}
.auth-card .form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.auth-card .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--gray-50);
}
.auth-card .form-group input:focus {
  border-color: var(--blue-400);
  outline: none;
  background: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.auth-card .auth-actions {
  margin-top: 24px;
}
.auth-card .auth-toggle {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.auth-card .auth-toggle a {
  color: var(--blue-500);
  font-weight: 600;
}
.auth-card .form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--red-500);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.auth-card .form-errors li {
  list-style: disc inside;
}
/* Account dashboard styles */
.account-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}
.account-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  height: fit-content;
}
.account-sidebar .user-info {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.account-sidebar .user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 12px;
}
.account-sidebar .user-name {
  font-weight: 700;
  color: var(--blue-900);
  font-size: 1.1rem;
}
.account-sidebar .user-email {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.account-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  transition: var(--transition);
  margin-bottom: 4px;
}
.account-sidebar nav a:hover,
.account-sidebar nav a.active {
  background: var(--blue-50);
  color: var(--blue-500);
}
.account-main {
  min-width: 0;
}
.orders-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  border-collapse: collapse;
}
.orders-table th {
  background: var(--blue-900);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.orders-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-700);
}
.orders-table tr:hover td {
  background: var(--blue-50);
}
.orders-table a {
  color: var(--blue-500);
  font-weight: 600;
}
.orders-table a:hover {
  text-decoration: underline;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}
.empty-state h3 {
  color: var(--gray-500);
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--gray-400);
  margin-bottom: 24px;
}
/* Address cards */
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.address-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}
.address-card .default-badge {
  display: inline-block;
  background: var(--blue-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.address-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.address-card .address-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}
/* Order detail */
.order-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.order-detail-card h2 {
  margin-bottom: 4px;
}
.order-meta {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.order-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.order-detail-table th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--gray-200);
}
.order-detail-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.order-totals {
  text-align: right;
  padding-top: 12px;
}
.order-totals .total-row {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 6px 0;
  font-size: 0.95rem;
}
.order-totals .total-row.grand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue-600);
  border-top: 2px solid var(--gray-200);
  margin-top: 8px;
  padding-top: 14px;
}
.address-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.address-columns h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.address-columns p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}
.status-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.status-badge.paid { background: #dcfce7; color: #166534; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.fulfilled { background: #dbeafe; color: #1e40af; }
.status-badge.unfulfilled { background: #fee2e2; color: #991b1b; }

/* Shopify form add address */
.address-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.address-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.address-form .form-group.full {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
  .address-columns {
    grid-template-columns: 1fr;
  }
  .address-form .form-grid {
    grid-template-columns: 1fr;
  }
  .auth-card {
    padding: 28px 20px;
    margin: 20px auto;
  }
}

/* === MOBILE OPTIMIZATIONS === */
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .form-input, .form-input select, textarea.form-input {
    font-size: 16px !important; /* Prevents iOS zoom on focus */
    padding: 14px 12px;
  }
  .btn { padding: 14px 20px; font-size: 0.95rem; border-radius: 12px; }
  .btn-sm { padding: 10px 14px; font-size: 0.85rem; }
  table { font-size: 0.8rem !important; }
  table th, table td { padding: 8px 6px !important; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; }
}
