/* Fulfillment centers — Apple marketing–style: neutral surfaces, SF stack, minimal chrome */

.fulfillment-centers-lp {
  --cd-fc-blue: #0071e3;
  --cd-fc-ink: #1d1d1f;
  --cd-fc-secondary: #86868b;
  --cd-fc-muted: #6e6e73;
  --cd-fc-fill: #f5f5f7;
  --cd-fc-fill-elevated: #ffffff;
  --cd-fc-separator: rgba(0, 0, 0, 0.08);
  --cd-fc-glass: rgba(255, 255, 255, 0.72);
  --cd-fc-blur: saturate(180%) blur(20px);
  --cd-fc-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --cd-fc-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  --cd-fc-card-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "SF Pro Display",
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  color: var(--cd-fc-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ——— Hero (Apple: airy, monochrome, SF weight 600) ——— */
.fulfillment-centers-lp .cd-fc-hero.hero-gradient {
  position: relative;
  padding-bottom: 3.25rem !important;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 38%, #ffffff 100%);
  border-bottom: 1px solid var(--cd-fc-separator);
}

.fulfillment-centers-lp .cd-fc-hero__title {
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.07;
  color: var(--cd-fc-ink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.fulfillment-centers-lp .cd-fc-hero__lead {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--cd-fc-secondary);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.47059;
  letter-spacing: -0.011em;
}

.fulfillment-centers-lp .cd-fc-hero .hero-badge {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--cd-fc-ink);
  background: var(--cd-fc-fill);
  border: none;
  border-radius: 980px;
  padding: 0.35rem 0.9rem;
  display: inline-block;
  box-shadow: none;
}

.fulfillment-centers-lp .cd-fc-pill {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cd-fc-secondary);
  background: var(--cd-fc-fill);
  border: none;
  border-radius: 980px;
  padding: 0.4rem 0.95rem;
  box-shadow: none;
  opacity: 0;
  transform: translateY(10px);
}

.fulfillment-centers-lp section.hero-gradient.cd-reveal--visible .cd-fc-pill {
  animation: cd-fc-pill-in 0.65s var(--cd-fc-ease) forwards;
}

.fulfillment-centers-lp section.hero-gradient.cd-reveal--visible .cd-fc-hero__pills li:nth-child(1) .cd-fc-pill {
  animation-delay: 0.12s;
}
.fulfillment-centers-lp section.hero-gradient.cd-reveal--visible .cd-fc-hero__pills li:nth-child(2) .cd-fc-pill {
  animation-delay: 0.22s;
}
.fulfillment-centers-lp section.hero-gradient.cd-reveal--visible .cd-fc-hero__pills li:nth-child(3) .cd-fc-pill {
  animation-delay: 0.32s;
}

@keyframes cd-fc-pill-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ——— Catalog ——— */
.fulfillment-centers-lp .cd-fc-catalog-section {
  background: var(--cd-fc-fill);
}

.fulfillment-centers-lp .cd-fc-panel-head {
  border-bottom: 1px solid var(--cd-fc-separator);
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .fulfillment-centers-lp .cd-fc-panel-head {
    padding-bottom: 1.5rem;
  }
}

.fulfillment-centers-lp .cd-fc-panel-kicker {
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cd-fc-secondary);
}

.fulfillment-centers-lp .cd-fc-panel-title {
  letter-spacing: -0.022em;
  font-weight: 600 !important;
  color: var(--cd-fc-ink);
  font-size: 1.25rem !important;
}

.fulfillment-centers-lp .cd-fc-panel-lead {
  max-width: 32rem;
  line-height: 1.47059;
  color: var(--cd-fc-secondary);
  letter-spacing: -0.011em;
}

.fulfillment-centers-lp .cd-fc-search-panel {
  position: relative;
  overflow: hidden;
  background: var(--cd-fc-glass);
  -webkit-backdrop-filter: var(--cd-fc-blur);
  backdrop-filter: var(--cd-fc-blur);
  border: 1px solid var(--cd-fc-separator);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.25rem 1.75rem;
}

@media (min-width: 768px) {
  .fulfillment-centers-lp .cd-fc-search-panel {
    padding: 2rem 2rem 2.25rem;
  }
}

.fulfillment-centers-lp .cd-fc-search-panel .form-label {
  color: var(--cd-fc-secondary);
  font-weight: 400;
  letter-spacing: -0.011em;
}

.fulfillment-centers-lp .cd-fc-search-wrap {
  position: relative;
}

.fulfillment-centers-lp .cd-fc-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--cd-fc-secondary);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.fulfillment-centers-lp .cd-fc-search-input {
  border-radius: 12px !important;
  border: 1px solid var(--cd-fc-separator) !important;
  padding-left: 2.65rem !important;
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
  font-size: 1rem !important;
  letter-spacing: -0.011em;
  background: var(--cd-fc-fill-elevated) !important;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fulfillment-centers-lp .cd-fc-search-input:hover {
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.fulfillment-centers-lp .cd-fc-search-input:focus {
  border-color: var(--cd-fc-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2) !important;
  transform: none;
}

.fulfillment-centers-lp .cd-fc-count-label {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.011em;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 980px;
  background: var(--cd-fc-fill);
  border: none;
  color: var(--cd-fc-secondary);
  font-weight: 400;
  font-size: 0.8125rem !important;
}

.fulfillment-centers-lp .cd-fc-filter-select {
  border-radius: 12px !important;
  border: 1px solid var(--cd-fc-separator) !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
  font-size: 1rem !important;
  letter-spacing: -0.011em;
  background-color: var(--cd-fc-fill-elevated) !important;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fulfillment-centers-lp .cd-fc-filter-select:hover {
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.fulfillment-centers-lp .cd-fc-filter-select:focus {
  border-color: var(--cd-fc-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2) !important;
}

.fulfillment-centers-lp .cd-fc-premium-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border-radius: 0.35rem;
  border-color: rgba(0, 0, 0, 0.2);
}

.fulfillment-centers-lp .cd-fc-premium-check .form-check-input:checked {
  background-color: var(--cd-fc-blue);
  border-color: var(--cd-fc-blue);
}

.fulfillment-centers-lp .cd-fc-premium-check .form-check-label {
  color: var(--cd-fc-ink);
  font-weight: 400;
  letter-spacing: -0.011em;
  padding-top: 0.05rem;
}

/* Country flags (Unicode emoji) */
.fulfillment-centers-lp .cd-fc-country-flag {
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.fulfillment-centers-lp .cd-fc-country-flag--section {
  font-size: 1.35rem;
}

.fulfillment-centers-lp .cd-fc-country-flag--card {
  font-size: 1rem;
  flex-shrink: 0;
}

.fulfillment-centers-lp .cd-fc-card__country {
  min-height: 1.2rem;
}

.fulfillment-centers-lp .cd-fc-card__country-label {
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--cd-fc-secondary);
  letter-spacing: -0.011em;
}

.fulfillment-centers-lp .cd-fc-card__title {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1.3;
  letter-spacing: -0.016em;
  color: var(--cd-fc-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fulfillment-centers-lp .cd-fc-card__blurb {
  font-size: 0.75rem !important;
  line-height: 1.45;
  color: var(--cd-fc-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fulfillment-centers-lp .cd-fc-group__title {
  color: var(--cd-fc-ink) !important;
  font-size: 1.1875rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.022em !important;
  text-transform: none !important;
  margin-bottom: 1rem !important;
  margin-top: 0.25rem;
  padding: 0 0 0.65rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--cd-fc-separator);
  border-radius: 0;
  box-shadow: none;
}

/* Skeleton */
.fulfillment-centers-lp .cd-fc-skeleton-card {
  min-height: 168px;
  border-radius: 18px;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.06) 40%,
    rgba(0, 0, 0, 0.04) 80%
  );
  background-size: 200% 100%;
  animation: cd-fc-skeleton-shimmer 1.35s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes cd-fc-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.fulfillment-centers-lp .cd-fc-loading-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.fulfillment-centers-lp .cd-fc-loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cd-fc-blue);
  animation: cd-fc-dot-pulse 1s ease-in-out infinite;
}

@keyframes cd-fc-dot-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Cards */
.fulfillment-centers-lp .cd-fc-col {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
}

.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col {
  animation: cd-fc-card-enter 0.55s var(--cd-fc-ease) forwards;
}

.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(1) {
  animation-delay: 0.02s;
}
.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(2) {
  animation-delay: 0.06s;
}
.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(3) {
  animation-delay: 0.1s;
}
.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(4) {
  animation-delay: 0.14s;
}
.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(5) {
  animation-delay: 0.18s;
}
.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(6) {
  animation-delay: 0.22s;
}
.fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col:nth-child(n + 7) {
  animation-delay: 0.26s;
}

@keyframes cd-fc-card-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fulfillment-centers-lp .cd-fc-card {
  transition:
    transform 0.35s var(--cd-fc-ease),
    box-shadow 0.35s ease;
  border-color: var(--cd-fc-separator) !important;
  border-radius: 18px !important;
  background: var(--cd-fc-fill-elevated) !important;
  box-shadow: var(--cd-fc-card-shadow);
  position: relative;
  overflow: hidden;
}

.fulfillment-centers-lp .cd-fc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--cd-fc-card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.fulfillment-centers-lp .cd-fc-card:focus-visible {
  outline: 2px solid var(--cd-fc-blue);
  outline-offset: 2px;
}

/* Premium: golden crown, top-right, subtle float (gradient in SVG) */
.fulfillment-centers-lp .cd-fc-premium-crown {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(146, 64, 14, 0.28));
  animation: cd-fc-premium-crown-float 3.2s ease-in-out infinite;
}

.fulfillment-centers-lp .cd-fc-premium-crown svg {
  flex-shrink: 0;
}

@keyframes cd-fc-premium-crown-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.fulfillment-centers-lp .cd-fc-card__logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--cd-fc-fill);
  border: none;
  box-shadow: none;
  transition: transform 0.35s var(--cd-fc-ease);
}

.fulfillment-centers-lp .cd-fc-card:hover .cd-fc-card__logo {
  box-shadow: none;
  transform: none;
}

.fulfillment-centers-lp .cd-fc-card__img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fulfillment-centers-lp .cd-fc-card__logo--fallback {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cd-fc-secondary);
  background: transparent;
}

.fulfillment-centers-lp .cd-fc-card h3 {
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.fulfillment-centers-lp .cd-fc-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 400;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--cd-fc-fill);
  color: var(--cd-fc-secondary);
  border: none;
  letter-spacing: -0.011em;
}

.fulfillment-centers-lp .cd-fc-card__cta {
  color: var(--cd-fc-blue);
  letter-spacing: -0.011em;
}

.fulfillment-centers-lp .cd-fc-card__cta--compact {
  font-size: 0.75rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.25s var(--cd-fc-ease);
}

.fulfillment-centers-lp .cd-fc-card:hover .cd-fc-card__cta--compact {
  gap: 0.4rem;
}


/* CTA */
.fulfillment-centers-lp .cd-fc-outro {
  background: var(--cd-fc-fill);
}

.fulfillment-centers-lp .cd-fc-outro .cta-band {
  color: #fff;
  border: none;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #0066d4 0%, #0071e3 42%, #0077ed 100%) !important;
}

.fulfillment-centers-lp .cd-fc-outro .cta-band .btn-light {
  font-weight: 500;
  color: var(--cd-fc-blue);
  border-radius: 980px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fulfillment-centers-lp .cd-fc-outro .cta-band .btn-light:hover {
  transform: scale(1.02);
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .fulfillment-centers-lp .display-4 {
    font-size: 2rem;
    letter-spacing: -0.024em;
  }

  .fulfillment-centers-lp .cd-fc-hero__lead {
    font-size: 1.0625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-centers-lp .cd-fc-pill,
  .fulfillment-centers-lp section.hero-gradient.cd-reveal--visible .cd-fc-pill {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .fulfillment-centers-lp .cd-fc-skeleton-card {
    animation: none;
    background: rgba(0, 0, 0, 0.05);
  }

  .fulfillment-centers-lp .cd-fc-loading-dot {
    animation: none;
    opacity: 0.6;
  }

  .fulfillment-centers-lp .cd-fc-group.cd-fc-group--visible .cd-fc-col,
  .fulfillment-centers-lp .cd-fc-col {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .fulfillment-centers-lp .cd-fc-card:hover {
    transform: none;
  }

  .fulfillment-centers-lp .cd-fc-card:hover .cd-fc-card__logo {
    transform: none;
  }

  .fulfillment-centers-lp .cd-fc-premium-crown {
    animation: none;
  }

  .fulfillment-centers-lp .cd-fc-card__cta--compact {
    transition: none;
  }
}
