/* ===== RESET ===== */
*{box-sizing:border-box;margin:0;padding:0}
body{
    font-family:'Segoe UI', Arial, sans-serif;
    background:#f4f6fb;
    color:#222;
}
/* ===== SIDEBAR SYSTEM FIX ===== */
.mobile-menu-toggle{
    position:fixed;
    top:15px;
    left:15px;
    background:#111;
    color:#fff;
    border:none;
    padding:10px 12px;
    font-size:18px;
    z-index:2000;
    border-radius:6px;
    display:none;
}

.sidebar{
    position:fixed;
    top:0;
    left:-260px;
    width:260px;
    height:100vh;
    background:#0f172a;
    color:#fff;
    padding:20px;
    transition:.3s;
    z-index:1500;
}

.sidebar.active{
    left:0;
}

.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.sidebar-nav ul{
    list-style:none;
    padding:0;
}

.sidebar-nav li{
    margin-bottom:12px;
}

.sidebar-nav a{
    color:#e5e7eb;
    text-decoration:none;
    display:block;
    padding:8px 10px;
    border-radius:6px;
}

.sidebar-nav a:hover{
    background:#1f2937;
}

.close-sidebar{
    background:none;
    border:none;
    color:#fff;
    font-size:20px;
}

.sidebar-footer{
    position:absolute;
    bottom:20px;
    left:20px;
    font-size:14px;
}

.main-content{
    margin-left:0;
}

/* ===== DESKTOP HEADER ONLY ===== */
@media (min-width: 992px){
    .mobile-menu-toggle,
    .sidebar{
        display:none;
    }
}

/* ===== HEADER ===== */
header{
    background:linear-gradient(90deg,#ff005d,#6a11cb,#2575fc);
    color:#fff;
    padding:16px 30px;
}
.header-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:800;
}
.logo span{
    background:#fff;
    color:#ff005d;
    padding:6px 10px;
    border-radius:8px;
    font-weight:900;
}
nav a{
    color:#fff;
    margin-left:22px;
    text-decoration:none;
    font-weight:600;
}

/* ===== HERO ===== */
.hero{
    padding:70px 30px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
}
.hero h1{font-size:42px;margin-bottom:15px}
.hero p{font-size:18px;margin-bottom:28px;color:#444}
.btn{
    display:inline-block;
    background:#ff005d;
    color:#fff;
    padding:14px 26px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
}
.hero-img{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.hero-img img{width:100%;border-radius:14px}

/* ===== SECTIONS ===== */
.section{padding:60px 30px}
.section h2{text-align:center;font-size:34px;margin-bottom:35px}

/* ===== SERVICES ===== */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.service{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    text-align:center;
    font-weight:700;
}

/* ===== PRODUCTS ===== */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}
.product{
    background:#fff;
    border-radius:20px;
    padding:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.1);
}
.product img{
    width:100%;
    height:200px;
    object-fit:contain;
    background:#f2f2f2;
    border-radius:14px;
}
.price{color:#16a34a;font-weight:800}

/* ===== FOOTER ===== */
footer{
    background:#0f172a;
    color:#fff;
    padding:40px 20px;
    margin-top:60px;
    text-align:center;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .hero{grid-template-columns:1fr}
    .hero h1{font-size:32px}
}
/* ===== PUBLIC TOP HEADER ===== */
.top-header{
    background:linear-gradient(90deg,#ff005d,#6a11cb,#2575fc);
    padding:16px 30px;
    color:#fff;
}
.header-wrap{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:800;
}
.logo span{
    background:#fff;
    color:#ff005d;
    padding:6px 10px;
    border-radius:8px;
    font-weight:900;
}
.top-nav a{
    color:#fff;
    margin-left:20px;
    text-decoration:none;
    font-weight:600;
}
.top-nav a:hover{
    opacity:.85;
}
.admin-link{
    background:#111;
    padding:6px 12px;
    border-radius:6px;
}
/* ===== DIGITAL PRINT HERO ===== */
.hero-digital{
    padding:70px 30px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
    background:linear-gradient(135deg,#fff,#f4f6fb);
}
.hero-content h1{
    font-size:44px;
    line-height:1.2;
    margin-bottom:16px;
}
.hero-content p{
    font-size:18px;
    color:#444;
    margin-bottom:24px;
}
.hero-actions{
    display:flex;
    gap:16px;
    margin-bottom:18px;
}
.hero-btn{
    padding:14px 28px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
}
.hero-btn.primary{
    background:#ff005d;
    color:#fff;
    box-shadow:0 10px 25px rgba(255,0,93,.35);
}
.hero-btn.secondary{
    border:2px solid #2575fc;
    color:#2575fc;
}
.hero-trust{
    font-weight:600;
    color:#333;
}
.hero-visual{
    background:#fff;
    padding:20px;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}
.hero-visual img{
    width:100%;
    border-radius:16px;
}
@media(max-width:900px){
    .hero-digital{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-actions{
        justify-content:center;
    }
}
/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    padding:14px 20px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:9999;
    display:flex;
    align-items:center;
    gap:8px;
}
.whatsapp-float:hover{
    background:#1ebe5d;
}
.logo-area{
    display:flex;
    flex-direction:column;
}

.site-title a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#111;
}

.site-logo{
    border-radius:8px;
}

.logo-text{
    font-size:26px;
    color:#13e8f5;
    font-weight:800;
}

.tagline{
    font-size:13px;
    color:#ff555;
    margin-top:2px;
}

<script>
const scrollBtn = document.getElementById("scrollTopBtn");

window.addEventListener("scroll", () => {
    if (window.scrollY > 300) {
        scrollBtn.style.display = "flex";
    } else {
        scrollBtn.style.display = "none";
    }
});

scrollBtn.addEventListener("click", () => {
    window.scrollTo({ top: 0, behavior: "smooth" });
});
</script>
