* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: white;
    background: radial-gradient(circle at center, #0b8dbf, #07121f, #2b0c0c);
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #00aaff;
}

.navbar nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
}

.navbar nav a:hover {
    opacity: 1;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
}

/* LEFT */
.hero-left {
    max-width: 500px;
}

.tag {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left span {
    background: linear-gradient(to right, #00aaff, #6f8cff);
    -webkit-background-clip: text;
    color: transparent;
}

.desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* RIGHT */
.hero-right {
    background: black;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.hero-right img {
    width: 400px;
    border-radius: 15px;
}

/* EXPLORE */
.explore {
    text-align: center;
    margin-top: 50px;
    font-weight: normal;
    opacity: 0.8;
}

.explore span {
    color: #00aaff;
}



/* SHOP PAGE */
.shop {
    padding: 60px 80px;
    text-align: center;
}

.shop h1 {
    font-size: 40px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #00aaff, #00f2fe);
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 40px;
}

/* GRID PRODUK */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border: 1px solid rgba(0, 170, 255, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

.card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

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

.card p {
    margin-bottom: 15px;
    color: #00aaff;
}

.card button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #00aaff, #00f2fe);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    transform: scale(1.05);
}


/* CHECKOUT */
.checkout {
    padding: 60px 80px;
    text-align: center;
}

.checkout h1 {
    margin-bottom: 30px;
    background: linear-gradient(to right, #00aaff, #00f2fe);
    -webkit-background-clip: text;
    color: transparent;
}

.box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input, .form textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.form button {
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #00aaff, #00f2fe);
    color: white;
    cursor: pointer;
}

/* THANK YOU PAGE */
.thankyou {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: radial-gradient(circle, #001f3f, #000814);
}

.thankyou h1 {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #00aaff, #00f2fe);
    -webkit-background-clip: text;
    color: transparent;
}

.thankyou p {
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.thankyou button {
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #00aaff, #00f2fe);
    color: white;
    cursor: pointer;
}