/* --- Thiết lập chung --- */
.decorative-line-section {
    width: 100%;
    height: 50px; /* Chiều cao cố định cho thanh line (tùy chỉnh nếu muốn to hơn) */
    background-color: #2a0a0a; /* Màu đỏ rượu đậm/đen như trong ảnh */
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.decorative-container {
    width: 100%;
    max-width: 1400px; /* Giới hạn chiều rộng nội dung để icon không bị tản ra quá xa trên màn hình lớn */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Track chứa Icon --- */
.icon-track {
    display: flex;
    justify-content: space-around; /* Căn đều khoảng cách giữa các icon */
    align-items: center;
    width: 100%;
}

/* --- Icon Item --- */
.deco-icon-wrapper {
    font-size: 10px; /* Kích thước icon */
    color: #eac086; /* Màu vàng kim loại */
    opacity: 0; /* Ẩn mặc định để chờ animation */
    transform: translateY(20px); /* Dịch xuống dưới một chút để chờ bay lên */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Tùy chỉnh nếu dùng thẻ IMG thay vì FontAwesome */
.deco-icon-wrapper img {
    height: 15px; /* Chiều cao ảnh SVG */
    width: auto;
    display: block;
}

/* --- Animation Classes (Kích hoạt bởi JS) --- */
.decorative-line-section.is-visible .deco-icon-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* Delay (Độ trễ) cho từng icon để tạo hiệu ứng xuất hiện lần lượt */
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.6s; }
.delay-6 { transition-delay: 0.7s; }
.delay-7 { transition-delay: 0.8s; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .decorative-line-section {
        height: 30px; /* Trên mobile cho thanh nhỏ lại chút */
    }

    .deco-icon-wrapper {
        font-size: 18px; /* Icon nhỏ lại */
    }

    .deco-icon-wrapper img {
    height: 10px; /* Chiều cao ảnh SVG */
    width: auto;
    display: block;
}
    
    /* Trên mobile có thể ẩn bớt icon nếu quá dày */
    .icon-track .deco-icon-wrapper:nth-child(even) {
        /* display: none; -> Bỏ comment dòng này nếu muốn ẩn bớt icon chẵn trên mobile */
    }
}