*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#111;
    color:white;

}

/* NAVBAR */

header{

    position:fixed;
    width:100%;
    z-index:999;
    background-color: #000;

}

.navbar{

    width:90%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px 0;

}

.logo{

    font-size:32px;
    font-family:'Oswald',sans-serif;
    font-weight:bold;

}

.logo span{

    color:#d97706;

}

.navbar ul{

    display:flex;
    list-style:none;
    gap:35px;

}

.navbar a{

    color:white;
    text-decoration:none;

}

.navbar ul a{

    transition:.3s;

}

.navbar ul a:hover{

    color:#d97706;

}

.btn-nav{

    padding:12px 28px;
    border-radius:50px;

    background:#d97706;
    transition:.3s;

}

.btn-nav:hover{

    background:#b45309;

}

/* HERO */

.hero{

    height:100vh;

    background:
        linear-gradient(rgba(0,0,0,.65),
        rgba(0,0,0,.65)),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    position:relative;

}

.hero-content{

    max-width:900px;
    padding:20px;

}

.tagline{

    letter-spacing:4px;
    color:#d97706;

    margin-bottom:20px;

    font-weight:600;

}

.hero h1{

    font-size:82px;
    font-family:'Oswald',sans-serif;
    line-height:90px;

    margin-bottom:25px;

}

.hero-text{

    font-size:20px;
    color:#ddd;

    line-height:34px;

    max-width:700px;
    margin:auto;

}

.buttons{

    margin-top:45px;

    display:flex;
    justify-content:center;
    gap:20px;

}

.btn-primary{

    background:#d97706;
    color:white;

    padding:16px 38px;
    border-radius:50px;

    text-decoration:none;
    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid white;
    color:white;

    padding:16px 38px;
    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;
    color:black;

}

.scroll{

    position:absolute;
    bottom:30px;
    left:50%;

    transform:translateX(-50%);

    font-size:30px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

}

/* FEATURES */

.features{

    width:90%;
    margin:100px auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.box{

    background:#1c1c1c;
    padding:45px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

}

.box:hover{

    transform:translateY(-10px);

}

.box i{

    font-size:45px;
    color:#d97706;

    margin-bottom:20px;

}

.box h3{

    font-family:'Oswald';
    font-size:30px;

    margin-bottom:15px;

}

.box p{

    color:#bbb;

}

/* RESPONSIVE */

@media(max-width:900px){

.navbar{

flex-direction:column;
gap:20px;

}

.navbar ul{

flex-wrap:wrap;
justify-content:center;

}

.hero h1{

font-size:58px;
line-height:65px;

}

.hero-text{

font-size:17px;

}

.features{

grid-template-columns:1fr;

}

.buttons{

flex-direction:column;

}

}

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.modal-content{
    background:#1c1c1c;
    padding:40px;
    width:90%;
    max-width:600px;
    border-radius:15px;
    color:white;
    position:relative;
    animation:fadeIn .3s ease;
}

.close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:28px;
    cursor:pointer;
    color:white;
}

.close:hover{
    color:#d97706;
}

@keyframes fadeIn{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.products{
    width:90%;
    margin:100px auto;
    text-align:center;
}

.products h2{
    font-size:42px;
    font-family:'Oswald',sans-serif;
    margin-bottom:10px;
}

.section-subtitle{
    color:#bbb;
    margin-bottom:50px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#1c1c1c;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    padding-bottom:20px;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card h3{
    margin-top:15px;
    font-family:'Oswald';
    font-size:24px;
}

.product-card p{
    color:#bbb;
    font-size:14px;
    padding:0 15px;
    margin:10px 0;
}

.product-card span{
    display:block;
    color:#d97706;
    font-weight:bold;
    font-size:18px;
}

/* RESPONSIVE */
@media(max-width:900px){

.product-grid{
    grid-template-columns:1fr;
}

}

/* FILTERS */
.filters{
    margin:30px 0;
}

.filters button{
    background:#1c1c1c;
    color:white;
    border:1px solid #333;
    padding:10px 18px;
    margin:5px;
    cursor:pointer;
    border-radius:20px;
    transition:.3s;
}

.filters button:hover{
    background:#d97706;
}

/* PRODUCT CARD ENHANCED */
.product-card{
    background:#1c1c1c;
    border-radius:15px;
    overflow:hidden;
    padding-bottom:20px;

    transition:.4s;
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp .6s forwards;
}

.product-card:hover{
    transform:scale(1.05);
    box-shadow:0 0 25px rgba(217,119,6,0.4);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.1);
}

/* CART BUTTON */
.cart-btn{
    margin-top:10px;
    padding:10px 15px;
    background:#d97706;
    border:none;
    color:white;
    cursor:pointer;
    border-radius:20px;
    transition:.3s;
}

.cart-btn:hover{
    background:#b45309;
}

/* ANIMATION */
@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* CART ICON */
.cart-icon{
    cursor:pointer;
    color:white;
    font-size:18px;
}

/* SIDEBAR */
.cart-sidebar{
    position:fixed;
    top:0;
    right:-400px;
    width:350px;
    height:100%;
    background:#111;
    box-shadow:-5px 0 20px rgba(0,0,0,0.5);
    transition:.4s;
    z-index:2000;
    padding:20px;
    display:flex;
    flex-direction:column;
}

.cart-sidebar.active{
    right:0;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #333;
    padding-bottom:10px;
}

.close-cart{
    cursor:pointer;
    font-size:28px;
}

.cart-footer{
    margin-top:auto;
    border-top:1px solid #333;
    padding-top:10px;
}

.checkout-btn{
    width:100%;
    padding:12px;
    background:#d97706;
    color:white;
    border:none;
    cursor:pointer;
    margin-top:10px;
}

/* CART ITEM */
.cart-item{
    display:flex;
    justify-content:space-between;
    margin:10px 0;
    border-bottom:1px solid #222;
    padding-bottom:10px;
}

.qty-controls{
    display:flex;
    align-items:center;
    gap:8px;
}

.qty-controls button{
    background:#d97706;
    border:none;
    color:white;
    width:25px;
    height:25px;
    border-radius:5px;
    cursor:pointer;
}

.remove-btn{
    background:none;
    border:none;
    color:red;
    cursor:pointer;
    font-size:18px;
}

/* GALLERY SECTION */
.gallery{
    width:90%;
    margin:120px auto;
    text-align:center;
}

.gallery h2{
    font-size:42px;
    font-family:'Oswald',sans-serif;
}

/* FEATURED IMAGE */
.featured{
    position:relative;
    margin:50px 0;
    overflow:hidden;
    border-radius:20px;
}

.featured img{
    width:100%;
    height:400px;
    object-fit:cover;
    transition:.4s;
}

.featured:hover img{
    transform:scale(1.05);
}

.featured-text{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(0,0,0,0.6);
    padding:20px;
    border-radius:10px;
    text-align:left;
}

.featured-text h3{
    color:#d97706;
    margin-bottom:5px;
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:900px){

.gallery-grid{
    grid-template-columns:1fr;
}

.featured img{
    height:250px;
}

}
html{
    scroll-behavior:smooth;
}

.contact{
    width:90%;
    margin:120px auto;
    text-align:center;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:600px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    border:none;
    border-radius:10px;
    background:#1c1c1c;
    color:white;
}

.contact-form textarea{
    min-height:120px;
}

.contact-form button{
    background:#d97706;
    color:white;
    border:none;
    padding:12px;
    border-radius:20px;
    cursor:pointer;
}

.footer{
    background:#0d0d0d;
    padding:60px 20px 20px;
    margin-top:100px;
}

.footer-container{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    gap:30px;
}

.footer-box h3{
    color:#d97706;
    margin-bottom:10px;
}

.footer-box p{
    color:#bbb;
}

.socials a{
    color:white;
    margin-right:10px;
    font-size:20px;
    transition:.3s;
}

.socials a:hover{
    color:#d97706;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #222;
    padding-top:15px;
    color:#777;
}

.smoke-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:radial-gradient(circle, rgba(255,255,255,0.05), transparent 60%);
    pointer-events:none;
    z-index:-1;
    animation:smokeMove 12s infinite linear;
    opacity:0.4;
}

@keyframes smokeMove{
    0%{transform:translate(0,0) scale(1);}
    50%{transform:translate(-20px,-30px) scale(1.1);}
    100%{transform:translate(0,0) scale(1);}
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.cart-icon{
    position:relative;
}

#cartCount{
    background:red;
    color:white;
    border-radius:50%;
    padding:2px 6px;
    font-size:12px;
    position:absolute;
    top:-8px;
    right:-10px;
    animation:pulse 1s ease;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.3);}
    100%{transform:scale(1);}
}

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE NAV */
@media(max-width:900px){

.navbar ul{
    display:none;
    flex-direction:column;
    background:#111;
    position:absolute;
    top:80px;
    right:0;
    width:200px;
    padding:20px;
}

.navbar ul.active{
    display:flex;
}

.hamburger{
    display:block;
}

}

.stripe-box{
    background:#121212;
    width:90%;
    max-width:500px;
    margin:auto;
    padding:30px;
    border-radius:15px;
    color:white;
    text-align:left;
}

.stripe-box input{
    width:100%;
    margin:8px 0;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#1c1c1c;
    color:white;
}

.secure-badge{
    color:#00ff99;
    font-size:14px;
}

.pay-btn{
    width:100%;
    margin-top:15px;
    padding:14px;
    background:#635bff;
    border:none;
    color:white;
    font-weight:bold;
    cursor:pointer;
    border-radius:8px;
}
.stats{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.stat{
    background:#1c1c1c;
    padding:10px;
    border-radius:10px;
    text-align:center;
    flex:1;
}

.toast{
    position:fixed;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    background:#111;
    color:white;
    padding:12px 20px;
    border-radius:10px;
    opacity:0;
    transition:0.3s;
    z-index:9999;
}

.toast.show{
    opacity:1;
}
.pay-btn{
    width:100%;
    margin-top:15px;
    padding:14px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    border:none;
    color:white;
    font-weight:bold;
    cursor:pointer;
    border-radius:12px;
    font-size:16px;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(217,119,6,0.3);
}

.pay-btn:hover{
    transform: translateY(-3px);
    box-shadow:0 12px 30px rgba(217,119,6,0.5);
}

.pay-btn:active{
    transform: scale(0.98);
}
.flying-img {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.8s ease-in-out;
    object-fit: cover;
}

.order-success{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#111;
    color:white;
    text-align:center;
    padding-top:120px;
}

.order-success h1{
    font-size:40px;
    color:#d97706;
}

.mobile-cart-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#d97706;
    color:white;
    text-align:center;
    padding:14px;
    font-weight:bold;
    display:none;
    z-index:9999;
}

/* show only mobile */
@media(max-width:900px){
    .mobile-cart-bar{
        display:block;
    }
}

/* GLOBAL BUTTON BASE */
button,
.btn-primary,
.btn-secondary,
.btn-nav,
.cart-btn,
.checkout-btn,
.pay-btn {
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s ease;
}

/* ADD TO CART BUTTON */
.cart-btn {
    background: #d97706;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 20px;
    margin-top: 10px;
}

.cart-btn:hover {
    background: #b45309;
    transform: translateY(-2px);
}

/* CHECKOUT BUTTON */
.checkout-btn {
    background: #d97706;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}

.checkout-btn:hover {
    background: #b45309;
}

/* PAY NOW BUTTON (IMPORTANT) */
.pay-btn {
    width: 100%;
    background: #22c55e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
}

.pay-btn:hover {
    background: #16a34a;
    transform: scale(1.02);
}

/* ORDER NOW BUTTON */
.btn-nav {
    display: inline-block;
    background: #d97706;
    padding: 10px 18px;
    border-radius: 25px;
    color: white;
}