:root {
  --navy: #0B1320;
  --navy-soft: #10213A;
  --orange: #F47C20;
  --white: #FFFFFF;
  --gray: #D9D9D9;
}

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

body {
  font-family: 'Open Sans', sans-serif;
 background:
  radial-gradient(
    circle at top center,
    rgba(70, 130, 180, 0.25),
    transparent 35%
  ),
  var(--navy);
  color: var(--white);
}

html {
  scrollbar-gutter: stable;
}

/* =========================================
   SITE DISCLAIMER MODAL
========================================= */

.disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.disclaimer-overlay.hidden {
  display: none;
}

.disclaimer-modal {
  width: min(520px, 100%);
  padding: 34px;

  background: #0B1320;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);

  color: #ffffff;
}

.disclaimer-eyebrow {
  margin-bottom: 10px;

  color: var(--orange);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.disclaimer-modal h2 {
  margin: 0 0 16px;

  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;

  text-align: center;
}

.disclaimer-intro {
  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.6;
  text-align: center;
}

.disclaimer-check {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  margin-bottom: 14px;
  padding: 15px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;

  cursor: pointer;
}

.disclaimer-check input {
  width: 18px;
  height: 18px;

  margin-top: 2px;

  accent-color: var(--orange);

  flex-shrink: 0;
}

.disclaimer-check span {
  color: rgba(255, 255, 255, 0.85);

  font-size: 0.9rem;
  line-height: 1.55;
}

.disclaimer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 22px;
}

.disclaimer-enter,
.disclaimer-exit {
  min-height: 48px;

  padding: 12px 18px;

  border-radius: 8px;

  font: inherit;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.disclaimer-enter {
  color: #ffffff;

  background: var(--orange);

  border: 1px solid var(--orange);
}

.disclaimer-enter:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.disclaimer-enter:not(:disabled):hover {
  transform: translateY(-2px);
}

.disclaimer-exit {
  color: #ffffff;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.35);
}

.disclaimer-exit:hover {
  background: rgba(255, 255, 255, 0.06);
}

.disclaimer-footnote {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.72rem;
  line-height: 1.5;

  text-align: center;
}

@media (max-width: 560px) {
  .disclaimer-modal {
    padding: 26px 20px;
  }

  .disclaimer-actions {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SCROLLING ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    position: relative;
    top: 0;
    z-index: 1000;

    width: 100%;
    overflow: hidden;

    background: #123F78;
    border-bottom: 2px solid var(--orange);

    color: white;

    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.announcement-track {

    display: flex;
    align-items: center;

    width: max-content;

    animation: ticker 50s linear infinite;
}

.announcement-track span {

    flex-shrink: 0;

    white-space: nowrap;

    padding: 11px 55px;

    font-family: 'Open Sans', sans-serif;

    font-size: .90rem;

    font-weight: 700;

    letter-spacing: .04em;
}

.announcement-track span::after {

    content: "";

    display: inline-block;

    width: 8px;
    height: 8px;

    margin-left: 55px;

    background: var(--orange);

    border-radius: 50%;
}

.announcement-bar:hover .announcement-track {

    animation-play-state: paused;
}

@keyframes ticker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width:768px){

    .announcement-track{

        animation-duration:24s;

    }

    .announcement-track span{

        padding:9px 30px;

        font-size:.78rem;

    }

    .announcement-track span::after{

        margin-left:30px;

    }

}


/* =========================================
   HEADER / NAVBAR
========================================= */

.site-header {
  position: absolute;
  top: 32px;
  width: 100%;
  z-index: 10;
}

.navbar {
  font-family: 'Open Sans', sans-serif;
  max-width: 1200px;
  padding: 20px 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,.20);
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.home-navbar {
  margin: 20px auto 0;
  background: rgba(255,255,255,.15);
}

.inner-navbar {
  margin: 52px auto 0;
  background: rgba(214,226,239,.92);
  border-color: rgba(255,255,255,.45);
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: #123F78;
  text-decoration: none;
  font-family: inherit sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

/* Orange active and hover links on interior pages */
.inner-navbar .nav-links a:hover,
.inner-navbar .nav-links a.active {
  color: var(--orange);
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: 92vh;
  position: relative;

  background:
    linear-gradient(
      rgba(11, 19, 32, 0.15),
      rgba(11, 19, 32, 0.30)
    ),
    url("../images/backgrounds/hero-bg4.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 140px 24px 80px;
}

.hero-content {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 800;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-transform: uppercase;
}

.headline-orange {
  color: var(--orange);
  text-shadow:
    0 0 15px rgba(244, 124, 32, 0.25),
    0 0 35px rgba(244, 124, 32, 0.15);

  transform: scale(1.05);
}

.headline-dark {
  color: #124D9C;
  margin-bottom: 10px;
}

.research-disclaimer {
  margin: 20px 0 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0B1320;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.28rem;
  color: #334155;
  max-width: 700px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 34px rgba(244, 124, 32, 0.38);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(244, 124, 32, 0.48);
}

.trust-strip {
  max-width: 1100px;
  margin: -48px auto 60px;
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: linear-gradient(135deg, #071426, #0D315C);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.trust-item {
  padding: 28px 18px;
  text-align: center;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child {
  border-right: none;
}

footer {
  text-align: center;
  padding: 32px 20px;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.featured-products {
    max-width: 1200px;
    margin: 70px auto 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 12px;
}

.section-title p {
    color: #94A3B8;
}

/* =========================================
   PRODUCT GRID / PRODUCT CARDS
========================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  min-height: 420px;
  padding: 34px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  background: #0F2340;
  border: 6px solid rgba(255, 255, 255, 0.247);
    border-radius: 16px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: rgba(244, 124, 32, 0.808);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(244, 124, 32, 0.15);
}

.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-card p {
  color: #94A3B8;
  margin-bottom: 20px;
}

.product-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}

.product-category {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

.product-size {
  color: #94A3B8;
  font-size: 1rem;
  margin-bottom: 25px;
}

.product-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.product-link:hover {
  color: var(--white);
}

.product-image-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle,
      rgba(220, 240, 255, 0.75) 0%,
      rgba(180, 220, 255, 0.35) 40%,
      rgba(100, 180, 255, 0.10) 70%,
      transparent 85%
    );

  border-radius: 50%;
  transition: box-shadow 0.3s ease;
}

.product-image {
  width: 145px;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-card:hover .product-image-wrap {
  box-shadow: 0 0 30px rgba(244, 124, 32, 0.25);
}

/* =========================================
   WHY PYRO KINETIC LABS
========================================= */

.why-pkl {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  text-align: center;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.why-card {
    width: 320px;

    background: #0F2340;

    border-radius: 16px;

    padding: 40px 30px;

    border: 1px solid rgba(255,255,255,.56);

    transition: .3s;
}

.why-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25),
        0 0 20px rgba(244,124,32,.15);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: white;
}

.why-card p {
    color: #94A3B8;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 20px 20px; 
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================
   SHOP PAGE
========================================= */

.shop-hero {
  display: block;
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.shop-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 15px;
}

.shop-hero p {
  color: #94A3B8;
  font-size: 1.1rem;
}

.shop-disclaimer {
  display: block;
  width: 100%;
  margin-top: 15px;

  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.shop-count {
  margin-top: 15px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
}

.shop-products .product-grid {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 28px;
}

/* ==================================================
   PRODUCT PURCHASE AND BULK SAVINGS
================================================== */

.product-purchase {
    margin-top: 24px;
}

.bulk-savings-card {
    margin-bottom: 22px;
    padding: 18px 20px;
    background: rgba(255, 122, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 10px;
}

.bulk-savings-card h3 {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bulk-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bulk-tier:last-of-type {
    border-bottom: 0;
}

.bulk-tier span {
    color: rgba(255, 255, 255, 0.8);
}

.bulk-tier strong {
    color: #ffffff;
}

.bulk-savings-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.quantity-selector label {
    color: #ffffff;
    font-weight: 700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.quantity-button {
    width: 42px;
    height: 42px;
    padding: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    font-size: 1.35rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.quantity-button:hover {
    color: var(--orange);
    background: rgba(255, 122, 0, 0.12);
}

.product-quantity {
    width: 54px;
    height: 42px;
    padding: 0 5px;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    font: inherit;
    font-weight: 700;
    text-align: center;
    appearance: textfield;
}

.product-quantity::-webkit-inner-spin-button,
.product-quantity::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.product-quantity:focus {
    outline: 2px solid rgba(255, 122, 0, 0.55);
    outline-offset: -2px;
}

.bulk-progress-message {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.bulk-progress-message.discount-unlocked {
    color: var(--orange);
    font-weight: 700;
}

.add-to-cart-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.add-to-cart-message {
    min-height: 20px;
    margin-top: 12px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.add-to-cart-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 6px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
}

.cart-count.has-items {
    background: var(--orange);
}

/* ==================================================
   CART PAGE
================================================== */

.cart-page {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0 80px;
}

.cart-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.cart-heading h1 {
    margin: 8px 0 12px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.cart-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 32px;
}

.cart-items-section,
.cart-summary {
    background: #0f2340;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.cart-items-section {
    padding: 26px;
}

.cart-items-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.cart-items-heading h2,
.cart-summary h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
}

.clear-cart-button,
.remove-cart-item-button {
    padding: 0;
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    border: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.clear-cart-button:hover,
.remove-cart-item-button:hover {
    color: var(--orange);
}

.clear-cart-button.hidden {
    display: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 105px minmax(180px, 1fr) auto 130px;
    align-items: center;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

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

.cart-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-name {
    display: inline-block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.cart-item-name:hover {
    color: var(--orange);
}

.cart-item-unit-price {
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.cart-item-discount-message {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.45;
}

.cart-item-discount-message.discount-unlocked {
    color: var(--orange);
}

.cart-item-quantity-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.cart-item-quantity-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.remove-cart-item-button {
    font-size: 0.78rem;
}

.cart-item-totals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.cart-item-discount-badge {
    display: inline-flex;
    padding: 5px 8px;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-item-discount-badge.active {
    color: var(--orange);
    background: rgba(255, 122, 0, 0.12);
}

.cart-item-regular-total {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
    text-decoration: line-through;
}

.cart-item-regular-total.no-discount {
    visibility: hidden;
}

.cart-item-final-total {
    color: #ffffff;
    font-size: 1.12rem;
}

.empty-cart {
    display: none;
    padding: 70px 20px;
    text-align: center;
}

.empty-cart.visible {
    display: block;
}

.empty-cart h2 {
    margin: 0 0 10px;
    color: #ffffff;
}

.empty-cart p {
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.65);
}

.cart-summary {
    position: sticky;
    top: 110px;
    padding: 26px;
}

.cart-summary.cart-summary-hidden {
    display: none;
}

.cart-summary h2 {
    margin-bottom: 22px;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.72);
}

.summary-line strong {
    color: #ffffff;
}

.discount-summary-line strong {
    color: var(--orange);
}

.shipping-progress-message {
    margin: 15px 0;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
}

.shipping-progress-message.free-shipping-unlocked {
    color: var(--orange);
    background: rgba(255, 122, 0, 0.1);
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.15rem;
}

.summary-total strong {
    color: var(--orange);
    font-size: 1.35rem;
}

.cart-summary-note {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    line-height: 1.5;
}

.cart-checkout-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.continue-shopping-link {
    display: block;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
}

.continue-shopping-link:hover {
    color: var(--orange);
}

.checkout-status-message {
    margin: 15px 0 0;
    color: var(--orange);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
}

/* =========================================
   ADD-TO-CART POPUP
========================================= */

.cart-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-popup {
    width: min(460px, 100%);
    padding: 32px;
    text-align: center;
    background: #111820;
    border: 1px solid rgba(255, 122, 0, 0.45);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
}

.cart-popup-overlay.active .cart-popup {
    transform: translateY(0) scale(1);
}

.cart-popup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #ffffff;
    background: #ff7a00;
    border-radius: 50%;
}

.cart-popup h2 {
    margin-bottom: 10px;
    color: #ffffff;
}

.cart-popup-message {
    margin-bottom: 24px;
    color: #c9d0d8;
    line-height: 1.6;
}

.cart-popup-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cart-popup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cart-popup-button:hover {
    transform: translateY(-2px);
}

.cart-popup-continue {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cart-popup-continue:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cart-popup-cart {
    color: #ffffff;
    background: #ff7a00;
    border: 1px solid #ff7a00;
}

.cart-popup-cart:hover {
    background: #e86f00;
}

@media (max-width: 520px) {
    .cart-popup {
        padding: 26px 20px;
    }

    .cart-popup-actions {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE
========================================= */

.product-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-detail-image {
  display: flex;
  justify-content: center;
}

.product-image-wrap.large {
  width: 500px;
  height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(80, 120, 180, 0.45) 40%,
      rgba(20, 45, 80, 0.6) 100%
    );
}

.product-image-wrap.large img {
  width: 300px;
  height: auto;
}

.product-detail-info {
  color: var(--white);
}

.product-detail-info h1 {
  margin: 10px 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}

.product-summary {
  margin-bottom: 25px;
  color: #B5C3D8;
  font-size: 1.1rem;
  line-height: 1.8;
}

.product-warning {
  margin-bottom: 30px;
  color: var(--orange);
  font-weight: 700;
}

.product-price {
  margin: 10px 0 22px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 800;
}

.product-specs {
  margin-top: 80px;
  padding: 40px;

  background: #0F2340;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.product-specs h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.spec-grid div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.spec-grid span {
  display: block;
  margin-bottom: 8px;
  color: #94A3B8;
  font-size: 0.85rem;
}

.spec-grid strong {
  color: var(--white);
}

.product-description {
  margin-top: 50px;
  padding: 40px;

  background: #0F2340;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.product-description h2 {
  margin: 25px 0 15px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}

.product-description h2:first-child {
  margin-top: 0;
}

.product-description p {
  margin-bottom: 20px;
  color: #B5C3D8;
  line-height: 1.8;
}

.disclaimer-text {
  color: var(--orange);
  font-weight: 600;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.product-badges span {
  padding: 8px 12px;

  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  color: #B5C3D8;
  font-size: 0.85rem;
  font-weight: 700;
}

.related-products {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.related-products h2 {
  margin-bottom: 40px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}

.related-products .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.breadcrumb {
  max-width: 1200px;
  margin: 25px auto 15px;
  padding: 0 20px;

  color: #64748B;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-price-card {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 800;
}

.featured-price {
  margin: 12px 0 18px;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
}

/* =========================================
   COA PAGE
========================================= */

.coa-hero {
  margin: 80px auto 25px;
  text-align: center;
}

.coa-hero .shop-disclaimer {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
}

.coa-grid {
  width: fit-content;
  margin: 40px auto 80px;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(4, 220px);
  gap: 40px;
}

.coa-card {
  width: 220px;
  padding: 30px 20px;

  background: #0F2340;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  text-align: center;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.coa-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 15px 35px rgba(244, 124, 32, 0.15);
}

.coa-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.coa-card p {
  margin-bottom: 20px;
  color: #94A3B8;
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
  max-width: 1100px;
  margin: 80px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.about-hero-text {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #B5C3D8;
  line-height: 1.8;
}

.research-warning {
  color: var(--orange);
  font-weight: 600;
}

.about-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about-content {
  padding: 45px;

  background: #0F2340;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 18px;

  text-align: center;
}

.about-content h2 {
  margin: 10px 0 24px;

  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-content p {
  max-width: 850px;
  margin: 0 auto 18px;

  color: #B5C3D8;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-heading {
  margin-bottom: 40px;

  color: var(--white);
  font-size: 2.5rem;
}

.about-features {
  max-width: 900px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  padding: 30px;

  background: #0F2340;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 18px;

  text-align: center;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--orange);
}

.feature-card p {
  color: #B5C3D8;
  line-height: 1.7;
}

/* =========================================
   FAQ PAGE
========================================= */

.faq-hero {
  max-width: 1100px;
  margin: 100px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.faq-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.faq-intro {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #B5C3D8;
  line-height: 1.8;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 16px;

  background: #0F2340;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;

  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  border: none;

  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;

  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question span {
  color: var(--orange);
  font-size: 1.5rem;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: #B5C3D8;
  line-height: 1.7;
}

.product-card {
    position: relative;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
}

.product-card .product-link {
    position: relative;
    z-index: 1;
}

.shipping-benefits {
    width: min(1100px, calc(100% - 40px));
    margin: 28px auto 55px;
    padding: 22px 28px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    background: rgba(10, 24, 42, 0.88);
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.22),
        0 0 25px rgba(255, 122, 0, 0.08);

    backdrop-filter: blur(12px);
}

.shipping-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}

.shipping-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    border-radius: 50%;

    background: rgba(255, 122, 0, 0.14);
    color: #ff7a00;
    font-size: 1.45rem;
    font-weight: 800;
}

.shipping-benefit strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 1.08rem;
}

.shipping-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 760px) {
    .shipping-benefits {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .shipping-benefit {
        justify-content: flex-start;
    }
}

.product-shipping-notice {
    margin: 22px 0;
    padding: 20px 24px;

    background: rgba(255, 122, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.32);
    border-radius: 12px;
}

.product-shipping-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: #ffffff;
}

.product-shipping-heading span {
    font-size: 1.15rem;
}

.product-shipping-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.product-shipping-notice p strong {
    color: #ff7a00;
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    width: min(900px, calc(100% - 40px));
    margin: 70px auto 45px;
    text-align: center;
}

.contact-hero h1 {
    margin: 10px 0 18px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
}

.contact-hero-text {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-eyebrow {
    margin: 0;
    color: #ff7a00;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.contact-page {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto 90px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    min-height: 220px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    background: rgba(17, 39, 65, 0.9);
    border: 1px solid rgba(255, 122, 0, 0.24);
    border-radius: 18px;

    color: inherit;
    text-decoration: none;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 0, 0.65);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.26),
        0 0 24px rgba(255, 122, 0, 0.08);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 122, 0, 0.13);
    color: #ff7a00;

    font-size: 1.3rem;
    font-weight: 800;
}

.contact-info-card h2,
.contact-form-card h2,
.contact-sidebar-card h2,
.research-notice-card h2 {
    margin: 0 0 12px;
    color: #ffffff;
}

.contact-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.contact-info-card .contact-highlight {
    margin-bottom: 8px;
    color: #ff7a00;
    font-weight: 800;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.contact-form-card,
.contact-sidebar-card,
.research-notice-card {
    padding: 34px;

    background: rgba(17, 39, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-intro {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 15px;

    background: rgba(5, 18, 34, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    color: #ffffff;
    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.form-group select option {
    color: #111111;
    background: #ffffff;
}

.contact-submit-button {
    width: fit-content;
    padding: 14px 25px;

    border: 0;
    border-radius: 10px;

    background: #ff7a00;
    color: #ffffff;

    font: inherit;
    font-weight: 800;

    opacity: 0.52;
    cursor: not-allowed;
}

.form-status-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.84rem;
    line-height: 1.55;
}

.contact-sidebar {
    display: grid;
    gap: 24px;
}

.contact-sidebar-card p,
.research-notice-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.contact-sidebar-card p:last-child,
.research-notice-card p:last-child {
    margin-bottom: 0;
}

.research-notice-card {
    border-color: rgba(255, 122, 0, 0.28);
    background: rgba(255, 122, 0, 0.07);
}

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

    .contact-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .contact-hero {
        margin-top: 45px;
    }

    .contact-page,
    .contact-hero {
        width: min(100% - 24px, 1120px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-sidebar-card,
    .research-notice-card,
    .contact-info-card {
        padding: 24px;
    }

    .contact-submit-button {
        width: 100%;
    }

    /* =========================================
   TEMPORARILY UNAVAILABLE PRODUCTS
========================================= */

.btn-primary.product-unavailable {
  background: #4B5563 !important;
  color: #D1D5DB !important;
  border: 1px solid #6B7280 !important;
  box-shadow: none !important;
  opacity: 1;
  cursor: not-allowed;
  transform: none !important;
  width: 100%;
}

.btn-primary.product-unavailable:hover {
  background: #4B5563 !important;
  color: #D1D5DB !important;
  transform: none !important;
  box-shadow: none !important;
}

.availability-note {
  margin-top: 10px;
  color: #F47C20;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.product-purchase-unavailable .bulk-savings-card,
.product-purchase-unavailable .quantity-selector,
.product-purchase-unavailable .bulk-progress-message {
  display: none;
}

.unavailable-hide {
  display: none !important;
}

button.btn-primary.product-unavailable {
  display: block !important;
  width: 100% !important;
  background: #4B5563 !important;
  color: #D1D5DB !important;
  border: 1px solid #6B7280 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

button.btn-primary.product-unavailable:hover {
  background: #4B5563 !important;
  color: #D1D5DB !important;
  box-shadow: none !important;
  transform: none !important;
}

.availability-note {
  margin: 10px 0 0 !important;
  color: #F47C20 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}

}

/* =========================================
   UNAVAILABLE PRODUCT RIBBON
========================================= */

.product-card {
  position: relative !important;
  overflow: hidden !important;
}

.unavailable-ribbon {
  position: absolute !important;
  top: 18px !important;
  right: -42px !important;
  z-index: 50 !important;

  width: 185px !important;
  padding: 7px 0 5px !important;

  background: #4B5563 !important;
  color: #FFFFFF !important;

  font-size: 0.62rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  text-indent: 28px !important;
  text-transform: uppercase !important;

  transform: rotate(45deg) !important;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35) !important;

  pointer-events: none !important;
  }

  /* =========================================
   POLICY PAGES
========================================= */

.policy-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 80px;
}

.policy-hero {
  text-align: center;
}

.policy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.policy-content .about-content {
  margin-bottom: 34px;
  padding: 30px 34px;

  background: rgba(15, 35, 64, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.policy-content .about-content h2 {
  margin-bottom: 15px;
}

.policy-content .about-content p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.policy-content .about-content p:last-child {
  margin-bottom: 0;
}

/* =========================================
   FOOTER POLICY LINKS
========================================= */

.site-footer .footer-policy-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  width: 100%;
  margin: 0 auto 24px;
  text-align: center;
}

a.policy-footer-link,
a.policy-footer-link:link,
a.policy-footer-link:visited {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
}

a.policy-footer-link:hover,
a.policy-footer-link:focus,
a.policy-footer-link:active {
  color: #F47C20 !important;
  text-decoration: none !important;
}

/* =========================================
   PRODUCT PRICE + COA
========================================= */

.price-coa-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0;
}

.price-coa-row .price {
  margin: 0;
  color: #F47C20;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.coa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 16px;

  border: 1px solid #F47C20;
  border-radius: 8px;

  color: #F47C20;
  background: rgba(244, 124, 32, 0.08);

  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.coa-button:link,
.coa-button:visited {
  color: #F47C20;
  text-decoration: none;
}

.coa-button:hover,
.coa-button:focus {
  background: #F47C20;
  color: #ffffff;
  transform: translateY(-1px);
}
