/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: #f8f7f4; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B8965A;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: #5a6272;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #1B3A5C;
  color: #fff;
  border-color: #1B3A5C;
}
.btn-primary:hover {
  background: #142d48;
  border-color: #142d48;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 92, 0.25);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: #fff;
  color: #1B3A5C;
  border-color: #fff;
}
.btn-ghost {
  background: transparent;
  color: #1B3A5C;
  border-color: #1B3A5C;
}
.btn-ghost:hover {
  background: #1B3A5C;
  color: #fff;
}
.btn-secondary {
  background: #B8965A;
  color: #fff;
  border-color: #B8965A;
}
.btn-secondary:hover {
  background: #a6843e;
  border-color: #a6843e;
  transform: translateY(-2px);
}
.btn-notify {
  background: #f0ede6;
  color: #5a6272;
  border-color: #e8e6e1;
}
.btn-notify:hover {
  background: #e8e4da;
  border-color: #d1cfc9;
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer-logo-img {
  height: 48px;
}
.nav { display: flex; gap: 8px; }
.nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: #1B3A5C;
  background: rgba(27,58,92,0.06);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #1B3A5C;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B3A5C 0%, #0f2540 50%, #1a3352 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(184,150,90,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,150,90,0.1) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(184,150,90,0.15);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #B8965A;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.hero-fulfillment {
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-fulfillment svg { width: 16px; height: 16px; }

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: 1px solid #e8e6e1;
  border-radius: 16px;
  transition: all 0.3s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: #f0ede6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== Product Cards Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid #e8e6e1;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.product-card-image {
  height: 240px;
  background: #f8f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.product-card-image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}
.product-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-status.in-stock {
  background: #dcfce7;
  color: #166534;
}
.product-status.coming-soon {
  background: #fef3c7;
  color: #92400e;
}
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-body .product-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}
.product-card-body .product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1B3A5C;
  margin-bottom: 16px;
}
.product-card-body .product-shipping {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card-body .product-shipping svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== Product Detail (Featured) ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #fff;
  border: 1px solid #e8e6e1;
  border-radius: 20px;
  overflow: hidden;
  align-items: start;
}
.product-gallery {
  background: #f8f7f4;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 96px;
}
.gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}
.gallery-main img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.gallery-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  padding: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.gallery-thumb:hover { border-color: #d1cfc9; }
.gallery-thumb.active { border-color: #B8965A; }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.product-info { padding: 40px 40px 40px 0; }
.product-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.product-badge.in-stock {
  background: #dcfce7;
  color: #166534;
}
.product-badge.coming-soon {
  background: #fef3c7;
  color: #92400e;
}
.product-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-info .product-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-info .product-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1B3A5C;
  margin-bottom: 8px;
}
.product-info .product-shipping-info {
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-info .product-shipping-info svg { width: 16px; height: 16px; }
.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.product-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #5a6272;
  margin-bottom: 8px;
  line-height: 1.5;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #B8965A;
  border-radius: 50%;
}

/* ===== CTA ===== */
.cta-box {
  background: linear-gradient(135deg, #1B3A5C, #0f2540);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,150,90,0.12), transparent);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; }

/* ===== Footer ===== */
.footer {
  background: #0f1923;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-links h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a, .footer-contact {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #B8965A; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
}

/* ===== Page Headers ===== */
.page-header {
  background: linear-gradient(135deg, #1B3A5C, #0f2540);
  padding: 140px 0 80px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
}
.page-header .section-tag { margin-bottom: 16px; }

/* ===== About Page ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-intro-text p {
  font-size: 1rem;
  color: #5a6272;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-image {
  background: linear-gradient(135deg, #f0ede6, #e8e4da);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(184,150,90,0.2), transparent);
}
.about-image svg { width: 120px; height: 120px; color: #c4b899; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: #fff;
  border: 1px solid #e8e6e1;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.value-card .feature-icon { margin: 0 auto 16px; }
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 1rem;
  color: #5a6272;
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background: #f0ede6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: #B8965A; }
.contact-method h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 4px;
}
.contact-method p {
  font-size: 0.9rem;
  color: #6b7280;
}
.contact-form-card {
  background: #fff;
  border: 1px solid #e8e6e1;
  border-radius: 20px;
  padding: 40px;
}
.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1cfc9;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1a1a2e;
  background: #fafaf8;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8965A;
  box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: #1B3A5C;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover { background: #142d48; transform: translateY(-1px); }
.form-success { text-align: center; padding: 32px; }
.form-success svg { width: 56px; height: 56px; margin: 0 auto 16px; color: #22c55e; }
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: #6b7280; }
.form-error { text-align: center; padding: 24px; margin-bottom: 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; }
.form-error svg { width: 48px; height: 48px; margin: 0 auto 12px; }
.form-error h4 { font-size: 1rem; font-weight: 700; color: #991b1b; margin-bottom: 6px; }
.form-error p { font-size: 0.85rem; color: #6b7280; }
.form-error a { color: #1B3A5C; font-weight: 600; }
.info-box {
  background: #f8f7f4;
  border: 1px solid #e8e6e1;
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}
.info-box h4 { font-size: 0.9rem; font-weight: 700; color: #1B3A5C; margin-bottom: 6px; }
.info-box p { font-size: 0.85rem; color: #6b7280; line-height: 1.5; margin-bottom: 12px; }
.info-box p:last-child { margin-bottom: 0; }

/* ===== Legal Pages ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B3A5C;
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  color: #5a6272;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.95rem;
  color: #5a6272;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 2.8rem; }
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid #e8e6e1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open { display: flex; }
  .mobile-toggle { display: flex; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-info { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .cta-box { padding: 48px 24px; }
  .cta-content h2 { font-size: 1.6rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .order-timeline { gap: 8px; }
  .timeline-label { font-size: 0.7rem; }
}

/* ===== Quantity Selector ===== */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.quantity-selector label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1B3A5C;
}
.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f9fafb;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1B3A5C;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: #e5e7eb; }
.quantity-controls input {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #1B3A5C;
  background: #fff;
  -moz-appearance: textfield;
}
.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===== Checkout Button States ===== */
#checkoutBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#checkoutBtn .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
#checkoutBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.secure-checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ===== Order Confirmation Page ===== */
.order-confirmation {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
}
.order-confirmation-icon {
  margin-bottom: 24px;
}
.order-confirmation h1 {
  font-size: 2.2rem;
  color: #1B3A5C;
  margin-bottom: 16px;
}
.order-confirmation-msg {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 8px;
}
.order-fulfillment-note {
  font-size: 0.95rem;
  color: #1B3A5C;
  font-weight: 500;
  line-height: 1.6;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0 32px;
}
.order-details-container {
  margin-bottom: 32px;
}
.order-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
}
.order-summary h4 {
  font-size: 1rem;
  color: #1B3A5C;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.order-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #374151;
}
.order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 2px solid #e5e7eb;
  font-size: 1.05rem;
}
.order-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6b7280;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}
.order-email {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #6b7280;
}

/* ===== Order Timeline ===== */
.order-timeline {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  padding: 0 20px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 1;
  max-width: 120px;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  left: calc(50% + 14px);
  width: calc(100% - 8px);
  height: 2px;
  background: #e5e7eb;
}
.timeline-step.active:not(:last-child)::after {
  background: #22c55e;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  z-index: 1;
}
.timeline-step.active .timeline-dot {
  border-color: #22c55e;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}
.timeline-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9ca3af;
}
.timeline-step.active .timeline-label {
  color: #22c55e;
  font-weight: 600;
}

/* ===== Order Actions ===== */
.order-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== Order Inquiry Block ===== */
.order-inquiry-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 24px;
  margin-top: 20px;
}
.order-inquiry-block h4 {
  font-size: 1.05rem;
  color: #1B3A5C;
  margin-bottom: 8px;
}
.order-inquiry-block p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 16px;
}
.inquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inquiry-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #1B3A5C;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inquiry-link:hover {
  border-color: #B8965A;
  box-shadow: 0 2px 8px rgba(184, 150, 90, 0.15);
}
.inquiry-link svg {
  flex-shrink: 0;
  color: #B8965A;
}
.inquiry-link span {
  font-size: 0.9rem;
  line-height: 1.5;
}
.inquiry-link strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
}
