* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sundanese Unicode font */
@font-face {
    font-family: 'Sundanese Unicode';
    src: url('assets/font/sundanese_unicode.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.sundanese-font {
    font-family: 'Sundanese Unicode', 'Noto Sans Sundanese', 'Segoe UI', sans-serif;
}

body {
    background-color: #000000;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.4;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #FFFFFF 0%, #CCCCCC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.logo span {
    font-weight: 300;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 42px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}
.nav-links a:hover {
    border-bottom-color: #ffffff;
    color: white;
}

.sunda-accent {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #fff, #fff 8px, transparent 8px, transparent 16px);
    margin-top: 12px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 70px 0 50px;
    gap: 40px;
}
.hero-text {
    flex: 1.2;
}
.hero-text .tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aaa;
    margin-bottom: 20px;
    display: inline-block;
    border-left: 3px solid white;
    padding-left: 12px;
}
.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-text h1 .sunda-word {
    font-weight: 400;
    font-style: italic;
    background: linear-gradient(120deg, #fff, #ddd);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.hero-text p {
    font-size: 1.1rem;
    color: #bcbcbc;
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.5;
}
.catalogue-btn {
    background: white;
    color: black;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.25s;
    border-radius: 40px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.catalogue-btn i {
    transition: transform 0.2s;
}
.catalogue-btn:hover {
    background: #e0e0e0;
    transform: scale(0.98);
}
.catalogue-btn:hover i {
    transform: translateX(4px);
}

.hero-visual {
    flex: 1;
    background: #0a0a0a;
    border-radius: 32px;
    padding: 12px;
    border: 1px solid #2a2a2a;
    text-align: center;
}
.hero-visual i {
    font-size: 9rem;
    color: #2c2c2c;
    opacity: 0.7;
}
.hero-visual .mock-pattern {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 2px;
}

.catalogue-section {
    padding: 60px 0 100px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-sub {
    color: #9a9a9a;
    border-left: 2px solid #fff;
    padding-left: 16px;
    margin-bottom: 48px;
    font-weight: 400;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.product-card {
    background: #0c0c0c;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #222;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: #3a3a3a;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.7);
}
.product-img {
    background: #111111;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.product-card:hover .product-img img {
    transform: scale(1.02);
}
.product-img i {
    font-size: 5rem;
    color: #2a2a2a;
    transition: 0.2s;
}
.product-card:hover .product-img i {
    transform: scale(1.02);
    color: #3a3a3a;
}
.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 40px;
    letter-spacing: 1px;
    font-weight: 500;
    border: 0.5px solid rgba(255,255,255,0.3);
    z-index: 2;
}
.product-info {
    padding: 22px 20px 24px;
}
.product-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
.product-desc {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 16px;
    line-height: 1.4;
}
.price {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.3px;
    border-top: 1px solid #2a2a2a;
    padding-top: 16px;
    margin-top: 8px;
    display: inline-block;
}

.divider-motif {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: #333;
}

.culture-note {
    background: #030303;
    border-radius: 48px;
    padding: 40px 32px;
    margin: 20px 0 60px;
    border: 1px solid #262626;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.culture-text h3 {
    font-size: 1.4rem;
    font-weight: 500;
}
.culture-text p {
    color: #b0b0b0;
    margin-top: 8px;
    max-width: 500px;
}
.culture-icon {
    font-size: 3rem;
    opacity: 0.7;
}

footer {
    border-top: 1px solid #1f1f1f;
    padding: 48px 0 40px;
    margin-top: 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-logo {
    font-weight: 600;
    font-size: 1.3rem;
}
.socials i {
    font-size: 1.3rem;
    margin-left: 24px;
    color: #ccc;
    transition: 0.2s;
}
.socials i:hover {
    color: white;
}
.copyright {
    font-size: 0.8rem;
    color: #5a5a5a;
    margin-top: 32px;
    text-align: center;
}

.filter-tag {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1px solid #2c2c2c;
    padding: 6px 20px;
    border-radius: 100px;
    color: #ddd;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links {
        gap: 28px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .section-sub {
        text-align: center;
        border-left: none;
        border-bottom: 1px solid #333;
        padding-bottom: 8px;
        display: inline-block;
    }
    .culture-note {
        flex-direction: column;
        text-align: center;
    }
    .product-img {
        height: 280px;
    }
}
.language-switcher {
    display: flex;
    gap: 12px;
}
.language-switcher button {
    background: transparent;
    border: 1px solid #333;
    color: #ccc;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
}
.language-switcher button:hover,
.language-switcher button.active {
    background: white;
    color: black;
    border-color: white;
}
@media (max-width: 900px) {
    .navbar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .language-switcher {
        order: 3;
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }
}
