:root{
--hc-black:#0b0b0b;
--hc-gold:#d4af37;
--hc-gold-hover:#f5c542;
--hc-white:#ffffff;
}

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

body{
font-family:Arial,Helvetica,sans-serif;
background:#fff;
color:#111;
}

.hc-wrap{
max-width:1400px;
margin:auto;
padding:0 24px;
}

.hc-header{
background:#0b0b0b;
border-bottom:1px solid rgba(212,175,55,.20);
}

.hc-header .hc-wrap{
height:80px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:900;
color:#fff;
}

.logo span{
color:#d4af37;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:24px;
font-weight:700;
}

.hero{
background:#0b0b0b;
padding:120px 20px;
text-align:center;
}

.hero h1{
font-size:60px;
color:#fff;
margin-bottom:20px;
}

.hero p{
color:#d4af37;
font-size:22px;
margin-bottom:35px;
}

.hero-btns{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

.btn-gold{
background:#d4af37;
color:#000;
padding:14px 28px;
border-radius:10px;
font-weight:900;
text-decoration:none;
}

.btn-dark{
background:#111;
border:1px solid #d4af37;
color:#fff;
padding:14px 28px;
border-radius:10px;
font-weight:900;
text-decoration:none;
}

.placeholder{
padding:100px 20px;
text-align:center;
}

.placeholder h2{
margin-bottom:15px;
}

.footer{
background:#0b0b0b;
color:#fff;
padding:35px 0;
text-align:center;
border-top:1px solid rgba(212,175,55,.20);
}


/* Shared Hosting Pricing Cards */
.pricing-section{
background:#f7f7f7;
padding:110px 0 120px;
}

.section-head{
text-align:center;
max-width:760px;
margin:0 auto 70px;
}

.section-head span{
display:inline-block;
color:#d4af37;
font-weight:900;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:14px;
}

.section-head h2{
font-size:44px;
color:#0b0b0b;
margin-bottom:14px;
}

.section-head p{
color:#555;
font-size:18px;
line-height:1.7;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:34px;
align-items:stretch;
}

.price-card{
position:relative;
background:#fff;
border:1px solid rgba(11,11,11,.08);
border-radius:26px;
padding:70px 34px 36px;
min-height:430px;
box-shadow:0 14px 40px rgba(0,0,0,.06);
transition:.35s ease;
overflow:visible;
}

.price-card:hover,
.price-card.featured{
transform:translateY(-14px);
border-color:rgba(212,175,55,.75);
box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.price-badge{
position:absolute;
top:-38px;
left:50%;
transform:translateX(-50%) scale(.92);
width:132px;
height:132px;
border-radius:50%;
background:#0b0b0b;
border:3px solid #d4af37;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
opacity:0;
transition:.35s ease;
box-shadow:0 20px 45px rgba(212,175,55,.25);
}

.price-card:hover .price-badge,
.price-card.featured .price-badge{
opacity:1;
transform:translateX(-50%) scale(1);
}

.price-badge small{
color:#fff;
font-size:12px;
font-weight:800;
text-transform:uppercase;
}

.price-badge strong{
color:#d4af37;
font-size:30px;
line-height:1;
margin-top:4px;
}

.price-badge em{
color:#fff;
font-style:normal;
font-size:12px;
margin-top:4px;
}

.card-icon{
width:68px;
height:68px;
border-radius:18px;
background:#0b0b0b;
color:#d4af37;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
margin:0 auto 22px;
}

.price-card h3{
text-align:center;
font-size:26px;
color:#0b0b0b;
margin-bottom:24px;
}

.price-card ul{
list-style:none;
margin:0 0 30px;
padding:0;
}

.price-card li{
padding:11px 0;
border-bottom:1px solid rgba(0,0,0,.07);
color:#333;
font-weight:700;
line-height:1.45;
}

.order-btn{
display:block;
text-align:center;
background:#0b0b0b;
color:#fff;
text-decoration:none;
font-weight:900;
border-radius:14px;
padding:15px 18px;
border:1px solid #d4af37;
transition:.25s ease;
}

.price-card:hover .order-btn,
.price-card.featured .order-btn{
background:#d4af37;
color:#000;
}

@media(max-width:980px){
.pricing-grid{
grid-template-columns:1fr;
gap:70px;
}
.hero h1{
font-size:42px;
}
.section-head h2{
font-size:34px;
}
}

/* V2 Card Polish - featured center card + hover */
.price-card.featured{
    transform:translateY(-22px) scale(1.04);
    z-index:2;
}

.price-card:hover{
    transform:translateY(-24px) scale(1.035);
}

.price-card.featured:hover{
    transform:translateY(-28px) scale(1.06);
}

.price-card{
    background:
        radial-gradient(circle at top, rgba(212,175,55,.10), transparent 36%),
        #fff;
}

.price-card:hover .card-icon,
.price-card.featured .card-icon{
    background:#d4af37;
    color:#000;
    box-shadow:0 18px 40px rgba(212,175,55,.28);
}

.price-card:hover h3,
.price-card.featured h3{
    color:#000;
}

.price-card:hover{
    border-color:#d4af37;
}

@media(max-width:980px){
    .price-card.featured,
    .price-card:hover,
    .price-card.featured:hover{
        transform:none;
    }
}

/* VPS Section */
.vps-section{
    background:#0b0b0b;
}

.vps-section .section-head h2{
    color:#fff;
}

.vps-section .section-head p{
    color:#cfcfcf;
}

.vps-section .price-card{
    background:
        radial-gradient(circle at top, rgba(212,175,55,.13), transparent 38%),
        #fff;
}

.vps-card .card-icon{
    font-size:28px;
}

/* Reseller Section */
.reseller-section{
    background:#f7f7f7;
}

.reseller-card .card-icon{
    font-size:28px;
}

/* =======================================
   RESELLER GOLD BUSINESS SECTION
   ======================================= */

.reseller-section{
    background:
    linear-gradient(
        135deg,
        #f8f3df 0%,
        #f0e2ad 40%,
        #e5cf7d 100%
    ) !important;
}

.reseller-section .section-head span{
    color:#7a5b00;
    font-weight:900;
}

.reseller-section .section-head h2{
    color:#111 !important;
}

.reseller-section .section-head p{
    color:#333 !important;
}

.reseller-section .price-card{
    background:#ffffff !important;
    border:1px solid rgba(122,91,0,.18);
    box-shadow:
        0 10px 30px rgba(0,0,0,.06),
        0 2px 10px rgba(122,91,0,.08);
}

.reseller-section .price-card.featured{
    box-shadow:
        0 25px 70px rgba(122,91,0,.22);
}

.reseller-section .price-card:hover{
    box-shadow:
        0 30px 80px rgba(122,91,0,.25);
}


/* DOMAIN SEARCH SECTION */

.domain-section{
background:#0b0b0b;
padding:110px 20px;
text-align:center;
}

.domain-head span{
color:#d4af37;
font-weight:900;
letter-spacing:2px;
text-transform:uppercase;
}

.domain-head h2{
color:#fff;
font-size:56px;
margin:18px 0;
}

.domain-head p{
color:#d7d7d7;
max-width:760px;
margin:0 auto 40px;
font-size:20px;
line-height:1.7;
}

.domain-search-box{
max-width:900px;
margin:0 auto;
display:flex;
gap:14px;
flex-wrap:wrap;
justify-content:center;
}

.domain-search-box input{
flex:1;
min-width:300px;
padding:20px;
border-radius:14px;
border:none;
font-size:18px;
}

.domain-search-box button{
background:#d4af37;
color:#000;
border:none;
padding:20px 34px;
border-radius:14px;
font-weight:900;
cursor:pointer;
}

.domain-ext-grid{
margin-top:35px;
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

.domain-ext-grid div{
background:#111;
color:#d4af37;
padding:12px 22px;
border-radius:10px;
border:1px solid rgba(212,175,55,.35);
font-weight:800;
}

/* TRUST / INFRASTRUCTURE SECTION */

.trust-section{
    background:#ffffff;
    padding:110px 0;
}

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

.trust-card{
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.12), transparent 34%),
        #fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:24px;
    padding:34px;
    box-shadow:0 14px 45px rgba(0,0,0,.06);
    transition:.3s ease;
}

.trust-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 26px 70px rgba(0,0,0,.14);
}

.trust-card b{
    display:block;
    color:#0b0b0b;
    font-size:22px;
    margin-bottom:14px;
}

.trust-card b:before{
    content:"◆";
    color:#d4af37;
    margin-right:10px;
}

.trust-card p{
    color:#555;
    font-size:16px;
    line-height:1.7;
}

@media(max-width:980px){
    .trust-grid{
        grid-template-columns:1fr;
    }
}

/* LIVE STATS */

.stats-section{
background:#0b0b0b;
padding:110px 0;
}

.stats-head h2{
color:#fff;
}

.stats-head p{
color:#d7d7d7;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
margin-top:50px;
}

.stat-card{
background:#111;
border:1px solid rgba(212,175,55,.25);
border-radius:22px;
padding:40px 20px;
text-align:center;
transition:.3s ease;
}

.stat-card:hover{
transform:translateY(-8px);
border-color:#d4af37;
}

.stat-card strong{
display:block;
font-size:56px;
font-weight:900;
color:#d4af37;
line-height:1;
margin-bottom:14px;
}

.stat-card span{
color:#fff;
font-size:18px;
font-weight:700;
}

@media(max-width:980px){
.stats-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:640px){
.stats-grid{
grid-template-columns:1fr;
}
}


/* STATS GOLD REFRESH */

.stats-section{
background:linear-gradient(
180deg,
#f4e8b8 0%,
#ead89a 100%
) !important;
}

.stats-head h2{
color:#0b0b0b !important;
}

.stats-head p{
color:#333 !important;
}

.stat-card{
background:#ffffff !important;
border:1px solid rgba(212,175,55,.45) !important;
box-shadow:0 14px 40px rgba(0,0,0,.08);
}

.stat-card span{
color:#111 !important;
}

/* TRUST CARD PREMIUM HOVER */

.trust-card{
transition:all .35s ease;
}

.trust-card:hover{
transform:translateY(-12px);
background:linear-gradient(
135deg,
#ff7900 0%,
#d4af37 100%
);
border-color:#ff7900;
box-shadow:0 25px 70px rgba(255,121,0,.35);
}

.trust-card:hover b,
.trust-card:hover p{
color:#fff !important;
}

.trust-card:hover b:before{
color:#fff !important;
}


/* PACKAGE GREEN TICK BOXES */
.price-card li{
    position:relative;
    padding-left:30px !important;
}

.price-card li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    width:18px;
    height:18px;
    background:#16c60c;
    color:#fff;
    border-radius:3px;
    font-size:13px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* MOBILE: ALWAYS SHOW PACKAGE PRICES */
@media(max-width:768px){
    .price-badge{
        opacity:1 !important;
        position:relative !important;
        top:auto !important;
        left:auto !important;
        transform:none !important;
        margin:0 auto 18px !important;
    }

    .price-card,
    .price-card.featured,
    .price-card:hover,
    .price-card.featured:hover{
        transform:none !important;
    }

    .pricing-grid{
        gap:45px !important;
    }

    .hero h1,
    .domain-head h2,
    .section-head h2{
        font-size:34px !important;
    }
}

/* MOBILE: INFRA CARDS STATIC COLORS */
@media(max-width:768px){
    .trust-card:nth-child(1){
        background:#ffffff !important;
    }

    .trust-card:nth-child(2){
        background:#0b0b0b !important;
    }

    .trust-card:nth-child(2) b,
    .trust-card:nth-child(2) p{
        color:#fff !important;
    }

    .trust-card:nth-child(3){
        background:#d4af37 !important;
    }

    .trust-card:nth-child(4){
        background:#ff7900 !important;
    }

    .trust-card:nth-child(4) b,
    .trust-card:nth-child(4) p{
        color:#fff !important;
    }

    .trust-card:nth-child(5){
        background:#f5c542 !important;
    }

    .trust-card:nth-child(6){
        background:#b91c1c !important;
    }

    .trust-card:nth-child(6) b,
    .trust-card:nth-child(6) p{
        color:#fff !important;
    }
}

/* MOBILE TRUST CARD COLOR ORDER FIX */
@media(max-width:768px){

    .trust-card:nth-child(1){
        background:#0b0b0b !important;
    }
    .trust-card:nth-child(1) b,
    .trust-card:nth-child(1) p,
    .trust-card:nth-child(1) b:before{
        color:#fff !important;
    }

    .trust-card:nth-child(2){
        background:#ffffff !important;
    }
    .trust-card:nth-child(2) b,
    .trust-card:nth-child(2) p{
        color:#111 !important;
    }

    .trust-card:nth-child(3){
        background:#d4af37 !important;
    }
    .trust-card:nth-child(3) b,
    .trust-card:nth-child(3) p{
        color:#111 !important;
    }

    .trust-card:nth-child(4){
        background:#ff7900 !important;
    }
    .trust-card:nth-child(4) b,
    .trust-card:nth-child(4) p,
    .trust-card:nth-child(4) b:before{
        color:#fff !important;
    }

    .trust-card:nth-child(5){
        background:#16a34a !important;
    }
    .trust-card:nth-child(5) b,
    .trust-card:nth-child(5) p,
    .trust-card:nth-child(5) b:before{
        color:#fff !important;
    }

    .trust-card:nth-child(6){
        background:#b91c1c !important;
    }
    .trust-card:nth-child(6) b,
    .trust-card:nth-child(6) p,
    .trust-card:nth-child(6) b:before{
        color:#fff !important;
    }
}

/* FINAL MOBILE TRUST COLOR LOCK */
@media(max-width:768px){
    .trust-card{
        transform:none !important;
    }

    .trust-card:nth-child(1){background:#0b0b0b !important;}
    .trust-card:nth-child(2){background:#ffffff !important;}
    .trust-card:nth-child(3){background:#d4af37 !important;}
    .trust-card:nth-child(4){background:#ff7900 !important;}
    .trust-card:nth-child(5){background:#16a34a !important;}
    .trust-card:nth-child(6){background:#b91c1c !important;}

    .trust-card:nth-child(1) b,
    .trust-card:nth-child(1) p,
    .trust-card:nth-child(1) b:before,
    .trust-card:nth-child(4) b,
    .trust-card:nth-child(4) p,
    .trust-card:nth-child(4) b:before,
    .trust-card:nth-child(5) b,
    .trust-card:nth-child(5) p,
    .trust-card:nth-child(5) b:before,
    .trust-card:nth-child(6) b,
    .trust-card:nth-child(6) p,
    .trust-card:nth-child(6) b:before{
        color:#fff !important;
    }

    .trust-card:nth-child(2) b,
    .trust-card:nth-child(2) p,
    .trust-card:nth-child(3) b,
    .trust-card:nth-child(3) p{
        color:#111 !important;
    }
}

/* TESTIMONIALS SECTION */

.testimonials-section{
    background:#0b0b0b;
    padding:110px 0;
}

.testimonials-section .section-head h2{
    color:#fff;
}

.testimonials-section .section-head p{
    color:#d7d7d7;
}

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

.testimonial-card{
    background:#111;
    border:1px solid rgba(212,175,55,.25);
    border-radius:26px;
    padding:38px;
    color:#fff;
    box-shadow:0 18px 55px rgba(0,0,0,.25);
    transition:.3s ease;
}

.testimonial-card:hover,
.featured-testimonial{
    transform:translateY(-12px);
    border-color:#d4af37;
    background:
        radial-gradient(circle at top, rgba(212,175,55,.16), transparent 40%),
        #111;
}

.stars{
    color:#d4af37;
    font-size:22px;
    letter-spacing:4px;
    margin-bottom:22px;
}

.testimonial-card p{
    color:#eee;
    line-height:1.8;
    font-size:17px;
    margin-bottom:26px;
}

.testimonial-card b{
    display:block;
    color:#d4af37;
    font-size:18px;
    margin-bottom:6px;
}

.testimonial-card small{
    color:#aaa;
}

@media(max-width:980px){
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card,
    .featured-testimonial{
        transform:none !important;
    }
}

/* HOSTING COMPARISON SECTION */

.comparison-section{
    background:#ffffff;
    padding:110px 0;
}

.comparison-table-wrap{
    overflow-x:auto;
}

.comparison-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.comparison-table thead th{
    background:#0b0b0b;
    color:#fff;
    padding:22px;
    font-size:18px;
}

.comparison-table thead th:nth-child(2){
    color:#d4af37;
}

.comparison-table td{
    padding:20px;
    border-bottom:1px solid #ececec;
    font-weight:600;
}

.comparison-table tbody tr:hover{
    background:#fff9e8;
}

.comparison-table td:nth-child(2){
    color:#0a8f3c;
    font-weight:800;
}

@media(max-width:768px){

    .comparison-table{
        min-width:700px;
    }

}

/* ROSE GOLD COMPARISON SECTION */

.comparison-section{
background:linear-gradient(
180deg,
#fff8f6 0%,
#fdf0ea 45%,
#fff8f6 100%
) !important;
}

.comparison-section .section-head span{
color:#b76e79 !important;
letter-spacing:3px;
font-weight:900;
}

.comparison-section .section-head h2{
color:#111 !important;
}

.comparison-section .comparison-table{
background:#fff !important;
border:1px solid rgba(183,110,121,.20);
box-shadow:0 25px 70px rgba(183,110,121,.12);
}

.comparison-table thead th:nth-child(2){
color:#b76e79 !important;
}

.comparison-table tbody tr:hover{
background:#fff3ef !important;
}


/* COMPARISON PREMIUM SHADOW CARD */
.comparison-section .hc-wrap{
    max-width:1400px;
}

.comparison-section{
    padding:130px 24px !important;
}

.comparison-table-wrap{
    background:
        radial-gradient(circle at top, rgba(183,110,121,.14), transparent 38%),
        #ffffff;
    border:1px solid rgba(183,110,121,.22);
    border-radius:34px;
    padding:18px;
    box-shadow:
        0 35px 90px rgba(183,110,121,.18),
        0 18px 50px rgba(0,0,0,.08);
    transition:.35s ease;
}

.comparison-table-wrap:hover{
    transform:translateY(-10px);
    box-shadow:
        0 45px 110px rgba(183,110,121,.25),
        0 22px 65px rgba(0,0,0,.12);
}

.comparison-table{
    border-radius:24px !important;
    overflow:hidden;
    box-shadow:none !important;
}

.comparison-table tbody tr:nth-child(odd){
    background:#fffaf8;
}

.comparison-table tbody tr:nth-child(even){
    background:#ffffff;
}

.comparison-table tbody tr:hover{
    background:#ffece6 !important;
}

.comparison-table td:first-child{
    font-weight:900;
    color:#111;
}

.comparison-table td:nth-child(2){
    color:#0a8f3c !important;
    font-weight:900;
}

.comparison-table td:nth-child(2)::first-letter{
    color:#0a8f3c;
}

.comparison-table td:nth-child(3){
    color:#333;
    font-weight:800;
}

@media(max-width:768px){
    .comparison-section{
        padding:90px 18px !important;
    }

    .comparison-table-wrap{
        padding:10px;
        border-radius:26px;
    }

    .comparison-table-wrap:hover{
        transform:none;
    }
}

/* GLOBAL COVERAGE SECTION */

.coverage-section{
    background:linear-gradient(135deg,#0b0b0b 0%,#17120a 100%);
    padding:115px 0;
}

.coverage-section .section-head h2{
    color:#fff;
}

.coverage-section .section-head p{
    color:#d7d7d7;
}

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

.coverage-card{
    background:#111;
    border:1px solid rgba(212,175,55,.28);
    border-radius:26px;
    padding:38px 28px;
    text-align:center;
    transition:.3s ease;
    box-shadow:0 18px 55px rgba(0,0,0,.22);
}

.coverage-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    background:linear-gradient(135deg,#111 0%,#241b08 100%);
}

.coverage-card strong{
    display:block;
    color:#d4af37;
    font-size:28px;
    margin-bottom:14px;
}

.coverage-card span{
    color:#eee;
    line-height:1.7;
    font-weight:600;
}

@media(max-width:980px){
    .coverage-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:640px){
    .coverage-grid{
        grid-template-columns:1fr;
    }
}

/* FAQ SECTION */
.faq-section{
    background:linear-gradient(180deg,#ffffff 0%,#fff8ef 100%);
    padding:110px 0;
}

.faq-list{
    max-width:980px;
    margin:0 auto;
    display:grid;
    gap:18px;
}

.faq-list details{
    background:#fff;
    border:1px solid rgba(212,175,55,.28);
    border-radius:20px;
    padding:24px 28px;
    box-shadow:0 14px 40px rgba(0,0,0,.06);
}

.faq-list summary{
    cursor:pointer;
    font-size:20px;
    font-weight:900;
    color:#0b0b0b;
}

.faq-list summary::marker{
    color:#d4af37;
}

.faq-list p{
    margin-top:16px;
    color:#444;
    line-height:1.8;
    font-size:17px;
}

.faq-list details[open]{
    border-color:#d4af37;
    box-shadow:0 25px 70px rgba(212,175,55,.16);
}

/* PREMIUM FOOTER */

.premium-footer{
    background:
        radial-gradient(circle at top,
        rgba(212,175,55,.10),
        transparent 35%),
        #0b0b0b;
    padding:90px 0 35px;
    border-top:1px solid rgba(212,175,55,.15);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-brand h3{
    color:#d4af37;
    font-size:38px;
    margin-bottom:18px;
}

.footer-brand p{
    color:#d0d0d0;
    line-height:1.9;
    max-width:500px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:20px;
    font-size:20px;
}

.footer-col{
    display:flex;
    flex-direction:column;
}

.footer-col a{
    color:#cfcfcf;
    text-decoration:none;
    margin:8px 0;
    transition:.25s;
}

.footer-col a:hover{
    color:#d4af37;
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid rgba(212,175,55,.15);
    margin-top:55px;
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    color:#aaa;
}

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

    .footer-brand h3{
        font-size:32px;
    }
}

/* FOOTER POLICY LINKS */

.footer-policy-links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.footer-policy-links a{
    color:#cfcfcf;
    text-decoration:none;
    font-weight:600;
    transition:.25s ease;
}

.footer-policy-links a:hover{
    color:#d4af37;
}

@media(max-width:900px){
    .footer-bottom{
        align-items:center;
    }

    .footer-policy-links{
        flex-direction:column;
        gap:10px;
    }
}

/* STICKY HEADER + MOBILE MENU */

.hc-header{
    position:sticky;
    top:0;
    z-index:9999;
    backdrop-filter:blur(14px);
    box-shadow:0 10px 35px rgba(0,0,0,.22);
}

.header-inner{
    position:relative;
}

.logo{
    text-decoration:none;
}

.desktop-nav{
    display:flex;
    align-items:center;
}

.mobile-menu-toggle{
    display:none;
}

.hamburger-btn{
    display:none;
    width:46px;
    height:46px;
    border:1px solid rgba(212,175,55,.35);
    border-radius:12px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.hamburger-btn span{
    width:22px;
    height:2px;
    background:#d4af37;
    display:block;
}

.mobile-slide-menu{
    display:none;
}

.mobile-bottom-nav{
    display:none;
}

@media(max-width:900px){

    body{
        padding-bottom:78px;
    }

    .hc-header .hc-wrap{
        height:72px;
    }

    .desktop-nav{
        display:none;
    }

    .hamburger-btn{
        display:flex;
    }

    .logo{
        font-size:24px;
    }

    .mobile-slide-menu{
        display:none;
        background:#0b0b0b;
        border-top:1px solid rgba(212,175,55,.25);
        padding:16px 24px 22px;
        box-shadow:0 18px 45px rgba(0,0,0,.35);
    }

    .mobile-slide-menu a{
        display:block;
        color:#fff;
        text-decoration:none;
        padding:14px 0;
        border-bottom:1px solid rgba(255,255,255,.08);
        font-weight:800;
    }

    .mobile-slide-menu a:hover{
        color:#d4af37;
    }

    .mobile-menu-toggle:checked ~ .desktop-nav + .hamburger-btn + .mobile-slide-menu,
    .hc-header:has(.mobile-menu-toggle:checked) .mobile-slide-menu{
        display:block;
    }

    .mobile-bottom-nav{
        position:fixed;
        left:12px;
        right:12px;
        bottom:12px;
        z-index:99999;
        display:grid;
        grid-template-columns:repeat(5,1fr);
        background:#0b0b0b;
        border:1px solid rgba(212,175,55,.42);
        border-radius:22px;
        overflow:hidden;
        box-shadow:0 18px 55px rgba(0,0,0,.45);
    }

    .mobile-bottom-nav a,
    .mobile-bottom-nav label{
        color:#fff;
        text-decoration:none;
        text-align:center;
        padding:13px 5px;
        font-size:12px;
        font-weight:900;
        cursor:pointer;
        border-right:1px solid rgba(255,255,255,.08);
    }

    .mobile-bottom-nav a:nth-child(2),
    .mobile-bottom-nav label{
        color:#d4af37;
    }

    .mobile-bottom-nav a:hover,
    .mobile-bottom-nav label:hover{
        background:#d4af37;
        color:#000;
    }
}

/* FINAL SECTION COLOR BALANCE + MOBILE UX FIX */

/* 1) Built For Speed section should be black */
.trust-section{
    background:#0b0b0b !important;
}

.trust-section .section-head span{
    color:#d4af37 !important;
}

.trust-section .section-head h2{
    color:#ffffff !important;
}

.trust-section .section-head p{
    color:#d7d7d7 !important;
}

/* Desktop trust cards stay readable on black */
@media(min-width:769px){
    .trust-section .trust-card{
        background:#111 !important;
        border-color:rgba(212,175,55,.35) !important;
    }

    .trust-section .trust-card b{
        color:#fff !important;
    }

    .trust-section .trust-card p{
        color:#d7d7d7 !important;
    }
}

/* 2) Testimonials should be gold, not black */
.testimonials-section{
    background:linear-gradient(
        135deg,
        #f8f3df 0%,
        #f0e2ad 45%,
        #e5cf7d 100%
    ) !important;
}

.testimonials-section .section-head span{
    color:#7a5b00 !important;
}

.testimonials-section .section-head h2{
    color:#0b0b0b !important;
}

.testimonials-section .section-head p{
    color:#333 !important;
}

.testimonials-section .testimonial-card{
    background:#ffffff !important;
    color:#111 !important;
    border-color:rgba(122,91,0,.25) !important;
    box-shadow:0 24px 70px rgba(122,91,0,.18) !important;
}

.testimonials-section .testimonial-card p{
    color:#222 !important;
}

.testimonials-section .testimonial-card b{
    color:#7a5b00 !important;
}

.testimonials-section .testimonial-card small{
    color:#555 !important;
}

/* 3) Mobile compare table hint */
.comparison-table-wrap{
    position:relative;
}

@media(max-width:768px){
    .comparison-table-wrap:before{
        content:"← Swipe table left / right →";
        display:block;
        text-align:center;
        background:#d4af37;
        color:#000;
        font-weight:900;
        padding:10px 14px;
        border-radius:14px;
        margin-bottom:12px;
        box-shadow:0 12px 30px rgba(212,175,55,.24);
    }
}

/* 4) Remove white gap/box feeling above mobile bottom nav */
@media(max-width:900px){
    .premium-footer{
        padding-bottom:110px !important;
    }

    body{
        background:#0b0b0b;
    }

    .mobile-bottom-nav{
        background:#0b0b0b !important;
    }
}

/* HC Plan Detail Pages */
.hc-plan-hero{
    background:linear-gradient(135deg,#050505,#17120a 55%,#d4af37);
    color:#fff;
    padding:80px 18px 70px;
    text-align:center;
}
.hc-plan-wrap{max-width:1050px;margin:auto}
.hc-kicker{
    display:inline-block;
    color:#d4af37;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:12px;
}
.hc-plan-hero h1{
    font-size:clamp(34px,5vw,64px);
    margin:0 0 12px;
}
.hc-plan-hero p{
    max-width:760px;
    margin:auto;
    color:#f5e7b5;
    font-size:18px;
}
.hc-plan-section{
    background:#f7f3ea;
    padding:70px 18px;
}
.hc-plan-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}
.hc-plan-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.35);
    border-radius:24px;
    padding:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    position:relative;
}
.hc-plan-card.featured{
    background:#080808;
    color:#fff;
    transform:translateY(-14px);
    border-color:#d4af37;
}
.hc-plan-card h2{
    font-size:28px;
    margin:0 0 18px;
}
.hc-plan-card ul{
    list-style:none;
    padding:0;
    margin:0 0 24px;
}
.hc-plan-card li{
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}
.hc-plan-card.featured li{
    border-bottom-color:rgba(255,255,255,.12);
}
.hc-plan-card li:before{
    content:"✓";
    color:#16a34a;
    font-weight:900;
    margin-right:9px;
}
.hc-start{
    color:#8a6a16;
    font-weight:700;
}
.hc-price{
    font-size:38px;
    font-weight:900;
    margin:8px 0 22px;
    color:#d4af37;
}
.hc-price small{
    display:block;
    font-size:14px;
    color:inherit;
    opacity:.85;
}
.hc-buy{
    display:block;
    text-align:center;
    background:#d4af37;
    color:#000;
    padding:14px 18px;
    border-radius:999px;
    font-weight:900;
    text-decoration:none;
}
@media(max-width:900px){
    .hc-plan-grid{grid-template-columns:1fr}
    .hc-plan-card.featured{transform:none}
}

/* HC Plan Polish Phase */
.hc-hero-badges{
    margin:28px auto 0;
    max-width:980px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}
.hc-hero-badges span{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(212,175,55,.35);
    color:#fff8dc;
    padding:9px 14px;
    border-radius:999px;
    font-weight:800;
    font-size:14px;
}
.hc-option-label{
    display:block;
    font-size:13px;
    font-weight:900;
    color:#9b7413;
    margin:12px 0 6px;
}
.hc-plan-card.featured .hc-option-label{
    color:#d4af37;
}
.hc-config{
    width:100%;
    border:1px solid rgba(212,175,55,.55);
    background:#fff;
    color:#111;
    border-radius:12px;
    padding:12px;
    font-weight:800;
    margin-bottom:8px;
}
.hc-plan-card.featured .hc-config{
    background:#111;
    color:#fff;
    border-color:#d4af37;
}
.hc-compare-section{
    background:#090909;
    color:#fff;
    padding:70px 18px;
}
.hc-compare-wrap,
.hc-faq-wrap{
    max-width:1180px;
    margin:auto;
}
.hc-kicker.dark{
    color:#d4af37;
}
.hc-compare-wrap h2,
.hc-faq-wrap h2{
    font-size:clamp(30px,4vw,48px);
    margin:8px 0 28px;
}
.hc-table-scroll{
    overflow-x:auto;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.35);
}
.hc-compare-table{
    width:100%;
    min-width:760px;
    border-collapse:collapse;
    background:#111;
}
.hc-compare-table th{
    background:#d4af37;
    color:#000;
    padding:16px;
    text-align:left;
}
.hc-compare-table td{
    padding:15px 16px;
    border-bottom:1px solid rgba(255,255,255,.10);
}
.hc-compare-table td:not(:first-child){
    text-align:center;
    color:#d4af37;
    font-weight:900;
}
.hc-faq-section{
    background:#f7f3ea;
    padding:70px 18px;
}
.hc-faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.hc-faq-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.35);
    border-radius:20px;
    padding:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}
.hc-faq-card h3{
    margin:0 0 8px;
    font-size:20px;
}
.hc-faq-card p{
    margin:0;
    color:#555;
    line-height:1.6;
}
@media(max-width:900px){
    .hc-faq-grid{grid-template-columns:1fr}
    .hc-hero-badges{justify-content:flex-start}
}

/* HC Detail Pages - Homepage Style Price Badge */
.hc-plan-card{
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow:visible;
}
.hc-plan-card:hover{
    transform:translateY(-16px);
    box-shadow:0 28px 70px rgba(0,0,0,.18);
    border-color:#d4af37;
}
.hc-plan-card.featured:hover{
    transform:translateY(-22px) scale(1.025);
}
.hc-price-badge{
    width:136px;
    height:136px;
    border-radius:50%;
    background:#050505;
    border:4px solid #d4af37;
    color:#d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    margin:22px auto 18px;
    box-shadow:0 18px 35px rgba(0,0,0,.22);
    text-align:center;
}
.hc-price-from{
    color:#fff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.05em;
}
.hc-price-badge strong{
    font-size:34px;
    line-height:1;
    font-weight:1000;
}
.hc-price-badge small{
    color:#fff;
    font-size:12px;
    font-weight:900;
    max-width:100px;
    line-height:1.2;
}
.hc-plan-card.featured .hc-price-badge{
    background:#d4af37;
    color:#050505;
    border-color:#fff;
}
.hc-plan-card.featured .hc-price-badge .hc-price-from,
.hc-plan-card.featured .hc-price-badge small{
    color:#050505;
}
.hc-plan-card .hc-buy{
    margin-top:10px;
}
@media(max-width:900px){
    .hc-plan-card:hover,
    .hc-plan-card.featured:hover{
        transform:none;
    }
    .hc-price-badge{
        width:120px;
        height:120px;
    }
    .hc-price-badge strong{
        font-size:30px;
    }
}

/* HC FIX: homepage-style hover price behavior on detail plan pages */
.hc-plan-card .hc-price-badge{
    opacity:0;
    transform:translateY(18px) scale(.92);
    transition:opacity .25s ease, transform .25s ease;
    margin-top:18px;
}

.hc-plan-card:hover .hc-price-badge,
.hc-plan-card.featured .hc-price-badge{
    opacity:1;
    transform:translateY(0) scale(1);
}

.hc-plan-card:hover .hc-buy{
    background:#050505;
    color:#fff;
    border:1px solid #d4af37;
}

.hc-plan-card.featured .hc-buy,
.hc-plan-card.featured:hover .hc-buy{
    background:#d4af37;
    color:#000;
    border:1px solid #d4af37;
}

.hc-plan-card.featured:hover{
    box-shadow:0 30px 80px rgba(212,175,55,.28);
}

@media(max-width:900px){
    .hc-plan-card .hc-price-badge{
        opacity:1;
        transform:none;
    }
    .hc-plan-card:hover .hc-buy{
        background:#d4af37;
        color:#000;
    }
}

/* HC Native Cart */
.hc-cart-header{
    background:#050505;
    color:#fff;
    padding:22px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.hc-cart-logo{
    color:#fff;
    font-weight:1000;
    font-size:28px;
    text-decoration:none;
}
.hc-cart-logo span{color:#d4af37}
.hc-cart-back{
    color:#d4af37;
    font-weight:900;
    text-decoration:none;
}
.hc-cart-hero{
    background:linear-gradient(135deg,#050505,#17120a 55%,#d4af37);
    color:#fff;
    text-align:center;
    padding:70px 18px;
}
.hc-cart-hero span{
    color:#d4af37;
    font-weight:900;
    text-transform:uppercase;
}
.hc-cart-hero h1{
    font-size:clamp(38px,5vw,70px);
    margin:10px 0;
}
.hc-cart-wrap{
    background:#f7f3ea;
    padding:60px 18px;
    min-height:60vh;
}
.hc-cart-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 360px;
    gap:24px;
}
.hc-cart-item,
.hc-cart-summary,
.hc-empty-cart{
    background:#fff;
    border:1px solid rgba(212,175,55,.35);
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.hc-cart-item{
    padding:24px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}
.hc-cart-type{
    color:#9b7413;
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
}
.hc-cart-item h2{
    margin:6px 0;
    font-size:28px;
}
.hc-cart-item p{
    margin:0 0 10px;
    color:#555;
    font-weight:800;
}
.hc-cart-item ul{
    margin:10px 0 0;
}
.hc-cart-actions{
    min-width:170px;
    text-align:right;
}
.hc-cart-actions strong{
    display:block;
    font-size:28px;
    color:#d4af37;
}
.hc-cart-actions small{
    color:#555;
    font-weight:800;
}
.hc-cart-actions input{
    width:70px;
    padding:10px;
    margin-top:14px;
    border-radius:10px;
    border:1px solid #ddd;
}
.hc-cart-actions button{
    padding:10px 12px;
    border:0;
    border-radius:10px;
    background:#050505;
    color:#fff;
    font-weight:900;
}
.hc-cart-actions a{
    display:block;
    margin-top:12px;
    color:#b91c1c;
    font-weight:900;
    text-decoration:none;
}
.hc-cart-summary{
    padding:26px;
    position:sticky;
    top:20px;
}
.hc-summary-line,
.hc-summary-total{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #eee;
}
.hc-summary-total{
    font-size:22px;
    font-weight:1000;
}
.hc-summary-total strong{
    color:#d4af37;
}
.hc-checkout-btn,
.hc-secondary-btn,
.hc-empty-cart a{
    display:block;
    text-align:center;
    padding:15px 18px;
    border-radius:999px;
    font-weight:1000;
    text-decoration:none;
    margin-top:16px;
}
.hc-checkout-btn,
.hc-empty-cart a{
    background:#d4af37;
    color:#000;
}
.hc-secondary-btn{
    background:#050505;
    color:#fff;
}
.hc-empty-cart{
    max-width:680px;
    margin:auto;
    padding:40px;
    text-align:center;
}
.hc-cart-form{
    margin:0;
}
.hc-cart-form .hc-buy{
    width:100%;
    border:0;
    cursor:pointer;
}
@media(max-width:900px){
    .hc-cart-grid{grid-template-columns:1fr}
    .hc-cart-item{flex-direction:column}
    .hc-cart-actions{text-align:left}
}

/* HC Native Checkout */
.hc-checkout-wrap{
    background:#f7f3ea;
    padding:60px 18px;
    min-height:60vh;
}
.hc-checkout-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 380px;
    gap:24px;
}
.hc-checkout-panel,
.hc-checkout-summary{
    background:#fff;
    border:1px solid rgba(212,175,55,.35);
    border-radius:24px;
    padding:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.hc-checkout-panel h2,
.hc-checkout-summary h2{
    margin-top:0;
    font-size:30px;
}
.hc-checkout-panel label{
    display:block;
    font-weight:900;
    margin:14px 0 6px;
    color:#8a6a16;
}
.hc-checkout-panel input,
.hc-checkout-panel textarea{
    width:100%;
    border:1px solid rgba(212,175,55,.45);
    border-radius:12px;
    padding:14px;
    font-weight:700;
}
.hc-mini-item{
    border-bottom:1px solid #eee;
    padding:14px 0;
}
.hc-mini-item strong,
.hc-mini-item span,
.hc-mini-item b{
    display:block;
}
.hc-mini-item span{
    color:#555;
    margin:5px 0;
}
.hc-mini-item b{
    color:#d4af37;
    font-size:20px;
}
.hc-radio{
    display:flex;
    gap:10px;
    align-items:center;
    font-weight:900;
    margin:12px 0 18px;
}
@media(max-width:900px){
    .hc-checkout-grid{grid-template-columns:1fr}
}

/* HC Native Invoice */
.hc-invoice-wrap{
    background:#f7f3ea;
    padding:60px 18px;
}
.hc-invoice-box{
    max-width:1100px;
    margin:auto;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:28px;
    padding:34px;
    box-shadow:0 24px 70px rgba(0,0,0,.10);
}
.hc-invoice-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-bottom:2px solid #f0e2b0;
    padding-bottom:24px;
}
.hc-invoice-top h2{
    font-size:34px;
    margin:0 0 10px;
}
.hc-invoice-total{
    background:#050505;
    color:#fff;
    border:3px solid #d4af37;
    border-radius:22px;
    padding:22px;
    min-width:230px;
    text-align:center;
}
.hc-invoice-total span{
    display:block;
    color:#d4af37;
    font-weight:900;
}
.hc-invoice-total strong{
    font-size:34px;
}
.hc-invoice-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:26px 0;
}
.hc-invoice-card{
    background:#f8f5eb;
    border:1px solid rgba(212,175,55,.35);
    border-radius:20px;
    padding:22px;
}
.hc-invoice-card.gold{
    background:#111;
    color:#fff;
}
.hc-invoice-card.gold h3{
    color:#d4af37;
}
.hc-invoice-table{
    width:100%;
    border-collapse:collapse;
}
.hc-invoice-table th{
    background:#d4af37;
    color:#000;
    text-align:left;
    padding:14px;
}
.hc-invoice-table td{
    border-bottom:1px solid #eee;
    padding:14px;
}
.hc-bank-note{
    margin-top:24px;
    background:#fff8dc;
    border-left:6px solid #d4af37;
    padding:20px;
    border-radius:14px;
}
.hc-invoice-actions{
    display:flex;
    gap:14px;
    margin-top:24px;
}
.hc-invoice-actions button,
.hc-invoice-actions a{
    background:#d4af37;
    color:#000;
    border:0;
    text-decoration:none;
    padding:14px 22px;
    border-radius:999px;
    font-weight:1000;
    cursor:pointer;
}
.hc-invoice-actions a{
    background:#050505;
    color:#fff;
}
@media(max-width:800px){
    .hc-invoice-top,
    .hc-invoice-grid{
        grid-template-columns:1fr;
        display:grid;
    }
    .hc-invoice-table-wrap{
        overflow-x:auto;
    }
}
@media print{
    .hc-cart-header,
    .hc-cart-hero,
    .hc-invoice-actions{
        display:none!important;
    }
    .hc-invoice-wrap{
        padding:0;
        background:#fff;
    }
    .hc-invoice-box{
        box-shadow:none;
        border:0;
    }
}

/* HC Payment Proof Upload */
.hc-payment-proof-form,
.hc-proof-submitted{
    margin-top:24px;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:22px;
    padding:24px;
    box-shadow:0 14px 40px rgba(0,0,0,.06);
}
.hc-payment-proof-form h3,
.hc-proof-submitted h3{
    margin-top:0;
    font-size:26px;
}
.hc-proof-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}
.hc-payment-proof-form label{
    display:block;
    color:#8a6a16;
    font-weight:900;
    margin:12px 0;
}
.hc-payment-proof-form input,
.hc-payment-proof-form textarea{
    display:block;
    width:100%;
    margin-top:7px;
    border:1px solid rgba(212,175,55,.45);
    border-radius:12px;
    padding:13px;
    font-weight:700;
}
.hc-payment-proof-form button{
    margin-top:16px;
    background:#d4af37;
    color:#000;
    border:0;
    border-radius:999px;
    padding:15px 24px;
    font-weight:1000;
    cursor:pointer;
}
.hc-form-error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fecaca;
    border-radius:12px;
    padding:12px;
    font-weight:900;
    margin-bottom:12px;
}
.hc-proof-submitted{
    background:#ecfdf5;
    border-color:#16a34a;
}
.hc-success-box{
    text-align:center;
}
@media(max-width:800px){
    .hc-proof-grid{
        grid-template-columns:1fr;
    }
}

/* Premium HC Loader */
.hc-premium-loader{
    position:fixed;
    inset:0;
    z-index:999999;
    background:
      radial-gradient(circle at center, rgba(212,175,55,.22), transparent 34%),
      linear-gradient(135deg,#030303,#111 58%,#7b5b08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity .45s ease, visibility .45s ease;
}
.hc-premium-loader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}
.hc-loader-card{
    width:230px;
    height:230px;
    border-radius:34px;
    background:rgba(0,0,0,.72);
    border:1px solid rgba(212,175,55,.55);
    box-shadow:0 30px 90px rgba(0,0,0,.55), inset 0 0 40px rgba(212,175,55,.10);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}
.hc-loader-card:before{
    content:"";
    position:absolute;
    width:160%;
    height:160%;
    background:conic-gradient(transparent, rgba(212,175,55,.75), transparent 35%);
    animation:hcSpin 1.3s linear infinite;
}
.hc-loader-card:after{
    content:"";
    position:absolute;
    inset:4px;
    border-radius:30px;
    background:#050505;
}
.hc-loader-logo,
.hc-loader-title,
.hc-loader-sub,
.hc-loader-ring{
    position:relative;
    z-index:2;
}
.hc-loader-logo{
    width:86px;
    height:86px;
    border-radius:24px;
    background:linear-gradient(135deg,#d4af37,#fff1a8,#9b7413);
    color:#050505;
    font-size:36px;
    font-weight:1000;
    display:flex;
    align-items:center;
    justify-content:center;
    letter-spacing:-3px;
    box-shadow:0 18px 40px rgba(212,175,55,.35);
}
.hc-loader-ring{
    width:106px;
    height:106px;
    border-radius:50%;
    border:3px solid rgba(212,175,55,.25);
    border-top-color:#d4af37;
    position:absolute;
    top:48px;
    animation:hcSpin .9s linear infinite;
}
.hc-loader-title{
    color:#fff;
    margin-top:22px;
    font-size:20px;
    font-weight:1000;
}
.hc-loader-title::first-letter{
    color:#d4af37;
}
.hc-loader-sub{
    color:#d4af37;
    margin-top:6px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}
@keyframes hcSpin{
    to{transform:rotate(360deg)}
}
@media(max-width:700px){
    .hc-loader-card{
        width:190px;
        height:190px;
        border-radius:28px;
    }
    .hc-loader-logo{
        width:72px;
        height:72px;
        font-size:30px;
    }
    .hc-loader-ring{
        width:90px;
        height:90px;
        top:42px;
    }
}


/* HC Domain Search Results Page Repair */
.hc-domain-result-wrap{
    background:#f7f3ea;
    padding:70px 18px;
    min-height:60vh;
}
.hc-domain-result-card{
    max-width:980px;
    margin:auto;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:28px;
    padding:30px;
    box-shadow:0 24px 70px rgba(0,0,0,.10);
}
.hc-domain-box{
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:28px;
    padding:24px;
    box-shadow:0 22px 55px rgba(0,0,0,.08);
}
.hc-domain-box.compact{
    box-shadow:none;
    margin-bottom:24px;
}
.hc-domain-input-row{
    display:flex;
    gap:12px;
}
.hc-domain-input-row input{
    flex:1;
    border:2px solid #ead28a;
    border-radius:999px;
    padding:18px 22px;
    font-size:17px;
    font-weight:900;
    outline:none;
}
.hc-domain-input-row input:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.18);
}
.hc-domain-input-row button{
    border:0;
    border-radius:999px;
    background:#d4af37;
    color:#000;
    padding:18px 28px;
    font-weight:1000;
    cursor:pointer;
}
.hc-domain-alert{
    background:#fff8dc;
    border-left:7px solid #d4af37;
    border-radius:18px;
    padding:24px;
    margin-bottom:24px;
}
.hc-domain-alert.error{
    background:#fee2e2;
    border-left-color:#dc2626;
}
.hc-domain-alert h2{
    margin:0 0 8px;
    font-size:32px;
}
.hc-domain-alert p{
    margin:0;
    line-height:1.6;
}
.hc-domain-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}
.hc-domain-actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#050505;
    color:#fff;
    text-decoration:none;
    padding:13px 22px;
    border-radius:999px;
    font-weight:1000;
}
.hc-domain-actions a:first-child{
    background:#d4af37;
    color:#000;
}
.hc-domain-suggestions{
    margin-top:24px;
}
.hc-domain-suggestions h3{
    font-size:26px;
    margin:0 0 12px;
}
.hc-domain-suggestions div{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    border-bottom:1px solid #eee;
    padding:15px 0;
}
.hc-domain-suggestions span{
    font-weight:1000;
    font-size:18px;
}
.hc-domain-suggestions button{
    border:0;
    background:#050505;
    color:#d4af37;
    border-radius:999px;
    padding:10px 16px;
    font-weight:1000;
    cursor:not-allowed;
}
@media(max-width:800px){
    .hc-domain-input-row{
        flex-direction:column;
    }
    .hc-domain-suggestions div{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* HC active domain suggestion links */
.hc-domain-check-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#050505;
    color:#d4af37;
    border-radius:999px;
    padding:10px 16px;
    font-weight:1000;
    text-decoration:none;
}
.hc-domain-check-link:hover{
    background:#d4af37;
    color:#000;
}

/* HC Global Golden Cart */
.hc-global-cart{
    position:fixed;
    top:92px;
    right:24px;
    z-index:99998;
}
.hc-global-cart-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#d4af37;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:23px;
    font-weight:1000;
    box-shadow:0 16px 40px rgba(0,0,0,.28);
    border:2px solid #050505;
    position:relative;
}
.hc-global-cart-btn span{
    position:absolute;
    top:-8px;
    right:-8px;
    background:#050505;
    color:#d4af37;
    border:1px solid #d4af37;
    min-width:24px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}
.hc-global-cart-panel{
    position:absolute;
    right:0;
    top:68px;
    width:320px;
    background:#fff;
    border:1px solid rgba(212,175,55,.55);
    border-radius:22px;
    padding:18px;
    box-shadow:0 24px 70px rgba(0,0,0,.22);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:.22s ease;
}
.hc-global-cart:hover .hc-global-cart-panel{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.hc-global-cart-panel h3{
    margin:0 0 12px;
    font-size:22px;
}
.hc-global-empty{
    margin:0 0 12px;
    color:#555;
}
.hc-global-cart-item{
    border-bottom:1px solid #eee;
    padding:10px 0;
}
.hc-global-cart-item strong,
.hc-global-cart-item small{
    display:block;
}
.hc-global-cart-item small{
    color:#666;
    margin-top:3px;
}
.hc-global-cart-total{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    font-weight:1000;
}
.hc-global-cart-total b{
    color:#d4af37;
}
.hc-global-cart-link,
.hc-global-cart-checkout{
    display:block;
    text-align:center;
    padding:12px;
    border-radius:999px;
    font-weight:1000;
    text-decoration:none;
    margin-top:8px;
}
.hc-global-cart-link{
    background:#050505;
    color:#fff;
}
.hc-global-cart-checkout{
    background:#d4af37;
    color:#000;
}

/* HC Domain add-to-cart controls */
.hc-domain-add-form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.hc-domain-add-form select{
    border:1px solid rgba(212,175,55,.55);
    border-radius:999px;
    padding:12px 16px;
    font-weight:900;
}
.hc-domain-add-form button{
    border:0;
    border-radius:999px;
    background:#d4af37;
    color:#000;
    padding:12px 20px;
    font-weight:1000;
    cursor:pointer;
}
@media(max-width:700px){
    .hc-global-cart{
        top:auto;
        bottom:22px;
        right:18px;
    }
    .hc-global-cart-panel{
        top:auto;
        bottom:68px;
        width:286px;
    }
}

/* HC Admin Dashboard */
.hc-admin-body{
    margin:0;
    background:#f7f3ea;
    color:#050505;
    font-family:Arial, sans-serif;
}
.hc-admin-header{
    background:#050505;
    color:#fff;
    padding:18px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.hc-admin-header a{
    color:#fff;
    text-decoration:none;
    font-weight:1000;
}
.hc-admin-header span{
    color:#d4af37;
}
.hc-admin-header nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.hc-admin-header nav a{
    color:#d4af37;
}
.hc-admin-hero{
    background:linear-gradient(135deg,#050505,#15110a 55%,#b89120);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}
.hc-admin-hero span{
    color:#d4af37;
    font-weight:1000;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.hc-admin-hero h1{
    font-size:clamp(40px,5vw,72px);
    margin:12px 0;
}
.hc-admin-wrap{
    max-width:1180px;
    margin:50px auto;
    padding:0 18px;
}
.hc-admin-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:24px;
}
.hc-admin-stats div,
.hc-admin-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:24px;
    padding:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.hc-admin-stats b{
    display:block;
    color:#d4af37;
    font-size:38px;
}
.hc-admin-stats span{
    font-weight:900;
}
.hc-admin-table{
    width:100%;
    border-collapse:collapse;
}
.hc-admin-table th{
    background:#d4af37;
    color:#000;
    text-align:left;
    padding:13px;
}
.hc-admin-table td{
    border-bottom:1px solid #eee;
    padding:13px;
    vertical-align:top;
}
.hc-admin-table a,
.hc-admin-actions a{
    display:inline-block;
    background:#050505;
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    padding:9px 14px;
    font-weight:900;
}
.hc-admin-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}
.hc-admin-actions a:first-child{
    background:#d4af37;
    color:#000;
}
.hc-admin-grid2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.hc-admin-grid2 > div{
    background:#fff8dc;
    border-radius:18px;
    padding:18px;
}
.hc-admin-notice{
    background:#ecfdf5;
    border:1px solid #16a34a;
    color:#065f46;
    border-radius:14px;
    padding:12px;
    font-weight:900;
    margin-bottom:18px;
}
@media(max-width:850px){
    .hc-admin-header,
    .hc-admin-grid2{
        display:block;
    }
    .hc-admin-stats{
        grid-template-columns:1fr 1fr;
    }
    .hc-admin-table{
        font-size:13px;
    }
}

/* HC Blog / SEO Hosting Pages */
.hc-blog-wrap{
    background:#f7f3ea;
    padding:70px 18px;
}
.hc-blog-grid,
.hc-seo-hosting-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.hc-blog-grid{
    grid-template-columns:repeat(4,1fr);
}
.hc-blog-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:26px;
    padding:26px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.hc-blog-card span{
    color:#a27a00;
    font-weight:1000;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:12px;
}
.hc-blog-card h2{
    font-size:26px;
    margin:12px 0;
}
.hc-blog-card p{
    line-height:1.6;
    color:#444;
}
.hc-blog-card a{
    display:inline-flex;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:12px 18px;
    border-radius:999px;
    font-weight:1000;
    margin-top:12px;
}

/* HC Mobile Bottom Navigation */
.hc-mobile-bottom-nav{
    display:none;
}
@media(max-width:780px){
    body{
        padding-bottom:74px;
    }
    .hc-mobile-bottom-nav{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:99997;
        background:#050505;
        border-top:1px solid rgba(212,175,55,.45);
        display:grid;
        grid-template-columns:repeat(5,1fr);
        box-shadow:0 -18px 45px rgba(0,0,0,.35);
    }
    .hc-mobile-bottom-nav a{
        color:#d4af37;
        text-decoration:none;
        text-align:center;
        padding:14px 4px;
        font-size:12px;
        font-weight:1000;
    }
    .hc-blog-grid,
    .hc-seo-hosting-grid{
        grid-template-columns:1fr;
    }
}
@media(min-width:781px) and (max-width:1100px){
    .hc-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Priority 2 — Navigation + Mobile Footer */
.hc-main-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:24px;
    flex-wrap:wrap;
}
.hc-main-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:1000;
    font-size:15px;
    transition:.2s ease;
}
.hc-main-nav a:hover,
.hc-main-nav a.active{
    color:#d4af37;
}
.hc-menu-toggle{
    display:none;
    background:#d4af37;
    color:#050505;
    border:0;
    border-radius:999px;
    padding:10px 16px;
    font-weight:1000;
    cursor:pointer;
}
.hc-cart-header{
    gap:22px;
}
.hc-mobile-bottom-nav{
    display:none;
}
@media(max-width:900px){
    .hc-menu-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }
    .hc-main-nav{
        display:none;
        position:fixed;
        left:16px;
        right:16px;
        top:78px;
        z-index:99998;
        background:#050505;
        border:1px solid rgba(212,175,55,.45);
        border-radius:22px;
        padding:16px;
        box-shadow:0 20px 60px rgba(0,0,0,.45);
    }
    body.hc-menu-open .hc-main-nav{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
    }
    .hc-main-nav a{
        background:#111;
        color:#fff;
        border:1px solid rgba(212,175,55,.25);
        border-radius:14px;
        padding:12px;
        text-align:center;
    }
    body{
        padding-bottom:74px;
    }
    .hc-mobile-bottom-nav{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:99997;
        background:#050505;
        border-top:1px solid rgba(212,175,55,.45);
        display:grid;
        grid-template-columns:repeat(5,1fr);
        box-shadow:0 -18px 45px rgba(0,0,0,.35);
    }
    .hc-mobile-bottom-nav a{
        color:#d4af37;
        text-decoration:none;
        text-align:center;
        padding:14px 4px;
        font-size:12px;
        font-weight:1000;
    }
}

/* Priority 2 fix: menu visible on all package pages */
.hc-cart-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    padding:24px;
    background:#050505;
    border-bottom:1px solid rgba(212,175,55,.25);
}
.hc-cart-header .hc-main-nav{
    margin-left:auto;
}
.hc-cart-header .hc-main-nav a{
    color:#fff;
}
.hc-cart-header .hc-main-nav a:hover{
    color:#d4af37;
}
@media(max-width:900px){
    .hc-cart-header{
        position:sticky;
        top:0;
        z-index:99996;
    }
}

/* Priority 2 dropdown menu cleanup */
.hc-main-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:22px;
}
.hc-main-nav a,
.hc-nav-drop > button{
    color:#fff;
    background:transparent;
    border:0;
    text-decoration:none;
    font-weight:1000;
    font-size:15px;
    cursor:pointer;
}
.hc-main-nav a:hover,
.hc-nav-drop > button:hover{
    color:#d4af37;
}
.hc-nav-drop{
    position:relative;
}
.hc-nav-panel{
    display:none;
    position:absolute;
    top:100%;
    right:0;
    min-width:220px;
    background:#050505;
    border:1px solid rgba(212,175,55,.45);
    border-radius:16px;
    padding:10px;
    z-index:99999;
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}
.hc-nav-panel a{
    display:block;
    padding:12px 14px;
    border-radius:12px;
    color:#fff;
}
.hc-nav-panel a:hover{
    background:#d4af37;
    color:#050505;
}
.hc-nav-drop:hover .hc-nav-panel{
    display:block;
}
@media(max-width:900px){
    body.hc-menu-open .hc-main-nav{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }
    .hc-nav-drop > button{
        width:100%;
        background:#111;
        border:1px solid rgba(212,175,55,.25);
        border-radius:14px;
        padding:12px;
        text-align:center;
    }
    .hc-nav-panel{
        position:static;
        display:block;
        min-width:0;
        box-shadow:none;
        margin-top:8px;
    }
}

/* Priority 2 dropdown visibility fix */
.hc-nav-panel a,
.hc-nav-panel a.active{
    display:block !important;
    color:#fff !important;
    background:#050505 !important;
    padding:12px 14px !important;
    border-radius:12px !important;
    text-decoration:none !important;
    font-weight:1000 !important;
}
.hc-nav-panel a:hover,
.hc-nav-panel a.active:hover{
    background:#d4af37 !important;
    color:#050505 !important;
}
.hc-nav-drop > button{
    line-height:1;
}
.hc-nav-panel{
    overflow:hidden;
}

/* Priority 2: nav position + cart overlap fix */
.hc-header{
    position:relative;
    z-index:9990;
}
.hc-header .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.hc-header .hc-main-nav{
    position:absolute;
    right:90px;
    top:50%;
    transform:translateY(-50%);
    z-index:9991;
}
.hc-global-cart{
    right:24px !important;
    top:180px !important;
    z-index:9992 !important;
}
@media(max-width:1100px){
    .hc-header .hc-main-nav{
        right:80px;
        gap:14px;
    }
}
@media(max-width:900px){
    .hc-header .hc-main-nav{
        position:fixed;
        right:16px;
        left:16px;
        top:78px;
        transform:none;
    }
    .hc-global-cart{
        top:95px !important;
        right:18px !important;
    }
}

/* Priority 2: mobile menu hidden until Menu click */
@media(max-width:900px){
    body:not(.hc-menu-open) .hc-header .hc-main-nav,
    body:not(.hc-menu-open) .hc-cart-header .hc-main-nav{
        display:none !important;
        visibility:hidden !important;
        opacity:0 !important;
        pointer-events:none !important;
    }

    body.hc-menu-open .hc-header .hc-main-nav,
    body.hc-menu-open .hc-cart-header .hc-main-nav{
        display:grid !important;
        visibility:visible !important;
        opacity:1 !important;
        pointer-events:auto !important;
        grid-template-columns:1fr !important;
        left:16px !important;
        right:16px !important;
        top:90px !important;
        transform:none !important;
        max-height:calc(100vh - 170px);
        overflow:auto;
    }

    .hc-nav-panel{
        display:none !important;
    }

    body.hc-menu-open .hc-nav-drop:hover .hc-nav-panel,
    body.hc-menu-open .hc-nav-drop:focus-within .hc-nav-panel{
        display:block !important;
    }
}

/* Priority 2: mobile final polish */
@media(max-width:900px){
    /* hide extra written Menu button, keep hamburger only */
    .hc-header > .hc-menu-toggle,
    .hc-cart-header > .hc-menu-toggle{
        display:none !important;
    }

    /* keep hamburger visible */
    .hamburger-btn{
        display:flex !important;
    }

    /* move floating cart down near bottom nav right side */
    .hc-global-cart{
        position:fixed !important;
        top:auto !important;
        right:16px !important;
        bottom:70px !important;
        z-index:99999 !important;
    }

    .hc-global-cart-btn{
        width:62px !important;
        height:62px !important;
    }

    .hc-global-cart-panel{
        right:0 !important;
        bottom:78px !important;
        top:auto !important;
    }

    /* bottom nav spacing so cart does not cover SEO */
    .hc-mobile-bottom-nav{
        grid-template-columns:repeat(4,1fr) 74px !important;
    }
}

/* Priority 2: hamburger click + cart alignment */
@media(max-width:900px){
    #mobile-menu-toggle{
        display:none !important;
    }

    .hamburger-btn{
        cursor:pointer !important;
        position:relative !important;
        z-index:100000 !important;
    }

    body.hc-menu-open .hc-header .hc-main-nav{
        display:grid !important;
        top:92px !important;
        left:18px !important;
        right:18px !important;
        max-height:calc(100vh - 170px) !important;
        overflow:auto !important;
    }

    .hc-global-cart{
        bottom:46px !important;
        right:22px !important;
    }

    .hc-global-cart-btn{
        width:58px !important;
        height:58px !important;
    }

    .hc-global-cart-btn span{
        top:-8px !important;
        right:-7px !important;
    }

    .hc-mobile-bottom-nav{
        padding-right:82px !important;
    }
}

/* Priority 2: hamburger click + cart alignment */
@media(max-width:900px){
    #mobile-menu-toggle{
        display:none !important;
    }

    .hamburger-btn{
        cursor:pointer !important;
        position:relative !important;
        z-index:100000 !important;
    }

    body.hc-menu-open .hc-header .hc-main-nav{
        display:grid !important;
        top:92px !important;
        left:18px !important;
        right:18px !important;
        max-height:calc(100vh - 170px) !important;
        overflow:auto !important;
    }

    .hc-global-cart{
        bottom:46px !important;
        right:22px !important;
    }

    .hc-global-cart-btn{
        width:58px !important;
        height:58px !important;
    }

    .hc-global-cart-btn span{
        top:-8px !important;
        right:-7px !important;
    }

    .hc-mobile-bottom-nav{
        padding-right:82px !important;
    }
}

/* Priority 2 final mobile hamburger/cart fix */
@media(max-width:900px){
    .hc-header > .hc-menu-toggle,
    .hc-cart-header > .hc-menu-toggle{
        display:none !important;
    }

    .hamburger-btn{
        display:flex !important;
        cursor:pointer !important;
        z-index:100000 !important;
    }

    body:not(.hc-menu-open) .hc-header .hc-main-nav{
        display:none !important;
    }

    body.hc-menu-open .hc-header .hc-main-nav{
        display:grid !important;
        position:fixed !important;
        top:92px !important;
        left:16px !important;
        right:16px !important;
        transform:none !important;
        z-index:99999 !important;
    }

    .hc-global-cart{
        top:auto !important;
        bottom:28px !important;
        right:22px !important;
        z-index:100000 !important;
    }

    .hc-global-cart-btn{
        width:56px !important;
        height:56px !important;
    }

    .hc-mobile-bottom-nav{
        padding-right:88px !important;
    }
}

/* Priority 2 final: mobile bottom nav and cart alignment */
@media(max-width:900px){
    .hc-mobile-bottom-nav{
        height:64px !important;
        padding:0 92px 0 0 !important;
        display:grid !important;
        grid-template-columns:repeat(4,1fr) !important;
        align-items:center !important;
        border-top:1px solid rgba(212,175,55,.55) !important;
        box-shadow:none !important;
    }

    .hc-mobile-bottom-nav a{
        font-size:14px !important;
        padding:0 !important;
        line-height:64px !important;
        white-space:nowrap !important;
    }

    .hc-global-cart{
        bottom:54px !important;
        right:18px !important;
        z-index:100001 !important;
    }

    .hc-global-cart-btn{
        width:56px !important;
        height:56px !important;
    }

    .hc-global-cart-btn span{
        top:-8px !important;
        right:-8px !important;
    }

    body{
        padding-bottom:72px !important;
    }
}

/* Priority 2 final adjust: bigger bottom nav text + cart above line */
@media(max-width:900px){
    .hc-mobile-bottom-nav{
        height:68px !important;
        padding:0 105px 0 0 !important;
        grid-template-columns:repeat(4,1fr) !important;
        align-items:center !important;
    }

    .hc-mobile-bottom-nav a{
        font-size:16px !important;
        font-weight:1000 !important;
        line-height:68px !important;
        letter-spacing:-.3px !important;
    }

    .hc-global-cart{
        bottom:82px !important;
        right:18px !important;
    }

    .hc-global-cart-btn{
        width:54px !important;
        height:54px !important;
    }

    body{
        padding-bottom:78px !important;
    }
}

/* Priority 2: add Account to mobile bottom nav */
@media(max-width:900px){
    .hc-mobile-bottom-nav{
        grid-template-columns:repeat(5,1fr) !important;
        padding:0 105px 0 0 !important;
    }
    .hc-mobile-bottom-nav a{
        font-size:15px !important;
        line-height:68px !important;
    }
}

/* Priority 2 FINAL: mobile footer full width + cart above */
@media(max-width:900px){
    .hc-mobile-bottom-nav{
        left:0 !important;
        right:0 !important;
        bottom:0 !important;
        width:100% !important;
        height:68px !important;
        padding:0 !important;
        display:grid !important;
        grid-template-columns:repeat(5, 1fr) !important;
        align-items:center !important;
        justify-items:center !important;
        background:#050505 !important;
        border-top:1px solid rgba(212,175,55,.55) !important;
    }

    .hc-mobile-bottom-nav a{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        width:100% !important;
        height:68px !important;
        padding:0 !important;
        margin:0 !important;
        font-size:14px !important;
        line-height:1 !important;
        letter-spacing:-.4px !important;
        white-space:nowrap !important;
        text-align:center !important;
    }

    .hc-global-cart{
        position:fixed !important;
        top:auto !important;
        right:16px !important;
        bottom:84px !important;
        z-index:100001 !important;
    }

    .hc-global-cart-btn{
        width:54px !important;
        height:54px !important;
    }

    body{
        padding-bottom:78px !important;
    }
}

/* HC Client Area */
.hc-client-auth{
    min-height:100vh;
    background:linear-gradient(135deg,#050505,#15110a 55%,#d4af37);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 16px;
}
.hc-client-card{
    width:min(480px,100%);
    background:#fff;
    border:1px solid rgba(212,175,55,.55);
    border-radius:28px;
    padding:34px;
    box-shadow:0 30px 90px rgba(0,0,0,.30);
}
.hc-client-card h1{
    margin:0 0 10px;
    font-size:36px;
}
.hc-client-card label{
    display:block;
    font-weight:1000;
    margin:16px 0 7px;
    color:#8a6a16;
}
.hc-client-card input{
    width:100%;
    border:1px solid rgba(212,175,55,.5);
    border-radius:14px;
    padding:14px;
    font-weight:800;
}
.hc-client-card button,
.hc-client-card a{
    display:inline-block;
    margin-top:16px;
    background:#d4af37;
    color:#000;
    border:0;
    border-radius:999px;
    padding:13px 20px;
    font-weight:1000;
    text-decoration:none;
    cursor:pointer;
}
.hc-client-card p a{
    background:transparent;
    color:#8a6a16;
    padding:0;
}
.hc-client-success{
    background:#ecfdf5;
    color:#065f46;
    border:1px solid #16a34a;
    border-radius:14px;
    padding:14px;
    font-weight:900;
}
.hc-client-dashboard{
    background:#f7f3ea;
    padding:60px 18px;
}
.hc-client-dash-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.hc-client-dash-grid div{
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:24px;
    padding:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.hc-client-dash-grid b{
    display:block;
    color:#d4af37;
    font-size:44px;
}
.hc-client-dash-grid span{
    font-weight:1000;
}
.hc-mobile-account-link{
    display:none;
}
@media(max-width:780px){
    .hc-mobile-account-link{
        position:fixed;
        right:14px;
        bottom:84px;
        z-index:99998;
        background:#d4af37;
        color:#000;
        border:2px solid #050505;
        border-radius:999px;
        padding:11px 16px;
        text-decoration:none;
        font-weight:1000;
        box-shadow:0 14px 40px rgba(0,0,0,.28);
    }
    .hc-client-dash-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* HC Client Area */
.hc-client-auth{
    min-height:100vh;
    background:linear-gradient(135deg,#050505,#15110a 55%,#d4af37);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 16px;
}
.hc-client-card{
    width:min(480px,100%);
    background:#fff;
    border:1px solid rgba(212,175,55,.55);
    border-radius:28px;
    padding:34px;
    box-shadow:0 30px 90px rgba(0,0,0,.30);
}
.hc-client-card h1{
    margin:0 0 10px;
    font-size:36px;
}
.hc-client-card label{
    display:block;
    font-weight:1000;
    margin:16px 0 7px;
    color:#8a6a16;
}
.hc-client-card input{
    width:100%;
    border:1px solid rgba(212,175,55,.5);
    border-radius:14px;
    padding:14px;
    font-weight:800;
}
.hc-client-card button,
.hc-client-card a{
    display:inline-block;
    margin-top:16px;
    background:#d4af37;
    color:#000;
    border:0;
    border-radius:999px;
    padding:13px 20px;
    font-weight:1000;
    text-decoration:none;
    cursor:pointer;
}
.hc-client-card p a{
    background:transparent;
    color:#8a6a16;
    padding:0;
}
.hc-client-success{
    background:#ecfdf5;
    color:#065f46;
    border:1px solid #16a34a;
    border-radius:14px;
    padding:14px;
    font-weight:900;
}
.hc-client-dashboard{
    background:#f7f3ea;
    padding:60px 18px;
}
.hc-client-dash-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.hc-client-dash-grid div{
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:24px;
    padding:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.hc-client-dash-grid b{
    display:block;
    color:#d4af37;
    font-size:44px;
}
.hc-client-dash-grid span{
    font-weight:1000;
}
.hc-mobile-account-link{
    display:none;
}
@media(max-width:780px){
    .hc-mobile-account-link{
        position:fixed;
        right:14px;
        bottom:84px;
        z-index:99998;
        background:#d4af37;
        color:#000;
        border:2px solid #050505;
        border-radius:999px;
        padding:11px 16px;
        text-decoration:none;
        font-weight:1000;
        box-shadow:0 14px 40px rgba(0,0,0,.28);
    }
    .hc-client-dash-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* HC Client Area Real Data Tables */
.hc-client-section{
    max-width:1100px;
    margin:28px auto 0;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:24px;
    padding:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.hc-client-section h2{
    margin-top:0;
    font-size:28px;
}
.hc-client-table-wrap{
    overflow:auto;
}
.hc-client-table{
    width:100%;
    border-collapse:collapse;
}
.hc-client-table th{
    background:#d4af37;
    color:#000;
    text-align:left;
    padding:12px;
}
.hc-client-table td{
    border-bottom:1px solid #eee;
    padding:12px;
    vertical-align:top;
}
.hc-client-table a{
    background:#050505;
    color:#fff;
    text-decoration:none;
    padding:8px 13px;
    border-radius:999px;
    font-weight:900;
    display:inline-block;
}
.hc-form-error{
    background:#fee2e2;
    border:1px solid #dc2626;
    color:#7f1d1d;
    padding:12px;
    border-radius:14px;
    font-weight:900;
    margin:12px 0;
}

/* HostingClown Premium Status Badges */
.hc-premium-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 13px;
    border-radius:999px;
    font-weight:1000;
    font-size:13px;
    letter-spacing:.01em;
    white-space:nowrap;
    border:1px solid transparent;
}
.hc-premium-status.warn{
    background:#fff7d6;
    color:#8a6200;
    border-color:#d4af37;
}
.hc-premium-status.ok{
    background:#e8fff0;
    color:#087333;
    border-color:#16a34a;
}
.hc-premium-status.danger{
    background:#fee2e2;
    color:#991b1b;
    border-color:#dc2626;
}
.hc-premium-status.neutral{
    background:#f3f4f6;
    color:#111827;
    border-color:#d1d5db;
}

/* HostingClown Native Policy Pages */
.hc-policy-wrap{
    background:#f7f3ea;
    padding:70px 18px;
}
.hc-policy-card{
    max-width:1050px;
    margin:auto;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:28px;
    padding:38px;
    box-shadow:0 24px 70px rgba(0,0,0,.08);
    line-height:1.75;
}
.hc-policy-card h1,
.hc-policy-card h2,
.hc-policy-card h3{
    color:#050505;
}
.hc-policy-card a{
    color:#9a7400;
    font-weight:900;
}
.hc-policy-card ul,
.hc-policy-card ol{
    padding-left:24px;
}
@media(max-width:780px){
    .hc-policy-card{
        padding:24px;
    }
}

/* HostingClown Premium Blog */
.premium-blog-grid{
    align-items:stretch;
}
.premium-blog-card{
    overflow:hidden;
    padding:0;
}
.premium-blog-card img,
.hc-blog-image-fallback{
    width:100%;
    height:190px;
    object-fit:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#050505,#d4af37);
    color:#fff;
    font-size:58px;
    font-weight:1000;
}
.premium-blog-card span,
.premium-blog-card h2,
.premium-blog-card p,
.premium-blog-card a{
    margin-left:24px;
    margin-right:24px;
}
.premium-blog-card span{
    margin-top:22px;
    display:block;
}
.premium-blog-card a{
    margin-bottom:24px;
}
.hc-blog-post-image{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:22px;
    margin-bottom:24px;
}
.hc-blog-post-cta{
    margin-top:34px;
    padding:24px;
    border-radius:22px;
    background:#fff7d6;
    border:1px solid rgba(212,175,55,.55);
}
.hc-blog-post-cta a{
    display:inline-flex;
    background:#050505;
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    padding:12px 18px;
    margin:8px 8px 0 0;
    font-weight:1000;
}
.hc-blog-post-cta a:first-of-type{
    background:#d4af37;
    color:#000;
}

/* Blog image correction: prevent cropped old logo images */
.premium-blog-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    object-position:center;
    background:#050505;
}
.hc-blog-post-image{
    width:100%;
    max-height:430px;
    object-fit:cover;
    object-position:center;
    background:#050505;
}

/* HC Blog imported content color correction */
.hc-blog-post-card h1,
.hc-blog-post-card h2,
.hc-blog-post-card h3,
.hc-blog-post-card h4,
.hc-blog-post-card h5,
.hc-blog-post-card h6{
    color:#050505 !important;
}

.hc-blog-post-card h2,
.hc-blog-post-card h3{
    border-left:6px solid #d4af37;
    padding-left:14px;
}

.hc-blog-post-card strong,
.hc-blog-post-card b{
    color:#050505;
}

.hc-blog-post-card a{
    color:#9a7400 !important;
    font-weight:900;
}

.hc-blog-post-card .elementor-heading-title,
.hc-blog-post-card [style*="color"]{
    color:#050505 !important;
}

.hc-blog-post-card .elementor-heading-title{
    border-left:6px solid #d4af37;
    padding-left:14px;
}

/* HC shared inner page header */
.hc-main-header{
    background:#050505;
    color:#fff;
    min-height:78px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    border-bottom:1px solid rgba(212,175,55,.25);
}
.hc-main-logo{
    color:#fff;
    text-decoration:none;
    font-size:30px;
    font-weight:1000;
    letter-spacing:-1px;
    white-space:nowrap;
}
.hc-main-logo span{
    color:#d4af37;
}
.hc-main-nav{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.hc-main-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:900;
}
.hc-main-nav a:hover{
    color:#d4af37;
}
@media(max-width:850px){
    .hc-main-header{
        display:block;
        padding:16px 20px;
    }
    .hc-main-logo{
        display:block;
        margin-bottom:12px;
    }
    .hc-main-nav{
        gap:12px;
    }
    .hc-main-nav a{
        font-size:13px;
    }
}

/* HC shared homepage-style header for inner pages */
.hc-site-header{
    background:#050505;
    color:#fff;
    min-height:78px;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    border-bottom:1px solid rgba(212,175,55,.25);
}
.hc-site-logo{
    color:#fff;
    text-decoration:none;
    font-size:30px;
    font-weight:1000;
    letter-spacing:-1px;
    white-space:nowrap;
}
.hc-site-logo span{
    color:#d4af37;
}
.hc-site-nav{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}
.hc-site-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:1000;
}
.hc-site-nav a:hover{
    color:#d4af37;
}
.hc-nav-dropdown{
    position:relative;
}
.hc-nav-dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:210px;
    background:#050505;
    border:1px solid rgba(212,175,55,.35);
    border-radius:0 0 16px 16px;
    padding:10px;
    z-index:99999;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.hc-nav-dropdown-menu a{
    display:block;
    padding:10px 12px;
    white-space:nowrap;
}
.hc-nav-dropdown:hover .hc-nav-dropdown-menu{
    display:block;
}
@media(max-width:850px){
    .hc-site-header{
        display:block;
        padding:16px 20px;
    }
    .hc-site-logo{
        display:block;
        margin-bottom:12px;
    }
    .hc-site-nav{
        gap:12px;
    }
    .hc-site-nav a{
        font-size:13px;
    }
}

/* HC Reusable Site Footer */
.hc-site-footer{
    background:#050505;
    color:#fff;
    padding:70px 24px 24px;
    border-top:1px solid rgba(212,175,55,.25);
}
.hc-site-footer-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:34px;
}
.hc-site-footer h2{
    color:#d4af37;
    font-size:34px;
    margin:0 0 16px;
}
.hc-site-footer h2 span{
    color:#fff;
}
.hc-site-footer h3{
    color:#fff;
    font-size:20px;
    margin:0 0 18px;
}
.hc-site-footer p{
    color:#f5f1df;
    line-height:1.7;
}
.hc-site-footer a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:0 0 12px;
    font-weight:700;
}
.hc-site-footer a:hover{
    color:#d4af37;
}
.hc-site-footer-bottom{
    max-width:1200px;
    margin:34px auto 0;
    padding-top:22px;
    border-top:1px solid rgba(212,175,55,.22);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
}
.hc-site-footer-bottom nav{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.hc-site-footer-bottom a{
    margin:0;
}
@media(max-width:850px){
    .hc-site-footer{
        padding-bottom:90px;
    }
    .hc-site-footer-grid{
        grid-template-columns:1fr;
    }
    .hc-site-footer-bottom{
        display:block;
        text-align:center;
    }
    .hc-site-footer-bottom nav{
        justify-content:center;
        margin:18px 0;
    }
}

/* HC Blog Article V2 */
.hc-article-wrap{
    background:#f7f3ea;
    padding:70px 18px;
}
.hc-article-card{
    max-width:980px;
    margin:auto;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:28px;
    padding:34px;
    box-shadow:0 24px 70px rgba(0,0,0,.10);
}
.hc-article-image{
    width:100%;
    max-height:460px;
    object-fit:cover;
    border-radius:22px;
    margin-bottom:24px;
    border:1px solid rgba(212,175,55,.35);
}
.hc-article-meta{
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    border-bottom:1px solid #eee;
    padding-bottom:16px;
    margin-bottom:24px;
}
.hc-article-meta span{
    color:#9b7413;
    font-weight:1000;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.hc-article-meta a,
.hc-article-btn{
    color:#050505;
    font-weight:1000;
    text-decoration:none;
}
.hc-article-content{
    color:#222;
    font-size:18px;
    line-height:1.8;
}
.hc-article-content h1,
.hc-article-content h2,
.hc-article-content h3{
    color:#050505;
    line-height:1.25;
}
.hc-article-content a{
    color:#9b7413;
    font-weight:900;
}
.hc-article-cta{
    max-width:980px;
    margin:28px auto 0;
    background:#050505;
    color:#fff;
    border:1px solid rgba(212,175,55,.55);
    border-radius:28px;
    padding:30px;
    box-shadow:0 24px 70px rgba(0,0,0,.12);
}
.hc-article-cta h2{
    color:#d4af37;
    margin-top:0;
}
.hc-article-cta p{
    color:#f5e7b5;
    line-height:1.7;
}
.hc-article-cta div{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}
.hc-article-cta a{
    background:#d4af37;
    color:#000;
    border-radius:999px;
    padding:12px 18px;
    text-decoration:none;
    font-weight:1000;
}
.hc-article-cta a:nth-child(2){
    background:#fff;
}
.hc-article-cta a:nth-child(3){
    background:#111;
    color:#d4af37;
    border:1px solid rgba(212,175,55,.45);
}
@media(max-width:780px){
    .hc-article-card,
    .hc-article-cta{
        padding:22px;
        border-radius:22px;
    }
    .hc-article-content{
        font-size:16px;
    }
}

/* ==========================================================
   HostingClown Blog Article Headings
   Premium Gold Theme
   ========================================================== */

.hc-blog-post h1,
.hc-blog-post h2,
.hc-blog-post h3,
.hc-blog-post h4,
.hc-blog-post h5,
.hc-blog-post h6,
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6{
    color:#d4af37 !important;
}


/* ==========================================================
   HC BLOG ARTICLE EXACT HEADING COLOR FIX
   Reason: blog-post.php uses .hc-article-content, and imported
   article HTML may include inline heading styles.
   ========================================================== */

.hc-article-content h1,
.hc-article-content h2,
.hc-article-content h3,
.hc-article-content h4,
.hc-article-content h5,
.hc-article-content h6,
.hc-article-card .hc-article-content h1,
.hc-article-card .hc-article-content h2,
.hc-article-card .hc-article-content h3,
.hc-article-card .hc-article-content h4,
.hc-article-card .hc-article-content h5,
.hc-article-card .hc-article-content h6{
    color:#d4af37 !important;
}



.hc-article-content p,
.hc-article-content li,
.hc-article-content span:not([style*="color"]){
    color:#050505;
}


/* ==========================================================
   HC BLOG ARTICLE COLOR REBUILD
   Purpose:
   - Headings = HostingClown gold
   - Paragraphs, lists, body text = black
   - Links = gold
   - Imported inline orange/gold styles are neutralized in article body
   ========================================================== */

.hc-article-content,
.hc-article-content p,
.hc-article-content li,
.hc-article-content div,
.hc-article-content span,
.hc-article-content strong,
.hc-article-content b{
    color:#050505 !important;
}

.hc-article-content h1,
.hc-article-content h2,
.hc-article-content h3,
.hc-article-content h4,
.hc-article-content h5,
.hc-article-content h6,
.hc-article-content h1 *,
.hc-article-content h2 *,
.hc-article-content h3 *,
.hc-article-content h4 *,
.hc-article-content h5 *,
.hc-article-content h6 *{
    color:#d4af37 !important;
}

.hc-article-content a,
.hc-article-content a *{
    color:#9b7413 !important;
    font-weight:900;
}

.hc-article-content ul,
.hc-article-content ol{
    color:#050505 !important;
}

.hc-article-content img{
    max-width:100%;
    height:auto;
}

.hc-article-content hr{
    border:0;
    border-top:1px solid rgba(212,175,55,.35);
    margin:24px 0;
}


/* =====================================================
   HostingClown Blog Article Typography
   Audited rebuild
   ===================================================== */

.hc-article-content h1,
.hc-article-content h2,
.hc-article-content h3,
.hc-article-content h4,
.hc-article-content h5,
.hc-article-content h6,
.hc-article-content h1 span,
.hc-article-content h2 span,
.hc-article-content h3 span,
.hc-article-content h4 span,
.hc-article-content h5 span,
.hc-article-content h6 span{
    color:#d4af37 !important;
    font-weight:700;
}

.hc-article-content p,
.hc-article-content p span,
.hc-article-content li,
.hc-article-content li span,
.hc-article-content div,
.hc-article-content div span{
    color:#111111 !important;
}

.hc-article-content strong,
.hc-article-content b{
    color:#111111 !important;
    font-weight:700;
}

.hc-article-content a,
.hc-article-content a span{
    color:#9b7413 !important;
    text-decoration:none;
}

.hc-article-content a:hover{
    color:#d4af37 !important;
}


/* =====================================================
   HC FINAL BLOG ARTICLE COLOR LOCK
   Last rule wins:
   headings gold, body/list text black.
   ===================================================== */

body .hc-article-card .hc-article-content h1,
body .hc-article-card .hc-article-content h2,
body .hc-article-card .hc-article-content h3,
body .hc-article-card .hc-article-content h4,
body .hc-article-card .hc-article-content h5,
body .hc-article-card .hc-article-content h6,
body .hc-article-card .hc-article-content h1 *,
body .hc-article-card .hc-article-content h2 *,
body .hc-article-card .hc-article-content h3 *,
body .hc-article-card .hc-article-content h4 *,
body .hc-article-card .hc-article-content h5 *,
body .hc-article-card .hc-article-content h6 *{
    color:#d4af37 !important;
}

body .hc-article-card .hc-article-content p,
body .hc-article-card .hc-article-content p *,
body .hc-article-card .hc-article-content li,
body .hc-article-card .hc-article-content li *,
body .hc-article-card .hc-article-content ul,
body .hc-article-card .hc-article-content ol{
    color:#111111 !important;
}

body .hc-article-card .hc-article-content a,
body .hc-article-card .hc-article-content a *{
    color:#9b7413 !important;
}


/* HC Customer Dashboard Tables */
.hc-client-panel{
    max-width:1100px;
    margin:26px auto 0;
    background:#fff;
    border:1px solid rgba(212,175,55,.45);
    border-radius:24px;
    padding:26px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.hc-client-panel h2{
    margin-top:0;
    font-size:28px;
}
.hc-client-table{
    width:100%;
    border-collapse:collapse;
}
.hc-client-table th{
    background:#d4af37;
    color:#000;
    text-align:left;
    padding:12px;
}
.hc-client-table td{
    border-bottom:1px solid #eee;
    padding:12px;
    vertical-align:top;
}
.hc-client-table a{
    display:inline-block;
    background:#050505;
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    padding:8px 12px;
    font-weight:900;
}
@media(max-width:780px){
    .hc-client-table{
        font-size:13px;
    }
    .hc-client-panel{
        padding:18px;
    }
}

/* HC Rich Info Pages */
.hc-page-wrap{max-width:1080px;margin:70px auto;padding:0 24px}
.hc-page-card{background:#fff;border:1px solid rgba(212,175,55,.35);border-radius:26px;padding:42px;box-shadow:0 24px 70px rgba(0,0,0,.08)}
.hc-page-card h2{font-size:34px;margin:0 0 12px}
.hc-page-card p{font-size:17px;line-height:1.75}
.hc-info-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;margin-top:28px}
.hc-info-grid>div{border:1px solid rgba(212,175,55,.35);border-radius:22px;padding:24px;background:#fffdf5}
.hc-info-grid h3{margin:0 0 10px;font-size:22px}
.hc-elementor-accordion{margin-top:25px}
.hc-faq-item{border:1px solid rgba(212,175,55,.35);border-radius:18px;margin-bottom:14px;background:#fffdf5;overflow:hidden}
.hc-faq-item summary{cursor:pointer;font-size:19px;font-weight:900;padding:20px 24px;list-style:none}
.hc-faq-item summary::-webkit-details-marker{display:none}
.hc-faq-item summary:before{content:"▸";color:#d4af37;margin-right:10px}
.hc-faq-item[open] summary:before{content:"▾"}
.hc-faq-item p{padding:0 24px 22px;margin:0;color:#333}
.hc-main-btn{display:inline-block;margin-top:14px;background:#d4af37;color:#000;text-decoration:none;font-weight:900;padding:14px 22px;border-radius:999px}
@media(max-width:760px){.hc-info-grid{grid-template-columns:1fr}.hc-page-card{padding:26px}.hc-page-card h2{font-size:28px}}

/* HC Info Pages Readability Fix */
.hc-page-card,
.hc-page-card p,
.hc-info-grid p,
.hc-info-grid div,
.hc-faq-item p{
    color:#111 !important;
}

.hc-page-card h2,
.hc-info-grid h3,
.hc-faq-item summary{
    color:#000 !important;
}

.hc-cart-hero p{
    color:#fff !important;
}

.hc-page-card a{
    color:#000;
    font-weight:900;
}

.hc-contact-details{
    margin-top:30px;
}

/* HC Info Pages Gold Headings + Full Site Layout */
.hc-page-card h2,
.hc-page-card h3,
.hc-info-grid h3,
.hc-faq-item summary,
.hc-contact-details h2{
    color:#d4af37 !important;
}

.hc-page-card h2{
    letter-spacing:.02em;
}

.hc-cart-hero span{
    color:#d4af37 !important;
}

.hc-cart-hero h1{
    color:#ffffff !important;
}

.hc-page-wrap + .site-footer,
.hc-page-wrap + footer{
    margin-top:60px;
}

/* HC Info Pages Fallback Header/Footer */
.hc-info-site-header{
    position:sticky;
    top:0;
    z-index:9998;
    background:#050505;
    border-bottom:1px solid rgba(212,175,55,.22);
    padding:22px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.hc-info-site-header .logo{
    color:#fff;
    font-size:28px;
    font-weight:1000;
    text-decoration:none;
    letter-spacing:.02em;
}
.hc-info-site-header .logo span{
    color:#d4af37;
}
.hc-info-site-header nav{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}
.hc-info-site-header nav a{
    color:#fff;
    text-decoration:none;
    font-weight:900;
}
.hc-info-site-header nav a:hover{
    color:#d4af37;
}
.hc-info-site-footer{
    background:#050505;
    color:#fff;
    padding:70px 28px 28px;
    margin-top:70px;
}
.hc-info-site-footer .footer-grid{
    max-width:1180px;
    margin:0 auto 36px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:36px;
}
.hc-info-site-footer h3{
    color:#d4af37;
    font-size:34px;
    margin:0 0 14px;
}
.hc-info-site-footer h4{
    color:#fff;
    font-size:20px;
    margin:0 0 16px;
}
.hc-info-site-footer p{
    color:#eee;
    line-height:1.8;
}
.hc-info-site-footer a{
    display:block;
    color:#eee;
    text-decoration:none;
    margin:10px 0;
    font-weight:700;
}
.hc-info-site-footer a:hover{
    color:#d4af37;
}
.hc-info-site-footer .footer-bottom{
    max-width:1180px;
    margin:0 auto;
    padding-top:24px;
    border-top:1px solid rgba(212,175,55,.22);
    display:flex;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
}
.hc-info-site-footer .footer-bottom span:last-child{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.hc-info-site-footer .footer-bottom a{
    display:inline-block;
    margin:0;
}
@media(max-width:900px){
    .hc-info-site-header{
        align-items:flex-start;
        flex-direction:column;
    }
    .hc-info-site-header nav{
        gap:14px;
    }
    .hc-info-site-footer .footer-grid{
        grid-template-columns:1fr;
    }
}

/* Disabled old fallback info nav/footer after restoring real HC nav/footer */
.hc-info-site-header,
.hc-info-site-footer{
    display:none !important;
}

/* HC Policy Pages: old content, new premium appearance */
.hc-policy-content h1,
.hc-policy-content h2,
.hc-policy-content h3,
.hc-policy-content h4,
.hc-policy-content strong{
    color:#d4af37 !important;
}
.hc-policy-content{
    color:#111 !important;
}
.hc-policy-content p,
.hc-policy-content li,
.hc-policy-content div{
    color:#111 !important;
    line-height:1.8;
    font-size:16px;
}
.hc-policy-content ul,
.hc-policy-content ol{
    padding-left:24px;
}

/* HC Legal Policy Accordion - old content, new HC gold style */
.hc-policy-content h2{
    color:#d4af37 !important;
    font-size:34px;
    margin-bottom:24px;
}
.hc-policy-accordion{
    border:1px solid rgba(212,175,55,.35);
    border-radius:22px;
    overflow:hidden;
}
.hc-policy-item{
    border-bottom:1px solid rgba(212,175,55,.25);
    background:#fffdf5;
}
.hc-policy-item:last-child{
    border-bottom:0;
}
.hc-policy-item summary{
    cursor:pointer;
    padding:20px 24px;
    font-size:20px;
    font-weight:1000;
    color:#d4af37 !important;
    list-style:none;
}
.hc-policy-item summary::-webkit-details-marker{
    display:none;
}
.hc-policy-item summary:before{
    content:"+";
    margin-right:14px;
    color:#d4af37;
    font-size:26px;
    font-weight:1000;
}
.hc-policy-item[open] summary:before{
    content:"−";
}
.hc-policy-item div{
    padding:0 28px 24px 58px;
    color:#111 !important;
    line-height:1.8;
    font-size:16px;
}
.hc-policy-item p,
.hc-policy-item li,
.hc-policy-item span{
    color:#111 !important;
    line-height:1.8;
}

/* HC Real Policy Accordion */
.hc-policy-content h2{
    color:#d4af37 !important;
    font-size:36px;
    margin-bottom:26px;
}
.hc-policy-accordion{
    border:1px solid rgba(212,175,55,.35);
    border-radius:22px;
    overflow:hidden;
    background:#fff;
}
.hc-policy-item{
    border-bottom:1px solid rgba(212,175,55,.25);
    background:#fffdf5;
}
.hc-policy-item:last-child{border-bottom:0}
.hc-policy-item summary{
    cursor:pointer;
    padding:20px 24px;
    font-size:21px;
    font-weight:1000;
    color:#d4af37 !important;
    list-style:none;
}
.hc-policy-item summary::-webkit-details-marker{display:none}
.hc-policy-item summary:before{
    content:"+";
    margin-right:14px;
    color:#d4af37;
    font-size:28px;
    font-weight:1000;
}
.hc-policy-item[open] summary:before{content:"−"}
.hc-policy-item div{
    padding:8px 32px 28px 58px;
    color:#111 !important;
    line-height:1.85;
    font-size:17px;
}
.hc-policy-item p,
.hc-policy-item li,
.hc-policy-item span{
    color:#111 !important;
    line-height:1.85;
    font-size:17px;
}
.hc-policy-item ul,
.hc-policy-item ol{
    padding-left:24px;
}

/* FINAL Simple Policy Pages */
.hc-policy-simple h2,
.hc-policy-simple h3{
    color:#d4af37 !important;
}
.hc-policy-simple h2{
    font-size:38px;
    margin-bottom:28px;
}
.hc-policy-simple h3{
    font-size:24px;
    margin:28px 0 10px;
}
.hc-policy-simple p{
    color:#111 !important;
    font-size:17px;
    line-height:1.9;
    margin:0 0 16px;
}

/* FINAL: policy mobile menu/footer cleanup */
.site-footer .footer-bottom,
.site-footer .footer-bottom span{
    gap:14px;
}

.site-footer .footer-bottom span:empty,
.site-footer .footer-bottom div:empty{
    display:none !important;
}

@media(max-width:760px){
    body{
        overflow-x:hidden;
    }

    .hc-cart-hero{
        padding-top:95px !important;
        padding-bottom:70px !important;
    }

    .hc-page-wrap{
        margin-top:42px !important;
        padding-left:18px !important;
        padding-right:18px !important;
    }

    .hc-page-card{
        padding:34px 24px !important;
        border-radius:24px !important;
    }

    .hc-policy-simple h2{
        font-size:42px !important;
        line-height:1.08 !important;
    }

    .hc-policy-simple h3{
        font-size:24px !important;
        line-height:1.28 !important;
    }

    /* Policy pages should not show desktop nav as big floating block */
    .hc-cart-hero .site-header,
    .hc-cart-hero .hc-info-site-header{
        display:none !important;
    }

    /* Keep actual site header clean on mobile */
    .site-header nav{
        display:none;
    }

    .site-header{
        min-height:74px;
        padding:18px 22px !important;
    }

    .site-header .logo{
        font-size:27px !important;
        max-width:250px;
        overflow:hidden;
        white-space:nowrap;
    }

    /* bottom mobile nav remains the main mobile menu */
    .hc-mobile-bottom-nav{
        display:flex !important;
    }

    .site-footer{
        padding-bottom:105px !important;
    }
}

/* FINAL FIX: shared header on policy/legal pages mobile */
@media(max-width:760px){

    /* keep homepage-style header visible */
    .hc-header{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        position:relative !important;
        z-index:9999 !important;
        min-height:82px !important;
        padding:18px 22px !important;
        background:#050505 !important;
        border-bottom:1px solid rgba(212,175,55,.25) !important;
    }

    .hc-header .logo{
        display:block !important;
        font-size:28px !important;
        max-width:245px !important;
        overflow:hidden !important;
        white-space:nowrap !important;
        color:#fff !important;
        text-decoration:none !important;
    }

    .hc-header .logo span{
        color:#d4af37 !important;
    }

    .hc-header .hamburger-btn{
        display:flex !important;
        width:48px !important;
        height:44px !important;
        align-items:center !important;
        justify-content:center !important;
        flex-direction:column !important;
        gap:6px !important;
        border:1px solid rgba(212,175,55,.55) !important;
        border-radius:14px !important;
        background:#050505 !important;
        cursor:pointer !important;
        z-index:10001 !important;
    }

    .hc-header .hamburger-btn span{
        display:block !important;
        width:24px !important;
        height:3px !important;
        background:#d4af37 !important;
        border-radius:10px !important;
    }

    /* desktop nav must be hidden on mobile unless opened */
    .hc-header .hc-main-nav{
        display:none !important;
        position:absolute !important;
        top:86px !important;
        left:18px !important;
        right:18px !important;
        padding:26px 22px !important;
        background:#050505 !important;
        border:1px solid rgba(212,175,55,.45) !important;
        border-radius:24px !important;
        box-shadow:0 24px 55px rgba(0,0,0,.45) !important;
        grid-template-columns:1fr 1fr !important;
        gap:18px !important;
        text-align:center !important;
        z-index:10000 !important;
    }

    body.hc-menu-open .hc-header .hc-main-nav,
    .hc-header:has(#mobile-menu-toggle:checked) .hc-main-nav{
        display:grid !important;
    }

    .hc-header .hc-main-nav a,
    .hc-header .hc-main-nav button{
        color:#fff !important;
        font-size:18px !important;
        font-weight:900 !important;
        text-decoration:none !important;
        background:transparent !important;
    }

    .hc-header .hc-nav-panel{
        position:static !important;
        display:none !important;
        margin-top:10px !important;
        background:#111 !important;
        border-radius:16px !important;
        padding:12px !important;
    }

    .hc-header .hc-nav-drop:hover .hc-nav-panel{
        display:block !important;
    }

    /* reduce weird legal-page top gap */
    .hc-cart-hero{
        margin-top:0 !important;
        padding-top:70px !important;
        padding-bottom:64px !important;
    }

    .hc-page-wrap{
        margin-top:36px !important;
    }
}

/* RECOVERY: keep mobile bottom fixed menu alive */
@media(max-width:760px){
    .hc-mobile-bottom-nav{
        display:flex !important;
        position:fixed !important;
        left:0 !important;
        right:0 !important;
        bottom:0 !important;
        z-index:999999 !important;
        background:#050505 !important;
        border-top:1px solid rgba(212,175,55,.45) !important;
        justify-content:space-around !important;
        align-items:center !important;
        min-height:72px !important;
        padding:10px 8px calc(10px + env(safe-area-inset-bottom)) !important;
    }

    .hc-mobile-bottom-nav a{
        display:flex !important;
        color:#d4af37 !important;
        font-weight:1000 !important;
        font-size:14px !important;
        text-decoration:none !important;
        align-items:center !important;
        justify-content:center !important;
    }

    .hamburger-btn{
        display:flex !important;
    }

    .hamburger-btn span{
        display:block !important;
        background:#d4af37 !important;
    }

    body{
        padding-bottom:78px !important;
    }
}

/* RECOVERY: keep mobile bottom fixed menu alive */
@media(max-width:760px){
    .hc-mobile-bottom-nav{
        display:flex !important;
        position:fixed !important;
        left:0 !important;
        right:0 !important;
        bottom:0 !important;
        z-index:999999 !important;
        background:#050505 !important;
        border-top:1px solid rgba(212,175,55,.45) !important;
        justify-content:space-around !important;
        align-items:center !important;
        min-height:72px !important;
        padding:10px 8px calc(10px + env(safe-area-inset-bottom)) !important;
    }

    .hc-mobile-bottom-nav a{
        display:flex !important;
        color:#d4af37 !important;
        font-weight:1000 !important;
        font-size:14px !important;
        text-decoration:none !important;
        align-items:center !important;
        justify-content:center !important;
    }

    .hamburger-btn{
        display:flex !important;
    }

    .hamburger-btn span{
        display:block !important;
        background:#d4af37 !important;
    }

    body{
        padding-bottom:78px !important;
    }
}

/* FINAL: remove old duplicate loader, keep new HC loader */
#preloader,
.preloader,
.old-loader,
.page-loader:not(.hc-loader){
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
}
