/* ==========================================================
   Variables
========================================================== */

:root {
  --cargo-blue: #1f2d46;
  --cargo-pink: #e5007e;
  --cargo-light: #f6f7f9;
  --cargo-text: #4f5b6b;
}

/* ==========================================================
   Cargo Hub Header
========================================================== */

body.page-template-page-cargo-hub .grid-gb-nav .uk-section {
  background: #1f1f1f;
}

body.page-template-page-cargo-hub .grid-gb-nav .uk-navbar-container {
  margin: 0;
}

/* ==========================================================
   Base layout
========================================================== */

.cargo-hub {
  overflow: hidden;
}

.cargo-section {
  padding: 80px 0;
}

.cargo-section-light {
  background: var(--cargo-light);
}

/* ==========================================================
   Typography
========================================================== */

.cargo-kicker {
  color: var(--cargo-pink);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.cargo-title {
  color: var(--cargo-blue);
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
}

.cargo-text {
  color: var(--cargo-text);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================
   Hero
========================================================== */

.cargo-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-image: url("https://geobike.eu/wp-content/uploads/2026/06/hero.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.cargo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,31,50,.88), rgba(20,31,50,.55), rgba(20,31,50,.18));
}

.cargo-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cargo-hero h1 {
  color: #ffffff;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 800;
}

.cargo-hero-lead {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.45;
  margin: 0 0 28px;
  font-weight: 600;
}

/* ==========================================================
   Lists
========================================================== */

.cargo-usp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 10px;
}

.cargo-usp-list li {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.cargo-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.cargo-list li {
  color: var(--cargo-text);
  font-size: 17px;
  line-height: 1.5;
}

.cargo-usp-list li::before,
.cargo-list li::before {
  content: "✓";
  color: var(--cargo-pink);
  font-weight: 800;
  margin-right: 10px;
}

/* ==========================================================
   Buttons and links
========================================================== */

.cargo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cargo-button-primary,
.cargo-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.cargo-button-primary {
  background: var(--cargo-pink);
  color: #ffffff;
}

.cargo-button-secondary {
  background: #ffffff;
  color: var(--cargo-blue);
}

.cargo-link-button,
.cargo-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cargo-pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-decoration: none;
  border-bottom: 2px solid var(--cargo-pink);
  padding-bottom: 4px;
}

.cargo-link-button:hover,
.cargo-back-link:hover {
  color: #c9006f;
  border-color: #c9006f;
  text-decoration: none;
}

.cargo-back-link {
  margin-bottom: 30px;
}

/* ==========================================================
   Cards
========================================================== */

.cargo-card,
.cargo-model-card {
  background: #ffffff;
  border: 1px solid rgba(31,45,70,.1);
  height: 100%;
  transition: .2s ease;
}

.cargo-card {
  padding: 30px;
}

.cargo-card:hover,
.cargo-model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(31,45,70,.08);
}

.cargo-number {
  display: block;
  color: var(--cargo-pink);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cargo-card h3,
.cargo-model-body h3 {
  color: var(--cargo-blue);
  margin: 0 0 14px;
  font-weight: 700;
}

.cargo-card p {
  color: var(--cargo-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================
   Model grid
========================================================== */

.cargo-model-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cargo-model-image {
  height: 280px;
  background: #eef0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cargo-model-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  background: #ffffff;
  display: block;
}

.cargo-model-body {
  flex: 1;
  padding: 26px;
}

.cargo-model-body h3 {
  min-height: 56px;
}

.cargo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cargo-tags span {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--cargo-blue);
  background: #f3f5f8;
  border: 1px solid #d9e0e8;
  border-radius: 20px;
}

/* ==========================================================
   Images
========================================================== */

.cargo-split-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

/* ==========================================================
   Product page
========================================================== */

.cargo-product-gallery {
  width: 100%;
}

.cargo-product-main-image {
  background: #ffffff;
  border: 1px solid rgba(31,45,70,.1);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.cargo-product-main-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.cargo-product-main-image a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.cargo-product-features {
  margin-top: 32px;

}

.cargo-subtitle {
  color: var(--cargo-blue);
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 18px;
  font-weight: 700;

}

.cargo-product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.cargo-product-thumb {
  border: 1px solid rgba(31,45,70,.12);
  background: #ffffff;
  padding: 8px;
  height: 92px;
  cursor: pointer;
  transition: .2s ease;
}

.cargo-product-thumb:hover,
.cargo-product-thumb.is-active {
  border-color: var(--cargo-pink);
}

.cargo-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cargo-product-main-image-wrap {
  position: relative;
}

.cargo-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(31,45,70,.78);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
}

.cargo-gallery-arrow-prev {
  left: 18px;
}

.cargo-gallery-arrow-next {
  right: 18px;
}

.cargo-gallery-arrow:hover {
  background: var(--cargo-pink);
}

/* ==========================================================
   Gallery
========================================================== */

.cargo-gallery-thumb {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #ffffff;
  padding: 16px;
  border: 1px solid rgba(31,45,70,.1);
  display: block;
}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 960px) {
  .cargo-hero h1 {
    font-size: 46px;
  }

  .cargo-title {
    font-size: 36px;
  }

  .cargo-model-image {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .cargo-section {
    padding: 54px 0;
  }

  .cargo-hero {
    min-height: 620px;
  }

  .cargo-hero::before {
    background: rgba(20,31,50,.76);
  }

  .cargo-hero h1 {
    font-size: 34px;
  }

  .cargo-hero-lead {
    font-size: 20px;
  }

  .cargo-usp-list li {
    font-size: 17px;
  }

  .cargo-title {
    font-size: 30px;
  }

  .cargo-buttons {
    flex-direction: column;
  }

  .cargo-button-primary,
  .cargo-button-secondary {
    width: 100%;
  }

  .cargo-model-image {
    height: 230px;
  }

  .cargo-model-body h3 {
    min-height: auto;
  }

  .cargo-product-main-image {
    min-height: 320px;
    padding: 18px;
  }

  .cargo-product-main-image img {
    max-height: 320px;
  }

  .cargo-product-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .cargo-product-thumb {
    height: 76px;
  }

  .cargo-gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 30px;
  }

  .cargo-gallery-arrow-prev {
    left: 10px;
  }

  .cargo-gallery-arrow-next {
    right: 10px;
  }
}

