/** Shopify CDN: Minification failed

Line 6:2 Unexpected "="

**/
* ============================================================
   PMD DRIVEN — Featured Collection styling (Clearance + New Arrivals)
   Paste into: Customize → Theme settings → Custom CSS
   Scoped to homepage featured-collection sections only —
   your collection/search pages are not affected.
   Class names verified against your live Empire 13 theme.
   ============================================================ */
 
/* --- section heading: Bebas, left-aligned, gold keyword --- */
.featured-collection__content .home-section--title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: #f5f1ea;
}
 
/* --- product card --- */
.featured-collection__content .productitem {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.featured-collection__content .productitem:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 161, 95, .6);
}
.featured-collection__content .productitem--info {
  padding: 14px 14px 16px;
}
 
/* --- vendor line: small gold caps --- */
.featured-collection__content .productitem--vendor {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c7a15f;
}
.featured-collection__content .productitem--vendor a { color: #c7a15f; }
 
/* --- product title --- */
.featured-collection__content .productitem--title,
.featured-collection__content .productitem--title a {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  color: #f5f1ea;
}
.featured-collection__content .productitem:hover .productitem--title a {
  color: #e2c078;
}
 
/* --- prices: sale price pops red, compare-at struck in gray --- */
.featured-collection__content .price__current {
  font-weight: 800;
  font-size: 1rem;
  color: #f5f1ea;
}
.featured-collection__content .price__current--on-sale {
  color: #ff5470;
}
.featured-collection__content .price__compare-at {
  color: #7a756c;
  font-weight: 400;
  font-size: .8rem;
  text-decoration: line-through;
}
 
/* --- sale badge: red flag, top-left --- */
.featured-collection__content .productitem__badge--sale {
  background: #c41e3a;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 4px 9px;
}
 
/* --- card action buttons (Quick shop / Add to cart): gold outline --- */
.featured-collection__content .productitem--action-trigger {
  border: 1px solid rgba(199, 161, 95, .45);
  background: transparent;
  color: #e2c078;
  border-radius: 5px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.featured-collection__content .productitem--action-trigger:hover {
  background: rgba(199, 161, 95, .12);
  color: #e2c078;
}
/* keep the primary Add-to-cart solid gold */
.featured-collection__content .productitem--action-atc.button-primary {
  background: linear-gradient(135deg, #c7a15f, #9d7c40);
  border: 0;
  color: #111;
}
.featured-collection__content .productitem--action-atc.button-primary:hover {
  filter: brightness(1.08);
  color: #111;
}
 
/* --- hide the "compare" checkbox clutter on homepage rows (optional) --- */
.featured-collection__content .productitem__compare-wrapper {
  display: none;
}
 
/* --- product image area: white tile like the mockup --- */
.featured-collection__content .productitem__image-container {
  background: #fff;
}
 
/* ============================================================
   PATCH — append to assets/pmd-custom.css (below what's there)
   Fixes vs. the design preview:
   1. Part Finder stacks vertically inside the hero card
   2. Featured-collection headings get the Bebas style
      (correct scope — the h2 sits outside __content)
   ============================================================ */

/* ---- 1. Govedia Part Finder inside the hero card ---- */
.pmd-hero__app .gv-mmy-bar{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  width:100% !important;
}
.pmd-hero__app .gv-mmy-bar .wrapper,
.pmd-hero__app .gv-mmy-bar .mmy-tab{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  gap:10px !important;
  width:100% !important;
  background:transparent !important;
  padding:0 !important;
}
.pmd-hero__app .gv-mmy-bar select{
  width:100% !important;
  min-width:0 !important;
  flex:none !important;
  background:#0c0c0c !important;
  border:1px solid #262626 !important;
  color:#f5f1ea !important;
  padding:12px 14px !important;
  border-radius:6px !important;
  font-size:.92rem !important;
}
.pmd-hero__app .gv-sel-label{ display:none !important; }
.pmd-hero__app .gv-mmy-bar button,
.pmd-hero__app .gv-mmy-bar input[type="button"],
.pmd-hero__app .gv-mmy-bar input[type="submit"]{
  width:100% !important;
  flex:none !important;
  margin:0 !important;
}

/* ---- 2. Featured-collection section headings (Clearance / New Arrivals) ---- */
.featured-collection--section .home-section--title{
  font-family:'Bebas Neue', sans-serif !important;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size:clamp(1.7rem, 2.8vw, 2.4rem);
  color:#f5f1ea;
  text-align:left;
}
