
/* Top Bar */

/* ─── COMPLIANCE BAR ─── */
.prg-compliance-bar {
  background: var(--prg-black);
  color: var(--prg-soft-gold);
  font-size: 11px;
  font-family: var(--prg-sans);
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
}

/* Header */

.prg-header{
    background:var(--prg-ivory);
    border-bottom:1px solid var(--prg-stone);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    padding:18px 0;
}

.navbar-brand img{
    height:42px;
}

.navbar-nav{
    gap:8px;
}
.nav-link{
    color: var(--prg-text-dark);
    font-size:14px;
    font-weight:500;
    padding:10px 16px !important;
}
.nav-link:hover{
    color:var(--prg-soft-gold);
}
/* Search */

.prg-header-actions{
    align-items:center;
    gap:15px;
}

.prg-header-search{
    position:relative;
    width:280px;
}
.prg-search{
    position: relative;
}
.prg-search img {
    position: absolute;
    right: 15px;
    top: 13px;
}
.prg-search input {
    width: 100%;
    height: 48px !important;
    border-radius: 50px !important;
    border: 1px solid var(--prg-stone) !important;
    background-color: var(--prg-warm-white);
    color: var(--prg-text-dark) !important;
    padding: 0 50px 0 20px;
    outline: none;
}

/* Icons */

.prg-header-icon{
    color: var(--prg-text-dark);
    text-decoration:none;
    font-size:22px;
    position:relative;
}

.prg-header-icon:hover{
    color:var(--prg-soft-gold);
}

.prg-cart-icon span{
    position:absolute;
    top:-8px;
    right:-10px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--prg-soft-gold);
    color:#000;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.prg-mobile-actions .prg-header-search{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
    width: 90%;
}

/* Dropdown */

.dropdown-menu{
    background:#151515;
    border:1px solid var(--border);
    border-radius:4px;
    padding:10px;
}

.dropdown-item{
    color:#fff;
    border-radius:8px;
}

.dropdown-item:hover{
    background:#222;
    color:var(--prg-soft-gold);
}

/* Mobile */

.prg-mobile-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.prg-mobile-actions a,
.navbar-toggler{
    color: var(--prg-text-dark);
    font-size:32px;
    border:none;
    background:none;
    padding:0;
}

.offcanvas{
    width:320px;
    background:var(--prg-charcoal);
}

.offcanvas-header{
    border-bottom:1px solid var(--border);
    padding:20px;
}

.offcanvas-header img{
    height:38px;
}

.offcanvas-body{
    padding:20px;
}

@media (max-width:1199px){

    .navbar-nav{
        gap:0;
    }

    .nav-link{
        padding:14px 0 !important;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .dropdown-menu{
        background:var(--prg-charcoal);
        border:none;
        padding-left:15px;
    }
}

.prg-page {
  background: var(--prg-warm-white);
}

.prg-page-hero{
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 70px 0 40px 0 !important;
    position: relative;
}
.prg-page-hero::before {
    content: "";
    background: rgb(251, 250, 247);
    background: linear-gradient(90deg, rgba(251, 250, 247, 1) 50%, rgba(22, 21, 20, 0.45) 100%);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.prg-page-hero-content{
    position: relative;
}

.prg-eyebrow{
    color: var(--prg-soft-gold);
}

.prg-page-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 82px);
  margin: 14px 0 22px;
}

.prg-page-hero p {
  /*max-width: 680px;*/
  font-size: 18px;
  line-height: 1.7;
  color: var(--prg-muted);
}

/*.prg-page-hero-dark p {
  color: var(--prg-stone);
}*/

.prg-page-hero-grid,
.prg-two-column,
.prg-coa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.prg-page-hero-panel,
.prg-coa-lookup-card,
.prg-coa-explainer {
  border: 1px solid var(--prg-stone);
  background: var(--prg-warm-white);
  padding: 36px;
  position: relative;
}

.prg-page-hero-panel strong {
  display: block;
  color: var(--prg-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 12px;
}

.prg-page-section {
  padding: 88px 0;
}

.prg-page-section.prg-dark {
  background: var(--prg-charcoal);
  color: var(--prg-ivory);
}

.prg-page-section.prg-dark p {
  color: var(--prg-stone);
}

.prg-section-header-center {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 44px;
}

.prg-section-header-center h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 12px 0;
}

.prg-standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prg-standard-grid > div {
  border: 1px solid var(--prg-stone);
  background: var(--prg-warm-white);
  padding: 28px;
}

.prg-standard-grid span {
  color: var(--prg-gold);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.prg-standard-grid h3 {
  font-family: var(--prg-serif);
  font-size: 28px;
  font-weight: 500;
  margin: 12px 0;
}

.prg-standard-grid p {
  color: var(--prg-muted);
  line-height: 1.6;
}

.prg-coa-lookup-section {
  padding: 88px 0;
}

.prg-coa-lookup-card h2,
.prg-coa-explainer h3 {
  margin-top: 10px;
}

.prg-coa-point {
  border-top: 1px solid var(--prg-stone);
  padding: 18px 0;
}

.prg-coa-point strong {
  display: block;
  color: var(--prg-text);
  margin-bottom: 6px;
}

.prg-coa-point span {
  color: var(--prg-muted);
}

.prg-coa-description{
    color:var(--prg-muted);
    margin:18px 0 28px;
    line-height:1.8;
}

.prg-coa-placeholder-form{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.prg-coa-input{
    flex:1;
    min-width:280px;
    height:56px;
    border:1px solid var(--prg-stone);
    border-radius:8px;
    padding:0 18px;
    background:#fff;
    transition:.3s;
}

.prg-coa-input:focus{
    outline:none;
    border-color:var(--prg-gold);
    box-shadow:0 0 0 3px rgba(167,122,69,.15);
}

.prg-coa-btn{
    display: inline-block;
    border:1px solid var(--prg-gold);;
    background: var(--prg-gold);
    color: var(--prg-warm-white);
    text-decoration: none;
    padding: 10px 34px;
    border-radius: 0px;
    font-weight: 600;
    transition: .3s;
}

.prg-coa-btn:hover {
    background: var(--prg-soft-gold);
    color: var(--prg-warm-white);
}

.prg-coa-availability{
    margin:18px 0 0;
    color:var(--prg-muted);
    font-size:14px;
}

.prg-coa-placeholder-note{
    margin-top:30px;
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:22px;
    border:1px solid var(--prg-stone);
    border-left:4px solid var(--prg-gold);
    border-radius:10px;
    background:var(--prg-warm-white);
}

.prg-coa-placeholder-note i{
    color:var(--prg-gold);
    font-size:22px;
    margin-top:2px;
}

.prg-coa-placeholder-note strong{
    display:block;
    color:var(--prg-charcoal);
    margin-bottom:6px;
}

.prg-coa-placeholder-note p{
    margin:0;
    color:var(--prg-muted);
    line-height:1.7;
}

@media (max-width:767px){

    .prg-coa-placeholder-form{
        flex-direction:column;
    }

    .prg-coa-btn{
        width:100%;
    }

}

.prg-faq-list {
  max-width: 900px;
}

.prg-faq-item {
  border-bottom: 1px solid var(--prg-stone);
  padding: 22px 0;
}

.prg-faq-item summary {
  list-style: none;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
}

.prg-faq-item summary::-webkit-details-marker {
  display: none;
}

.prg-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--prg-gold);
  font-family: var(--prg-sans);
}

.prg-faq-item[open] summary::after {
  content: "–";
}

.prg-faq-item summary:hover {
  color: var(--prg-gold);
}

.prg-faq-item div {
  padding-top: 16px;
}

.prg-faq-item p {
  color: var(--prg-muted);
  line-height: 1.7;
  max-width: 760px;
}

/* FAQ Bottom CTA */

.prg-faq-contact-cta{
    padding: 0 0 88px;
}

.prg-faq-contact-box{
    background: var(--prg-charcoal);
    color: var(--prg-ivory);
    border-radius: 4px;
    padding: 48px 56px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.prg-faq-contact-content{
    max-width:700px;
}

.prg-faq-contact-content .prg-eyebrow{
    margin-bottom:12px;
}

.prg-faq-contact-content h2{
    color:var(--prg-ivory);
    margin-bottom:18px;
}

.prg-faq-contact-content p{
    color:rgba(255,255,255,.78);
    margin:0;
    line-height:1.8;
    max-width:620px;
}

.prg-faq-contact-action{
    flex-shrink:0;
}

.prg-faq-contact-action .prg-btn{
    display: inline-block;
    background: var(--prg-gold);
    color: #fff;
    text-decoration: none;
    padding: 12px 34px;
    border-radius: 4px;
    font-weight: 600;
    transition: .3s;
}
.prg-faq-contact-action .prg-btn:hover {
    background: var(--prg-soft-gold);
    color: var(--prg-warm-white);
}

@media (max-width:991px){

    .prg-faq-contact-box{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 30px;
    }

    .prg-faq-contact-action{
        width:100%;
    }

    .prg-faq-contact-action .prg-button{
        width:100%;
    }

}

@media (max-width: 900px) {
  .prg-page-hero-grid,
  .prg-two-column,
  .prg-coa-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 600px) {
  .prg-page-hero {
    padding: 64px 0 56px;
  }

  .prg-page-section,
  .prg-coa-lookup-section {
    padding: 56px 0;
  }

  .prg-standard-grid {
    grid-template-columns: 1fr;
  }
}

.prg-products-section{
    position: relative;
    padding: 88px 0;
}

.prg-product-card {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 !important;
    height: 100%;
    background: var(--prg-warm-white);
    border: 1px solid var(--prg-stone);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px;
    transition: all 180ms ease;
}

.prg-product-card:hover {
    border-color: var(--prg-gold);
    transform: translateY(-3px);
}

.prg-product-card-image {
    background: #dfd3c7;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    width: 100%;
    padding: 36px 0 0 0;
    margin-bottom: 1rem;
    text-decoration: none;
    position: relative;
}

.prg-product-card-image img {
    max-height: 260px;
    width: 100%;
    padding: 24px;
    object-fit: contain;
    margin: 0 !important;
}

.prg-product-card-body {
    padding: 0;
}

.prg-product-card-label {
    color: var(--prg-text-dark);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: absolute;
    top: 12px;
    left: 18px;
}

.prg-product-card-label::after {
    content: "";
    background: #A77A45;
    background: linear-gradient(90deg, rgba(167, 122, 69, 1) 30%, rgba(22, 21, 20, 0.1) 100%);
    /* background: var(--prg-muted-gold); */
    display: inline-block;
    width: 40px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.prg-product-card-title {
    font-family: var(--prg-serif) !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
}

.prg-product-card-title a {
    color: var(--prg-text);
    text-decoration: none;
}

.prg-product-card-meta {
    border-bottom: 1px solid #DDD7CC;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
    padding-bottom: 14px;
}

.prg-product-card-meta span {
    border: 1px solid #DDD7CC;
    background: #FCFBF8;
    border-radius: 2px;
    color: var(--prg-muted-gold);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding: 5px 7px;
}

.prg-product-card-price {
    color: var(--prg-text);
    font-weight: 700;
    margin: 14px 0 18px;
}

.prg-product-card-price span {
    display: inline-block;
    margin-bottom: 4px;
}

.prg-product-card-price p {
    color: var(--prg-text-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.prg-product-card-button {
    display: flex;
    text-align: center;
    background: var(--prg-charcoal);
    color: var(--prg-muted-gold);
    border: 1px solid var(--prg-charcoal);
    border-radius: 4px;
    padding: 12px 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.prg-product-card-button i {
    font-size: 18px;
    line-height: 0;
}

.prg-product-card-button:hover{
    color: var(--prg-ivory);
    transition: 0.5s all;
}

.prg-research-card {
    background: var(--prg-soft-gray);
    border: 1px solid var(--prg-stone);
    padding: 0;
    height: 100%;
    margin: 0 !important;
    transition: all 180ms ease;
}
.prg-research-card:hover {
    border-color: var(--prg-gold);
    transform: translateY(-3px);
}
.prg-research-box{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    width: 100%;
    background: var(--prg-soft-gray);
    padding: 24px;
    text-decoration: none;
}
.prg-research-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}
.prg-img-box img{
    /*max-height: 220px;*/
    width: 80%;
    margin: 0 !important;
}
.prg-research-content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prg-research-card-title {
    color: var(--prg-text-dark);
    font-family: var(--prg-serif);
    font-size: 24px;
    line-height: 1.08;
    margin: 0 0 10px;
    padding: 0;
}
.prg-arrow {
    background: var(--prg-gold);
    border-radius: 100px;
    display: inline-flex;
    height: 38px;
    width: 38px;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}
.prg-arrow i {
    color: var(--prg-text-dark);
    font-size: 24px;
    transform: rotate(-45deg);
    transition: 0.5s all;
}
.prg-shop-btn{
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    border: 1px solid var(--prg-soft-gold);
    text-decoration: none;
    color: #131110;
    transition: .3s;
    text-transform: uppercase;
}
.prg-shop-btn:hover{
    background: var(--prg-soft-gold);
    color: var(--prg-warm-white);
}

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

.prg-contact-options{
    position: relative;
    padding: 88px 0 0 0;
}

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

.prg-contact-card {
    background: var(--prg-warm-white);
    border: 1px solid var(--prg-stone);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px;
    transition: all 180ms ease;
}

.prg-contact-card:hover{
    border-color: var(--prg-gold);
    transform: translateY(-3px);
}

.prg-contact-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(167,122,69,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--prg-gold);
    font-size:24px;
    margin-bottom:25px;
}

.prg-contact-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--prg-charcoal);
}

.prg-contact-card p{
    color:var(--prg-muted);
    line-height:1.7;
    margin:0;
}

/*========================
 Form Section
=========================*/

.prg-contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:24px;
    align-items:start;
}

.prg-contact-info{
    background:var(--prg-charcoal);
    border:1px solid var(--prg-charcoal);
    border-radius:4px;
    padding:24px;
}

.prg-contact-info .prg-eyebrow{
    color: var(--prg-soft-gold);
}

.prg-contact-info h3{
    margin-bottom:25px;
    color:var(--prg-warm-white);
}

.prg-contact-info-item{
    margin-bottom:30px;
}

.prg-contact-info-item:last-child{
    margin-bottom:0;
}

.prg-contact-info-item h4{
    color:var(--prg-warm-white);
    font-size:15px;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom: 0;
}

.prg-contact-info-item p,
.prg-contact-info-item a{
    color:var(--prg-warm-white);
    text-decoration:none;
    line-height:1.8;
}

.prg-contact-social{
    display:flex;
    gap:12px;
    margin-top:35px;
}

.prg-contact-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.prg-contact-social a:hover{
    background:var(--prg-gold);
    border-color:var(--prg-gold);
    color:#fff;
    transform:translateY(-2px);
}

.prg-contact-form-box{
    background:#fff;
    border:1px solid var(--prg-stone);
    border-radius:4px;
    padding:15px;
}

.prg-contact-form-box h2{
    font-size:38px;
    margin-bottom:0px;
    color:var(--prg-charcoal);
}

.prg-contact-form-box>p{
    color:var(--prg-muted);
    margin-bottom:18px;
}

/* Contact Form 7 */

.prg-contact-form-box form{
    display:block;
}

.prg-contact-form-box input,
.prg-contact-form-box select,
.prg-contact-form-box textarea{
    width:100%;
    border:1px solid var(--prg-stone);
    font-size:15px;
    background:#fff;
    transition:.3s;
}

.prg-contact-form-box input:focus,
.prg-contact-form-box select:focus,
.prg-contact-form-box textarea:focus{
    outline:none;
    border-color:var(--prg-gold);
    box-shadow:0 0 0 3px rgba(167,122,69,.08);
}

.prg-contact-form-box textarea{
    min-height:180px;
    resize:vertical;
}

.prg-contact-form-box input[type="submit"] {
    display: flex;
    text-align: center;
    background: var(--prg-charcoal);
    color: var(--prg-muted-gold) !important;
    border: 1px solid var(--prg-charcoal) !important;
    border-radius: 4px !important;
    padding: 12px 36px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 12px !important;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.5s all;
    width: auto;
}

.prg-contact-form-box input[type="submit"]:hover{
    background: var(--prg-gold);
    border: 1px solid var(--prg-gold) !important;
    color: var(--prg-warm-white) !important;
}

/*=========================
 Compliance
==========================*/

.prg-contact-compliance{
    position: relative;
    padding: 88px 0;
}

.prg-compliance-box {
    background: var(--prg-soft-gold);
    color: var(--prg-text-dark);
    padding: 24px;
    border-radius: 4px;
    position: relative;
}

.prg-compliance-box h4{
    color: var(--prg-text-dark);
    margin-bottom:15px;
    font-size:22px;
}

.prg-compliance-box p{
    margin:0;
    color: var(--prg-text-dark);
    line-height:1.8;
}

/*=========================
 Responsive
==========================*/

@media(max-width:991px){

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

    .prg-contact-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .prg-contact-hero h1{
        font-size:42px;
    }

    .prg-contact-form-box{
        padding:35px;
    }

}

@media(max-width:767px){

    .prg-contact-hero h1{
        font-size:34px;
    }

    .prg-contact-form-box h2{
        font-size:30px;
    }

    .prg-contact-info,
    .prg-contact-form-box,
    .prg-contact-note{
        padding:28px;
    }

}

/* ─── NEWSLETTER ─── */
.prg-newsletter-band {
  background: var(--prg-charcoal);
  padding: 70px 0 !important;
  position:relative;
}
.prg-newsletter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.prg-newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}
.prg-newsletter-content .prg-icon-box {
    border: 1px solid var(--prg-soft-gold);
    border-radius: 100%;
    display: flex;
    width: 72px;
    height: 72px;
    justify-content: center;
    align-items: center;
    line-height: 0;
}
.prg-newsletter-content .prg-icon-box i {
    color: var(--prg-soft-gold);
    font-size: 36px;
}
.prg-newsletter-band h3 {
  font-family: var(--prg-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.prg-newsletter-band p {
  font-size: 14px;
  color:var(--prg-warm-white);
}
.prg-newsletter-form {
    flex: 0 0 40%;
    display: flex;
}
.prg-newsletter-input {
    flex: 1;
    background: var(--prg-warm-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 13px 16px;
    font-size: 13px;
    color: var(--prg-text-dark);
    font-family: var(--prg-sans);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.prg-newsletter-input::placeholder { color: var(--prg-text-dark); }
.prg-newsletter-input:focus { border-color: var(--prg-muted-gold); }
.prg-newsletter-btn {
  background: var(--prg-muted-gold);
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 13px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.prg-newsletter-btn:hover { background: #8f6535; }
.tnp-subscription form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.tnp-subscription .tnp-field-email label {
    display: none;
}
.tnp-subscription .tnp-field-email{
    width: 100%;
}
.tnp-subscription .tnp-field input[type="submit"] {
    position: inherit;
    display: block;
    text-align: center;
    background: var(--prg-gold);
    color: var(--prg-ivory);
    border: 1px solid var(--prg-charcoal);
    padding: 13px 26px !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 11px !important;
    font-weight: 700;
}


/* ─── FOOTER ─── */
.prg-footer {
  background: var(--prg-ivory);
  padding: 64px 24px 0;
  border-top: 1px solid var(--prg-stone);
}
.prg-footer-inner {
    position: relative;
    padding-bottom: 40px;
}
.prg-social-icons { display: flex; gap: 10px; }
.prg-social-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--prg-stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.prg-social-icon:hover { border-color: var(--muted-gold); color: var(--muted-gold); }
.prg-footer-col h6 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prg-text-dark);
  margin-bottom: 16px;
}
.prg-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prg-footer-col ul li { margin-bottom: 9px; }
.prg-footer-col ul li a {
  font-size: 14px;
  color: var(--prg-text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.prg-footer-col ul li a:hover { color: var(--muted-gold); }
.prg-footer-compliance h6 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prg-soft-gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.prg-footer-compliance p {
  font-size: 14px;
  color: var(--prg-text-dark);
  line-height: 1.65;
  margin: 0;
}
.prg-footer-bottom {
  border-top: 1px solid var(--prg-stone);
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.prg-footer-bottom-wrap {
  border-top: 1px solid var(--prg-stone);
}
.prg-footer-bottom p {
  font-size: 14px;
  color: var(--prg-text-dark);
  margin: 0;
}
.prg-footer-bottom-links {
  display: flex;
  gap: 18px;
}
.prg-footer-bottom-links a {
  font-size: 14px;
  color: var(--prg-text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.prg-footer-bottom-links a:hover { color: var(--muted-gold); }


#prg-age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999999
}

.prg-age-popup-content {
    background: var(--prg-ivory);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    max-width: 760px;
    width: 100%
}

.prg-age-popup-content h2 {
    color: var(--charcoal);
    font-family: var(--prg-serif);
    font-weight: 400;
    font-size: 38px;
    line-height: 52px;
    margin-bottom: 30px;
    text-transform: capitalize
}

#prg-popup-step-login .woocommerce h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 18px
}

.prg-age-popup-content p {
    color: var(--prg-charcoal);
    font-family: var(--prg-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6
}

#prg-popup-step-forgot form p label {
    display: block;
    margin-bottom: 5px
}

#prg-popup-step-forgot form input {
    width: 100%
}

.prg-popup-step form button.button {
    background: var(--prg-gold);
    color: var(--prg-ivory);
    border: 0;
    display: inline-flex;
    font-family: var(--prg-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
    padding: 14px 32px;
    margin-top: 10px;
    text-decoration: none;
    transition: .5s all
}

.prg-popup-step form button.button:hover {
    background: var(--prg-gold);
    color: var(--prg-ivory);
    border: 1px solid var(--prg-gold);
    transition: .5s all
}

p.prg-back-to-login-wrap a {
    display: none;
    color: var(--prg-gold);
    margin-left: 15px
}

.prg-age-popup-content .woocommerce-error {
    background: var(--prg-warm-white) !important;
    margin: 0;
}

.prg-acknowledge-list {
    list-style: none;
    padding: 0
}

.prg-acknowledge-list li {
    color: var(--prg-charcoal);
    font-family: var(--prg-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px
}

.prg-acknowledge-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--prg-charcoal);
    font-weight: bold
}

.prg-popup-buttons {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px
}

#prg-agree-age {
    background: var(--prg-gold);
    color: var(--prg-ivory);
    border: none;
    display: inline-block;
    font-family: var(--prg-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
    padding: 14px 32px;
    margin-top: 10px;
    text-decoration: none;
    transition: .5s all
}

#prg-agree-age:hover {
    color: var(--prg-ivory);
    background: var(--prg-charcoal);
    border: 1px solid var(--prg-charcoal);
    transition: .5s all
}

#prg-exit-age {
    color: var(--prg-gold);
    background: transparent;
    border: 1px solid var(--prg-gold);
    display: inline-block;
    font-family: var(--prg-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
    padding: 14px 32px;
    margin-top: 10px;
    text-decoration: none;
    transition: .5s all
}

#prg-exit-age:hover {
    color: var(--prg-ivory);
    background: var(--prg-charcoal);
    border: 1px solid var(--prg-charcoal);
    transition: .5s all
}
.prg-age-popup-content input[type="checkbox"] {
    height: 20px !important;
    width: auto;
    position: relative;
    top: 4px;
}
.prg-age-popup-content .woocommerce-error li {
    color: var(--wc-red);
    gap: 24px;
    padding: 24px;
}