/*==================================================
STORE HRPT PREMIUM CSS
PART 1 / 7
Foundation + Header
==================================================*/

/* RESET */

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

html{
scroll-behavior:smooth;
}

:root{

--gold:#FFD700;
--gold-dark:#f2b705;

--black:#0b0b0b;
--dark:#111111;
--card:#181818;

--white:#ffffff;
--gray:#bfbfbf;

--green:#25D366;
--blue:#2563eb;

--radius:16px;

}

/* BODY */

body{

font-family:Poppins,Arial,sans-serif;

background:var(--black);

color:var(--white);

overflow-x:hidden;

line-height:1.7;

}

/* CONTAINER */

.container{

width:92%;

max-width:1350px;

margin:auto;

}

/* LINKS */

a{

text-decoration:none;

transition:.3s;

}

/* IMAGES */

img{

max-width:100%;

display:block;

}

/* HEADER */

.header{

position:sticky;

top:0;

z-index:9999;

background:rgba(10,10,10,.95);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,215,0,.12);

}

.header-container{

display:flex;

justify-content:space-between;

align-items:center;

gap:25px;

padding:18px 0;

}

/* LOGO */

.logo a{

display:flex;

flex-direction:column;

font-size:32px;

font-weight:800;

color:#fff;

line-height:1;

}

.logo span{

color:var(--gold);

}

/* SEARCH */

.header-search{

flex:1;

max-width:430px;

position:relative;

}

.header-search i{

position:absolute;

left:18px;

top:50%;

transform:translateY(-50%);

color:#888;

}

.header-search input{

width:100%;

padding:14px 20px 14px 48px;

border-radius:40px;

border:1px solid #333;

background:#1a1a1a;

color:#fff;

outline:none;

font-size:15px;

transition:.3s;

}

.header-search input:focus{

border-color:var(--gold);

box-shadow:0 0 15px rgba(255,215,0,.20);

}

/* NAVBAR */

.navbar{

display:flex;

gap:25px;

}

.navbar a{

color:#fff;

font-weight:500;

}

.navbar a:hover{

color:var(--gold);

}

/* HEADER BUTTONS */

.header-buttons{

display:flex;

align-items:center;

gap:12px;

}

/* BUTTONS */

.track-btn,
.cart-btn,
.order-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:8px;

padding:12px 20px;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.track-btn,
.cart-btn{

background:#1c1c1c;

color:#fff;

border:1px solid #333;

}

.track-btn:hover,
.cart-btn:hover{

background:#272727;

transform:translateY(-3px);

}

.order-btn{

background:linear-gradient(135deg,var(--gold),var(--gold-dark));

color:#111;

}

.order-btn:hover{

transform:translateY(-3px);

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

}

/* CART */

#cartCount{

background:var(--gold);

color:#111;

padding:3px 8px;

border-radius:30px;

font-size:12px;

font-weight:bold;

}

/* MOBILE */

@media(max-width:991px){

.header-container{

flex-direction:column;

}

.navbar{

display:none;

}

.header-search{

max-width:100%;

width:100%;

}

.header-buttons{

width:100%;

flex-wrap:wrap;

justify-content:center;

}

.track-btn,
.cart-btn,
.order-btn{

width:100%;

}

}


/* =========================================
   PART 2/7
   HERO SECTION
========================================= */

.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#0d0d0d,#171717,#101010);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-left{
    animation:fadeLeft .8s ease;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,215,0,.12);
    color:#FFD700;
    border:1px solid rgba(255,215,0,.25);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-left h1{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-left p{
    color:#d1d5db;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.hero-features div{
    background:#181818;
    border:1px solid #2d2d2d;
    border-radius:12px;
    padding:14px;
    color:#fff;
    font-weight:500;
}

.hero-features i{
    color:#FFD700;
    margin-right:8px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-gold,
.btn-outline,
.btn-whatsapp{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-gold{
    background:#FFD700;
    color:#111;
}

.btn-gold:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid #FFD700;
    color:#FFD700;
}

.btn-outline:hover{
    background:#FFD700;
    color:#111;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    transform:translateY(-4px);
}

/* RIGHT */

.hero-right{
    display:flex;
    justify-content:center;
}

.hero-card{

    width:100%;
    max-width:450px;

    background:#181818;

    border:1px solid rgba(255,215,0,.15);

    border-radius:25px;

    padding:40px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.hero-icon{
    font-size:70px;
    margin-bottom:20px;
}

.hero-card h2{
    color:#FFD700;
    font-size:34px;
    margin-bottom:10px;
}

.hero-card p{
    color:#ccc;
    margin-bottom:25px;
}

.hero-card ul{
    list-style:none;
}

.hero-card ul li{
    padding:12px 0;
    border-bottom:1px solid #2d2d2d;
    color:#eee;
}

.hero-card ul li:last-child{
    border-bottom:none;
}

.hero-stats{

    display:grid;

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

    gap:12px;

    margin-top:30px;
}

.stat{

    background:#111;

    border-radius:12px;

    padding:18px;
}

.stat h3{

    color:#FFD700;

    font-size:24px;

    margin-bottom:8px;
}

.stat p{

    color:#bbb;

    font-size:14px;
}

/* HERO RESPONSIVE */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-left h1{

font-size:42px;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-buttons{

justify-content:center;

}

.hero-right{

margin-top:40px;

}

}

@media(max-width:768px){

.hero{

padding:60px 0;

}

.hero-left h1{

font-size:34px;

}

.hero-left p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.btn-gold,
.btn-outline,
.btn-whatsapp{

width:100%;

}

.hero-card{

padding:30px 20px;

}

.hero-stats{

grid-template-columns:1fr;

}

}

@keyframes fadeLeft{

from{

opacity:0;
transform:translateX(-40px);

}

to{

opacity:1;
transform:translateX(0);

}

}


/* =========================================
   PART 3/7
   CATEGORIES + TRUST SECTION
========================================= */

/* ===== SECTION ===== */

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,215,0,.12);
    border:1px solid rgba(255,215,0,.25);
    color:#FFD700;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
}

.section-subtitle{
    color:#bdbdbd;
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ==========================
   CATEGORIES
========================== */

.categories{
    padding:90px 0;
    background:#101010;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.category-card{

    background:#181818;

    border:1px solid #2b2b2b;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;
}

.category-card:hover{

    transform:translateY(-10px);

    border-color:#FFD700;

    box-shadow:0 15px 35px rgba(255,215,0,.15);

}

.category-card i{

    font-size:46px;

    color:#FFD700;

    margin-bottom:20px;
}

.category-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:12px;
}

.category-card p{

    color:#cfcfcf;

    line-height:1.8;

    font-size:15px;
}

/* ==========================
   TRUST BAR
========================== */

.trust-bar{

    padding:90px 0;

    background:#0d0d0d;
}

.trust-grid{

    display:grid;

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

    gap:25px;
}

.trust-item{

    background:#181818;

    border-radius:18px;

    border:1px solid #2d2d2d;

    padding:30px;

    text-align:center;

    transition:.35s;
}

.trust-item:hover{

    transform:translateY(-8px);

    border-color:#FFD700;
}

.trust-item i{

    font-size:50px;

    color:#FFD700;

    margin-bottom:18px;
}

.trust-item h3{

    color:#FFD700;

    font-size:30px;

    margin-bottom:10px;
}

.trust-item p{

    color:#d1d5db;

    font-size:15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.category-grid{

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

}

.trust-grid{

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

}

.section-title{

font-size:38px;

}

}

@media(max-width:768px){

.categories,
.trust-bar{

padding:70px 0;

}

.category-grid,
.trust-grid{

grid-template-columns:1fr;

}

.section-title{

font-size:30px;

}

.section-subtitle{

font-size:16px;

}

.category-card,
.trust-item{

padding:28px 20px;

}

.category-card h3{

font-size:20px;

}

.trust-item h3{

font-size:26px;

}

}


/* =========================================
   PART 4/7
   PRODUCTS SECTION
========================================= */

.products{
    padding:100px 0;
    background:#0d0d0d;
}

/* ===== Search Box ===== */

.search-box{
    position:relative;
    max-width:550px;
    margin:40px auto;
}

.search-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:16px;
}

.search-box input{
    width:100%;
    padding:16px 20px 16px 50px;
    background:#181818;
    border:1px solid #333;
    border-radius:50px;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.search-box input:focus{
    border-color:#FFD700;
    box-shadow:0 0 15px rgba(255,215,0,.25);
}

/* ===== Search Results ===== */

.search-results{
    display:none;
    position:absolute;
    width:100%;
    background:#1b1b1b;
    border:1px solid #333;
    border-radius:12px;
    margin-top:8px;
    max-height:300px;
    overflow-y:auto;
    z-index:999;
}

.search-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #2a2a2a;
    cursor:pointer;
    transition:.25s;
}

.search-item:last-child{
    border-bottom:none;
}

.search-item:hover{
    background:#252525;
}

.search-item strong{
    color:#FFD700;
}

.search-item span{
    color:#25D366;
    font-weight:700;
}

/* ===== Products Grid ===== */

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

/* ===== Product Card ===== */

.product-card{
    background:#181818;
    border:1px solid #2b2b2b;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#FFD700;
    box-shadow:0 18px 40px rgba(255,215,0,.15);
}

/* ===== Image ===== */

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.no-image{
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#222;
    color:#888;
}

.product-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#FFD700;
    color:#111;
    padding:7px 15px;
    border-radius:25px;
    font-size:13px;
    font-weight:700;
}

/* ===== Content ===== */

.product-content{
    padding:22px;
}

.product-content h3{
    color:#FFD700;
    font-size:22px;
    margin-bottom:10px;
}

.price{
    font-size:26px;
    color:#25D366;
    font-weight:700;
    margin-bottom:12px;
}

.product-content p{
    color:#cfcfcf;
    line-height:1.8;
    min-height:90px;
    margin-bottom:20px;
}

/* ===== Buttons ===== */

.product-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.buy-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    width:100%;
    padding:14px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    background:linear-gradient(135deg,#FFD700,#ffb300);
    color:#111;
    transition:.3s;
}

.buy-btn:hover{
    transform:translateY(-3px);
}

.track-btn{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    padding:14px;
    border:none;
    border-radius:40px;
    background:#222;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.track-btn:hover{
    background:#333;
}

.no-products{
    text-align:center;
    padding:80px 20px;
}

.no-products h2{
    color:#FFD700;
    margin-bottom:15px;
}

.no-products p{
    color:#bbb;
}

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

@media(max-width:1200px){

.product-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

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

}

@media(max-width:768px){

.product-grid{
grid-template-columns:1fr;
}

.product-image img{
height:220px;
}

.product-content h3{
font-size:20px;
}

.price{
font-size:22px;
}

}


/* =========================================
   PART 5/7
   ORDER + PAYMENT SECTION
========================================= */

.order-section{
    padding:100px 0;
    background:#111;
}

.order-card{
    max-width:950px;
    margin:auto;
    background:#181818;
    border:1px solid #2b2b2b;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-bottom:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:#FFD700;
    font-weight:600;
    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;
    padding:15px;
    border-radius:12px;
    border:1px solid #333;
    background:#101010;
    color:#fff;
    font-size:15px;
    outline:none;
    transition:.3s;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#FFD700;
    box-shadow:0 0 12px rgba(255,215,0,.20);

}

/* ================= Payment Card ================= */

.payment-card{

    display:none;

    margin-top:18px;

    background:#161b22;

    border:1px solid #2c3440;

    border-radius:14px;

    padding:20px;

    color:#fff;

    line-height:1.8;

}

.payment-card h3{

    color:#FFD700;

    margin-bottom:12px;

    font-size:20px;

}

.payment-card p{

    margin:8px 0;

}

.payment-card strong{

    color:#00d4ff;

}

/* ================= Secure Note ================= */

.secure-note{

    margin:25px 0;

    padding:20px;

    background:rgba(37,211,102,.10);

    border-left:5px solid #25D366;

    border-radius:12px;

    color:#fff;

    line-height:1.8;

}

/* ================= Submit Button ================= */

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#FFD700,#ffb300);

    color:#111;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(255,215,0,.30);

}

/* ================= Mobile ================= */

@media(max-width:768px){

.form-grid{

grid-template-columns:1fr;

}

.order-card{

padding:25px 18px;

}

.payment-card{

padding:15px;

}

.submit-btn{

font-size:16px;

padding:16px;

}

}


/* =========================================
   PART 6/7
   FOOTER + FLOATING BUTTONS + STATS
========================================= */

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

.hero-stats{
    display:flex;
    gap:15px;
    justify-content:space-between;
    margin-top:30px;
}

.stat{
    flex:1;
    background:#1b1b1b;
    border:1px solid #333;
    border-radius:15px;
    padding:18px;
    text-align:center;
    transition:.3s;
}

.stat:hover{
    border-color:#FFD700;
    transform:translateY(-4px);
}

.stat h3{
    color:#FFD700;
    font-size:26px;
    margin-bottom:8px;
}

.stat p{
    color:#ccc;
    font-size:14px;
}

/* ================= FOOTER ================= */

.footer{
    margin-top:80px;
    padding:60px 0 25px;
    background:#090909;
    border-top:1px solid rgba(255,215,0,.15);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-bottom:35px;
}

.footer-box h3,
.footer-box h4{
    color:#FFD700;
    margin-bottom:15px;
}

.footer-box p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

.footer-box a:hover{
    color:#FFD700;
    padding-left:6px;
}

.footer hr{
    border:none;
    height:1px;
    background:#222;
    margin:20px 0;
}

.copyright{
    text-align:center;
    color:#999;
    font-size:14px;
}

/* ================= Floating Buttons ================= */

.floating-whatsapp{

    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    z-index:999;
    transition:.3s;
    box-shadow:0 10px 25px rgba(37,211,102,.35);

}

.floating-whatsapp:hover{

    transform:scale(1.08);

}

.scroll-top{

    position:fixed;
    right:20px;
    bottom:95px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#FFD700;
    color:#111;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.3s;
    box-shadow:0 10px 25px rgba(255,215,0,.30);

}

.scroll-top:hover{

    transform:scale(1.08);

}

/* ================= Scrollbar ================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#FFD700;
    border-radius:30px;

}

/* ================= Quantity Buttons ================= */

.qty-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:32px;
    height:32px;
    background:#FFD700;
    color:#111;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    transition:.3s;

}

.qty-btn:hover{

    background:#ffbf00;

}

.qty-number{

    font-weight:bold;
    font-size:18px;
    color:#fff;
    margin:0 10px;

}

/* =========================================
   PART 7/7
   RESPONSIVE + FINAL
========================================= */

/* ============ Large Tablet ============ */

@media (max-width:1100px){

.header-container{
flex-wrap:wrap;
justify-content:center;
}

.navbar{
order:3;
width:100%;
justify-content:center;
flex-wrap:wrap;
margin-top:15px;
}

.header-buttons{
justify-content:center;
width:100%;
flex-wrap:wrap;
}

.hero-grid{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

.hero-buttons{
justify-content:center;
}

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

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

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

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

}

/* ============ Mobile ============ */

@media (max-width:768px){

.container{
width:95%;
}

.header{
position:relative;
}

.header-container{
flex-direction:column;
gap:15px;
}

.logo a{
font-size:26px;
text-align:center;
}

.header-search{
width:100%;
max-width:100%;
}

.navbar{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

.navbar a{
font-size:14px;
}

.header-buttons{
width:100%;
display:flex;
flex-direction:column;
gap:10px;
}

.track-btn,
.cart-btn,
.order-btn{
width:100%;
justify-content:center;
}

.hero{
padding:50px 0;
}

.hero h1{
font-size:32px;
line-height:1.3;
}

.hero p{
font-size:15px;
}

.hero-features{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
}

.btn-gold,
.btn-outline,
.btn-whatsapp{
width:100%;
justify-content:center;
}

.hero-card{
padding:25px;
}

.hero-card h2{
font-size:26px;
}

.hero-icon{
font-size:50px;
}

.hero-stats{
flex-direction:column;
}

.section-title{
font-size:28px;
}

.section-subtitle{
font-size:15px;
}

.search-box{
width:100%;
}

.product-grid{
grid-template-columns:1fr;
}

.product-image img{
height:auto;
}

.product-content{
padding:18px;
}

.product-content h3{
font-size:20px;
}

.price{
font-size:22px;
}

.category-grid{
grid-template-columns:1fr;
}

.order-card{
padding:20px;
}

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

.payment-card{
padding:15px;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-box a:hover{
padding-left:0;
}

.floating-whatsapp{
width:55px;
height:55px;
font-size:26px;
right:15px;
bottom:15px;
}

.scroll-top{
width:50px;
height:50px;
right:15px;
bottom:80px;
font-size:20px;
}

}

/* ============ Small Mobile ============ */

@media (max-width:480px){

.hero h1{
font-size:27px;
}

.logo a{
font-size:22px;
}

.section-title{
font-size:24px;
}

.section-badge{
font-size:12px;
}

.product-content h3{
font-size:18px;
}

.price{
font-size:20px;
}

.submit-btn{
font-size:15px;
padding:15px;
}

}

/* ============ Desktop Extra ============ */

@media (min-width:1400px){

.container{
max-width:1400px;
}

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

}

/* =========================================
END OF FILE
STORE HRPT PREMIUM CSS
VERSION 2.0
========================================= */

