@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Animasi Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-section, .search-container, .column-category {
    animation: fadeInUp 0.6s ease forwards;
}

/* Header & Navigasi */
.nav-section {
    max-width: 1300px;
    margin: 40px auto 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.btn-circle-back {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.title-left {
    font-weight: 800;
    font-size: 24px;
    margin: 0;
}

/* Pencarian Tengah */
.search-container {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 20px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: #fbbf24;
}

/* Layout Wrapper */
.products-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

.flex-layout {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.column-category {
    flex: 1;
    min-width: 350px;
    background: #ffffff; 
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.01);
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.line-tag {
    width: 6px;
    height: 24px;
    border-radius: 10px;
}

/* Grid & Gambar 1:1 */
.grid-double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.modern-card {
    background: #fdfdfd;
    border-radius: 22px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    border: 1px solid #f3f3f3;
    display: block; /* Penting untuk animasi filter */
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.modern-card img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 12px;
}

.card-info h3 {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.card-info .label {
    font-size: 10px;
    color: #999;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.badge-storage {
    background: #f1f3f5;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
}

.btn-go {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}