*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7ff;
    color:#111;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

html{
    scroll-behavior:smooth;
}

.top-strip{
    background:rgb(1 28 100);
    color:#fff;
    padding:10px 0;
}

.top-strip-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-links{
    display:flex;
    gap:25px;
}

.top-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.main-header{
    background:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo-area img{
    width:120px;
}

.search-box{
    flex:1;
    display:flex;
    position:relative;
}

.search-box input{
    width:100%;
    padding:16px 20px;
    border-radius:50px;
    border:none;
    background:#eef2ff;
    font-size:15px;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;
    border:none;
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgb(254 89 3);
    color:#fff;
    cursor:pointer;
}

.header-icons{
    display:flex;
    gap:20px;
}

.icon-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    cursor:pointer;
    transition:0.4s;
}

.icon-box:hover{
    transform:translateY(-5px);
    color:rgb(254 89 3);
}

.navbar{
    background:linear-gradient(90deg,rgb(1 28 100),rgb(254 89 3));
    padding:16px 0;
}

.nav-flex{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.nav-flex a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.nav-flex a:hover{
    color:#ffe600;
}

.hero-section{
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.hero-left h1{
    font-size:70px;
    line-height:1.1;
    margin:20px 0;
    color:rgb(1 28 100);
}

.hero-left p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

.hero-tag{
    background:rgba(254,89,3,0.12);
    color:rgb(254 89 3);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

.hero-right img{
    border-radius:35px;
    animation:float 4s ease-in-out infinite;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.primary-btn,
.secondary-btn{
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.primary-btn{
    background:rgb(254 89 3);
    color:#fff;
}

.secondary-btn{
    background:rgb(1 28 100);
    color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-6px);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:45px;
    color:rgb(1 28 100);
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.category-section,
.product-section,
.offer-section,
.panel-preview,
.gift-showcase-section,
.brands-section,
.instagram-section{
    padding:90px 0;
}

.category-grid,
.product-grid,
.panel-grid,
.gift-grid,
.brands-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.category-card,
.product-card,
.panel-card,
.gift-card,
.dash-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
    transition:0.4s;
}

.category-card:hover,
.product-card:hover,
.panel-card:hover,
.gift-card:hover,
.dash-card:hover{
    transform:translateY(-10px);
}

.category-card img,
.product-card img,
.gift-card img{
    height:260px;
    object-fit:cover;
}

.category-card h3,
.gift-card h3{
    padding:20px;
    font-size:22px;
}

.product-card{
    padding-bottom:25px;
    position:relative;
}

.product-card h3,
.price{
    padding:0 20px;
}

.price{
    margin:15px 0;
    color:rgb(254 89 3);
    font-size:24px;
    font-weight:700;
}

.product-card button,
.panel-card a{
    margin-left:20px;
    padding:14px 28px;
    border:none;
    background:rgb(1 28 100);
    color:#fff;
    border-radius:50px;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
}

.product-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:rgb(254 89 3);
    color:#fff;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

.offer-flex{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    background:linear-gradient(135deg,rgb(1 28 100),rgb(254 89 3));
    padding:60px;
    border-radius:40px;
    color:#fff;
}

.offer-left h2{
    font-size:55px;
    margin-bottom:20px;
}

.offer-right img{
    border-radius:30px;
}

.panel-card{
    padding:40px;
    text-align:center;
}

.brands-grid{
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
}

.brand-box{
    background:#fff;
    padding:35px 20px;
    border-radius:22px;
    text-align:center;
    font-size:26px;
    font-weight:700;
    color:rgb(1 28 100);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.brand-box:hover{
    transform:translateY(-8px) scale(1.05);
    background:linear-gradient(135deg,rgb(254 89 3),rgb(1 28 100));
    color:#fff;
}

.instagram-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background:#fff;
    padding:45px;
    border-radius:35px;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
}

.instagram-left img{
    border-radius:30px;
    height:450px;
    object-fit:cover;
}

.instagram-right h3{
    font-size:42px;
    color:rgb(1 28 100);
    margin-bottom:20px;
}

.instagram-right p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.instagram-stats{
    display:flex;
    gap:40px;
    margin-top:40px;
}

.instagram-stats h2{
    color:rgb(254 89 3);
    font-size:38px;
}

.instagram-stats span{
    color:#666;
}

.panel-card i{
    font-size:65px;
    color:rgb(254 89 3);
    margin-bottom:20px;
}

.panel-card h3{
    margin-bottom:20px;
}

.footer{
    background:#081126;
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
}

.footer-about img{
    width:220px;
    margin-bottom:20px;
}

.footer h3{
    margin-bottom:25px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#cfd5ff;
    text-decoration:none;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgb(254 89 3);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.newsletter-box{
    display:flex;
    margin-top:20px;
}

.newsletter-box input{
    flex:1;
    padding:15px;
    border:none;
}

.newsletter-box button{
    background:rgb(254 89 3);
    color:#fff;
    border:none;
    padding:15px 20px;
}

.payment-icons{
    margin-top:25px;
    display:flex;
    gap:15px;
    font-size:35px;
}

.copyright{
    margin-top:60px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    padding:20px;
}

.dashboard-section{
    padding:70px 0;
}

.dashboard-container{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
}

.sidebar{
    background:linear-gradient(180deg,rgb(1 28 100),#091b55);
    padding:30px;
    border-radius:30px;
    color:#fff;
    min-height:700px;
}

.sidebar h2{
    margin-bottom:35px;
}

.sidebar a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    padding:15px;
    margin-bottom:10px;
    border-radius:14px;
    transition:0.3s;
}

.sidebar a:hover{
    background:rgba(255,255,255,0.1);
}

.dashboard-content{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
}

.dashboard-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin:35px 0;
}

.dash-card{
    padding:30px;
}

.table-box{
    overflow:auto;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    padding:18px;
    text-align:left;
    border-bottom:1px solid #eee;
}

.status{
    padding:8px 16px;
    border-radius:50px;
    color:#fff;
    font-size:13px;
}

.active{
    background:#14b814;
}

.low{
    background:#ff9800;
}

@media(max-width:992px){

    .hero-content,
.offer-flex,
.dashboard-container,
.footer-grid,
.instagram-box{
        grid-template-columns:1fr;
    }

    .hero-left h1{
        font-size:45px;
    }

    .header-flex{
        flex-direction:column;
    }

    .nav-flex{
        gap:15px;
        justify-content:center;
    }

}

@media(max-width:768px){

    .top-strip-flex{
        flex-direction:column;
        gap:10px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .section-title h2{
        font-size:35px;
    }

    .offer-left h2{
        font-size:38px;
    }

}
