/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============ HERO / BACKGROUND SECTION ============ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* GANTI LINK BACKGROUND DI SINI */
    background: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1920&q=80') center/cover no-repeat;
    z-index: 1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.95) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    transition: all 0.5s ease;
}

.hero__logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.5);
}

.hero__btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.7);
}

.hero__btn svg {
    width: 20px;
    height: 20px;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.hero__scroll-hint .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============ SECTION TITLES ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header__label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 12px;
}

.section-header__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
}

.section-header__title span {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ SEE ALL BUTTON ============ */
.see-all-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: transparent;
    color: #a78bfa;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: #a78bfa;
    transform: translateY(-2px);
}

.see-all-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.see-all-btn:hover svg {
    transform: translateX(4px);
}

/* ============ STORE / JENDELA SECTION ============ */
.store-section {
    padding: 100px 20px;
    background: #000;
    position: relative;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, #7c3aed);
}

.jendela {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(20,20,30,0.9), rgba(10,10,15,0.95));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(124, 58, 237, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.jendela::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}

.jendela__titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.jendela__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.jendela__dot--red { background: #ff5f57; }
.jendela__dot--yellow { background: #febc2e; }
.jendela__dot--green { background: #28c840; }

.jendela__title {
    margin-left: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.product-card__image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.08);
}

.product-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(10,10,15,0.8));
}

.product-card__info {
    padding: 20px;
}

.product-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card__desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #a78bfa;
}

.product-card__price .currency {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(167, 139, 250, 0.6);
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transform: scale(1.05);
}

.buy-btn svg {
    width: 14px;
    height: 14px;
}

/* ============ FOOTER ============ */
.footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 20px 30px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.footer__logo:hover {
    border-color: #7c3aed;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer__brand-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer__col ul li a:hover {
    color: #a78bfa;
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.6);
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: #a78bfa;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer__copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer__copyright-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.footer__copyright-logo:hover {
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}

.footer__copyright-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__privacy {
    font-size: 0.8rem;
}

.footer__privacy a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer__privacy a:hover {
    color: #a78bfa;
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .jendela {
        padding: 24px;
        border-radius: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .product-card__image {
        height: 200px;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero__logo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .buy-btn {
        width: 100%;
        justify-content: center;
    }
}