.container-barang {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 0;
}

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


/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.product-showcase {
    display: flex;
    gap: 20px;
    flex: 1;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.brand-section {
    flex: 0 0 400px;
    text-align: right;
}

.brand-logo h2 {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-message h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}

.highlight-text {
    background: #ffeb3b;
    color: #333;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

/* Filter Section */
.filter-section {
    margin-bottom: 40px;
}

.filter-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown select {
    padding: 12px 40px 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    appearance: none;
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.filter-dropdown select:focus {
    outline: none;
    border-color: #333;
}

.filter-dropdown::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 0.8rem;
}

/* Product Section */
.product-section {
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
}

.item-count {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

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

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-item.hidden {
    display: none;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.product-code {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }
.product-item:nth-child(7) { animation-delay: 0.7s; }
.product-item:nth-child(8) { animation-delay: 0.8s; }
.product-item:nth-child(9) { animation-delay: 0.9s; }
.product-item:nth-child(10) { animation-delay: 1.0s; }
.product-item:nth-child(11) { animation-delay: 1.1s; }
.product-item:nth-child(12) { animation-delay: 1.2s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-section {
        flex: none;
        text-align: center;
    }
    
    .product-showcase {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    
    .container-barang {
        padding-top: 80px;
    }
    
    .hero-banner {
        padding: 30px 0;
    }
    
    .product-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        min-width: 250px;
    }
    
    .brand-message h1 {
        font-size: 2.5rem;
    }
    
    .highlight-text {
        font-size: 2.5rem;
        padding: 8px 15px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-dropdown select {
        min-width: 100%;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {    
    .product-showcase {
        gap: 15px;
    }
    
    .product-card {
        min-width: 200px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .brand-message h1 {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 2rem;
        padding: 6px 12px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}