/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
    scroll-behavior:smooth;
}

body{
    background: linear-gradient(135deg,#08111f,#0d1b2a,#111827);
    color:white;
    overflow-x:hidden;
    min-height:100vh;
}

/* =========================
   BACKGROUND BLUR
========================= */
.bg-blur{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
}

.blur1{
    width:300px;
    height:300px;
    background:#4f46e5;
    top:-100px;
    left:-100px;
}

.blur2{
    width:350px;
    height:350px;
    background:#00bfff;
    right:-100px;
    bottom:-100px;
}

/* =========================
   GLASS EFFECT
========================= */
.glass{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 8px 30px rgba(0,0,0,.25);
}

/* =========================
   NAVBAR
========================= */
.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:1200px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 30px;
    border-radius:20px;

    background:rgba(255,255,255,.07);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.1);

    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:700;
}

.logo i{
    color:#7c8cff;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

.navbar a:hover{
    color:#7c8cff;
}

/* =========================
   HERO
========================= */
.hero{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 20px 60px;
}

.hero-content{
    max-width:800px;
    text-align:center;
    padding:50px;
    border-radius:30px;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero span{
    color:#7c8cff;
}

.hero p{
    color:#d9d9d9;
    line-height:1.8;
}

/* =========================
   IP BOX
========================= */
.ip-box{
    margin-top:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.ip-box span{
    background:rgba(255,255,255,.1);
    padding:15px 20px;
    border-radius:15px;
}

.ip-box button{
    border:none;
    padding:15px 22px;
    border-radius:15px;
    background:#6678ff;
    color:white;
    cursor:pointer;
    transition:.3s;
}

.ip-box button:hover{
    transform:translateY(-3px);
}

/* =========================
   BUTTON
========================= */
.hero-buttons{
    margin-top:35px;
}

.btn{
    display:inline-block;
    padding:15px 28px;
    text-decoration:none;
    border-radius:16px;
    background:#6678ff;
    color:white;
    margin:10px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
}

/* =========================
   SECTION TITLE
========================= */
.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

/* =========================
   SHOP
========================= */
.shop-section{
    padding:100px 8%;
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    padding:40px;
    border-radius:25px;
    text-align:center;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:40px;
    color:#7c8cff;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#d0d0d0;
    line-height:1.8;
}

.card button{
    margin-top:25px;
    border:none;
    background:#6678ff;
    color:white;
    padding:14px 20px;
    border-radius:15px;
    cursor:pointer;
}

/* =========================
   GALLERY
========================= */
.gallery-section{
    padding:100px 8%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.image-card{
    overflow:hidden;
    border-radius:25px;
}

.image-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.image-info{
    padding:20px;
}

/* =========================
   FEATURES
========================= */
.features-section{
    padding:100px 8%;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature{
    padding:35px;
    border-radius:25px;
    text-align:center;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature i{
    font-size:35px;
    color:#7c8cff;
    margin-bottom:20px;
}

.feature p{
    margin-top:12px;
    color:#d8d8d8;
}

/* =========================
   FOOTER
========================= */
footer{
    padding:80px 20px;
}

.footer-box{
    max-width:1000px;
    margin:auto;
    text-align:center;
    padding:50px;
    border-radius:30px;
}

.footer-box p{
    color:#d5d5d5;
    margin-top:15px;
}

.socials{
    margin-top:25px;
}

.socials a{
    color:white;
    font-size:24px;
    margin:0 12px;
    transition:.3s;
}

.socials a:hover{
    color:#7c8cff;
}

/* =========================
   ANIMATION
========================= */
.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

    .hero h1{
        font-size:45px;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .navbar ul{
        gap:18px;
    }

    .section-title{
        font-size:32px;
    }

}

body{
    opacity:0;
    transition:1s;
}

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
}

.logo img{
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.shop-page {
    padding: 140px 10%;
    text-align: center;
}

.shop-card {
    max-width: 400px;
    margin: 20px auto;
}

.shop-btn {
    padding: 15px 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.shop-btn{
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;

    color: white;
    text-decoration: none;
    font-weight: 600;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;

    backdrop-filter: blur(20px);
    transition: all .3s ease;
}

.shop-btn:hover{
    background: #7c8cff;
    border-color: #7c8cff;
    transform: translateY(-3px);
}

.products{
    margin-top: 140px; /* supaya tidak ketabrak navbar */

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;

    padding: 0 8%;
}

.product-card{
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 35px;

    padding: 45px;

    display: flex;
    flex-direction: column;

    min-height: 520px;
}

.product-card h2{
    font-size: 32px;
    margin-bottom: 20px;
}

.price{
    font-size: 60px;
    font-weight: 700;
    color: #7c8cff;

    margin-bottom: 35px;
}

.product-card ul{
    list-style: none;
    line-height: 2.2;
    color: #d7d7d7;

    flex: 1;
}

.buy-btn{
    width: 100%;
    text-align: center;

    padding: 18px;
    margin-top: 40px;

    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;

    background: linear-gradient(
        135deg,
        #7c8cff,
        #5865f2
    );

    transition: .3s;
}

.buy-btn:hover{
    transform: translateY(-5px);
}

.popular{
    position: relative;
    border: 1px solid rgba(124,140,255,.4);
    box-shadow: 0 0 30px rgba(124,140,255,.15);
}

.badge{
    position: absolute;
    top: 25px;
    right: 25px;

    background: linear-gradient(135deg,#7c8cff,#5865f2);
    padding: 8px 16px;

    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.wa-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #7c8cff,
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

.wa-bubble:hover {
    transform: scale(1.1);
    background-color: #00FFFF;
}

.wa-bubble::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}