/* ==========================================================================
   PKAM Shipping Containers — add-on stylesheet
   This file is loaded IN ADDITION to the existing optime/assets/css/style.css
   It does not modify or override the core theme file, so the rest of the
   site (colors, layout, existing pages) is unaffected.
   ========================================================================== */

/* ---- Nested "Shipping Containers for Sale" flyout submenu ---- */
.navbar .dropdown-submenu {
  position: relative;
}
.navbar .dropdown-submenu > a.nav__item-link {
  padding-right: 34px;
}
.navbar .dropdown-submenu > a.nav__item-link:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}
.navbar .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  display: none;
}
.navbar .dropdown-submenu.show-submenu > .dropdown-menu {
  display: block;
}
@media (min-width: 992px) {
  .navbar .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown-submenu > .dropdown-menu {
    position: static;
    float: none;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    width: 100%;
  }
  .navbar .dropdown-submenu > .dropdown-menu .nav__item {
    padding: 0 20px;
  }
}

/* ---- Container type / product cards ---- */
.container-type-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(18, 28, 69, 0.08);
  padding: 30px 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #ce0404;
}
.container-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(18, 28, 69, 0.14);
}
.container-type-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #121c45;
  margin-bottom: 10px;
}
.container-type-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.container-type-card .seo-tags {
  font-size: 12px;
  color: #9b9b9b;
  margin-bottom: 18px;
  line-height: 1.8;
}
.container-type-card .seo-tags span {
  display: inline-block;
  background: #f5f6fa;
  border-radius: 3px;
  padding: 2px 8px;
  margin: 0 4px 4px 0;
}

/* ---- NEW / USED badges ---- */
.badge-condition {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-right: 6px;
}
.badge-new {
  background: #121c45;
  color: #fff;
}
.badge-used {
  background: #ce0404;
  color: #fff;
}

/* ---- Price table ---- */
.container-price-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(18, 28, 69, 0.08);
}
table.container-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
table.container-price-table thead th {
  background: #121c45;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 16px 18px;
  text-align: left;
}
table.container-price-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #eaeaea;
  font-size: 15px;
  color: #333;
}
table.container-price-table tbody tr:last-child td {
  border-bottom: none;
}
table.container-price-table tbody tr:nth-child(even) {
  background: #f9f9fb;
}
table.container-price-table td.price-cell {
  font-weight: 700;
  color: #ce0404;
}
.price-note {
  background: #fff8e6;
  border-left: 4px solid #ce0404;
  padding: 14px 18px;
  font-size: 14px;
  color: #555;
  border-radius: 0 4px 4px 0;
  margin-top: 20px;
}

/* ---- Process steps ---- */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: process-counter;
}
.process-steps li {
  position: relative;
  padding: 0 0 26px 56px;
  border-left: 2px solid #eaeaea;
  margin-left: 20px;
}
.process-steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.process-steps li:before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: -21px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #ce0404;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.process-steps h4 {
  font-size: 17px;
  font-weight: 700;
  color: #121c45;
  margin-bottom: 6px;
}
.process-steps p {
  color: #666;
  margin: 0;
}

/* ---- Location chips ---- */
.location-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-chip-list li a {
  display: inline-block;
  background: #f5f6fa;
  color: #121c45;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.location-chip-list li a:hover {
  background: #121c45;
  color: #fff;
}

/* ---- Wide CTA buttons: the theme's base .btn is a fixed 170px/50px box
   sized for short one-word labels. Our container CTAs use longer labels
   ("REQUEST A QUOTE", "CALL +63 975 526 6851"), so this modifier class
   lets those specific buttons size to their content instead of overriding
   the shared .btn rule (which would affect buttons across the whole site). */
.btn-cta-wide {
  width: auto !important;
  height: auto !important;
  line-height: 1.3 !important;
  padding: 14px 26px !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- CTA banner ---- */
.container-cta-banner {
  background: linear-gradient(120deg, #121c45 0%, #1c2b63 100%);
  border-radius: 8px;
  padding: 50px 40px;
  color: #fff;
  text-align: center;
}
.container-cta-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.container-cta-banner p {
  color: #d6d9ea;
  max-width: 720px;
  margin: 0 auto 26px;
}
.container-cta-banner .btn {
  margin: 6px;
}

/* ---- Breadcrumb reuse spacing fix on new pages ---- */
.pagetitle__desc.small-note {
  font-size: 14px;
  opacity: 0.85;
}

/* ---- FAQ accordion width control on new pages ---- */
.faq-panel .accordion-item {
  background: #fff;
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(18, 28, 69, 0.06);
  padding: 6px 24px;
}

/* ---- Trust / EEAT list ---- */
.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-points li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  color: #444;
}
.trust-points li:last-child {
  border-bottom: none;
}
.trust-points li:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 10px;
  color: #ce0404;
}

/* ---- Related container links ---- */
.related-containers-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-containers-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #eaeaea;
}
.related-containers-list li a {
  color: #121c45;
  font-weight: 600;
}
.related-containers-list li a:hover {
  color: #ce0404;
}
