/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
/* =========================================
   1) HIDE CART MENU BAR (JCart / OpenCart)
========================================= */
.body-oc #menu-oc {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
/* =========================================
   2) IMPORTS
========================================= */
/* ===== Heading Banner Particle ===== */
.pby-headingbanner {
  position: relative;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: var(--hb-height, 520px);
  display: flex;
  align-items: center;
  /* vertical center */
  overflow: hidden;
}
@media (max-width: 768px) {
  .pby-headingbanner {
    height: var(--hb-height-mobile, 320px);
  }
}
/* Dark overlay layer (color + opacity controlled by CSS vars) */
.pby-headingbanner__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hb-overlay-color, #000);
  opacity: var(--hb-overlay-opacity, 0.45);
  pointer-events: none;
  z-index: 0;
}
/* Content wrapper */
.pby-headingbanner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.pby-headingbanner__content {
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pby-headingbanner.is-left .pby-headingbanner__content {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.pby-headingbanner.is-right .pby-headingbanner__content {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
/* Icon above heading */
.pby-headingbanner__icon {
  display: inline-block;
  margin: 0 0 0.35rem;
  line-height: 1;
}
/* Title & description (fonts inherit from your template) */
.pby-headingbanner__title {
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.pby-headingbanner__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 80ch;
}
.pby-headingbanner__cta {
  margin-top: 0.9rem;
}
/* Bottom edge area */
.pby-headingbanner__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--hb-edge-height, 48px);
  line-height: 0;
  z-index: 1;
}
.pby-headingbanner__edge svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* ===== Custom Image Features (scoped to .g-cif) ===== */
.g-cif {
  padding: 2rem 0;
}
.g-cif--pad-none {
  padding: 0;
}
.g-cif--pad-small {
  padding: 1rem 0;
}
.g-cif--pad-medium {
  padding: 2rem 0;
}
.g-cif--pad-large {
  padding: 3rem 0;
}
.g-cif__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
/* Columns at desktop */
@media (min-width: 992px) {
  .g-cif--cols-2 .g-cif__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .g-cif--cols-3 .g-cif__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.g-cif__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--cif-card-h, 280px);
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
/* Left/right variants */
.g-cif__card--left {
  direction: ltr;
}
.g-cif__card--right {
  direction: rtl;
}
.g-cif__card--right > * {
  direction: ltr;
}
.g-cif__media {
  position: relative;
  overflow: hidden;
}
.g-cif__media-inner {
  width: 100%;
  height: 100%;
}
.g-cif__media-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Aspect helpers if you prefer preserved ratio wrappers */
.g-cif__ratio--sixteen-nine {
  aspect-ratio: 1.7777777778;
}
.g-cif__ratio--three-two {
  aspect-ratio: 1.5;
}
.g-cif__ratio--four-three {
  aspect-ratio: 1.3333333333;
}
.g-cif__content {
  background: var(--cif-bg, #19a0e6);
  color: var(--cif-text, #eaf7fa);
  position: relative;
  display: flex;
  align-items: center;
}
/* The wedge that points toward the image */
.g-cif__content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 18px solid transparent;
}
.g-cif__card--left .g-cif__content::before {
  left: -2px;
  border-left-color: var(--cif-bg, #19a0e6);
}
.g-cif__card--right .g-cif__content::before {
  right: -2px;
  border-right-color: var(--cif-bg, #19a0e6);
}
/* Hover: nudge the wedge toward the image */
.g-cif__card:hover .g-cif__content::before {
  transform: translateY(-50%) translateX(4px);
}
.g-cif__card--right:hover .g-cif__content::before {
  transform: translateY(-50%) translateX(-4px);
}
.g-cif__content-inner {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Large title, but not an H tag */
.g-cif__title {
  color: var(--cif-title, #fff);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.g-cif__desc {
  flex: 1 1 auto;
  line-height: 1.6;
  /* Optional clamping to help equalize heights */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--cif-clamp, 3);
  overflow: hidden;
}
.g-cif__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.g-cif__label {
  opacity: 0.95;
  font-size: 0.95rem;
}
.g-cif__arrow {
  color: var(--cif-arrow, currentColor);
  display: inline-flex;
}
/* Arrow motion */
.g-cif__card:hover .g-cif__arrow {
  transform: translateX(6px);
  transition: transform 0.25s ease;
}
/* Make the whole content panel clickable */
.g-cif__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Stack on small screens */
@media (max-width: 768px) {
  .g-cif__card {
    grid-template-columns: 1fr;
  }
  .g-cif__card--right .g-cif__content::before, .g-cif__card--left .g-cif__content::before {
    top: auto;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) rotate(90deg);
    display: none;
  }
}
/* =========================================
   3) JCART CONTAINER STYLING
========================================= */
/* Gold headings inside the JCart container */
#container-oc h1, #container-oc h2, #container-oc h3, #container-oc h4, #container-oc h5, #container-oc h6 {
  color: #7B9887 !important;
}
/* Gold links inside the JCart container */
#container-oc a {
  color: #7B9887 !important;
  text-decoration: none;
}
#container-oc a:hover {
  color: #FFD700 !important;
  /* slightly brighter gold */
  text-decoration: underline;
}
/* =========================================
   4) PAYMENT METHOD TEXT OVERRIDES
========================================= */
/* Hide the default COD label text by value */
input[name="payment_method"][value="cod"] + label {
  font-size: 0 !important;
}
/* Insert your custom title */
input[name="payment_method"][value="cod"] + label::after {
  content: "Centenntial Classic Arms will Call you for FFL Transfer / and for Payment - Calls appear as Laser Tech";
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.3px;
}
/* Hide old COD text by for= attribute */
label[for="input-payment-method-cod-cod"] {
  font-size: 0 !important;
}
/* Inject new text */
label[for="input-payment-method-cod-cod"]::after {
  content: "Centenntial Classic Arms will Call you for FFL Transfer / and for Payment - Calls appear as Laser Tech";
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}
/* =========================================
   5) DROPDOWN MENU STYLING
========================================= */
/* Dropdown panel */
.g-main-nav .g-sublevel {
  background: #000000;
  border: 1px solid #7B9887;
  border-radius: 6px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}
/* Dropdown link text — bright gold by default */
.g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: gold !important;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
/* Hover state — gold background with black text */
.g-main-nav .g-sublevel > li > .g-menu-item-container:hover, .g-main-nav .g-sublevel > li > .g-menu-item-container:focus {
  background: gold;
  color: black !important;
}
/* Active/focused state for keyboard navigation */
.g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  background: gold;
  color: black !important;
}
/* Custom font class for a particle */
.font-collectors {
  /* Body text */
  font-family: "Lora", serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  /* adjust to match your design */
}
.font-collectors h1, .font-collectors h2, .font-collectors h3, .font-collectors h4, .font-collectors h5, .font-collectors h6 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: gold;
  /* matches your theme */
}
/* ============================
   JCart System Notices Styling
   ============================ */
/* Success messages (e.g. added to cart) */
.body-oc .alert-success {
  --bs-alert-color: #ffffff;
  /* text color */
  --bs-alert-bg: #000000!important;
  /* background color */
  --bs-alert-border-color: gold;
  /* border */
  color: #ffffff !important;
  /* ensure inline content is white */
  border: 1px solid gold !important;
}
/* Warning messages */
.body-oc .alert-warning {
  background-color: #7B9887;
  /* your muted green */
  color: #000000;
  border: 1px solid #ffffff;
}
/* Error/Danger messages */
.body-oc .alert-danger {
  background-color: #da4f49;
  /* bold red */
  color: #ffffff;
  border: 1px solid #ffffff;
}
/* Info/Notice messages */
.body-oc .alert-info {
  background-color: #7B9887;
  /* dark blue */
  color: #ffffff;
  border: 1px solid gold;
}
/* ==============================
   Mini Cart Dropdown Styling (Dark)
   ============================== */
/* Whole dropdown panel */
.dropdown-menu {
  background-color: #000000 !important;
  /* dark background */
  color: #ffffff !important;
  /* white text */
  border: 1px solid #444;
  /* subtle dark border */
  border-radius: 6px;
  min-width: 320px;
  padding: 10px;
}
/* All table text inside dropdown */
.dropdown-menu .table td, .dropdown-menu .table th, .dropdown-menu .table td small {
  background: transparent !important;
  color: #ffffff !important;
  /* force all table text white */
  border-color: #333;
}
/* Product names & headings */
.dropdown-menu .table td a, .dropdown-menu .table th strong, .dropdown-menu .table td strong {
  color: #ffffff !important;
  /* keep product titles/headings white */
  font-weight: 700;
}
/* Product links hover */
.dropdown-menu a:hover {
  color: #FFD700 !important;
  /* optional gold hover accent */
  text-decoration: underline;
}
/* Final total row */
.dropdown-menu .table tr:last-child td strong {
  color: #FFD700 !important;
  /* gold highlight for grand total */
}
/* Remove Bootstrap striping */
.dropdown-menu .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent !important;
}
.body-oc #cart strong {
  color: #ffffff !important;
}
#cart .table td, #cart .table th {
  color: #ffffff !important;
}
body.body-oc #cart .table > :not(caption) > * > * {
  color: #ffffff !important;
}
/* =========================================
   6) GENERAL LAYOUT & SECTIONS
========================================= */
#g-mainbody {
  padding: 0.1rem 0 !important;
  background-color: #000000;
  color: #ffffff;
}
.g-main-nav .g-toplevel {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
#g-showcase {
  padding: 0.5rem 0;
  /* slim bar height */
  background-color: #000000;
  /* black background */
  background-image: none !important;
  /* no image */
  color: gold;
  /* gold text */
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border-top: 1px solid black;
  /* optional: gold top border */
  border-bottom: 1px solid gold;
  /* optional: gold bottom border */
}
#g-showcase h4 {
  margin: 0;
  /* remove extra spacing */
  color: gold;
  font-size: 1rem;
  font-weight: 700;
}
#g-showcase strong {
  color: gold;
}
#g-copyright {
  padding: 10px 0;
  background-color: #000000;
  /* black background */
  color: gold;
  /* gold text */
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid gold;
  /* gold top border */
  letter-spacing: 0.5px;
}
#g-copyright a {
  color: gold;
  text-decoration: none;
  transition: color 0.2s ease;
}
#g-copyright a:hover {
  color: #FFD700;
  /* brighter gold on hover */
  text-decoration: underline;
}
#g-footer {
  padding: 2rem 0;
  background: linear-gradient(90deg, #1b2b52 0%, #7B9887 100%);
  color: #ffffff;
  /* white text */
  border-top: 1px solid gold;
  /* thin gold accent line */
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
/* Footer links */
#g-footer a {
  color: gold;
  text-decoration: none;
  transition: color 0.2s ease;
}
#g-footer a:hover {
  color: #FFD700;
  /* brighter gold on hover */
  text-decoration: underline;
}
/* Footer section headings */
#g-footer h4, #g-footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
/* Headings gold, body text white in JCart container */
#container-oc h1, #container-oc h2, #container-oc h3, #container-oc h4, #container-oc h5, #container-oc h6 {
  color: gold !important;
}
#container-oc, #container-oc p, #container-oc li, #container-oc span, #container-oc div {
  color: white !important;
}
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #7B9887;
}
/* =========================================
   7) BUTTONS & CONTACT ITEMS
========================================= */
body .g-contacts.style1 .g-contacts-item.item-button > a {
  display: inline-block;
  padding: 0.5rem 2.2rem;
  border-radius: 10px;
  background: #7B9887;
  color: #ffffff !important;
  border: 0;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  transition: all 0.2s;
}
/* Top-level menu buttons hover */
.g-main-nav .g-toplevel > li > .g-menu-item-container:hover {
  background-color: #62796A !important;
  color: #ffffff !important;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #7B9887;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#g-page-surround .btn, #g-offcanvas .btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  border-radius: 10px;
  color: #ffffff;
  background: transparent;
  border: 1px solid white;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  transition: all 0.2s;
}
.button {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  border-radius: 10px;
  background: #7B9887;
  color: #ffffff;
  border: 0;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  transition: background 0.2s;
}
/* =========================================
   8) SECTION BACKGROUNDS & STYLES
========================================= */
#g-feature {
  padding: 3.5rem 0;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #ffffff;
  border: 1px solid #000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
#g-utility {
  padding: 3.5rem 0;
  background-color: #000000;
  background-repeat: repeat-x;
  background-size: auto;
  background-attachment: scroll;
  color: #ffffff;
  border: 1px solid #fff;
  box-shadow: 0 20px 16px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
#g-subfeature {
  padding: 3.5rem 0;
  background-color: #000000;
  background-image: url('../../../../images/2025/featured-hm-top/back-centnennial-2.jpg?68accd91');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #ffffff;
}
/* Buttons inside #g-subfeature */
#g-subfeature .btn:hover, #g-subfeature button:hover, #g-subfeature input[type="submit"]:hover, #g-subfeature input[type="button"]:hover {
  background-color: #62796A !important;
  /* darker than #7B9887 */
  color: #ffffff !important;
  /* keep text white */
  border-color: #62796A !important;
  /* match border to background */
}
.button:hover {
  background: #62796A;
}
#g-maintop {
  padding: 3.5rem 0;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #000;
  border: 1px solid #000;
  box-shadow: 0 20px 16px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
#g-header.uk-active {
  background-color: #000;
  color: #ffffff !important;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
#g-header.uk-active .g-main-nav .g-toplevel > li > .g-menu-item-container {
  color: #fff;
}
#g-last {
  padding: 1.5rem 0;
  background-color: #0f0f0f;
  color: #7B9887;
  border: 1px solid #000;
  box-shadow: 0 20px 16px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.g-cta-button.style1 .g-cta-inner {
  padding: 30px;
  border: 1px solid #e8e8e8;
  border-left: 2px solid #fffccc;
  background: #ECECFB;
}
/* =========================================
   9) ICONS & SLIDENAV
========================================= */
body .uk-slidenav {
  background: #ffffff;
  color: #7B9887;
  font-size: 90%;
  border-radius: 50%;
  height: 40px;
  line-height: 40px;
  width: 40px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08);
}
.fa-truck-o:before {
  content: "";
}
/* =========================================
   10) FUN IMAGE EFFECTS
========================================= */
.joggle-image {
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}
.joggle-image:hover {
  animation: joggle 0.5s ease-in-out 3;
}
@keyframes joggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#container-oc {
  border: solid 2px #7B9887 !important;
}
.body-oc .card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #000!important;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
/*# sourceMappingURL=custom_17.css.map */