/* 1. Variables & Reset */
:root {
  --color-primary: #0a1d3b;
  --color-secondary: #f9c623;
  --color-white: #ffffff;
  --font: 'Helvetica Neue', Arial, sans-serif;
}

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

/* 2. Global Styles */
body {
  font-family: var(--font);
  line-height: 1.5;
  color: var(--color-primary);
}

.container {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}

/* 3. Header Styles */
.header {
  background: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-primary {
  color: var(--color-primary);
}

.logo-secondary {
  color: var(--color-secondary);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
}

.nav-menu {
  list-style: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-white);
  display: none;
  flex-direction: column;
  text-align: center;
}

.nav-menu.open {
  display: flex;
}

.nav-menu li + li {
  margin-top: 0.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-primary);
  padding: 0.5rem 0;
}

/* 4. Hero Styles */
.hero {
  background: var(--color-primary);
  color: var(--color-white);

  /* fill first viewport */
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;

  /* same gutter as .container */
  padding-inline: 5%;
  overflow: hidden;
}

.hero-inner {
  max-width: 600px;
}

.hero-inner h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-inner p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* 5. Button Styles */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-right: 0.5rem;
}

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

/* 6. Decorative Shapes */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}

.circle-left {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
}

.circle-right {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  transform: translate(50%, 50%);
}

.arc {
  width: 360px;
  height: 180px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
}

/* 7. Responsive: Tablet */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    justify-content: flex-end;
  }

  .nav-menu li + li {
    margin: 0 0 0 1.5rem;
  }

  .hero {
    padding-inline: calc((100vw - 720px) / 2);
  }

  .hero-inner h1 {
    font-size: 2.5rem;
  }

  .hero-inner p {
    font-size: 1.1rem;
  }
}

/* 8. Responsive: Desktop */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .hero {
    padding-inline: calc((100vw - 1024px) / 2);
    padding-block: 6rem 0;
  }

  .hero-inner h1 {
    font-size: 3rem;
  }
}

/* 9. About / “Who We Are” Section */
.about {
  background: #f5f7fa;
  padding-block: 4rem;
}

.section-title {
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.about-wrapper {
  display: grid;
  gap: 2rem;
}

.about-text p {
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.stat-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-secondary);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--color-primary);
}

/* Tablet: two columns of stats */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: side-by-side text & stats */
@media (min-width: 1024px) {
  .about {
    padding-block: 6rem;
  }

  .about-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* 10. “What We Source” Section */
.source {
  background: var(--color-white);
  padding-block: 4rem;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.source-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.source-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.source-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.source-card .icon img {
  width: 24px;
  height: 24px;
}

.source-card h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.source-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-primary);
}

/* Tablet: two columns */
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: three columns and extra padding */
@media (min-width: 1024px) {
  .source {
    padding-block: 6rem;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 11. ANTIBRND (DTC Brand) Section */
.antibrnd {
  background: var(--color-primary);
  color: var(--color-white);
  padding-block: 4rem;
}
.antibrnd .section-title {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 2rem;
}
.antibrnd-wrapper {
  display: grid;
  gap: 2rem;
}
/* stats cards */
.antibrnd-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.antibrnd-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
}
.antibrnd-stat .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-secondary);
}
.antibrnd-stat .stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-white);
  opacity: 0.8;
}
/* description & button */
.antibrnd-description {
  margin: 2rem 0;
  max-width: 480px;
}
.antibrnd-description p {
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.9;
}
.antibrnd-info > .btn-primary {
  margin-bottom: 0;
}

/* shape cards */
.brand-cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.brand-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
}
.shape {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shape.hexagon {
  clip-path: polygon(
    25% 6.7%,
    75% 6.7%,
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%
  );
}
.shape.square {
  /* just a square */
}
.shape.circle {
  border-radius: 50%;
}
.shape.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  align-items: flex-end;
  padding-bottom: 12px;
}
.shape-text {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

/* layout at desktop */
@media (min-width: 1024px) {
  .antibrnd-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
  }
}

/* 12. Recent Orders Carousel */
.orders {
  background: #f5f7fa;
  padding-block: 4rem;
}
.orders .section-title {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.orders-carousel {
  overflow: hidden;
}
/* remove the old CSS animation */
.carousel-track {
  animation: none !important;
  will-change: transform;
}

/* container hides overflow */
.orders-carousel {
  overflow: hidden;
}

/* flex layout for cards */
.carousel-track {
  display: flex;
  gap: 1rem;
}

/* each card fixed width */
/* ===== Updated Recent Orders Card Styles ===== */

/* Card wrapper */
.order-card {
  flex: 0 0 300px;                     /* fixed width */
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background: var(--color-white);      /* white bottom shows through */
}

/* Top half: grey background container for image */
.order-image {
  background: #e5e7eb;                 /* light grey */
  flex: 0 0 160px;                     /* fixed height */
  overflow: hidden;
}

/* Fill and crop the image to cover the grey area */
.order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;         /* show top center of photo */
}

/* Bottom half: content area */
.order-content {
  padding: 1rem;
  background: var(--color-white);
  flex: 1;                             /* grow if you want equal heights */
}

/* Title */
.order-content h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

/* Details */
.order-content p {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

/* Completed line with checkmark */
.order-completed {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-primary);
  opacity: 0.7;
}
.order-completed::before {
  content: '✔';
  color: var(--color-secondary);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* rest of your styles... */

/* View All Orders button */
.orders-button-container {
  text-align: center;
  margin-top: 2rem;
}

/* 13. Global Impact at Scale */
.impact {
  background: #f5f7fa;
  padding-block: 4rem;
}

.impact .section-title {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.impact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.impact-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.impact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.impact-card .icon img {
  width: 24px;
  height: 24px;
}

.impact-card h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.impact-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-primary);
}

/* Tablet & up: two columns */
@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: extra vertical padding */
@media (min-width: 1024px) {
  .impact {
    padding-block: 6rem;
  }
}

/* 14. Why Choose Us */
.choose-us {
  background: #f5f7fa;
  padding-block: 4rem;
}

.choose-us .section-title {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.choose-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.choose-card {
  text-align: center;
}

.choose-card .icon {
  width: 48px;
  height: 48px;
  background: #f0f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.choose-card .icon img {
  width: 24px;
  height: 24px;
}

.choose-card h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.choose-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-primary);
}

/* Tablet: two columns */
@media (min-width: 768px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: four columns & extra padding */
@media (min-width: 1024px) {
  .choose-us {
    padding-block: 6rem;
  }
  .choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 15. Get in Touch Section */
.contact {
  background: #f5f7fa;
  padding-block: 4rem;
}

.contact .section-title {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact-wrapper {
  display: grid;
  gap: 2rem;
}

/* two columns on tablet+ */
@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* LEFT: stacked images */
.contact-images img {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.contact-images img:last-child {
  margin-bottom: 0;
}

/* RIGHT: cards stacked vertically */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* re-use .contact-card styling */
.contact-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* video call card */
.video-call-card h3,
.contact-details-card h3,
.next-steps-card h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list .contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

/* next steps */
.next-steps-list {
  padding-left: 1.25rem;
  margin: 0;
}
.next-steps-list li {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* make sure primary button in video-call-card stretches full width */
.video-call-card .btn-primary {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

/* remove blue/underline on email & phone links */
.contact-list a {
  color: var(--color-primary);
  text-decoration: none;
  /* if you want a hover underline: */
}
.contact-list a:hover {
  text-decoration: underline;
}

/* 16. Footer */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding-block: 4rem;
}
.footer-wrapper {
  display: grid;
  gap: 2rem;
}
/* three columns on tablet+ */
@media (min-width: 768px) {
  .footer-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* BRAND / LOGO */
.footer-logo {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
}
.footer .logo-primary {
  color: var(--color-white);
}
.footer .logo-secondary {
  color: var(--color-secondary);
}
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* QUICK LINKS */
.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li {
  margin-top: 0.5rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* SOCIAL ICONS & COPYRIGHT */
.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.social-icons a img {
  width: 24px;
  height: 24px;
  display: block;
}
.footer-copy {
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Override brand-card to show full-bleed images */
.brand-card {
  padding: 0;              /* remove the old inner padding */
  background: none;        /* remove old bg if any */
  box-shadow: none;        /* optional: drop the drop-shadow, or keep it */
}
.brand-card .brand-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;       /* covers the square */
  border-radius: 8px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}