/*
 * APFN product page — PrestaShop 8.2.1 / Classic 2.2.0
 * Scope every rule to body#product to avoid side effects elsewhere.
 */
:root {
  --apfn-blue: #6a9ae3;
  --apfn-blue-dark: #5684ca;
  --apfn-navy: #30394c;
  --apfn-text: #5f6775;
  --apfn-muted: #7b8493;
  --apfn-line: #e6eaf0;
  --apfn-soft: #f6f8fb;
  --apfn-success: #2d8a57;
  --apfn-warning: #c77a18;
  --apfn-danger: #b74444;
  --apfn-radius: 12px;
  --apfn-shadow: 0 18px 45px rgba(36, 50, 79, 0.09);
}

body#product {
  color: var(--apfn-text);
  font-size: 1rem;
}

body#product h1,
body#product h2,
body#product h3,
body#product h4,
body#product h5,
body#product h6 {
  color: var(--apfn-navy);
  font-weight: 700;
}

body#product a {
  color: var(--apfn-blue);
}

body#product .btn-primary {
  background: var(--apfn-blue);
  border: 1px solid var(--apfn-blue);
  border-radius: 8px;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body#product .btn-primary:hover,
body#product .btn-primary:focus {
  background: var(--apfn-blue-dark);
  border-color: var(--apfn-blue-dark);
  transform: translateY(-1px);
}

/* Hero */
.apfn-product-hero {
  background: #fff;
  border: 1px solid var(--apfn-line);
  border-radius: 16px;
  box-shadow: var(--apfn-shadow);
  margin-bottom: 28px;
  overflow: visible;
  padding: clamp(20px, 3vw, 46px);
}

.apfn-product-hero .product-container {
  align-items: flex-start;
  margin: 0 -22px;
}

.apfn-product-gallery-column,
.apfn-product-summary-column {
  padding: 0 22px;
}

.apfn-product-gallery-column .page-content {
  margin: 0;
}

.apfn-product-summary {
  position: sticky;
  top: 24px;
}

.apfn-product-eyebrow,
.apfn-section-kicker {
  color: var(--apfn-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.apfn-product-summary h1 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 12px;
  text-transform: none;
}

.apfn-product-reference {
  color: var(--apfn-muted);
  font-size: 0.92rem;
  margin: 0 0 24px;
}

.apfn-product-intro {
  color: var(--apfn-text);
  font-size: 1.03rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.apfn-product-intro p:last-child,
.apfn-product-intro ul:last-child {
  margin-bottom: 0;
}

.apfn-product-intro ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.apfn-product-intro li {
  margin: 8px 0;
  padding-left: 28px;
  position: relative;
}

.apfn-product-intro li::before {
  color: var(--apfn-success);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

/* Gallery: keep Classic JS classes untouched. */
.apfn-gallery .apfn-product-cover {
  align-items: center;
  background: var(--apfn-soft);
  border-radius: var(--apfn-radius);
  display: flex;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.apfn-gallery .apfn-product-cover picture {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.apfn-gallery .apfn-product-cover img {
  height: auto;
  max-height: 600px;
  object-fit: contain;
  width: 100%;
}

.apfn-gallery .apfn-product-cover .layer {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  bottom: 18px;
  box-shadow: 0 8px 24px rgba(38, 53, 83, 0.16);
  color: var(--apfn-blue);
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  left: auto;
  opacity: 1;
  padding: 0;
  right: 18px;
  top: auto;
  width: 46px;
}

.apfn-gallery .apfn-product-cover .layer .zoom-in {
  font-size: 24px;
  margin: 0;
}

.apfn-thumbnail-mask {
  margin-top: 16px;
  width: 100%;
}

.apfn-thumbnail-mask .product-images {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  overflow-x: auto;
  padding: 2px 2px 8px;
}

.apfn-thumbnail-mask .thumb-container {
  flex: 0 0 auto;
  margin: 0;
}

.apfn-thumbnail-mask .thumb {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  height: 78px;
  margin: 0;
  object-fit: contain;
  padding: 5px;
  width: 78px;
}

.apfn-thumbnail-mask .thumb.selected,
.apfn-thumbnail-mask .thumb:hover {
  border-color: var(--apfn-blue);
}

.apfn-product-gallery-column .scroll-box-arrows i {
  color: var(--apfn-blue);
}

/* Variants and purchase panel */
.apfn-purchase-panel {
  background: var(--apfn-soft);
  border: 1px solid var(--apfn-line);
  border-radius: var(--apfn-radius);
  padding: 22px;
}

.apfn-purchase-panel .product-variants > .product-variants-item {
  margin: 0 0 18px;
}

.apfn-purchase-panel .product-variants .control-label,
.apfn-product-add-to-cart > .control-label {
  color: var(--apfn-navy);
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.apfn-purchase-panel select.form-control {
  background-color: #fff;
  border: 1px solid #d9dfe8;
  border-radius: 7px;
  color: var(--apfn-navy);
  min-height: 44px;
}

.apfn-purchase-panel .input-color:checked + span,
.apfn-purchase-panel .input-color:hover + span,
.apfn-purchase-panel .input-radio:checked + span,
.apfn-purchase-panel .input-radio:hover + span {
  border-color: var(--apfn-blue);
}

.apfn-product-prices {
  border-top: 1px solid var(--apfn-line);
  margin: 20px 0 0;
  padding-top: 20px;
}

.apfn-price-label {
  color: var(--apfn-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.apfn-product-prices .product-price {
  margin: 0;
}

.apfn-product-prices .current-price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apfn-product-prices .current-price-value {
  color: var(--apfn-navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
}

.apfn-product-prices .regular-price {
  color: var(--apfn-muted);
}

.apfn-product-prices .discount {
  background: var(--apfn-blue);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
}

.apfn-product-prices .tax-shipping-delivery-label,
.apfn-product-prices .product-without-taxes,
.apfn-product-prices .product-unit-price,
.apfn-product-prices .price-ecotax,
.apfn-product-prices .product-pack-price {
  color: var(--apfn-muted);
  font-size: 0.82rem;
  margin: 5px 0 0;
}

.apfn-product-prices .delivery-information {
  display: block;
  margin-top: 5px;
}

.apfn-product-add-to-cart {
  margin-top: 20px;
}

.apfn-availability-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--apfn-line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px 14px;
}

.apfn-availability-label {
  color: var(--apfn-navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.apfn-availability-row #product-availability {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 5px;
}

.apfn-availability-row .product-available {
  color: var(--apfn-success);
}

.apfn-availability-row .product-last-items {
  color: var(--apfn-warning);
}

.apfn-availability-row .product-unavailable {
  color: var(--apfn-danger);
}

.apfn-product-add-to-cart .product-quantity {
  align-items: stretch;
  display: flex;
  gap: 10px;
}

.apfn-product-add-to-cart .qty {
  float: none;
  margin: 0;
  width: 74px;
}

.apfn-product-add-to-cart #quantity_wanted {
  background: #fff;
  border: 1px solid #d9dfe8;
  border-radius: 8px;
  height: 50px;
  padding: 0 10px;
  text-align: center;
  width: 100%;
}

.apfn-product-add-to-cart .add {
  display: flex;
  flex: 1 1 auto;
}

.apfn-product-add-to-cart .add-to-cart {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  font-size: 1rem;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.2rem;
}

.apfn-product-add-to-cart .add-to-cart .material-icons {
  margin-right: 8px;
}

.apfn-login-gate {
  align-items: center;
  background: #fff;
  border: 1px solid var(--apfn-line);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  padding: 18px;
}

.apfn-login-gate > .material-icons {
  color: var(--apfn-blue);
  font-size: 32px;
}

.apfn-login-gate p {
  color: var(--apfn-muted);
  font-size: 0.87rem;
  margin: 2px 0 0;
}

.apfn-login-gate .apfn-login-gate-title {
  color: var(--apfn-navy);
  font-size: 1rem;
  font-weight: 750;
  margin: 0;
}

.apfn-login-gate .btn {
  grid-column: 1 / -1;
  padding: 12px 18px;
  text-align: center;
}

.apfn-purchase-panel .product-minimal-quantity {
  color: var(--apfn-muted);
  font-size: 0.82rem;
  margin: 10px 0 0;
}

body#product #block-reassurance {
  margin-top: 18px;
}

/* Reassurance strip */
.apfn-reassurance {
  background: var(--apfn-navy);
  border-radius: var(--apfn-radius);
  color: #fff;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 54px;
  overflow: hidden;
}

.apfn-reassurance-item {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 0.88rem;
  font-weight: 650;
  gap: 10px;
  justify-content: center;
  min-height: 88px;
  padding: 18px;
  text-align: center;
}

.apfn-reassurance-item:last-child {
  border-right: 0;
}

.apfn-reassurance-item .material-icons {
  color: #9bb5eb;
  flex: 0 0 auto;
}

/* Main information tabs */
.apfn-product-content {
  margin: 0 0 58px;
}

.apfn-product-tabs.tabs {
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.apfn-product-tabs .nav-tabs {
  border-bottom: 1px solid var(--apfn-line);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 0;
}

.apfn-product-tabs .nav-tabs .nav-link {
  border: 0;
  color: var(--apfn-muted);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
  padding: 0 0 15px;
  text-transform: none;
}

.apfn-product-tabs .nav-tabs .nav-link.active,
.apfn-product-tabs .nav-tabs .nav-link:hover {
  border-bottom: 3px solid var(--apfn-blue);
  color: var(--apfn-blue);
}

.apfn-product-tabs .tab-content {
  background: #fff;
  padding: clamp(24px, 4vw, 50px) 0 0;
}

.apfn-product-tabs .tab-pane > .product-description {
  color: var(--apfn-text);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 980px;
}

.apfn-product-tabs .product-description h2,
.apfn-product-tabs .product-description h3 {
  margin: 1.6em 0 0.65em;
}

.apfn-details-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apfn-details-card {
  background: var(--apfn-soft);
  border: 1px solid var(--apfn-line);
  border-radius: var(--apfn-radius);
  padding: clamp(20px, 3vw, 32px);
}

.apfn-details-card > .h3,
.apfn-downloads > .h3 {
  font-size: 1.35rem;
  margin: 0 0 20px;
}

.apfn-detail-row,
.apfn-feature-row {
  align-items: baseline;
  border-bottom: 1px solid var(--apfn-line);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.1fr);
  padding: 11px 0;
}

.apfn-detail-row:last-child,
.apfn-feature-row:last-child {
  border-bottom: 0;
}

.apfn-detail-row .label,
.apfn-feature-row .name {
  color: var(--apfn-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.apfn-feature-row .value {
  color: var(--apfn-navy);
  font-size: 0.92rem;
  font-weight: 650;
  margin: 0;
}

.apfn-details-card .data-sheet {
  margin: 0;
}

.apfn-brand-link {
  display: inline-block;
}

.apfn-details-card .manufacturer-logo {
  margin: 0;
  max-height: 62px;
  max-width: 150px;
}

.apfn-specific-references {
  grid-column: 1 / -1;
}

/* Attachments */
.apfn-download-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apfn-download-card {
  align-items: flex-start;
  background: var(--apfn-soft);
  border: 1px solid var(--apfn-line);
  border-radius: 10px;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 20px;
}

.apfn-download-card > .material-icons {
  color: var(--apfn-blue);
  font-size: 32px;
}

.apfn-download-card h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}

.apfn-download-card p {
  color: var(--apfn-muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 0 10px;
}

.apfn-download-link {
  font-size: 0.88rem;
  font-weight: 700;
}

.apfn-download-link span {
  font-weight: 400;
}

/* Accessories and end CTA */
.apfn-product-accessories {
  border-top: 1px solid var(--apfn-line);
  margin: 0 0 58px;
  padding-top: 50px;
}

.apfn-section-heading {
  margin-bottom: 26px;
}

.apfn-section-heading h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  margin: 0;
}

.apfn-product-accessories .products {
  display: flex;
  flex-wrap: wrap;
}

.apfn-advice-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--apfn-blue-dark), var(--apfn-blue));
  border-radius: 16px;
  color: #fff;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 50px 0 20px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  position: relative;
}

.apfn-advice-cta::after {
  border: 45px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -75px;
  top: -90px;
  width: 220px;
}

.apfn-advice-cta p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.apfn-advice-cta h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin: 0;
}

.apfn-advice-cta .btn {
  background: #fff;
  border-color: #fff;
  color: var(--apfn-blue-dark);
  flex: 0 0 auto;
  padding: 14px 22px;
  position: relative;
  z-index: 1;
}

.apfn-advice-cta .btn:hover,
.apfn-advice-cta .btn:focus {
  background: #eef3ff;
  border-color: #eef3ff;
  color: var(--apfn-blue-dark);
}

/* Tablet */
@media (max-width: 991px) {
  .apfn-product-hero .product-container {
    margin: 0 -14px;
  }

  .apfn-product-gallery-column,
  .apfn-product-summary-column {
    padding: 0 14px;
  }

  .apfn-gallery .apfn-product-cover {
    min-height: 360px;
  }

  .apfn-reassurance {
    grid-template-columns: repeat(2, 1fr);
  }

  .apfn-reassurance-item:nth-child(2) {
    border-right: 0;
  }

  .apfn-reassurance-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .apfn-product-hero {
    border-radius: 12px;
    padding: 18px;
  }

  .apfn-product-hero .product-container {
    margin: 0;
  }

  .apfn-product-gallery-column,
  .apfn-product-summary-column {
    padding: 0;
  }

  .apfn-product-summary {
    margin-top: 28px;
    position: static;
  }

  .apfn-gallery .apfn-product-cover {
    min-height: 280px;
  }

  .apfn-thumbnail-mask .thumb {
    height: 66px;
    width: 66px;
  }

  .apfn-purchase-panel {
    padding: 16px;
  }

  .apfn-availability-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .apfn-product-add-to-cart .product-quantity {
    flex-wrap: wrap;
  }

  .apfn-product-add-to-cart .add {
    min-width: calc(100% - 84px);
  }

  .apfn-reassurance {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .apfn-reassurance-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    justify-content: flex-start;
    min-height: 64px;
    text-align: left;
  }

  .apfn-reassurance-item:last-child {
    border-bottom: 0;
  }

  .apfn-product-tabs .nav-tabs {
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
  }

  .apfn-product-tabs .nav-tabs .nav-item {
    flex: 0 0 auto;
  }

  .apfn-details-grid,
  .apfn-download-grid {
    grid-template-columns: 1fr;
  }

  .apfn-specific-references {
    grid-column: auto;
  }

  .apfn-detail-row,
  .apfn-feature-row {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .apfn-advice-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .apfn-advice-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body#product .btn-primary {
    transition: none;
  }
}

/*
 * Classic 2.2.0 compatibility layer.
 * The recovery-safe template inherits the parent's markup, so these rules
 * provide the APFN presentation without duplicating the native template.
 */
body#product #main > .product-container {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--apfn-line);
  border-radius: 16px;
  box-shadow: var(--apfn-shadow);
  margin-bottom: 28px;
  padding: clamp(20px, 3vw, 46px);
}

body#product #main > .product-container > [class*="col-"] {
  padding-left: 22px;
  padding-right: 22px;
}

body#product #main > .product-container .page-content {
  margin-bottom: 0;
}

body#product #main > .product-container .product-cover {
  align-items: center;
  background: var(--apfn-soft);
  border-radius: var(--apfn-radius);
  display: flex;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
}

body#product #main > .product-container .product-cover img {
  height: auto;
  max-height: 600px;
  object-fit: contain;
  width: 100%;
}

body#product #main > .product-container > .col-md-6:last-child {
  position: sticky;
  top: 24px;
}

body#product #main > .product-container h1 {
  color: var(--apfn-navy);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: none;
}

body#product #main > .product-container .product-description {
  color: var(--apfn-text);
  font-size: 1.03rem;
  line-height: 1.7;
}

body#product #main > .product-container .product-actions {
  background: var(--apfn-soft);
  border: 1px solid var(--apfn-line);
  border-radius: var(--apfn-radius);
  margin-top: 22px;
  padding: 22px;
}

body#product #main > .product-container .product-prices {
  margin-top: 18px;
}

body#product #main > .product-container .current-price-value {
  color: var(--apfn-navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
}

body#product #main > .product-container .add-to-cart {
  min-height: 50px;
}

body#product #main > .product-container .images-container .product-images {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
}

body#product #main > .product-container .images-container .thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  height: 78px;
  object-fit: contain;
  padding: 5px;
  width: 78px;
}

body#product #main > .product-container .images-container .thumb.selected,
body#product #main > .product-container .images-container .thumb:hover {
  border-color: var(--apfn-blue);
}

body#product #main .tabs {
  background: #fff;
  border-radius: var(--apfn-radius);
  box-shadow: none;
  margin: 48px 0;
  padding: clamp(22px, 3vw, 38px);
}

body#product #main .tabs .nav-tabs {
  border-bottom: 1px solid var(--apfn-line);
  gap: 22px;
}

body#product #main .tabs .nav-link {
  color: var(--apfn-muted);
  font-weight: 700;
  text-transform: none;
}

body#product #main .tabs .nav-link.active,
body#product #main .tabs .nav-link:hover {
  border-bottom-color: var(--apfn-blue);
  color: var(--apfn-blue);
}

body#product #main .tabs .tab-content {
  padding-top: 28px;
}

body#product #main .product-features .data-sheet {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body#product #main .product-features .data-sheet dt,
body#product #main .product-features .data-sheet dd {
  border-bottom: 1px solid var(--apfn-line);
  margin: 0;
  padding: 11px 10px;
}

body#product #main .product-attachments .attachment {
  background: var(--apfn-soft);
  border: 1px solid var(--apfn-line);
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 18px;
}

body#product #main .product-accessories {
  border-top: 1px solid var(--apfn-line);
  margin-top: 54px;
  padding-top: 44px;
}

body#product .apfn-login-gate-price {
  margin: 18px 0;
  max-width: 540px;
}

body#product .apfn-guest-availability {
  margin-top: 18px;
}

@media (max-width: 767px) {
  body#product #main > .product-container {
    margin-left: 0;
    margin-right: 0;
    padding: 18px;
  }

  body#product #main > .product-container > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  body#product #main > .product-container > .col-md-6:last-child {
    margin-top: 28px;
    position: static;
  }

  body#product #main > .product-container .product-cover {
    min-height: 280px;
  }

  body#product #main .product-features .data-sheet {
    grid-template-columns: 1fr;
  }
}

/* APFN 1.0.2 — social sharing and product reviews are not part of the site. */
body#product .social-sharing,
body#product .product-comments-additional-info,
body#product .product-list-reviews,
body#product #product-comments-list-header,
body#product #product-comments-list,
body#product #product-comments-list-footer,
body#product #product-comments-list-pagination,
body#product #empty-product-comment,
body#product #post-product-comment-modal,
body#product #post-product-comment-form,
body#product .product-comment-modal,
body#product [data-target="#post-product-comment-modal"] {
  display: none !important;
}

/* Exact blue used by the Connexion / Mon compte control in the APFN header. */
body#product .btn-primary,
body#product button.btn-primary,
body#product a.btn-primary,
body#product .add-to-cart,
body#product .apfn-product-card .btn-primary,
body#product .product-miniature .btn-primary {
  background-color: #6a9ae3 !important;
  border-color: #6a9ae3 !important;
  color: #fff !important;
}

body#product .btn-primary:hover,
body#product .btn-primary:focus,
body#product .add-to-cart:hover,
body#product .add-to-cart:focus,
body#product .apfn-product-card .btn-primary:hover,
body#product .apfn-product-card .btn-primary:focus,
body#product .product-miniature .btn-primary:hover,
body#product .product-miniature .btn-primary:focus {
  background-color: #5684ca !important;
  border-color: #5684ca !important;
  color: #fff !important;
}

body#product .btn-primary:disabled,
body#product .add-to-cart:disabled {
  background-color: #a9c2e8 !important;
  border-color: #a9c2e8 !important;
  color: #fff !important;
}

/* The summary is rendered once in the proven product_prices block. */
body#product .product-information > [id^="product-description-short-"] {
  display: none !important;
}

body#product .apfn-product-intro-copy {
  margin: 0 0 22px;
}
