/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #0f172a;
    color: white;
}

/* ================= NAVBAR ================= */
.navbar{
    width: 100%;
    height: 90px;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 10px;
}

/* LEFT */
.nav-left{
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-box{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 77, 141, 0.4);
    cursor: pointer;
}

.brand-text{
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #ff4d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    cursor: pointer;
}

/* CENTER */
.nav-center{
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-center a{
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-center a:hover{
    color: #ff4d8d;
}

/* RIGHT */
.nav-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* SEARCH BOX */
.search-box{
    width: 280px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    transition: 0.3s;
}

.search-box:hover{
    border-color: #ff4d8d;
}

.search-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white; /* Consistently white for dark theme */
    font-size: 15px;
}

.search-box input::placeholder{
    color: #94a3b8;
}

.search-box i{
    color: #ff4d8d;
    font-size: 18px;
    margin-right: 8px;
}

/* MENU BUTTON */
.menu-btn{
    display: none;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4d8d, #7c3aed);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(255, 77, 141, 0.3);
}

/* MOBILE MENU */
.mobile-menu{
    width: 100%;
    background: #111827;
    display: none;
    flex-direction: column;
    padding: 20px 6%;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 500;
}

.mobile-menu.active{
    display: flex;
}

/* ================= HERO SECTION ================= */
.hero{
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 6%;
    overflow: hidden;
}

.hero-left{
    width: 50%;
}

.hero-tag{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 50px;
    color: #ff4d8d;
    font-size: 14px;
    font-weight: 500;
}

.hero-left h1{
    font-size: 75px;
    line-height: 90px;
    margin-top: 25px;
    font-weight: 800;
}

.hero-left h1 span{
    background: linear-gradient(to right, #ff4d8d, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p{
    margin-top: 25px;
    color: #94a3b8;
    font-size: 18px;
    line-height: 34px;
    max-width: 650px;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.shop-btn{
    width: 170px;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff4d8d, #7c3aed);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(255, 77, 141, 0.35);
}

.shop-btn:hover{
    transform: translateY(-4px);
}

.explore-btn{
    width: 170px;
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.explore-btn:hover{
    border-color: #ff4d8d;
}

.hero-right{
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img{
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 40px;
    z-index: 10;
    box-shadow: 0 0 60px rgba(255,255,255,0.08);
}

.circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.circle1{
    width: 250px; height: 250px;
    background: #ff4d8d;
    top: 20px; left: 40px;
    opacity: 0.35;
}

.circle2{
    width: 220px; height: 220px;
    background: #7c3aed;
    bottom: 20px; right: 20px;
    opacity: 0.35;
}

/* ================= SECTION TITLE ================= */
.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title span{
    color: #ff4d8d;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2{
    font-size: 48px;
    margin-top: 12px;
    font-weight: 700;
}

/* ================= CATEGORIES ================= */
.categories{
    width: 100%;
    padding: 100px 6%;
}

.category-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 40px 30px;
    transition: 0.35s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before{
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -80px; right: -80px;
}

.category-card:hover{
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.15);
}

.category-icon{
    width: 80px; height: 80px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.pink{ background: linear-gradient(135deg, #ff4d8d, #ff7eb3); }
.purple{ background: linear-gradient(135deg, #7c3aed, #a855f7); }
.blue{ background: linear-gradient(135deg, #2563eb, #3b82f6); }
.orange{ background: linear-gradient(135deg, #f97316, #fb923c); }
.red{ background: linear-gradient(135deg, #ef4444, #f87171); }
.green{ background: linear-gradient(135deg, #10b981, #34d399); }

.category-card h3{ font-size: 28px; margin-bottom: 12px; }
.category-card p{ color: #94a3b8; line-height: 28px; }

/* ================= TRENDING PRODUCTS ================= */
.trending-products{
    width: 100%;
    padding: 100px 6%;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Updated per grid base */
    gap: 20px;
    padding: 20px;
}

.product-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s;
    cursor: pointer;
    position: relative;
}

.product-card:hover{
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.16);
}

.product-image {
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.platform-tag{
    position: absolute;
    top: 18px; left: 18px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    z-index: 5;
}

.amazon{ background: #ff9900; }
.flipkart{ background: #2874f0; }
.myntra{ background: #ff3f6c; }
.meesho{ background: #9f2089; }

.product-info{ padding: 28px; }
.product-info h3{ font-size: 24px; margin-bottom: 12px; }
.product-info p{ color: #94a3b8; line-height: 28px; margin-bottom: 24px; }

.product-bottom{ display: flex; align-items: center; justify-content: space-between; }
.product-bottom h4{ font-size: 26px; color: #ff4d8d; }
.product-bottom a{
    width: 120px; height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff4d8d, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    transition: 0.3s;
}

/* ================= DEAL BANNER ================= */
.deal-banner{
    width: 88%;
    margin: 100px auto;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(255,77,141,0.12), rgba(124,58,237,0.12));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.deal-content{ width: 50%; }
.deal-content span{ color: #ff4d8d; font-size: 16px; font-weight: 600; }
.deal-content h2{ font-size: 65px; line-height: 78px; margin-top: 20px; font-weight: 800; }
.deal-content p{ margin-top: 24px; color: #94a3b8; font-size: 18px; line-height: 34px; max-width: 600px; }
.deal-content button{
    width: 190px; height: 58px;
    margin-top: 35px; border: none; border-radius: 16px;
    background: linear-gradient(135deg, #ff4d8d, #7c3aed);
    color: white; font-size: 16px; font-weight: 600;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 0 30px rgba(255,77,141,0.3);
}

.deal-image{ width: 40%; position: relative; display: flex; align-items: center; justify-content: center; }
.deal-image img{ width: 380px; height: 380px; object-fit: cover; border-radius: 35px; z-index: 10; }

.deal-glow{ position: absolute; border-radius: 50%; filter: blur(90px); }
.glow1{ width: 220px; height: 220px; background: #ff4d8d; top: 0; left: 0; opacity: 0.4; }
.glow2{ width: 220px; height: 220px; background: #7c3aed; bottom: 0; right: 0; opacity: 0.4; }

/* ================= ABOUT SECTION ================= */
.about-section{
    padding: 80px 5%;
    background: inherit;
}

.about-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text{ flex: 1; }
.about-tag{
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 77, 141, 0.1);
    color: #ff4d8d;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-text h2{ font-size: 42px; color: #ff4d8d; margin-bottom: 15px; }
.about-text p{ font-size: 16px; color: inherit; opacity: 0.75; line-height: 28px; margin-bottom: 12px; }

.about-stats{ display: flex; gap: 30px; margin-top: 25px; }
.about-stats h3{ font-size: 28px; color: #ff4d8d; }
.about-stats p{ font-size: 14px; opacity: 0.7; }

.about-image{ flex: 1; display: flex; justify-content: center; }
.about-image img{ width: 100%; max-width: 420px; border-radius: 20px; object-fit: cover; }

.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    background: #ffffff;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover { background: #ff4d8d; color: #fff; }

/* ================= FILTER PANEL & OVERLAY ================= */
.open-filter-btn{
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.filter-overlay{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden;
    transition: 0.3s; z-index: 999;
}

.filter-overlay.active{ opacity: 1; visibility: visible; }

.filter-panel{
    position: fixed;
    top: 0; left: -320px;
    width: 300px; height: 100%;
    background: #fff;
    z-index: 1000;
    transition: 0.3s;
    padding: 20px;
    overflow-y: auto;
}

.filter-panel.active{ left: 0; }

.filter-panel, .filter-panel h3, .filter-panel h4, 
.filter-panel label, .filter-panel span {
    color: #000 !important;
}

.filter-header{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.close-btn{ background: red; color: #fff; border: none; padding: 5px 10px; cursor: pointer; border-radius: 6px; }
.filter-section{ margin-bottom: 20px; }
.filter-section h4{ margin-bottom: 10px; }
.filter-section label{ display: block; margin: 5px 0; cursor: pointer; }

/* ================= PRODUCT MODAL ================= */
.product-modal{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: 0.35s;
}

.product-modal.active{ opacity: 1; visibility: visible; }

.modal-box{
    width: 100%; max-width: 1100px;
    background: #111827; border-radius: 35px;
    overflow: hidden; display: flex;
    position: relative; transform: scale(0.8);
    transition: 0.35s;
}

.product-modal.active .modal-box{ transform: scale(1); }

.close-modal{
    position: absolute; top: 20px; right: 20px;
    width: 50px; height: 50px; border-radius: 14px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 24px; z-index: 20;
}

.modal-image{ width: 50%; }
.modal-image img{ width: 100%; height: 100%; object-fit: cover; }

.modal-content{ width: 50%; padding: 70px 50px; display: flex; flex-direction: column; justify-content: center; }
.modal-content span{ width: fit-content; background: linear-gradient(135deg, #ff4d8d, #7c3aed); padding: 10px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; }
.modal-content h2{ font-size: 48px; margin-top: 25px; line-height: 60px; }
.modal-content p{ color: #94a3b8; line-height: 34px; margin-top: 20px; }
.modal-content h3{ font-size: 42px; color: #ff4d8d; margin-top: 28px; }
.modal-content a{
    width: 200px; height: 58px; border-radius: 16px;
    background: linear-gradient(135deg, #ff4d8d, #7c3aed);
    color: white; display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 16px; font-weight: 600;
    margin-top: 35px; transition: 0.3s;
}

/* ================= ADMIN PANEL ================= */
.admin-panel{ width: 100%; min-height: 100vh; padding: 140px 6%; display: flex; align-items: center; justify-content: center; }
.admin-box{
    width: 100%; max-width: 700px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 30px;
    padding: 45px; display: flex; flex-direction: column; gap: 22px;
    backdrop-filter: blur(12px); box-shadow: 0 0 40px rgba(0,0,0,0.3);
}

.admin-box h2{ font-size: 40px; font-weight: 700; margin-bottom: 10px; background: linear-gradient(to right, #ffffff, #ff4d8d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.admin-box input, .admin-box textarea, .admin-box select{ width: 100%; padding: 18px 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.05); color: white; outline: none; font-size: 15px; }
.admin-box textarea{ height: 140px; resize: none; }
.admin-box button{ width: 100%; height: 60px; border: none; border-radius: 18px; background: linear-gradient(135deg, #ff4d8d, #7c3aed); color: white; font-size: 17px; font-weight: 600; cursor: pointer; transition: 0.3s; }

/* ================= FOOTER ================= */
.footer{ width: 100%; background: #0b1220; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 120px; padding: 80px 6% 30px; }
.footer-top{ display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-box{ width: 55px; height: 55px; border-radius: 16px; background: linear-gradient(135deg, #ff4d8d, #7c3aed); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; }
.footer-brand p{ color: #94a3b8; line-height: 32px; margin-bottom: 30px; }
.social-icons{ display: flex; gap: 18px; }
.social-icons a{ width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; }
.footer-links{ display: flex; flex-direction: column; gap: 18px; }
.footer-links a{ color: #94a3b8; text-decoration: none; transition: 0.3s; }
.footer-links a:hover{ color: #ff4d8d; }

/* ================= RESPONSIVE QUERIES (Merged) ================= */
@media (max-width: 992px) {
    .product-image { height: 200px; }
    .about-container { flex-direction: column; text-align: center; }
    .about-stats { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .navbar { padding: 10px 15px; }
    .nav-center, .search-box { display: none; }
    .menu-btn { display: flex; }
    .logo-box { width: 40px; height: 40px; font-size: 20px; }
    .brand-text { font-size: 22px; }
    .hero { flex-direction: column; padding: 60px 6%; text-align: center; }
    .hero-left, .hero-right { width: 100%; }
    .hero-left h1 { font-size: 45px; line-height: 55px; }
    .hero-buttons { justify-content: center; }
    .hero-right { margin-top: 50px; }
    .hero-right img { width: 300px; height: 300px; }
    .category-grid { grid-template-columns: repeat(1, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-image { height: 180px; }
    .deal-banner { flex-direction: column; text-align: center; padding: 40px 30px; }
    .deal-content, .deal-image { width: 100%; }
    .deal-image { margin-top: 40px; }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .products-grid { grid-template-columns: repeat(1, 1fr); }
    .product-image { height: 160px; }
    .about-text h2 { font-size: 30px; }
    .about-text p { font-size: 14px; }
}
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;   /* 🔥 prevents shrinking */
}

/* ICON */
.logo img{
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
}

/* TEXT */
.logo h2{
    font-size: 22px;
    font-weight: 600;
    color: inherit;
    margin: 0;
}
/* BLOG SECTION */

.blog-section {
    padding: 100px 6%;
    background:
        radial-gradient(circle at top left,
        rgba(255, 77, 141, 0.08),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(124, 58, 237, 0.08),
        transparent 30%),

        #0f172a;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
}

.blog-header p {
    color: #bdbdbd;
    font-size: 18px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-btn {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: #dcdcdc;
}
/* BLOG PAGE */

.blog-page {
    padding: 80px 20px;
    background: #0f0f0f;
    min-height: 100vh;
}

.blog-page-container {
    max-width: 900px;
    margin: auto;
}

.blog-page-container h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 30px;
}

.blog-page-container h2 {
    color: white;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-page-container p {
    color: #d0d0d0;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 20px;
}

.blog-page-container img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
}
.load-more-wrapper{
display:flex;
justify-content:center;
padding:40px 20px;
}

#loadMoreBtn{
padding:14px 28px;
border:none;
border-radius:14px;
background:#000;
color:#fff;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

#loadMoreBtn:hover{
transform:translateY(-3px);
}
/* =========================
   ADMIN DROPDOWN STYLING
   (CATEGORY + PLATFORM)
========================= */

.admin-box select {
    width: 100%;
    padding: 12px 14px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #2d3748;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Hover & focus effect */
.admin-box select:hover,
.admin-box select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

/* Style optgroup headings */
.admin-box select optgroup {
    font-style: normal;
    font-weight: 600;
    color: #94a3b8;
    background: #111827;
}

/* Style options */
.admin-box select option {
    background: #0b1220;
    color: #e2e8f0;
    padding: 8px;
}

/* Better spacing for form layout */
.admin-box input,
.admin-box textarea {
    width: 100%;
    padding: 12px 14px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #2d3748;
    background: #0f172a;
    color: white;
    font-size: 14px;
}

/* Focus effect for inputs */
.admin-box input:focus,
.admin-box textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
    outline: none;
}

/* Button styling consistency */
.admin-box button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #38bdf8;
    border: none;
    border-radius: 8px;
    color: #0f172a;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-box button:hover {
    background: #0ea5e9;
}
/* ================= PLATFORM SEARCH DROPDOWN ================= */

.dropdown-wrapper {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

#platformSearchInput {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #2d3748;
    background: #0f172a;
    color: #fff;
    outline: none;
}

#platformSearchInput:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

/* dropdown box */
.dropdown-list {
    position: absolute;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    background: #0b1220;
    border: 1px solid #2d3748;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    z-index: 999;
}

/* dropdown item */
.dropdown-item {
    padding: 10px;
    cursor: pointer;
    color: #e2e8f0;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: #1e293b;
}
.dropdown-wrapper{
    position: relative;
    width: 100%;
}

#platformSearchInput{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.dropdown-list{
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 220px;   /* ⭐ THIS makes scroll */
    overflow-y: auto;    /* ⭐ SCROLL ENABLED */
    z-index: 999;
}

.dropdown-list div{
    padding: 10px;
    cursor: pointer;
}

.dropdown-list div:hover{
    background: #f2f2f2;
}
.platform-stats-box {
  background: #111827;
  color: white;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.platform-stats-box h3 {
  margin-bottom: 12px;
}

.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.platform-stat-card {
  background: #1f2937;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.platform-stat-card h4 {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.platform-stat-card p {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0 0;
}
/* ================= BASE TAG ================= */
.platform-tag{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  z-index: 2;
  text-transform: capitalize;
}

/* ================= SHOPPING ================= */
.tag-amazon { background: #FF9900; }
.tag-flipkart { background: #2874F0; }
.tag-myntra { background: #FF3F6C; }
.tag-ajio { background: #000000; }
.tag-nykaa { background: #E80071; }

/* ================= TRAVEL ================= */
.tag-makemytrip { background: #1E90FF; }
.tag-goibibo { background: #FF6D38; }
.tag-bookingcom { background: #003580; }
.tag-agoda { background: #5C2D91; }
.tag-cleartrip { background: #FF4D00; }

/* ================= FINANCE ================= */
.tag-hdfcbank { background: #004C8F; }
.tag-sbicard { background: #1A4D8F; }
.tag-axisbank { background: #97144D; }
.tag-idfcfirstbank { background: #FF0000; }
.tag-bajajfinserv { background: #0033A0; }

/* ================= SOFTWARE ================= */
.tag-godaddy { background: #1BDBDB; color: black; }
.tag-hostinger { background: #673DE6; }
.tag-googleworkspace { background: #4285F4; }
.tag-canva { background: #00C4CC; }
.tag-udemy { background: #A435F0; }

/* ================= DEFAULT FALLBACK ================= */
.tag-default {
  background: gray;
}
