/* Content pages — information, contact, brands, sitemap */

.breadcrumbs {
  min-height: 41px;
  display: flex;
  align-items: center;
  color: #62636a;
  background: #f4f4f5;
  font-size: 13px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.breadcrumbs a:hover { color: var(--orange); }

.content-page {
  padding-block: 30px 56px;
}

.content-page .page-title {
  margin: 0 0 24px;
  color: #171717;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-page .page-lead {
  margin: -12px 0 24px;
  max-width: 720px;
  color: #55565c;
  font-size: 15px;
  line-height: 1.45;
}

/* CMS HTML (About, Delivery, Terms, Contact info page, …) */
.content-prose {
  max-width: 860px;
  color: #333745;
  font-size: 15px;
  line-height: 1.55;
}

.content-prose > *:first-child { margin-top: 0; }
.content-prose > *:last-child { margin-bottom: 0; }

.content-prose h1,
.content-prose h2,
.content-prose h3,
.content-prose h4 {
  margin: 1.4em 0 .55em;
  color: #171717;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.content-prose h2 { font-size: 16px; }
.content-prose h3 { font-size: 15px; }
.content-prose h4 { font-size: 14px; }

.content-prose p { margin: 0 0 1em; }
.content-prose a { color: var(--orange); }
.content-prose a:hover { text-decoration: underline; }

.content-prose ul,
.content-prose ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.content-prose li { margin: 0 0 .35em; }

.content-prose img {
  max-width: 100%;
  height: auto;
}

.content-prose table {
  width: 100%;
  margin: 0 0 1.2em;
  border-collapse: collapse;
  font-size: 14px;
}

.content-prose th,
.content-prose td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-prose th {
  background: #f4f4f5;
  font-weight: 700;
  text-transform: uppercase;
}

.content-prose iframe {
  max-width: 100%;
}

/* Contact (OC form route) */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.contact-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.contact-card__title {
  margin: 0 0 14px;
  color: #171717;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card__store {
  margin: 0 0 8px;
  color: #171717;
  font-size: 16px;
  font-weight: 700;
}

.contact-card address {
  margin: 0 0 14px;
  font-style: normal;
  color: #55565c;
  line-height: 1.45;
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-meta__label {
  display: block;
  margin: 0 0 3px;
  color: #2a2b2e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.contact-meta__value {
  color: #55565c;
  font-size: 15px;
  line-height: 1.4;
}

.contact-meta__value a { color: var(--orange); }
.contact-meta__value a:hover { text-decoration: underline; }

.contact-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color .15s, color .15s;
}

.contact-map:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.contact-form-panel { padding: 24px 22px; }
.contact-form-panel .account-form { max-width: none; }

.content-page .account-form .form-group {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
}

.content-page .account-form .form-group.required > label::after {
  content: " *";
  color: var(--orange);
}

.content-page .account-form label {
  color: #2a2b2e;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.content-page .account-form .form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d5d6da;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color .15s, box-shadow .15s;
}

.content-page .account-form textarea.form-control {
  height: auto;
  min-height: 140px;
  padding: 12px 14px;
  resize: vertical;
}

.content-page .account-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 97, 0, .12);
}

.content-page .account-form .text-danger {
  margin-top: 4px;
  color: #c0392b;
  font-size: 13px;
}

.content-page .account-btn,
.content-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  color: #fff !important;
  background: var(--orange);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: filter .15s;
}

.content-page .account-btn:hover,
.content-page .btn-primary:hover { filter: brightness(1.05); }

.content-page .alert {
  position: relative;
  margin: 0 0 18px;
  padding: 12px 36px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8f8f9;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.content-page .alert-success { border-color: #c8e6c9; background: #f1f8f1; }
.content-page .alert-danger { border-color: #f5c6cb; background: #fdf2f3; }

/* Brands index */
.brand-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.brand-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: border-color .15s, color .15s, background .15s;
}

.brand-index a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff7f2;
}

.brand-group {
  margin: 0 0 28px;
}

.brand-group__title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: #171717;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 16px;
}

.brand-grid a {
  display: block;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .15s, color .15s, background .15s;
}

.brand-grid a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff7f2;
}

/* Sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.sitemap-list,
.sitemap-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-list > li {
  margin: 0 0 10px;
}

.sitemap-list a {
  color: var(--ink);
  font-size: 15px;
}

.sitemap-list a:hover { color: var(--orange); }

.sitemap-list ul {
  margin: 6px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

.sitemap-list ul li { margin: 0 0 6px; }
.sitemap-list ul a { font-size: 14px; color: #55565c; }

.content-empty {
  margin: 0 0 20px;
  color: #55565c;
  font-size: 15px;
}

@media (max-width: 900px) {
  .contact-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .content-page { padding-block: 22px 40px; }

  .brand-grid {
    grid-template-columns: 1fr;
  }
}
