body{
margin:0;
font-family:'Stylish', "Roboto Slab", serif;
background:#000000;
color:white;
text-align:center;
}

.temp{
position: relative;
width: 100%;
}


/* HEADER */

.top-header{
position:relative;
height:450px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
margin-top:90px;
z-index:1;
}

/* VIDEO BACKGROUND */

#header-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* DARK OVERLAY */

.top-header::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:-1;
}

/* HEADER TEXT */

.temp{
position:relative;
z-index:2;
}

.NPN{
font-size:80px;
color:#f4b400;
margin:0;
}

.NPN-about{
font-size:20px;
color:white;
margin-bottom:10px;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */

.top-header::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:-1;
}

/* ------- image ------ */
.top-header{
text-align:center;
background:#111;
color:white;
}

.top-header h1{
font-size:80px;
color:#f4b400;
}

.top-header p{
font-size:18px;
color:#ddd;
}

.back-btn{
display:inline-block;
margin-top:20px;
padding:10px 25px;
background:#f4b400;
color:black;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.products{
display:flex;
justify-content:center;
gap:35px;
flex-wrap:wrap;
padding:70px;
background:#0a0909;
}

.product-title a{
text-decoration:none;
color:#222;
}

.product-card{
background:white;
width:300px;
padding:25px;
border-radius:6px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-img{
width:220px;
margin:auto;
display:block;
}

.product-info{
margin-top:15px;
}

.brand{
color:#888;
font-size:13px;
margin-bottom:5px;
}

.product-title{
font-size:16px;
font-weight:600;
color:#222;
}

.price-box{
margin-top:10px;
margin-bottom:15px;
}

.price{
font-size:22px;
font-weight:bold;
color:#000;
margin-right:10px;
}

.old-price{
color:#999;
text-decoration:line-through;
}

.product-buttons{
display:flex;
justify-content:center;
gap:10px;
}

.buy-btn{
background:#f4b400;
border:none;
padding:10px 18px;
font-weight:bold;
cursor:pointer;
}

.cart-btn{
background:#f4b400;
border:none;
padding:10px 18px;
font-weight:bold;
cursor:pointer;
}


/* ADD TO CART */

.cart-btn{
padding:8px 15px;
background:#333;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

.cart-btn:hover{
background:#555;
}


/* BUY NOW */

.buy-btn{
padding:8px 15px;
background:#f4b400;
color:black;
border:none;
border-radius:5px;
cursor:pointer;
font-weight:bold;
}

.buy-btn:hover{
background:#ffcc33;
}

/* Dropdown hover color same as site theme */

.dropdown-item:hover{
    background-color:#821818;
    color:white;
}

.dropdown-menu{
    border-radius:10px;
}

/* TERMS POPUP */

.terms-popup-box{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.terms-content{
background:white;
color:black;
padding:30px;
border-radius:10px;
text-align:center;
width:320px;
position:relative;
}

.terms-content button{
margin-top:15px;
padding:8px 20px;
background:#f4b400;
border:none;
font-weight:bold;
cursor:pointer;
}

/* Highlighted link */

.terms-link{
color:#f4b400;
font-weight:bold;
cursor:pointer;
text-decoration:underline;
}

/* CLOSE BUTTON */

.close-popup{
position:absolute;
top:10px;
right:15px;
font-size:18px;
cursor:pointer;
color:#333;
font-weight:bold;
}

.close-popup:hover{
color:red;
}

/* CART SUCCESS POPUP */

.cart-success-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.cart-success-box{
background:white;
width:280px;
text-align:center;
padding:30px;
border-radius:10px;
box-shadow:0 5px 25px rgba(0,0,0,0.3);
color:black;
}

.cart-success-box h3{
font-size:26px;
margin:10px 0 5px;
color:#222;
}

.cart-success-box p{
font-size:16px;
color:#555;
}

.success-icon{
width:60px;
height:60px;
border-radius:50%;
border:3px solid #4CAF50;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#4CAF50;
margin:auto;
margin-bottom:10px;
background:#eaf7ea;
}

.cart-success-box button{
background:#4A90E2;
border:none;
color:white;
padding:6px 18px;
border-radius:5px;
cursor:pointer;
}

/* TERMS CHECKBOX */

.terms-check{
margin-top:15px;
margin-bottom:15px;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.terms-check input{
transform: scale(1.6);
cursor:pointer;
}

#continueBtn:disabled{
background:#ccc;
cursor:not-allowed;
opacity:0.7;
}